/* =======================================================
   TechBiz – Complete Multi-Page Website Styles
   Exact replica of ThemeForest Elementor Template Kit
   ======================================================= */

/* -------------------------------------------------------
   1. CSS Variables
------------------------------------------------------- */
:root {
  --bg-dark: #060a0c;
  --bg-main: #101923;
  --bg-light: #1b293b;
  --bg-card: #1b293b;
  --bg-white: #ffffff;
  --header-bg-top: #111e2b;
  --header-bg-bottom: #142d42;
  --line: #253950;
  --btn-blue: #2b64f8;
  --btn-hover: #0494fc;
  --accent-blue: #33a9ff;
  --accent-green: #1fbf75;
  --accent-purple: #766bf8;
  --accent-slate: #435d78;
  --accent-dark: #0e151e;
  --text-light: #C8E8FF;
  --text-muted: #a5bcd6;
  --text-white: #ffffff;
  --tile-card-light: #0592fc;
  --tile-card-dark: #2966f8;
  --input: #435d78;
  --font-head: "Be Vietnam Pro", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-label: "Saira", sans-serif;
  --r: 15px;
  --max: 1200px;
  --ease: 0.3s ease;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.white-text {
  color: #fff;
}

.blue-text {
  color: var(--btn-blue);
}

.subtitle {
  font-size: 28px !important;
  color: var(--text-white) !important;
}



/* -------------------------------------------------------
   2. Reset & Base
------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  /* line-height: 1.65; */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--ease);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* -------------------------------------------------------
   3. Utilities
------------------------------------------------------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 90px 0;
}

hr {
  border: 1px solid var(--line) !important;
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 12px;
}

/* Section headings */
.sh {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.sh h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 8px;
}

.sh p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Inline section header (left + button right) */
.sh-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.sh-inline h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-top: 8px;
}

/* -------------------------------------------------------
   4. Buttons
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    transform var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--btn-blue);
  color: #fff;
  border-color: var(--btn-blue);
}

.btn-primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-white);
  border-color: var(--line);
}

.btn-outline-dark:hover {
  background: var(--btn-blue);
  border-color: var(--btn-blue);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

/* -------------------------------------------------------
   5. HEADER / NAVIGATION
------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition:
    background var(--ease),
    box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(6, 10, 12, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.header-wrap {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  margin-right: 48px;
}

.logo svg {
  height: 34px;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.4px;
}

/* Main nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav>ul>li>a {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease);
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li.active>a {
  color: var(--accent-blue);
}

/* Dropdown */
.main-nav li {
  position: relative;
}

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--ease),
    transform var(--ease);
  z-index: 999;
}

.main-nav li:hover>.dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav .dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-dark);
  border-radius: 0;
}

.main-nav .dropdown a:hover {
  color: var(--accent-blue);
  background: rgba(51, 169, 255, 0.08);
}

.header-cta {
  margin-left: auto;
  padding: 10px 22px;
  font-size: 13px;
}

.nav-chevron {
  font-size: 10px;
  opacity: 0.7;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--ease);
  display: block;
}

/* custom-page hero banner */

.page-hero-1 {
  position: relative;
  overflow: hidden;
  min-height: 485px;
  display: flex;
  align-items: center;
    background: linear-gradient(
    180deg,
    var(--header-bg-top) 0%,
    var(--header-bg-bottom) 100%
  );
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/banner-bg-placeholder.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.page-hero-content {
  max-width: 650px;
}

.page-hero-1 h1 {
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 24px;
}

.page-hero-1 p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.page-hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-hero-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

/* Decorative shapes */
.page-hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.page-hero-shape-left {
  left: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid #1f7bff;
  border-radius: 36px;
  transform: rotate(45deg);
  opacity: 0.9;
}

.page-hero-shape-left-1 {
  left: -20px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid #1f7bff;
  border-radius: 36px;
  transform: rotate(45deg);
  opacity: 0.9;
}

.page-hero-shape-right {
  right: -70px;
  top: -95px;
  width: 330px;
  height: 330px;
  background: #155aa8;
  border-radius: 70px;
  transform: rotate(45deg);
  opacity: 0.9;
}

@media (max-width: 991px) {
  .page-hero-1 {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .page-hero-1 h1 {
    font-size: 38px;
  }

  .page-hero-image {
    justify-content: center;
  }

  .page-hero-image img {
    max-width: 460px;
  }
}

@media (max-width: 575px) {
  .page-hero-1 h1 {
    font-size: 32px;
  }

  .page-hero-1 p {
    font-size: 15px;
  }

  .page-hero-shape-right {
    width: 220px;
    height: 220px;
    right: -120px;
  }
}

/* -------------------------------------------------------
   6. PAGE HERO BANNER (inner pages)
------------------------------------------------------- */
.page-hero {
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
      var(--header-bg-top) 0%,
      var(--header-bg-bottom) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  /* background: radial-gradient(circle, rgba(43,100,248,.25) 0%, transparent 70%); */
  /* background-image: url('images/header-bg-top.png'); */
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  /* background: radial-gradient(circle, rgba(51,169,255,.12) 0%, transparent 70%); */
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.page-hero-deco {
  position: absolute;
  right: -70px;
  top: -150px;
  width: 500px;
  /* background: linear-gradient(135deg, rgba(43,100,248,.15) 0%, transparent 60%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%); */
  pointer-events: none;
}

.page-hero-deco-left {
  position: absolute;
  left: -170px;
  bottom: -150px;
  width: 500px;
  /* background: linear-gradient(225deg, rgba(51,169,255,.08) 0%, transparent 60%);
  clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%); */
  pointer-events: none;
}

/* -------------------------------------------------------
   7. TRUST BAND (logos)
------------------------------------------------------- */
.trust-band {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  margin: -150px 80px 0px;
    z-index: 2;
    position: relative;
    border-radius: 10px;

}

.trust-label {
  text-align: center;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trust-label span {
  color: var(--accent-blue);
  font-weight: 700;
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.logos-row-1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.logos-row-2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-right: 1px solid var(--line);
}

.logo-cell:last-child {
  border-right: none;
}

.logo-cell img {
  height: 95px;
  width: 100%;
  object-fit: contain;
  transition: opacity var(--ease);
}

.dot-height {
  height: 120px !important;
  padding: 10px 10px;
}

.logo-cell:hover img {
  opacity: 0.85;
}

/* -------------------------------------------------------
   8. CARDS (shared)
------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition:
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43, 100, 248, 0.15);
}

/* -------------------------------------------------------
   9. SERVICE PREVIEW CARDS (What we do)
------------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.svc-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43, 100, 248, 0.15);
}

.svc-card-body {
  padding: 28px 28px 0;
  flex: 1;
}

.svc-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-blue);
  line-height: 1.3;
  margin-bottom: 10px;
}

.svc-card-body p {
  font-size: 13.5px;
  line-height: 1.65;
}

.svc-card img {
  margin-top: 20px;
  width: 100%;
}

/* -------------------------------------------------------
   10. FEATURE ROW (side-by-side)
------------------------------------------------------- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-vis {
  flex: 0 0 48%;
}

.feature-vis img {
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 16px 48px rgba(43, 100, 248, 0.22));
}

.feature-copy {
  flex: 1;
}

.feature-copy h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 10px 0 18px;
}

.feature-copy p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* check list */
.check-list {
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--text-white);
  font-weight: 500;
}

.check-list li:last-child {
  border: none;
}

.chk {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(51, 169, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 11px;
  flex-shrink: 0;
}

/* -------------------------------------------------------
   11. BENTO SERVICES GRID
------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bento-item {
  border-radius: var(--r);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  transition:
    border-color var(--ease),
    transform var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.bento-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
}

.bento-item p {
  font-size: 13px;
  line-height: 1.6;
}

.bi-icon {
  font-size: 30px;
  margin-bottom: 4px;
}

/* variants */
.bi-purple {
  background: var(--accent-purple);
  border-color: transparent;
}

.bi-purple .bi-icon,
.bi-purple h4,
.bi-purple p {
  color: #fff;
}

.bi-pattern {
  background: var(--bg-card);
  background-image: url("https://new.creativemox.com/techbiz/wp-content/uploads/sites/12/2025/07/bg_img1.png");
  background-size: 60%;
  background-position: top right;
  background-repeat: no-repeat;
}

.bi-pattern .bi-icon {
  color: var(--accent-blue);
}

.bi-photo-green {
  background:
    linear-gradient(135deg, var(--accent-green) 0%, rgba(6, 10, 12, 0.5) 100%),
    url("https://new.creativemox.com/techbiz/wp-content/uploads/sites/12/2025/07/young-hacker-with-glasses-writing-a-dangerous-virus-1.jpg");
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.bi-photo-green .bi-icon,
.bi-photo-green h4,
.bi-photo-green p {
  color: #fff;
}

.bi-blue {
  background: var(--btn-blue);
  border-color: transparent;
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
}

.bi-blue h4,
.bi-blue p {
  color: #fff;
}

.bi-blue p {
  opacity: 0.8;
}

.bi-blue .bento-mockup {
  width: 130px;
  object-fit: contain;
  margin-top: auto;
  margin-left: auto;
}

.bi-dark {
  background: var(--bg-card);
}

.bi-dark .bi-icon {
  color: var(--accent-blue);
}

/* -------------------------------------------------------
   12. HOW IT WORKS
------------------------------------------------------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
}

.how-grid-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.how-card {
  border-radius: var(--r);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.how-card-1 {
  min-height: 190px;
  height: 100%;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  border-radius: var(--r);
}

.how-card-1 img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.how-card-1 h4 {
  margin: 0;
  line-height: 1.35;
}

.how-card h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
}

.how-card p {
  font-size: 13.5px;
  line-height: 1.65;
}

.how-num {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
}

.hw-dark {
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.hw-blue {
  background: linear-gradient(135deg,
      var(--btn-blue) 0%,
      var(--btn-hover) 100%);
  border: 1px solid transparent;
}

.hw-blue h4,
.hw-blue p {
  color: #fff;
}

.hw-blue p {
  opacity: 0.85;
}

.how-num-dark {
  background: rgba(51, 169, 255, 0.12);
  color: var(--accent-blue);
}

.how-num-white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* stagger */
.how-grid .how-card:nth-child(2) {
  margin-top: 48px;
}

.how-grid .how-card:nth-child(4) {
  margin-top: 48px;
}

/* -------------------------------------------------------
   13. TESTIMONIALS
------------------------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    border-color var(--ease),
    transform var(--ease);
}

.testi-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.stars {
  color: #ffb800;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.testi-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testi-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-blue);
}

.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.testi-role {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* -------------------------------------------------------
   14. MISSION / QUOTE BANNER
------------------------------------------------------- */
.quote-banner {
  padding: 90px 0;
  background:
    linear-gradient(135deg,
      rgba(6, 10, 12, 0.85) 0%,
      rgba(16, 25, 35, 0.85) 100%),
    url("https://new.creativemox.com/techbiz/wp-content/uploads/sites/12/2025/07/young-hacker-with-glasses-writing-a-dangerous-virus-1.jpg");
  background-size: cover;
  background-position: center;
}

.quote-banner-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.quote-banner-text {
  flex: 1;
}

.quote-banner-text h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.35;
  letter-spacing: -0.8px;
  margin-bottom: 28px;
}

.quote-banner-visual {
  flex: 0 0 400px;
}

.quote-banner-visual img {
  width: 100%;
  border-radius: 20px;
}

/* -------------------------------------------------------
   15. WHY CHOOSE US
------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

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

.why-grid-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.why-card {
  border-radius: var(--r);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* min-height: 200px; */
  transition: transform var(--ease), box-shadow var(--ease);
  align-items: center;
}

.why-card:nth-child(2) {
  margin-top: 60px;
}

.why-card:nth-child(4) {
  margin-top: 60px;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.why-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
}

.why-card p {
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.wi {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.wi-blue {
  background: var(--accent-blue);
  color: var(--text-white);
}

.wi-white {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.wc-slate {
  background: var(--accent-slate);
}

.wc-blue-grad {
  background: linear-gradient(135deg, var(--btn-hover) 0%, var(--btn-blue) 100%);
}

.wc-blue-grad h4,
.wc-blue-grad p {
  color: #fff;
}

.offset-up {
  margin-top: -64px;
}

.why-choose {
  background-image: url('assets/images/bg_img2.png'), linear-gradient(rgba(27, 41, 59, 0.7) 0%, rgba(27, 41, 59, 0.7) 100%);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


/* -------------------------------------------------------
   16. PORTFOLIO GRID
------------------------------------------------------- */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.port-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.port-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.port-item.mid {
  aspect-ratio: 4/3;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.port-item:hover img {
  transform: scale(1.06);
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(6, 10, 12, 0.92) 100%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(51, 169, 255, 0.15);
  border: 1px solid var(--accent-blue);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 7px;
}

.port-overlay h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.port-overlay .btn {
  padding: 8px 18px;
  font-size: 13px;
}

/* -------------------------------------------------------
   17. SKILLS / PROGRESS BARS
------------------------------------------------------- */
.skills-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.skills-left {
  flex: 0 0 40%;
}

.skills-left h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.skills-left p {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.skill-bar {
  margin-bottom: 20px;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 7px;
}

.skill-track {
  height: 6px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg,
      var(--btn-blue) 0%,
      var(--accent-blue) 100%);
  border-radius: 99px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.skill-card {
  border-radius: var(--r);
  padding: 26px;
}

.skill-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.skill-card p {
  font-size: 13px;
  line-height: 1.65;
}

.sc-blue {
  background: linear-gradient(135deg,
      var(--btn-hover) 0%,
      var(--btn-blue) 100%);
}

.sc-green {
  background: linear-gradient(135deg, var(--accent-green) 0%, #0d8a53 100%);
}

.sc-dark {
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.sc-dark h4,
.sc-dark p {
  color: var(--text-muted);
}

.sc-blue h4,
.sc-blue p,
.sc-green h4,
.sc-green p {
  color: #fff;
}

.skill-card-icon {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

/* -------------------------------------------------------
   18. FAQ ACCORDION
------------------------------------------------------- */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-intro h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.faq-intro p {
  font-size: 14.5px;
  line-height: 1.75;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--ease);
}

.accordion-item.open {
  border-color: var(--accent-blue);
}

.accordion-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-white);
  gap: 12px;
  user-select: none;
}

.accordion-q:hover {
  color: var(--accent-blue);
}

.accordion-item.open .accordion-q {
  color: var(--accent-blue);
}

.acc-icon {
  font-size: 12px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.accordion-item.open .acc-icon {
  transform: rotate(180deg);
}

.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--ease);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 0 24px;
}

.accordion-item.open .accordion-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* -------------------------------------------------------
   19. TEAM CARDS
------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    border-color var(--ease),
    transform var(--ease);
}

.team-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.team-photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(transparent, rgba(6, 10, 12, 0.85));
  transition: bottom var(--ease);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--btn-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: background var(--ease);
}

.team-social a:hover {
  background: var(--btn-hover);
}

.team-info {
  padding: 18px 20px;
  text-align: center;
}

.team-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--accent-blue);
}

/* -------------------------------------------------------
   POST CARDS
------------------------------------------------------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    border-color var(--ease),
    transform var(--ease);
}

.post-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.post-photo {
  position: relative;
  /* aspect-ratio: 1/0.6; */
  overflow: hidden;
}

.post-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-photo img {
  transform: scale(1.05);
}

.post-info {
  padding: 18px 20px;
  text-align: left;
}

.post-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.post-description {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 4px;
}

.post-role {
  font-size: 13px;
  color: var(--accent-blue);
}

/* -------------------------------------------------------
   POST DETAILS (inner pages)
------------------------------------------------------- */
.post-hero {
  padding: 150px 0;
  background-image: url(assets/images/Simbiotik-Sehari.jpg), linear-gradient(rgba(27, 41, 59, 0.7) 0%, rgba(27, 41, 59, 0.7) 100%);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.post-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  text-align: center;
}

.post-hero p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.post-content {
  display: flex;
  gap: 50px;

  .social-row {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .social-btn {
    width: 180px;
    height: 45px;
    padding: 0 15px;
    border-radius: 8px;
    background: var(--btn-blue);
    border: 1px solid var(--line);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    color: var(--text-white);
    font-size: 16px;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
  }

  .form-group label {
    display: flex;
    gap: 5px;
  }

  .message-box {
    margin: 32px 0 !important;
    padding: 0 !important;

    .contact-form-wrap {
      padding: 20px !important;

      h2 {
        text-align: left;
      }

      p {
        text-align: left;
      }
    }
  }
}

.comment-head {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.left-section {
  width: 100%;

  .post-img{
    img{
      width:100%;
      border-radius:10px;
      margin-bottom:25px;
    }
  }
}

.right-section {
  width: 100%;
}

.latest-post {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;

  .post-card {
    background: none;
    border: none;

    .post-photo {
      display: flex;

      img {
        width: 30%;
        height: auto;
      }
    }
  }

  .post-card:hover .post-photo img {
    transform: none;
  }

  .post-card:hover .post-photo .post-info .post-name {
    color: var(--accent-blue);
  }
}

/* -------------------------------------------------------
   GALLERY
------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3.97;
}

.gallery-card picture {
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
}

.gallery-card picture a {
    position: absolute;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    opacity: 0;
    text-align: center;
    text-decoration: none !important;
    border-radius: 7px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1.3);
    text-align: center;
    transition: 0.7s ease-in-out;
}

.gallery-card picture a span {
    font-size: 40px;
    color: var(--btn-blue);
    font-weight: 300;
    display: inline-block;
    transform: rotate(45deg);
    position: relative;
    left: 2px;
    top: 4px;
}

.gallery-card picture:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-image: -webkit-linear-gradient(90deg, rgb(23, 41, 167, 0.7) 0%, rgb(3, 116, 244, 0.7) 100%);
    right: 0;
    transition: 0.5s ease-in-out;
    opacity: 0;
    transform: scale(.7);
}

.gallery-card picture:hover::after {
    opacity: 1 !important;
    transform: scale(1);
}

.gallery-card picture:hover a {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: .7;
}

.gallery-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}
.gallery-photo {
  position: relative;
  /* aspect-ratio: 1/0.6; */
  overflow: hidden;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-photo img {
  transform: scale(1.05);
}
 .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

/* -------------------------------------------------------
   20. PRICING
------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.price-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(43, 100, 248, 0.2);
}

.price-card.featured {
  border-color: var(--btn-blue);
  background: linear-gradient(160deg, var(--btn-blue) 0%, var(--bg-card) 80%);
  transform: none;
}

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

.price-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}

.price-desc {
  font-size: 14px;
  line-height: 1.65;
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.price-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 8px;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--line);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.price-features li i {
  color: var(--accent-blue);
  font-size: 13px;
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.price-badge {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 8px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.payment-icons img {
  height: 28px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}

/* -------------------------------------------------------
   21. CONTACT
------------------------------------------------------- */
.wd-100 {
  width: 100%;
}

.contact-grid {
  display: flex;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.social-head {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.social-head p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--btn-blue);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 15px;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
}

.social-btn:hover {
  background: var(--btn-blue);
  color: #fff;
  border-color: var(--btn-blue);
}

.contact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.social-btn:hover {
  background: var(--btn-hover);
  color: #fff;
}

.contact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.contact-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: border-color var(--ease);
}

.contact-tile:first-child {
  background: linear-gradient(180deg,
      var(--tile-card-light) 0%,
      var(--tile-card-dark) 100%);
}

.contact-tile:hover {
  border-color: var(--accent-blue);
}

.ct-icon {
  font-size: 22px;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.contact-tile:first-child .ct-icon {
  color: #fff;
}

.ct-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.ct-val {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-tile:first-child .ct-val {
  color: var(--text-white);
}

.ct-val {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-tile:first-child .ct-val {
  color: rgba(255, 255, 255, 0.8);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px;
}

.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-wrap p {
  font-size: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--input);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-white);
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map */
.map-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.message-box {
  margin-top: -100px;
  z-index: 1;
  position: relative;
  padding-bottom: 90px !important;
}

/* -------------------------------------------------------
   22. SINGLE SERVICE PAGE
------------------------------------------------------- */
.service-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-overview-text p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.service-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.sfl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.sfl-item i {
  color: var(--accent-blue);
  font-size: 12px;
}

.service-aside {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.sa-feature {
  background: var(--btn-blue);
  padding: 24px;
  border-radius: var(--r);
  min-height: 300px;
  height: 100%;
}

.sa-feature h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.sa-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text-white);
  line-height: 1.5;
}

.sa-feature-item:last-child {
  border-bottom: 0;
}


.sa-feature-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
  margin-top: 2px;
}

.sa-feature-item span {
  display: block;
}

.sa-feature-item i {
  color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.15);
  padding: 5px;
  border-radius: 6px;
}

.sa-feature-item-1 span {
  display: block;
}

.sa-feature-slate {
  background: var(--accent-slate);
  padding: 24px;
  border-radius: var(--r);
  min-height: 190px;
  height: 100%;
}

.sa-feature-item-1 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text-white);
  line-height: 1.5;

}

.sa-feature-item-1:last-child {
  border-bottom: 0;
}

.sa-feature-item-1 i {
  color: var(--accent-white);
  padding: 5px;
  border-radius: 6px;
}

.sa-contact {
  padding: 24px;
}

.sa-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.sa-contact-icon {
  width: 42px;
  height: 42px;
  background: var(--btn-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.sa-contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.sa-contact-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
}

/* -------------------------------------------------------
   23. FAQ PAGE (hero search)
------------------------------------------------------- */
.faq-hero {
  padding: 130px 0 60px;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.faq-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.faq-search {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.faq-search input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-white);
  outline: none;
}

.faq-search input::placeholder {
  color: var(--accent-slate);
}

.faq-search button {
  padding: 0 22px;
  background: var(--btn-blue);
  color: #fff;
  font-size: 16px;
  transition: background var(--ease);
}

.faq-search button:hover {
  background: var(--btn-hover);
}

.faq-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.faq-support-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  text-align: center;
  transition:
    border-color var(--ease),
    transform var(--ease);
}

.faq-support-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.fsc-icon {
  font-size: 32px;
  color: var(--accent-blue);
  margin-bottom: 14px;
}

.fsc-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.fsc-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.faq-cta-banner {
  padding: 90px 0;
  background:
    linear-gradient(135deg,
      rgba(6, 10, 12, 0.8) 30%,
      rgba(16, 25, 35, 0.8) 100%),
    url("https://new.creativemox.com/techbiz/wp-content/uploads/sites/12/2025/07/young-hacker-with-glasses-writing-a-dangerous-virus-1.jpg");
  background-size: cover;
  background-position: center;
}

.faq-cta-banner h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.faq-cta-banner p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* -------------------------------------------------------
   24. 404 PAGE
------------------------------------------------------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  padding: 80px 24px;
}

.err-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.err-num {
  font-family: var(--font-head);
  font-size: 120px;
  font-weight: 700;
  color: var(--btn-blue);
  line-height: 1;
  letter-spacing: -4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.err-balloon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}

.err-box h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 14px;
}

.err-box p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* -------------------------------------------------------
   25. CTA BOTTOM BANNER
------------------------------------------------------- */
.cta-strip {
  background: var(--bg-dark);
  padding: 80px 0 0;
  overflow: hidden;
}

.cta-strip-inner {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.cta-strip-text {
  flex: 1;
  padding-bottom: 80px;
}

.cta-strip-text h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.cta-strip-img {
  flex: 0 0 320px;
}

.cta-strip-img img {
  width: 100%;
  border-radius: 16px 16px 0 0;
  height: 360px;
  object-fit: cover;
}

/*--------------------------------------------------------
  CSR Page CSS
--------------------------------------------------------*/
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-30 {
  margin-bottom: 30px;
}

.m-0 {
  margin: 0 auto;
}

.hr {
  border: 1px solid var(--text-white) !important;
  width: 100px;
  margin: 0 auto 30px;
}

.align-center {
  text-align: -webkit-center;
}



/* -------------------------------------------------------
   26. FOOTER
------------------------------------------------------- */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: flex;
  gap: 72px;
  padding: 64px 0 52px;
}

.footer-brand {
  max-width: 350px;
  flex-shrink: 0;
  margin-right: 125px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
}

.socials a:hover {
  background: var(--btn-blue);
  color: #fff;
  border-color: var(--btn-blue);
}

.footer-links {
  display: flex;
  flex: 1;
  gap: 48px;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--accent-blue);
}

.footer-bar {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bar p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bar-links {
  display: flex;
  gap: 22px;
}

.footer-bar-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bar-links a:hover {
  color: var(--accent-blue);
}

/* -------------------------------------------------------
   27. SCROLL FADE ANIMATION
------------------------------------------------------- */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.anim.visible {
  opacity: 1;
  transform: none;
}

.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

/* -------------------------------------------------------
   28. RESPONSIVE – Tablet ≤1024px
------------------------------------------------------- */
@media (max-width: 1024px) {

  .svc-grid,
  .testi-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bi-blue {
    grid-column: span 1;
    flex-direction: column;
  }

  .how-grid,
  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .mb-130{
    margin-bottom: 130px !important;
  }

  .how-grid .how-card:nth-child(2),
  .how-grid .how-card:nth-child(3),
  .how-grid .how-card:nth-child(4) {
    margin-top: 20px;
  }

  .logo-cell {
    border-bottom: 1px solid var(--line);
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .feature-vis {
    flex: unset;
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

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

  /* 
  .logos-row .logo-cell:nth-child(4) {
    border-right: none;
  } */

  .logos-row .logo-cell:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
    padding: 25px !important;
  }

  .footer-brand {
    max-width: 100%;
  }

  .skills-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .skills-left {
    flex: unset;
    width: 100%;
  }

  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-item.tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-overview {
    grid-template-columns: 1fr;
  }

  .quote-banner-inner {
    flex-direction: column;
    gap: 40px;
  }

  .quote-banner-visual {
    flex: unset;
    width: 100%;
  }

  .contact-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .post-content {
    flex-direction: column;
    gap: 40px;
  }
}

/* Tabs */

.service-tabs-section {
  background: #0d1823;
  padding-top: 50px;
}

.service-tabs-box {

  background: #142333;
  border-radius: 8px;
  overflow: hidden;
}

.service-tabs {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.6fr 1.4fr 1.3fr 1.7fr;
  gap: 4px;
}

.service-tab {
  border: 0;
  background: #3f566f;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  min-height: 38px;
  cursor: pointer;
  text-align: center;
  border-radius: 8px 8px 0 0;
}

.service-tab.active {
  background: #2f68ee;
}

.service-tab-panel {
  display: none;
  padding: 24px 18px 34px;
  color: #c9d3df;
  background: #142333;
}

.service-tab-panel.active {
  display: block;
}

.service-tab-panel h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px;
}

.service-tab-panel p {
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
  color: #c9d3df;
}

.service-tab-panel p+p {
  margin-top: 8px;
}

@media (max-width: 991px) {
  .service-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

    .service-tab {
    font-size: 13px;
  }
}




/* -------------------------------------------------------
   29. RESPONSIVE – Mobile ≤768px
------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .sh h2,
  .feature-copy h2,
  .skills-left h2,
  .faq-intro h2 {
    font-size: 26px;
  }

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

.why-card:nth-child(2) {
    margin-top: 0;
}

  .page-hero h1,
  .faq-hero h1 {
    font-size: 32px;
  }

  .cta-strip-text h2 {
    font-size: 28px;
  }

  .err-num {
    font-size: 72px;
  }

  .err-balloon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  /* Nav */
  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 72px 0 0 0;
    /* sit below header (header height ~72px) */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--bg-dark);
    padding: 18px 24px 32px;
    z-index: 1205;
    /* above header */
    overflow-y: auto;
    height: 100vh;
  }

  .main-nav.open ul {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }

  .main-nav.open>ul>li>a {
    font-size: 17px;
    padding: 14px 0;
  }

  .main-nav.open .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    padding: 4px 0 4px 16px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .svc-grid,
  .testi-grid,
  .bento,
  .how-grid,
  .why-grid,
  .pricing-grid,
  .team-grid,
  .port-grid,
  .post-grid,
  .faq-support-cards,
  .skills-right {
    grid-template-columns: 1fr;
  }

  .bi-blue {
    flex-direction: column;
  }

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

  .logos-row .logo-cell:nth-child(3) {
    border-right: none;
  }

  .logos-row .logo-cell {
    border-top: 1px solid var(--line);
  }

  .footer-links {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bar-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cta-strip-inner {
    flex-direction: column;
    gap: 28px;
  }

  .cta-strip-img img {
    height: 220px;
    border-radius: 16px;
  }

  .sh-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-tiles {
    grid-template-columns: 1fr;
  }

  .service-feature-list {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .post-content {
    flex-direction: column;
    gap: 40px;

    .social-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

.service-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.modules-heading {
  grid-column: 1 / -1;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  margin: 0 0 16px;
  white-space: nowrap;
}

/* -------------------------------------------------------
   Merged from local CSS - missing styles
------------------------------------------------------- */

/* Navigation additions */
.main-nav ul {
  white-space: nowrap;
}

.main-nav>ul>li.nav-contact>a {
  color: var(--text-muted);
}

.main-nav li {
  width: 100%;
}

.main-nav .dropdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-nav .dropdown a:hover {
  width: 100%;
}

/* Trust logo custom height */
.dot-height {
  height: 120px !important;
  padding: 10px 10px;
}

/* Testimonial local alignment */
.testi-card {
  align-items: center;
  text-align: center;
}

/* Video card + popup */
.svc-video {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.svc-video::before,
.svc-video::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 2;
  pointer-events: none;
}

.svc-video::before {
  top: 0;
  background: linear-gradient(to bottom, #182c47 0%, rgba(24, 44, 71, .95) 25%, transparent 100%);
}

.svc-video::after {
  bottom: 0;
  background: linear-gradient(to top, #182c47 0%, rgba(24, 44, 71, .95) 25%, transparent 100%);
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 3px solid #129cff;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 38px;
  cursor: pointer;
}

/* Popup */
.video-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 10, 18, 0.82);
  backdrop-filter: blur(10px);
}

.video-popup.active {
  display: flex;
}

.video-popup-box {
  position: relative;
  width: min(960px, 92vw);
  background: #0e1b2c;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.popup-video {
  width: 100%;
  max-height: 70vh;
  display: block;
  border-radius: 16px;
  background: #000;
}

.video-popup-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0e1b2c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.svc-video {
  transform: translateY(-85px);
}

@media (max-width: 991px) {
  .how-grid-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .how-grid-1 {
    grid-template-columns: 1fr;
  }

  .how-card-1 {
    min-height: 170px;
  }
}

.solutions-section {
  background: var(--bg-dark);
  overflow: hidden;
}

.solutions-intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.solutions-title h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.18;
  letter-spacing: -1px;
}

.solutions-content {
  max-width: 520px;
}

.solutions-content p {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 260px;
  background: var(--bg-card);
}

.solution-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: 0.60;
  transition: transform 0.45s ease;
}

.solution-card:hover img {
  transform: scale(1.08);
}

.solution-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg,
      rgba(6, 10, 12, 0.15) 0%,
      rgba(6, 10, 12, 0.9) 100%);
}

.solution-overlay span {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.solution-overlay h3 {
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}

.solution-overlay .btn {
  width: fit-content;
}

/* Tablet */
@media (max-width: 1024px) {
  .solutions-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .solutions-intro {
    margin-bottom: 36px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-card,
  .solution-card img {
    min-height: 300px;
  }

  .solution-overlay {
    padding: 24px;
  }
}

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

  .solution-card,
  .solution-card img {
    min-height: 260px;
  }

  .solutions-content .btn {
    width: 100%;
    justify-content: center;
  }
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.solution-card:hover::after {
  background: rgba(0, 0, 0, 0.25);
}

.solution-overlay {
  z-index: 2;
}

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

/* =========================
   HEADER COMPLETE CSS
========================= */

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  /* width: 130px; */
  height: auto;
  display: block;
}

/* Toggle */
.nav-toggle {
  width: 34px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100001;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: #33a9ff;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background: #fff;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background: #fff;
}

/* Mobile nav */
.main-nav {
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0 34px;
  background: transparent;
  transition: max-height 0.35s ease;
  z-index: 100000;
}

.main-nav.open {
  max-height: calc(100vh - 78px);
  overflow-y: auto;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav>ul {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.main-nav>ul>li {
  border-bottom: 1px solid #e7eef6;
}

.main-nav>ul>li:last-child {
  border-bottom: 0;
}

.main-nav a,
.dropdown-toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border: 0;
  outline: 0;
  background: #fff;
  color: #38506c;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease;

  span{
    font-size: 20px;
    line-height: 5px;
    display: flex;
    position: relative;
    height: 15px;
    left: 5px;
  }
}

.main-nav>ul>li.active>a,
.main-nav>ul>li>a:hover,
.main-nav .dropdown-toggle:hover,
.has-dropdown.open>.dropdown-toggle {
  background: #2b64f8;
  color: #fff;
}

.nav-chevron {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.has-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

/* Mobile dropdown */
.has-dropdown .dropdown {
  position: static;
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: #f8fbff;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  transition: max-height 0.35s ease;
}

.has-dropdown.open .dropdown {
  max-height: 260px;
}

.dropdown li {
  display: block;
  border-top: 1px solid #e7eef6;
}

.dropdown li a {
  min-height: 48px;
  padding: 0 26px 0 52px;
  background: #f8fbff;
  color: #38506c;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
}

.dropdown li a:hover {
  background: #2b64f8;
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 992px) {
  .header-wrap {
    height: 84px;
  }

  .logo svg {
    width: 100px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    margin-left: auto;
    background: transparent;
  }

  .main-nav>ul {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .main-nav>ul>li {
    position: relative;
    border-bottom: 0;
  }

  .main-nav a,
  .dropdown-toggle {
    min-height: auto;
    padding: 10px 14px;
    background: transparent;
    color: #a5bcd6;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .main-nav>ul>li.active>a,
  .main-nav>ul>li>a:hover,
  .main-nav .dropdown-toggle:hover,
  .has-dropdown.open>.dropdown-toggle {
    background: transparent;
    color: var(--accent-blue);
  }

  .has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    max-height: none;
    overflow: visible;
    padding: 8px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .dropdown li {
    border-top: 0;
  }

  .dropdown li a {
    min-height: auto;
    display: block;
    padding: 11px 20px;
    background: #fff;
    color: #38506c;
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .dropdown li a:hover {
    background: #2b64f8;
    color: #fff;
  }
}

@media (max-width: 991px) {
  .main-nav {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0!important;
    background: transparent !important;
    transition: max-height 0.35s ease !important;
    z-index: 100000 !important;
  }

  .main-nav.open {
    max-height: calc(100vh - 64px) !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
  }

  .main-nav>ul {
    background: #fff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    flex-direction: column;
  }

  .main-nav>ul>li {
    display: block !important;
    border-bottom: 1px solid #e7eef6 !important;
  }

  .main-nav>ul>li:last-child {
    border-bottom: 0 !important;
  }

  .main-nav a,
  .main-nav .dropdown-toggle {
    color: #38506c !important;
    background: #fff !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 26px !important;
    min-height: 56px !important;
  }

  .main-nav .dropdown {
    position: static !important;
    background: transparent !important;
    border: none !important;
    padding: 0 8px 0 18px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    display: block !important;
    transition: max-height 0.35s ease !important;
  }

  .main-nav li.open > .dropdown {
    max-height: 300px !important;
  }

  .main-nav .dropdown li {
    border-top: 1px solid #e7eef6 !important;
  }

  .main-nav .dropdown a {
    color: #38506c !important;
    padding: 10px 8px !important;
  }

  .has-dropdown.open .dropdown {
    max-height: 500px !important;
    overflow: visible !important;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .header-wrap {
    height: 64px;
    padding: 0 14px;
  }

  .main-nav .dropdown a:hover {
    color: var(--accent-blue);
    background: transparent;
  }

  /* reduce logo size on mobile */
  .logo-text {
    display: none;
  }

  .logo svg {
    height: 50px;
  }
}

/* HERO RESPONSIVE FIX */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-inner {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  flex: 1;
  max-width: 560px;
}

.hero-h1 {
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.6;
  max-width: 520px;
}

.hero-sub br {
  display: none;
}

.hero-vis {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-vis img {
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-copy {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-vis {
    width: 100%;
    justify-content: center;
  }

  .hero-vis img {
    max-width: 420px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    gap: 30px;
    text-align: center;
  }

  .hero-h1 {
    font-size: 52px;
  }

  .hero-sub {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-vis img {
    min-width: 250px !important;
  }

  .hero-btns {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  section.hero {
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  section.hero>.container.hero-inner {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .hero-btns {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-btns .btn {
    margin: 0 auto !important;
  }
}


@media (max-width: 575px) {
  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-tab {
    text-align: left;
  }

    .service-tab-content {
    padding: 22px 16px 28px;
  }
}
.contact-section {
  background: var(--bg-dark);
}
 
.contact-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
}
 
.contact-info h2,
.contact-form-card h2 {
  font-family: var(--font-head);
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: -0.8px;
}
 
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
}
 
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-white);
  font-size: 15px;
}
 
.contact-list i,
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--btn-blue);
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
 
.contact-social h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 16px;
}
 
.contact-social div {
  display: flex;
  gap: 10px;
}
 
.contact-social a:hover {
  background: var(--btn-hover);
}
 
.contact-form-card {
  background: var(--input);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px;
}
 
.contact-form-card {

  h2{
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 32px;
  }  

   
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 5px;
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-white);
      outline: none;
      transition: border-color var(--ease);
    }
  

}

/* Responsive only for Clients logo section */
@media (max-width: 991px) {
  .logos-row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
 
  .logo-cell {
    min-height: 110px;
    padding: 20px;
  }
 
  .logo-cell img {
    max-width: 150px;
    max-height: 65px;
    object-fit: contain;
  }
 
  .logo-cell .dot-height,
  .logo-cell img.dot-height {
    max-height: 50px;
  }
}
 
@media (max-width: 575px) {
  .trust-band {
    padding-left: 0;
    padding-right: 0;
    margin: -150px 10px 0px
  }
 
  .logos-row-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
 
  .logo-cell {
    min-height: 95px;
    padding: 18px;
  }
 
  .logo-cell img {
    max-width: 140px;
    max-height: 58px;
    object-fit: contain;
  }
 
  .logo-cell .dot-height,
  .logo-cell img.dot-height {
    max-height: 44px;
  }
}
 
@media (max-width: 1024px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
 
@media (max-width: 768px) {
  .contact-wrap {
    padding: 24px;
    border-radius: var(--r);
  }
 
  .contact-info h2,
  .contact-form-card h2 {
    font-size: 28px;
  }
 
  .contact-form-card {
    padding: 24px;
  }
 
  .form-grid {
    grid-template-columns: 1fr;
  }
}

 /* ---- HOMEPAGE-SPECIFIC ---- */
    .hero {
      min-height: 55vh;
      display: flex;
      align-items: center;
      padding: 0px 0 60px;
      background:
        linear-gradient(135deg, #060A0C 20%, rgba(4, 148, 252, .12) 100%),
        url('https://new.creativemox.com/techbiz/wp-content/uploads/sites/12/2025/07/part-of-earth-with-sun-rise-and-lens-flare-background-internet-network-concept.jpg') center/cover no-repeat;
      position: relative;
      overflow: hidden;
      top:-20px
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(43, 100, 248, .18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .hero-copy {
      flex: 0 0 50%;
      max-width: 50%;
    }

    .hero-copy .eyebrow {
      margin-bottom: 14px;
    }

    .hero-h1 {
      font-family: var(--font-head);
      font-size: 54px;
      font-weight: 600;
      color: var(--text-white);
      line-height: 1.12;
      letter-spacing: -1.8px;
      margin-bottom: 20px;
    }

    .hero-sub {
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-vis {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .hero-vis img {
      width: 100%;
      min-width: 600px;
      filter: drop-shadow(0 24px 60px rgba(43, 100, 248, .35));
      animation: float 5s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-18px);
      }
    }

    /* ---- SERVICES FEATURE AREA ---- */
    .feat-bg {
      background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-main) 100%);
    }

    /* ---- BENTO SECTION DARK ---- */
    .bento-section {
      background: var(--bg-main);
    }

    /* ---- HOW SECTION ---- */
    .how-section {
      background: var(--bg-dark);
    }

    /* ---- TESTIMONIAL SECTION ---- */
    .testi-section {
      background: var(--bg-main);
    }

    /* ---- MISSION BANNER ---- */
    .banner {
      background-image:
        url('assets/images/homepage/our-performance-banner.png') !important;
      background-position: left !important;
    }

    .mission-banner {
      padding: 80px 40px;
      height: 55% !important;
      background:
        /* linear-gradient(
    135deg,
    rgba(6, 10, 12, 0.4) 0%,
    rgba(16, 25, 35, 0.35) 100% */
        url('assets/images/homepage/about-banner.png');
      background-attachment: fixed !important;

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat !important;
      text-align: center;
      display: flex;
      align-items: center;
    }

    .mission-banner h2 {
      font-family: var(--font-head);
      font-size: 36px;
      font-weight: 600;
      color: var(--text-white);
      line-height: 1.4;
      letter-spacing: -.8px;
      max-width: 780px;
      margin: 0 auto 28px;
    }

    /* ---- WHY CHOOSE US ---- */
    .why-section {
      background: var(--bg-main);
    }

    /* Portfolio masonry layout matching screenshot exactly */
    .port-masonry {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 100%;
      gap: 20px;
    }

    .pm-item {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      cursor: pointer;
    }

    .pm-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }

    .pm-item:hover img {
      transform: scale(1.06);
    }

    .pm-tall {
      grid-row: span 2;
    }

    .pm-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent 40%, rgba(6, 10, 12, .9) 100%);
      opacity: 0;
      transition: opacity var(--ease);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }

    .pm-item:hover .pm-overlay {
      opacity: 1;
    }

    .pm-tag {
      display: inline-block;
      font-family: var(--font-label);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--accent-blue);
      background: rgba(51, 169, 255, .15);
      border: 1px solid var(--accent-blue);
      border-radius: 4px;
      padding: 3px 9px;
      margin-bottom: 7px;
    }

    .pm-overlay h4 {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px;
    }

    .pm-overlay .btn {
      padding: 8px 18px;
      font-size: 13px;
    }

    /* always-visible tag on top-left */
    .pm-top-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      font-family: var(--font-label);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--accent-blue);
      background: rgba(6, 10, 12, .8);
      border: 1px solid var(--accent-blue);
      border-radius: 4px;
      padding: 3px 9px;
    }

    .pm-title-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 20px;
      background: linear-gradient(transparent, rgba(6, 10, 12, .85));
    }

    .pm-title-bar h4 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
    }