:root {
  --bg: #eef6fb;
  --bg-soft: #f8fbfe;
  --ink: #162338;
  --muted: #5c6d83;
  --line: rgba(32, 65, 116, 0.12);
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #243760;
  --accent: #3cc1e8;
  --accent-strong: #5b53c7;
  --accent-soft: #dbf5fd;
  --leaf: #5f8be6;
  --shadow: 0 24px 70px rgba(24, 45, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

p{color: var(--muted);
    line-height: 1.7;}
    
    li {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fcff 0%, #edf4fb 100%);
}

.wc-block-components-title.wc-block-components-title {
    max-width: 100%;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
  position: relative;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  position: sticky;
  top: 16px;
  z-index: 5;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 68px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.brand-name,
.brand-tag,
.eyebrow,
.section-kicker,
.card-index,
.timeline span,
.stat-label,
.metric-label,
.contact-list span {
  margin: 0;
}

.brand-name,
h1,
h2,
h3,
.stat-value,
.metric-value,
.mini-title {
  font-family: "Space Grotesk", sans-serif;
}

.brand-name {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 24px;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 245, 255, 0.92));
  box-shadow: var(--shadow);
}

.hero > *,
.two-column > *,
.split-feature > *,
.origin-section > *,
.contact-section > *,
.section-heading > * {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.stat-label,
.card-index,
.timeline span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  margin: 18px 0;
  max-width: 11ch;
}

.hero-text,
.section p,
.info-card p,
.feature-list p,
.timeline p,
.product-card p,
.contact-copy p,
.contact-list p,
.hero-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7fcff;
  box-shadow: 0 14px 30px rgba(67, 113, 208, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: rgba(32, 65, 116, 0.16);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-card {
  border-radius: 28px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid rgba(32, 65, 116, 0.1);
  min-height: 180px;
}

.hero-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(44, 198, 232, 0.18), rgba(91, 83, 199, 0.2));
  color: var(--ink);
}

.hero-card-large .stat-text,
.hero-card-large .stat-label {
  color: var(--muted);
  width: 100%;
  max-width: 100%;
}

.hero-card-brand {
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-top: 20px;
}

.hero-logo {
  width: min(100%, 240px);
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 4.8rem;
  margin: 8px 0;
  line-height: 1;
}

.mini-title {
  margin: 12px 0 6px;
  font-size: 1.45rem;
}

.marquee-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.marquee-band p {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

.section {
  margin-top: 24px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.two-column,
.split-feature,
.origin-section,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  max-width: 12ch;
}

.section-heading {
  display: block;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 8px 0 0;
  max-width: 100%;
  text-align: center;
}

.value-grid,
.product-grid,
.package-grid,
.metrics-section {
  display: grid;

  gap: 18px;
}

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

.info-card,
.product-card,
.metric-card {
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(32, 65, 116, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.accent-card {
  background: linear-gradient(135deg, rgba(60, 193, 232, 0.12), rgba(91, 83, 199, 0.1));
}

.info-card h3,
.product-card h3,
.feature-list h3,
.timeline h3 {
  margin: 12px 0 10px;
  font-size: 1.5rem;
  text-transform: capitalize;
}

.dark-panel {
  background: linear-gradient(145deg, rgba(32, 57, 101, 0.98), rgba(86, 81, 188, 0.96));
  border-radius: 30px;
  padding: 28px;
  color: #f5faff;
  min-height: 100%;
}

.dark-panel p {
  color: rgba(245, 250, 255, 0.82);
}

.feature-list {
  display: grid;
  gap: 16px;
  height: 500px;
  overflow-y: scroll;
}

.feature-list article {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(32, 65, 116, 0.1);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(32, 65, 116, 0.1);
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong), transparent);
}

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

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

.product-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: ctop;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(60, 193, 232, 0.14), rgba(91, 83, 199, 0.12));
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(32, 65, 116, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(24, 45, 92, 0.08);
}

.package-card h3,
.package-list {
  margin: 0;
}

.package-card p {
  margin: 0;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
}

.package-price span {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.package-card-featured {
  background: linear-gradient(160deg, rgba(60, 193, 232, 0.16), rgba(91, 83, 199, 0.14), rgba(255, 255, 255, 0.98));
  border-color: rgba(91, 83, 199, 0.18);
}

.package-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.package-card .button {
  margin-top: auto;
}

.package-note {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

/*.metrics-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}*/

.metric-card {
  text-align: center;
  padding: 28px 20px;
}

.metric-value {
  margin: 0 0 8px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.origin-map {
  min-height: 360px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 65, 116, 0.1);
  background:
    radial-gradient(circle at 20% 25%, rgba(60, 193, 232, 0.24), transparent 12rem),
    radial-gradient(circle at 80% 30%, rgba(91, 83, 199, 0.22), transparent 10rem),
    linear-gradient(135deg, #203966, #4b4db3);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.7;
}

.map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(60, 193, 232, 0.16);
}

.map-dot-one {
  top: 26%;
  left: 22%;
}

.map-dot-two {
  top: 40%;
  left: 68%;
}

.map-dot-three {
  top: 68%;
  left: 54%;
  background: var(--leaf);
  box-shadow: 0 0 0 10px rgba(95, 139, 230, 0.16);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-list p {
  margin: 0;
}

.contact-list span {
  display: inline-block;
  min-width: 82px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(32, 65, 116, 0.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 65, 116, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(245, 250, 255, 0.96);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input,
.contact-form textarea,
.button {
  max-width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .site-header {
    position: static;
  }

  .hero,
  .two-column,
  .split-feature,
  .origin-section,
  .contact-section,
  .timeline,
  .product-grid,
  .package-grid,
  .value-grid,
  .metrics-section,
  .marquee-band {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 20px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 28px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-card-large {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    padding: 22px 18px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-lockup {
    width: 100%;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .site-nav a {
    display: block;
  }

  .hero-panel,
  .marquee-band {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .package-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .contact-list span {
    min-width: 68px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
    max-width: 100%;
  }

  .section,
  .hero {
    border-radius: 28px;
  }

  .origin-map {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 16px, 1200px);
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    padding: 18px 16px;
  }

  .brand-lockup {
    align-items: flex-start;
    gap: 12px;
  }

  .brand-logo {
    width: 56px;
  }

  .brand-name {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
  }

  .brand-tag {
    font-size: 0.8rem;
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .eyebrow,
  .section-kicker,
  .stat-label,
  .card-index,
  .timeline span {
    letter-spacing: 0.14em;
    font-size: 0.7rem;
  }

  .hero-text,
  .section p,
  .info-card p,
  .feature-list p,
  .timeline p,
  .product-card p,
  .contact-copy p,
  .contact-list p,
  .hero-card p,
  .package-list {
    line-height: 1.6;
  }

  .hero-card,
  .info-card,
  .product-card,
  .metric-card,
  .package-card,
  .feature-list article,
  .timeline article,
  .contact-form {
    padding: 20px;
  }

  .marquee-band {
    padding: 14px 16px;
  }

  .package-price {
    font-size: clamp(1.8rem, 10vw, 2.2rem);
  }

  .package-price span {
    font-size: 0.76rem;
  }

  .metric-card {
    padding: 24px 18px;
  }
}


.package-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.packtab { display: none; }
#tab-logo { display: grid; }


p.section-kicker a {
    display: inline-flex;
    margin: 0 6px;
}

.contact-form p br {
    display: none;
}

.contact-form p label {
    margin-bottom: 10px;
    color: #000;
}

.contact-form input[type="submit"] {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #f7fcff;
    box-shadow: 0 14px 30px rgba(67, 113, 208, 0.24);
    border-radius: 50px;
}

a.wc-block-components-checkout-return-to-cart-button {
    display: none !important;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #f7fcff;
    box-shadow: 0 14px 30px rgba(67, 113, 208, 0.24);
    border-radius: 50px;
    border: none;
    }


.hero-copy h1 {
  font-size: 40px;
  line-height: 0.96;
  margin: 18px 0;
  max-width: 100%;
}

ul.copylink {
    text-align: right;
    display: inline-block;
    width: 59%;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.copylink li {
    display: inline;
    margin-left: 26px;
}

ul.copylink li a {
    color: var(--muted);
    font-size: 16px;
    text-decoration: none;
}

.portslider img {width:100%;max-width:100%;border-radius: 34px;}

.portslider img , .product-card , .package-card {  transition: 0.3s; }
.product-card:hover , .package-card:hover{box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;}

.portslider img:hover {
  transform: translateY(-10px) !important;box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.portslider .slick-slide {
    margin: 40px 0; background: transparent;padding: 0 10px; 
}

.package-card .button:hover {     background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #f7fcff;
    box-shadow: 0 14px 30px rgba(67, 113, 208, 0.24); }
    
    
    p.content {
    display: none;
}


/* 150% Scaling (1.5 dppx) ke liye */
@media screen and (min-resolution: 1.5dppx), 
       screen and (-webkit-min-device-pixel-ratio: 1.5) {
    body {
        zoom: 80%;
    }
}