:root {
  --brand-blue: #0060ff;
  --brand-blue-strong: #235ebf;
  --brand-navy: #001a2d;
  --text-main: #565656;
  --text-soft: #707070;
  --line-gray: #b1b1b1;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --shadow-soft: 0 16px 40px rgba(0, 26, 45, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: Manrope, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 35%, #f4f7fc 100%);
  min-height: 100vh;
}

p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 1) 90%),
    url(/img/3dtradeplanet.png) top right no-repeat;
}

.site-bg.bg-variant-about {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(241, 245, 251, 0.9)), no-repeat;
}

.site-bg.bg-variant-services {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 245, 252, 0.9)),no-repeat;
}

.site-bg.bg-variant-contact {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(240, 245, 252, 0.9)), no-repeat;
}

.site-header {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 26, 45, 0.08);
}

.brand-logo {
  width: 120px;
  max-width: 100%;
}

.navbar-nav .nav-link {
  color: var(--brand-navy);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.is-active {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.9rem;
}

.divider img {
  display: block;
  width: 6px;
  height: 7px;
}

.line {
  display: block;
  height: 1px;
  flex: 1;
}

.line-dark {
  background: var(--line-gray);
  opacity: 0.9;
}

.line-blue {
  max-width: 40%;
  background: var(--brand-blue);
}

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

.divider-reverse .line-dark {
    background: var(--line-gray);
    opacity: 0.9;
}

.divider-reverse .line-blue {
    max-width: 60%;
    background: var(--brand-blue);
}
.hero-section {
  padding: 1rem 0 1.25rem;
}

.hero-inner .hero-title {
  /* max-width: 16ch; */
}

.hero-card {
  /* background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.5)); */
 
  /* color: #fff; */
  padding: 1.4rem;
  border-radius: 1.1rem;
  /* box-shadow: var(--shadow-soft); */
  overflow: hidden;
  position: relative;
}
.hero-card .cardcontent {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 1.1rem;
    /* padding: 1.4rem inherit; */
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.type-deco {
  position: absolute;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.type-deco-hero {
  top: -0.25rem;
  right: -2.45rem;
  font-size: clamp(6rem, 22vw, 13rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(223, 231, 240, 0.404);
  font-family: "Space Grotesk",
    "Segoe UI",
    sans-serif;
  font-weight: 100;
  font-style: italic;
  z-index: -1;
  
}

.type-deco-hero.position-fixed {
  right: 0vw;
  top:15vh;
  display: block;
  width: auto;
  text-align: right;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 700;
  /* color: rgba(255, 255, 255, 0.78); */
}

.hero-title {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 9vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.01em;

}

.hero-copy {
  /* color: rgba(255, 255, 255, 0.92); */
  max-width: 54ch;
}

.btn-primary {
  --bs-btn-bg: var(--brand-blue);
  --bs-btn-border-color: var(--brand-blue);
  --bs-btn-hover-bg: #0051d9;
  --bs-btn-hover-border-color: #0051d9;
  --bs-btn-active-bg: #0051d9;
  --bs-btn-active-border-color: #0051d9;
  --bs-btn-focus-shadow-rgb: 0, 96, 255;
}

.panel {
  background: var(--surface-strong);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 26, 45, 0.06);
}

.panel-services {
  padding: 1.15rem;
  border-top: 6px solid var(--line-gray);
}

.panel-content {
  padding: 1.15rem;
  border-top: 6px solid var(--brand-blue);
  position: relative;
  overflow: hidden;
}

.type-deco-panel {
  right: -1.1rem;
  bottom: -0.2rem;
  font-size: clamp(2.8rem, 19vw, 10rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(0, 96, 255, 0.06);

    font-family: "Space Grotesk",
            "Segoe UI",
            sans-serif;
        font-weight: 100;
        font-style: italic;
}

.section-title {
  margin: 0 0 0.75rem;
  color: var(--brand-blue-strong);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
}

.section-title-main {
  font-size: clamp(1.35rem, 5.6vw, 2rem);
}

h2.sub-title {
  font-size: 1.28rem;
}
.sub-title {
  color: var(--brand-navy);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  margin-bottom: 0.75rem;
}

.service-list {
  margin: 0;
  padding: 0;
}

.service-list li + li {
  margin-top: 0.4rem;
}

.service-list a {
  color: var(--text-soft);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-list a:hover,
.service-list a:focus {
  color: var(--brand-blue);
}

.content-block {
  margin-bottom: 1.45rem;
}

.benefit-list {
  margin: 0;
  padding-left: 1.15rem;
}

.benefit-list li {
  margin-bottom: 0.45rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.service-detail h3 {
  margin: 1.15rem 0 0.45rem;
  font-size: 1.05rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.service-detail h3 a {
  color: var(--brand-blue-strong);
  text-decoration: underline;
}

.service-detail h3 a:hover,
.service-detail h3 a:focus {
  color: var(--brand-blue);
}

.map-wrap {
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(0, 26, 45, 0.12);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.small-note {
  font-size: 0.92rem;
  color: #4f5f73;
  background: rgba(230, 238, 251, 0.7);
  border-left: 3px solid var(--brand-blue);
  border-radius: 0.5rem;
  padding: 0.8rem 0.9rem;
}

.panel-image {
  border-radius: 0.8rem;
}

.site-footer {
  color: var(--text-main);
}

.site-footer p {
  font-size: 0.92rem;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 1.3rem 0 2rem;
  }

  .hero-card {
    padding: 2.4rem;
    border-radius: 1.35rem;
  }

  .panel-services,
  .panel-content {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    /* max-width: 12ch; */
  }

  .type-deco-hero {
    right: 1rem;
  }

  .panel-services {
    position: sticky;
    top: 6.2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Homepage — 3-section editorial layout
   ═══════════════════════════════════════════════════════════════════════════════ */

.home-section {
  padding: 1.5rem 0;
}

.home-section + .home-section {
  border-top: 1px solid rgba(0, 26, 45, 0.07);
  position: relative;
}

/* short blue accent line at top of each divider */
.home-section + .home-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
}

.home-section--last {
  padding-bottom: 0;
}

/* ── Section header row (large faded number + eyebrow badge) ─────────────── */

.section-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.section-num {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 0.88;
  color: var(--brand-blue);
  opacity: 0.1;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
}

.section-eyebrow {
  display: inline-flex;
  align-self: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(0, 96, 255, 0.07);
  border: 1px solid rgba(0, 96, 255, 0.2);
  padding: 0.22rem 0.65rem;
  border-radius: 2rem;
}

/* ── Section heading — gradient text ─────────────────────────────────────── */

.section-heading {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--brand-navy) 10%, var(--brand-blue-strong) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Lead paragraph (bold intro) ─────────────────────────────────────────── */

.lead-para {
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--brand-navy);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}

/* ── Pull quote ──────────────────────────────────────────────────────────── */

.pull-quote {
  margin: 0;
  position: relative;
  padding: 0.9rem 1.1rem 0.9rem 1.85rem;
  border-left: 3px solid var(--brand-blue);
  background: rgba(0, 96, 255, 0.04);
  border-radius: 0 0.65rem 0.65rem 0;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.35rem;
  left: 0.28rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brand-blue);
  opacity: 0.22;
}

.pull-quote p {
  margin: 0;
  font-size: 0.97rem;
  font-style: italic;
  color: var(--brand-navy);
  line-height: 1.68;
}

/* ── Custom checked list ─────────────────────────────────────────────────── */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.97rem;
  border-bottom: 1px solid rgba(0, 26, 45, 0.05);
}

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

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 1.15rem;
  height: 1.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%230060ff' stroke-width='1.2'/%3E%3Cpolyline points='4.5%2C8.5 7%2C11 11.5%2C5.5' stroke='%230060ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Mini service card grid ──────────────────────────────────────────────── */

.mini-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.mini-service-card {
  display: block;
  padding: 0.62rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: rgba(0, 96, 255, 0.04);
  border: 1px solid rgba(0, 96, 255, 0.12);
  border-left: 3px solid var(--brand-blue);
  border-radius: 0 0.5rem 0.5rem 0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mini-service-card:hover,
.mini-service-card:focus {
  background: rgba(0, 96, 255, 0.1);
  color: var(--brand-blue);
  text-decoration: none;
}

/* ── Section CTA block ───────────────────────────────────────────────────── */

.section-cta-note {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

/* ── Responsive overrides ────────────────────────────────────────────────── */

@media (min-width: 576px) {
  .mini-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .home-section {
    padding: 1.9rem 0;
  }

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

.floating-whatsapp{
  position: fixed;
  bottom:50%;  
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  color: #fff;
}

form .error{
  color: red;
}