/* =========================================================
   Network Phuket – Base Styles (Cleaned)
   ========================================================= */

/* --------------------------------
   Base / Reset
----------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #0e1420;
  background-color: #040714;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* --------------------------------
   CSS Variables (Theme)
----------------------------------- */

:root {
  --np-bg: #040714;
  --np-bg-alt: #050816;
  --np-bg-soft: #0c1020;
  --np-surface: #0c1020;
  --np-surface-soft: rgba(255, 255, 255, 0.04);
  --np-border-soft: rgba(255, 255, 255, 0.08);

  --np-text: #e5e7eb;
  --np-text-muted: #9ca3af;
  --np-text-soft: #6b7280;

  --np-primary: #ff4a17;
  --np-primary-soft: rgba(255, 74, 23, 0.15);
  --np-accent: #ffdd57;
  --np-accent-soft: rgba(255, 221, 87, 0.16);

  --np-radius-lg: 1.5rem;
  --np-radius-md: 1rem;
  --np-radius-sm: 0.5rem;
  --np-radius-pill: 999px;

  --np-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);

  --np-container-max: 72rem;
  --np-header-height: 4.5rem;
}

/* --------------------------------
   Typography Utilities
----------------------------------- */

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

.text-uppercase {
  text-transform: uppercase;
}

.cs-primary_font {
  font-family: inherit;
}

.cs-primary_color {
  color: var(--np-primary);
}

.cs-accent_color {
  color: var(--np-accent);
}

.cs-bold,
.cs-semi_bold {
  font-weight: 600;
}

.cs-m0 {
  margin: 0;
}

.cs-line_height_4 {
  line-height: 1.4;
}

.cs-font_50 {
  font-size: clamp(1.75rem, 3vw, 3.125rem);
}

/* --------------------------------
   Layout Utilities
----------------------------------- */

.container {
  width: 100%;
  max-width: var(--np-container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Simple flex "grid" */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

[class*="col-"] {
  padding-inline: 0.75rem;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }

  .col-lg-3.col-sm-6 {
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .col-xl-4 {
    width: 33.3333%;
  }

  .col-xl-8 {
    width: 66.6667%;
  }
}

/* Spacing helpers */

.cs-height_150 {
  height: 9.375rem;
}

.cs-height_145 {
  height: 9.0625rem;
}

.cs-height_130 {
  height: 8.125rem;
}

.cs-height_90 {
  height: 5.625rem;
}

.cs-height_80 {
  height: 5rem;
}

.cs-height_70 {
  height: 4.375rem;
}

.cs-height_45 {
  height: 2.8125rem;
}

.cs-height_40 {
  height: 2.5rem;
}

.cs-height_30 {
  height: 1.875rem;
}

/* Mobile overrides for spacers */

@media (max-width: 991.98px) {
  .cs-height_lg_80 {
    height: 5rem;
  }

  .cs-height_lg_70 {
    height: 4.375rem;
  }

  .cs-height_lg_45 {
    height: 2.8125rem;
  }

  .cs-height_lg_30 {
    height: 1.875rem;
  }

  .cs-height_lg_20 {
    height: 1.25rem;
  }

  .cs-height_lg_15 {
    height: 0.9375rem;
  }
}

/* --------------------------------
   Generic Background & Shape Helpers
----------------------------------- */

.cs-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cs-fixed_bg {
  background-attachment: fixed;
}

.cs-gradient_bg_1 {
  background: radial-gradient(circle at top, #1f2933 0, #020617 55%);
}

.cs-accent_bg {
  background-color: var(--np-primary);
}

.cs-shape_wrap_1,
.cs-shape_wrap_2,
.cs-shape_wrap_3,
.cs-shape_wrap_4 {
  position: relative;
  overflow: hidden;
}

.cs-shape_1,
.cs-shape_2,
.cs-shape_3,
.cs-shape_4 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
}

.cs-shape_1:nth-child(1),
.cs-shape_1:nth-child(2),
.cs-shape_1:nth-child(3) {
  background: radial-gradient(circle at top left, var(--np-primary-soft), transparent 55%);
}

.cs-shape_2>div {
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--np-primary-soft), transparent 70%);
  position: absolute;
  top: -4rem;
  right: -4rem;
}

.cs-shape_3 {
  top: 0;
}

.cs-shape_4 {
  background: radial-gradient(circle at 10% 20%, var(--np-accent-soft), transparent 55%);
}

/* --------------------------------
   Header & Navigation
----------------------------------- */

.cs-site_header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(4, 7, 20, 0.98), rgba(4, 7, 20, 0.92));
  backdrop-filter: blur(18px);
  color: #fff;
}

.cs-main_header {
  height: var(--np-header-height);
  display: flex;
  align-items: center;
}

.cs-main_header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cs-main_header_left {
  flex-shrink: 0;
}

.cs-site_branding img {
  height: 2.4rem;
}

/* Nav toggle */

.cs-nav_toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.45);
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.7);
}

.cs-nav_toggle_box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cs-nav_toggle_line {
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background-color: #e5e7eb;
}

/* Primary nav */

.cs-main_header_center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cs-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.cs-nav_list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cs-nav_list a {
  color: #e5e7eb;
  position: relative;
  padding-block: 0.25rem;
}

.cs-nav_list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--np-primary);
  transition: width 0.2s ease;
}

.cs-nav_list a:hover::after,
.cs-nav_list a:focus::after {
  width: 100%;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100%;
}


/* Mobile nav base hidden social */

.mobile-social-icons {
  display: none;
}

/* HEADER & NAV – RESPONSIVE / MOBILE MENU */

@media (max-width: 991px) {
  .cs-main_header {
    height: auto;
    padding-block: 0.75rem;
  }

  .cs-main_header_in {
    min-height: 64px;
    align-items: center;
  }

  .cs-nav_toggle {
    display: flex;
  }

  .cs-main_header_center {
    position: fixed;
    inset: 0;
    top: 64px;
    width: 100%;
    height: calc(100vh - 64px);
    pointer-events: none;
  }

  .cs-nav {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top, rgba(255, 74, 23, 0.35), transparent 62%),
      radial-gradient(circle at bottom, rgba(255, 120, 50, 0.14), #0c0c0c 92%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    padding: 32px 24px 24px;
    transform: translateY(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .cs-site_header.is-open .cs-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cs-nav_list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
  }

  .cs-nav_list .nav-item a {
    font-size: 1.05rem;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 0.08em;
    font-weight: bold;
    opacity: 0.95;
    transition: opacity 0.25s ease, transform 0.2s ease;
  }

  .mobile-social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 0;
  }

 .follow-us-text {
  margin: 0;
  margin-top: 0.5rem;
  margin-left: 25px;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.2s ease;
}


  .social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .social-button {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 24, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e7eb;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .social-button:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.7);
    border-color: #ff4a17;
  }
}

/* --------------------------------
   Side Header (off-canvas info)
----------------------------------- */

.cs-side_header {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.cs-side_header_overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.cs-side_header_in {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 80vw);
  height: 100%;
  background: #020617;
  color: #e5e7eb;
  padding: 1.75rem 1.5rem 2rem;
  overflow-y: auto;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.6);
}

.cs-side_header .cs-site_branding img {
  height: 2.1rem;
  margin-bottom: 1.5rem;
}

.cs-side_header_box {
  margin-bottom: 1.75rem;
}

.cs-side_header_heading {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.cs-side_header_title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
}

.cs-close {
  position: absolute;
  top: 1rem;
  right: calc(min(22rem, 80vw) + 1rem);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
}

.cs-close::before,
.cs-close::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transform-origin: center;
}

.cs-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cs-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Contact info list */

.cs-contact_info li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--np-text-muted);
  margin-bottom: 0.75rem;
}

.cs-contact_info svg {
  flex-shrink: 0;
}

/* Newsletter block */

.cs-newsletter_form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-newsletter_input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--np-text);
  font-size: 0.875rem;
}

.cs-newsletter_input::placeholder {
  color: var(--np-text-soft);
}

.cs-newsletter_btn {
  align-self: flex-start;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--np-primary);
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cs-newsletter_text {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--np-text-soft);
}

/* --------------------------------
   Social Buttons (shared)
----------------------------------- */

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #f9fafb;
  font-size: 0.9rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.social-button:hover {
  transform: translateY(-1px) scale(1.03);
  background: var(--np-primary);
  border-color: transparent;
}

/* --------------------------------
   Hero Section
----------------------------------- */

.cs-hero {
  position: relative;
  min-height: calc(100vh - var(--np-header-height));
  display: flex;
  align-items: center;
  color: #f9fafb;
  isolation: isolate;
}

.cs-hero_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02) brightness(0.8);
  z-index: -2;
}

.cs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.1), transparent 60%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.3), #020617 85%);
  z-index: -1;
}

.cs-hero_text {
  max-width: 32rem;
  padding-block: 4rem 6rem;
}

.cs-hero_title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cs-hero_subtitle {
  font-size: 0.95rem;
  color: var(--np-text-muted);
  margin-bottom: 1.6rem;
}

.cs-hero_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero buttons */

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--np-radius-pill);
  padding: 0.8rem 1.6rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.cs-btn1 {
  background: var(--np-primary);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.05), var(--np-shadow-soft);
}

.cs-btn2 {
  background: rgba(15, 23, 42, 0.7);
  color: #f9fafb;
  border-color: rgba(148, 163, 184, 0.5);
}

.cs-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.05), var(--np-shadow-soft);
}

/* Hero side social */

.cs-hero_social_wrap {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.cs-hero_social_title {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--np-text-muted);
  font-size: 0.7rem;
}

.cs-hero_social_links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cs-hero_social_links a {
  font-size: 0.8rem;
  color: var(--np-text-soft);
}

.cs-hero_social_links a:hover {
  color: #f9fafb;
}

/* Scroll down button */

.cs-down_btn {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8);
}

.cs-down_btn::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid #e5e7eb;
  border-left: none;
  border-top: none;
  transform: translate(-50%, -55%) rotate(45deg);
}

/* Hero responsive */

@media (max-width: 991.98px) {
  .cs-hero {
    min-height: 75vh;
  }

  .cs-hero_text {
    max-width: 100%;
    padding-block: 3rem 4rem;
  }

  .cs-hero_social_wrap {
    display: none;
  }
}

/* --------------------------------
   Section Headings & Text Buttons
----------------------------------- */

.cs-section_heading {
  color: #f9fafb;
}

/* Base section subtitle/title – last definition wins */

.cs-section_title {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 10px;
}

.cs-section_subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff4a17;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

/* Section intro paragraphs */

.cs-section_text {
  font-size: 0.95rem;
  color: var(--np-text-muted);
}

/* Text button with arrow */

.cs-text_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--np-primary);
}

.cs-text_btn svg {
  width: 1.1rem;
}

.cs-text_btn:hover {
  color: #fff;
}

/* Responsive adjustments */

@media (max-width: 991px) {
  .cs-section_heading.text-center {
    max-width: 26rem;
    margin-inline: auto;
  }

  .cs-section_title {
    font-size: 1.9rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-inline: 1.1rem;
  }

  .cs-section_title {
    font-size: 1.6rem;
  }
}

/* --------------------------------
   Fun Facts
----------------------------------- */

.cs-funfact_wrap_2 {
  margin-top: 2.5rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--np-radius-lg);
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(31, 41, 55, 0.9);
  position: relative;
  overflow: hidden;
}

.cs-funfact_shape {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background: radial-gradient(circle at top left, var(--np-primary-soft), transparent 60%);
}

.cs-funfacts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cs-funfact {
  padding: 1.1rem 0.75rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.cs-funfact_number {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.cs-plus {
  font-size: 1rem;
}

.cs-funfact_title {
  font-size: 0.9rem;
  color: var(--np-text-muted);
}

@media (max-width: 991.98px) {
  .cs-funfacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .cs-funfacts {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------
   Expertise Cards (4 videos)
----------------------------------- */

.cs-hobble {
  position: relative;
}

.cs-card {
  position: relative;
  display: block;
  border-radius: var(--np-radius-md);
  overflow: hidden;
  background: #020617;
  min-height: 12rem;
}

.cs-card .cs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-card_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.1));
}

.cs-card_info {
  position: absolute;
  inset-inline: 0.9rem;
  bottom: 0.9rem;
  color: #f9fafb;
}

.cs-card_title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cs-card_subtitle {
  font-size: 0.8rem;
  color: var(--np-text-soft);
}

.cs-hover_layer3 {
  position: absolute;
  inset: auto auto 0 0;
  width: 2.25rem;
  height: 0.2rem;
  border-radius: 999px;
}

/* --------------------------------
   SHARED SLIDER BASE
----------------------------------- */

.cs-slider {
  position: relative;
  width: 100%;
}

.cs-slider.cs-gap-24 .cs-slide {
  padding: 0 12px;
}

.cs-slider_container {
  position: relative;
  overflow: hidden;
  /* important for sliding cards */
}

.cs-slider_wrapper {
  position: relative;
  display: flex;
}

.cs-slide {
  min-width: 0;
  flex: 0 0 auto;
}

/* Slick Basics */

.cs-slider_wrapper .slick-slide {
  outline: none;
}

/* Pagination */

.cs-pagination {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Default style keeps the line (if you use it anywhere else) */
.cs-pagination::before {
  content: "";
  width: 3.5rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(55, 65, 81, 0.9);
}

/* Style 1 = dots only */
.cs-pagination.cs-style1 {
  margin-top: 32px;
}

/* Hide the line ONLY for style1 */
.cs-pagination.cs-style1::before {
  display: none;
}

/* Ensure slick dots are always centered */
.cs-pagination .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  width: auto;
}

/* Remove Slick default list spacing */
.cs-pagination .slick-dots li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-pagination .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(148, 163, 184, 0.35);
  text-indent: -9999px;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* Active dot pill */
.cs-pagination .slick-dots li.slick-active button {
  width: 22px;
  background: #ff4a17;
}

/* Slider arrows (generic) */

.cs-slider_arrows {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cs-slider_arrows .cs-left_arrow,
.cs-slider_arrows .cs-right_arrow {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hide duplicate pagination on desktop */

.cs-hidden_desktop {
  display: none;
}

@media (max-width: 991px) {
  .cs-hidden_desktop {
    display: block;
  }
}

/* --------------------------------
   PORTFOLIO SLIDER (OUR WORK)
----------------------------------- */

.cs-slider.cs-style3 {
  padding-inline: 12px;
}

.cs-portfolio {
  position: relative;
  display: block;
  border-radius: var(--np-radius-lg);
  overflow: hidden;
  min-height: 14rem;
  color: #f9fafb;
  background: #020617;
}

/* Enhanced style1 */

.cs-portfolio.cs-style1 {
  border-radius: 24px;
  min-height: 320px;
  background: #1f1f1f;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cs-portfolio.cs-style1:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
}

.cs-portfolio_bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.8);
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

.cs-portfolio_hover {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 55%),
    linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(24, 24, 24, 0.5));
  opacity: 0.92;
  transition: opacity 0.4s ease;
}

.cs-portfolio_info {
  position: absolute;
  inset-inline: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-portfolio_info_bg {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, #ff4a17, #f97316);
  opacity: 0.8;
  filter: blur(18px);
  transform: translateY(12px);
  z-index: -1;
}

.cs-portfolio_title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 2px;
}

.cs-portfolio_subtitle {
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

/* Hover effects */

.cs-portfolio.cs-style1:hover .cs-portfolio_bg {
  transform: scale(1.09);
}

.cs-portfolio.cs-style1:hover .cs-portfolio_hover {
  opacity: 1;
}

/* --------------------------------
   TIMELINE SLIDER (RIGHT-HAND)
----------------------------------- */

.cs-slider.cs-style1 {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.cs-slider_left,
.cs-slider_right {
  flex: 1;
}

.cs-slider_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cs-slider_right {
  position: relative;
}

/* Slider arrows style1 */

.cs-slider_arrows.cs-style1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.cs-slider_arrows.cs-style1 .cs-left_arrow,
.cs-slider_arrows.cs-style1 .cs-right_arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #262626;
  color: #e5e7eb;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.cs-slider_arrows.cs-style1 .cs-left_arrow:hover,
.cs-slider_arrows.cs-style1 .cs-right_arrow:hover {
  background: #ff4a17;
  color: #ffffff;
  border-color: #ff4a17;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.cs-slider_left .cs-section_subtitle {
  margin-bottom: 0.5rem;
}

/* Timeline cards */

.cs-time_line {
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
  color: #f9fafb;
}

.cs-time_line h2 {
  font-size: 1.05rem;
  margin: 0.25rem 0 0.3rem;
}

.cs-time_line p {
  font-size: 0.85rem;
  color: var(--np-text-soft);
}

/* style1 timeline */

.cs-time_line.cs-style1 {
  position: relative;
  padding: 20px 22px;
  border-radius: 16px;
  background: #202020;
  border: 1px solid rgba(77, 77, 77, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background 0.25s ease;
}

.cs-time_line.cs-style1:first-child {
  margin-top: 10px;
}

.cs-time_line.cs-style1+.cs-time_line.cs-style1 {
  margin-top: 14px;
}

.cs-time_line.cs-style1 h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  color: #ff4a17;
}

.cs-time_line.cs-style1 h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #f9fafb;
}

.cs-time_line.cs-style1 p {
  margin: 0;
  font-size: 0.9rem;
  color: #d1d5db;
}

.cs-time_line.cs-style1:hover {
  transform: translateY(-4px);
  background: #262626;
  border-color: #ff4a17;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Responsive */

@media (max-width: 991px) {
  .cs-slider.cs-style1 {
    flex-direction: column;
  }

  .cs-slider_left {
    order: 1;
  }

  .cs-slider_right {
    order: 2;
  }

  .cs-slider_arrows.cs-style1 {
    margin-top: 20px;
  }
}

/* --------------------------------
   SHAPES / BACKGROUND DECOR
----------------------------------- */

.cs-shape_wrap_2 {
  position: relative;
  overflow: hidden;
  padding-block: 80px;
  background:
    radial-gradient(circle at top right, rgba(255, 74, 23, 0.12), transparent 55%),
    radial-gradient(circle at bottom left, rgba(255, 140, 60, 0.1), transparent 50%),
    #181818;
}

.cs-shape_2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-shape_2>div {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45), transparent 70%);
  filter: blur(4px);
  opacity: 0.55;
  top: -120px;
  right: -80px;
}

/* Ensure container above shapes */

.cs-shape_wrap_2 .container {
  position: relative;
  z-index: 2;
}

/* --------------------------------
   GENERAL INTRO TEXT
----------------------------------- */

.cs-font_50.cs-line_height_4 {
  font-size: 1.9rem;
  line-height: 1.55;
  font-weight: 500;
  color: #e5e7eb;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}

@media (min-width: 992px) {
  .cs-font_50.cs-line_height_4 {
    font-size: 2.35rem;
    line-height: 1.45;
    padding-top: 70px;
  }
}

/* --------------------------------
   VIDEO BLOCK
----------------------------------- */

.cs-video_block {
  position: relative;
  display: block;
  border-radius: var(--np-radius-lg);
  overflow: hidden;
  min-height: 15rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cs-video_block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
}

/* style1 enhancements */

.cs-video_block.cs-style1 {
  width: 100%;
  border-radius: 28px;
  min-height: 340px;
  cursor: pointer;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cs-video_block.cs-style1::before {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(24, 24, 24, 0.35));
  opacity: 0.95;
  transition: opacity 0.35s ease;
}

.cs-video_block.cs-style1:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.95);
}

.cs-video_block.cs-style1:hover::before {
  opacity: 1;
}

.cs-player_btn {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid var(--np-primary);
}

.cs-player_btn span {
  width: 0;
  height: 0;
  border-left: 0.9rem solid #fff;
  border-top: 0.55rem solid transparent;
  border-bottom: 0.55rem solid transparent;
}

@media (max-width: 991px) {
  .cs-video_block.cs-style1 {
    min-height: 260px;
    border-radius: 22px;
  }
}

/* --------------------------------
   MOVING TEXT / MARQUEE
----------------------------------- */

.cs-moving_text_wrap {
  overflow: hidden;
  border-block: 1px solid rgba(31, 41, 55, 0.9);
  background: #020617;
  color: #f9fafb;
  font-size: 0.9rem;
  padding-block: 0.7rem;
}

.cs-moving_text_in {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: np-marquee 30s linear infinite;
}

.cs-moving_text {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@keyframes np-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------
   CTA SECTION
----------------------------------- */

.cs-cta {
  position: relative;
  border-radius: var(--np-radius-lg);
  overflow: hidden;
  color: #f9fafb;
  padding: 3rem 1.5rem;
  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
}

.cs-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
}

.cs-cta_in {
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
}

.cs-cta_title {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
}

.cs-cta_title i {
  font-style: italic;
  color: var(--np-accent);
}

@media (max-width: 991.98px) {
  .cs-cta {
    padding-inline: 1.25rem;
    margin-bottom: 20px;
  }
}

/* --------------------------------
   FOOTER
----------------------------------- */

.cs-fooer {
  padding-top: 4rem;
  background: #020617;
  color: #f9fafb;
  border-top: 1px solid rgba(17, 24, 39, 0.9);
}

.cs-fooer_main {
  padding-bottom: 2.5rem;
}

.cs-footer_item {
  margin-bottom: 2rem;
}

.cs-text_widget img {
  height: 2.3rem;
  margin-bottom: 0.75rem;
}

.cs-text_widget p {
  font-size: 0.9rem;
  color: var(--np-text-muted);
  margin-bottom: 0.4rem;
}


.socials-footer {
  margin-top: 0.6rem;
}

.cs-widget_title {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.cs-menu_widget li+li {
  margin-top: 0.3rem;
}

.cs-menu_widget a {
  font-size: 0.9rem;
  color: var(--np-text-muted);
}

.cs-menu_widget a:hover {
  color: #f9fafb;
}

/* Footer newsletter / bottom bar */

.stayconnected {
  margin-bottom: 0.75rem;
}

.cs-bottom_footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-block: 1rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--np-text-soft);
}

.cs-footer_links {
  display: flex;
  gap: 1rem;
}

.cs-footer_links a {
  color: var(--np-text-soft);
}

.cs-footer_links a:hover {
  color: #f9fafb;
}

@media (max-width: 767.98px) {
  .cs-bottom_footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------
   SCROLL UP BUTTON
----------------------------------- */

.cs-scrollup {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

.cs-scrollup svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--np-primary);
}

.cs-scrollup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --------------------------------
   VIDEO POPUP
----------------------------------- */

.cs-video_popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 70;
}

.cs-video_popup_overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
}

.cs-video_popup_content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cs-video_popup_container {
  position: relative;
  width: 100%;
  max-width: 48rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #020617;
}

.cs-video_popup_align {
  position: relative;
  padding-top: 56.25%;
}

.cs-video_popup_align .embed-responsive {
  position: absolute;
  inset: 0;
}

.embed-responsive-16by9 iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cs-video_popup_close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
}

.cs-video_popup_close::before,
.cs-video_popup_close::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 1rem;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  transform-origin: center;
}

.cs-video_popup_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cs-video_popup_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* --------------------------------
   TESTIMONIAL SECTION / BACKGROUND
----------------------------------- */

.cs-gradient_bg_1.cs-shape_wrap_3 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 74, 23, 0.12), transparent 55%),
    radial-gradient(circle at bottom left, rgba(255, 120, 50, 0.1), transparent 50%),
    #181818;
}

.cs-shape_3 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 0 0 40px;
  opacity: 0.8;
}

.cs-shape_3 svg {
  opacity: 0.75;
}

.cs-shape_wrap_3 .container {
  position: relative;
  z-index: 2;
}

/* Global section styling for testimonials */

.cs-testimonial_section_head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: #f9fafb;
}

.cs-pill_label {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  margin-bottom: 14px;
}

/* Testimonial subtitle (body text) */

.cs-testimonial_section_head .cs-section_subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #9ca3af;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Testimonial slider layout */

.cs-testimonial_slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
}

.cs-testimonial_slider::before {
  content: "";
  position: absolute;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.55), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.cs-testimonial_slider_right,
.cs-testimonial_slider_left {
  width: 100%;
  z-index: 1;
}

.cs-testimonial_slider_right {
  display: flex;
  justify-content: center;
}

/* wrapper for cards */

.slider-for.cs-style1 {
  max-width: 640px;
  width: 100%;
  position: relative;
}

/* Testimonial cards */

.cs-testimonial.cs-style1 {
  position: relative;
  max-width: 640px;
  padding: 30px 30px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.16), transparent 45%),
    rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  overflow: hidden;
}

.cs-testimonial.cs-style1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #06b6d4, #6366f1, #f97316);
  opacity: 0.9;
}

.cs-testimonial.cs-style1::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04) 0, transparent 55%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* badge */

.cs-testimonial_badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* quote icon */

.cs-testimonial_quote {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(31, 41, 55, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  position: relative;
  z-index: 1;
}

.cs-testimonial_quote svg {
  width: 22px;
  height: 20px;
}

/* main text */

.cs-testimonial_text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* rating + label row */

.cs-testimonial_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cs-testimonial_label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

/* rating stars */

.cs-rating {
  position: relative;
  width: 118px;
  height: 18px;
}

.cs-rating_bg,
.cs-rating_percentage {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

.cs-rating_bg {
  opacity: 0.2;
}

/* person block */

.cs-testimonial_person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.cs-testimonial_person_info {
  display: flex;
  flex-direction: column;
}

.cs-testimonial_avatar_name {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #f9fafb;
}

.cs-testimonial_avatar_designation {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

/* Avatar nav row */

.slider-nav.cs-style1 {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.7) transparent;
}

.slider-nav.cs-style1::-webkit-scrollbar {
  height: 4px;
}

.slider-nav.cs-style1::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}

.slider-nav.cs-style1 .slider-for_item {
  flex: 0 0 auto;
  opacity: 0.45;
  transform: scale(0.9);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.slider-nav.cs-style1 .slider-for_item.slick-current {
  opacity: 1;
  transform: scale(1.04);
}

/* avatar button */

.cs-avatar_btn {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #e5e7eb;
}

/* avatar frame */

.cs-rotate_img {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  padding: 3px;
  background: conic-gradient(from 140deg, #f97316, #facc15, #22c55e, #06b6d4, #8b5cf6, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-rotate_img_in {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #020617;
}

.cs-rotate_img_in img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.slider-nav.cs-style1 .slider-for_item.slick-current .cs-rotate_img_in img {
  transform: scale(1.08);
}

/* avatar name */

.cs-avatar_name {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Slider state – show only active */

.slider-for.cs-style1 .slider-for_item {
  display: none;
}

.slider-for.cs-style1 .slider-for_item.is-active,
.slider-for.cs-style1 .slider-for_item.slick-current {
  display: block;
}

/* Responsive */

@media (max-width: 991px) {
  .cs-testimonial_slider {
    gap: 24px;
  }

  .cs-testimonial.cs-style1 {
    padding: 24px 22px 22px;
  }

  .cs-rotate_img {
    width: 70px;
    height: 70px;
  }
}
/* --------------------------------
   BLOG / POSTS (Images Smaller)
----------------------------------- */

.cs-post {
  border-radius: var(--np-radius-md);
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(31, 41, 55, 0.9);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.cs-post_thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 20;
}


.cs-post_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-post_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.2),
    rgba(15, 23, 42, 0.9)
  );
  opacity: 0;
  transition: opacity 0.15s ease;
}

.cs-post:hover .cs-post_overlay {
  opacity: 1;
}

.cs-post_info {
  padding: 0.9rem 1rem 1.1rem;
  color: #f9fafb;
}

.cs-posted_by {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--np-text-soft);
}

.cs-post_title a {
  font-size: 0.95rem;
  line-height: 1.35;
}

/* --------------------------------
   GUIDE / PAGE HEADING
----------------------------------- */

.cs-page_heading {
  position: relative;
  padding-block: 6rem 4rem;
  color: #f9fafb;
}

.cs-page_heading[data-src] {
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.65), #020617),
    url("../img/shop_hero_bg.jpeg");
  background-size: cover;
  background-position: center;
}

.cs-page_heading_overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.95));
  opacity: 0.7;
  pointer-events: none;
}

.cs-page_heading_in {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
}

.cs-page_title {
  margin-bottom: 0.75rem;
}

.cs-page_subtitle {
  font-size: 0.98rem;
  color: var(--np-text-muted);
  margin-bottom: 1rem;
}

.cs-page_meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--np-text-soft);
  margin-bottom: 1.75rem;
}

.cs-page_cta {
  margin-bottom: 2rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 0.7rem;
  color: var(--np-text-soft);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  margin-right: 0.4rem;
  color: var(--np-text-soft);
}

/* --------------------------------
   PRODUCT LAYOUT & GALLERY
----------------------------------- */

.cs-section_product {
  color: #f9fafb;
}

.cs-single_product_layout {
  align-items: flex-start;
  row-gap: 2.5rem;
}

.cs-single_product_thumb {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  border-radius: var(--np-radius-lg);
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.85);
}

.cs-single_product_thumb_item {
  overflow: hidden;
  border-radius: var(--np-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}

.cs-single_product_thumb_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.cs-single_product_thumb_item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.cs-single_product_thumb_item.is-active {
  border-color: var(--np-primary);
}

@media (max-width: 575.98px) {
  .cs-single_product_thumb {
    grid-template-columns: 1fr;
  }
}

/* Product details */

.cs-single-product-details {
  max-width: 32rem;
  margin-inline: auto;
}

.cs-single_product_title {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  margin-bottom: 0.75rem;
}

.cs-single_product-price_review {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.cs-single_product_price {
  font-size: 1.4rem;
}

.cs-single_product_reviews {
  font-size: 0.8rem;
  color: var(--np-text-soft);
}

/* rating small */

.cs-rating_cs-size_sm {
  font-size: 0.75rem;
}

/* Description blocks */

.cs-single-product-details-text p {
  font-size: 0.95rem;
  color: var(--np-text-muted);
  margin-bottom: 0.65rem;
}

/* Highlights list */

.cs-single_product_highlights h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--np-text-soft);
  margin-bottom: 0.5rem;
}

.cs-single_product_highlights ul {
  padding-left: 0;
  list-style: none;
}

.cs-single_product_highlights li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--np-text-muted);
  margin-bottom: 0.4rem;
}

.cs-single_product_highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--np-primary);
}

/* Product CTA */

.cs-product_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: var(--np-radius-pill);
  background: var(--np-primary);
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  border: 1px solid transparent;
  box-shadow: var(--np-shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cs-product_btn:hover {
  transform: translateY(-1px);
  background: #ff5d2f;
}

/* Guarantee block */

.cs-product_guarantee {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--np-text-soft);
}

.cs-product_guarantee_badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Small info list under product */

.cs-single_product_info {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--np-text-soft);
}

.cs-single_product_info li {
  margin-bottom: 0.25rem;
}

/* --------------------------------
   PRICING / FEATURES BLOCK
----------------------------------- */

.cs-pricing_table {
  border-radius: var(--np-radius-lg);
  padding: 1.75rem 1.5rem 1.9rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(31, 41, 55, 0.95);
}

.cs-pricing_feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.4rem;
  margin-bottom: 1.75rem;
}

.cs-pricing_feature li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--np-text-muted);
}

.cs-feature_icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  flex-shrink: 0;
}

.cs-pricing_btn_wrap .cs-text_btn {
  font-size: 0.8rem;
}

@media (max-width: 767.98px) {
  .cs-pricing_feature {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------
   TABS (Overview / Details / Reviews)
----------------------------------- */

.cs-product_meta_info {
  color: #f9fafb;
}

.cs-tabs.cs-style1 {
  border-radius: var(--np-radius-lg);
  padding: 1.75rem 1.5rem 2rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(31, 41, 55, 0.95);
}

.cs-product_tab {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.cs-product_tab li {
  border-radius: 999px;
}

.cs-product_tab a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--np-text-soft);
}

.cs-product_tab li.active a {
  background: var(--np-primary);
  color: #f9fafb;
}

.cs-tab_body {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--np-text-muted);
}

.cs-tab {
  display: none;
}

.cs-tab.active {
  display: block;
}

/* Overview list */

.cs-tab_list {
  padding-left: 0;
  list-style: none;
  margin-top: 0.75rem;
}

.cs-tab_list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
}

.cs-tab_list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--np-primary);
}

/* Product details table */

.cs-product_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cs-product_table td {
  padding: 0.5rem 0.2rem;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.cs-product_table td:first-child {
  width: 32%;
  color: var(--np-text-soft);
}

/* Reviews */

.cs-client_review_list {
  list-style: none;
  padding-left: 0;
}

.cs-client_review {
  border-radius: var(--np-radius-md);
  padding: 1.1rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.cs-review_media {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.cs-review_media_thumb img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  object-fit: cover;
}

.cs-review_posted_by {
  font-size: 0.75rem;
  color: var(--np-text-soft);
  margin-bottom: 0.45rem;
}

.cs-review_text {
  font-size: 0.9rem;
  color: var(--np-text-muted);
}

.cs-review_form_note {
  font-size: 0.8rem;
  color: var(--np-text-soft);
}

/* Review form fields */

.cs-form_field {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--np-text);
  font-size: 0.88rem;
}

.cs-form_field::placeholder {
  color: var(--np-text-soft);
}

.cs-review_form_check label {
  font-size: 0.78rem;
  color: var(--np-text-soft);
}

/* Space between pricing table and tabs card */
.cs-pricing_table {
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .cs-pricing_table {
    margin-bottom: 40px;
  }
}


/* --------------------------------
   GENERAL SECTION STYLING FOR SECTIONS
----------------------------------- */

section {
  position: relative;
}

/* Additional responsive spacing */

@media (max-width: 991px) {
  .cs-height_lg_80 {
    height: 80px;
  }

  .cs-height_lg_45 {
    height: 45px;
  }

  .cs-height_lg_20 {
    height: 20px;
  }

  .cs-height_lg_30 {
    height: 30px;
  }
}

.guide-success {
      max-width: 700px;
      margin: 120px auto 80px;
      text-align: center;
    }

    .guide-success h1 {
      margin-bottom: 20px;
      color: white;
    }

    .success-buttons {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .success-buttons a.button {
      background: #ff4a17;
      color: #fff;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
    }

    .success-buttons a.secondary {
      color: #ff4a17;
      text-decoration: underline;
      font-weight: 500;
    }

    /* Network Phuket - Membership / Insider Updates page */

.np-membership {
  padding-top: 110px; /* space for sticky header */
}

/* Hero */
.np-hero {
  padding: 70px 0 40px;
}

.np-hero-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

.np-logo {
  width: 110px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
}

.np-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 74, 23, 0.14);
  border: 1px solid rgba(255, 74, 23, 0.35);
  margin-bottom: 12px;
}

.np-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 10px 0 10px;
}

.np-subtitle {
  max-width: 680px;
  margin: 0 auto 18px;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.6;
}

/* Form */
.np-form {
  max-width: 520px;
  margin: 18px auto 0;
}

.np-input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  outline: none;
  margin-bottom: 12px;
}

.np-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.np-btn-primary {
  background: #ff4a17;
  color: #fff;
  border-color: rgba(255, 74, 23, 0.7);
}

.np-btn-primary:hover {
  filter: brightness(1.05);
}

.np-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.np-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.np-small {
  margin: 10px 0 0;
  font-size: 13px;
  opacity: 0.75;
}

.np-cta-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  max-width: 520px;
  margin: 14px auto 0;
}

@media (max-width: 575px) {
  .np-title { font-size: 34px; }
  .np-cta-row { grid-template-columns: 1fr; }
}

/* Sections */
.np-section {
  padding: 50px 0;
}

.np-section-muted {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.np-h2 {
  font-size: 28px;
  margin: 0 0 18px;
  text-align: center;
}

.np-text {
  max-width: 860px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.7;
  text-align: center;
}

.np-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

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

.np-card {
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.np-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.np-card p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

/* Split block */
.np-split {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

@media (max-width: 991px) {
  .np-split { grid-template-columns: 1fr; }
}

.np-box {
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 74, 23, 0.10);
  border: 1px solid rgba(255, 74, 23, 0.25);
  text-align: center;
}

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

/* Fix global body color (#0e1420) on dark background */
.np-membership {
  color: var(--np-text);
}

.np-membership p,
.np-membership li,
.np-membership small {
  color: var(--np-text-muted);
}

.np-membership h1,
.np-membership h2,
.np-membership h3 {
  color: #f9fafb;
}

/* ================================
   Network Phuket – Lead Magnet Block
================================== */

.np-lead {
  padding: 10px 0;
}

.np-lead-card {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.np-lead-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 10%, rgba(255, 74, 23, 0.25), transparent 45%),
              radial-gradient(circle at 85% 65%, rgba(255, 221, 87, 0.14), transparent 45%);
  pointer-events: none;
}

.np-lead-left,
.np-lead-right {
  position: relative;
  z-index: 1;
}

.np-lead-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.np-lead-title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  color: #f9fafb;
}

.np-lead-subtitle {
  margin: 0 0 16px;
  color: rgba(229, 231, 235, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.np-lead-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.np-lead-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(229, 231, 235, 0.88);
  font-size: 0.95rem;
}

.np-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: rgba(255, 74, 23, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 74, 23, 0.16);
  flex: 0 0 auto;
}

.np-lead-form {
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.np-label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.72);
}

.np-input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.np-input::placeholder {
  color: rgba(156, 163, 175, 0.75);
}

.np-input:focus {
  border-color: rgba(255, 74, 23, 0.8);
  transform: translateY(-1px);
}

.np-btn {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #ff4a17;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, background 0.15s ease;
}

.np-btn:hover {
  transform: translateY(-1px);
  background: #ff5d2f;
}

.np-fine {
  margin: 12px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(156, 163, 175, 0.85);
}

.np-success {
  margin: 12px 0 0;
  color: rgba(34, 197, 94, 0.95);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .np-lead-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}


.cs-single_product_title {
  color: white;
  margin-top: 20px;
}
