/* Reset cơ bản */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", sans-serif;
}
a {
    text-decoration: none;
}
body {
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-size:15px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.fw300 {
	font-weight:300;
}
.fw400 {
	font-weight:400;
}
.fw500 {
	font-weight:500;
}
.fw600 {
	font-weight:600;
}
.fw700 {
	font-weight:700;
}
.fw800 {
	font-weight:800;
}
.fs11 {font-size:11px;}
.fs12 {font-size:12px;}
.fs13 {font-size:13px;}
.fs14 {font-size:14px;}
.fs15 {font-size:15px;}
.fs16 {font-size:16px;}
.fs17 {font-size:17px;}
.fs18 {font-size:18px;}
.fs19 {font-size:19px;}
.fs20 {font-size:20px;}
.fs21 {font-size:21px;}
.fs22 {font-size:22px;}
.fs23 {font-size:23px;}
.fs24 {font-size:24px;}
.fs25 {font-size:25px;}
.fs26 {font-size:26px;}
.fs27 {font-size:27px;}
.fs28 {font-size:28px;}
.fs29 {font-size:29px;}
.fs30 {font-size:30px;}
.fs35 {font-size:35px;}
.fs40 {font-size:40px;}
.fs45 {font-size:45px;}
.fs50 {font-size:50px;}
.fs55 {font-size:55px;}
.fs60 {font-size:60px;}
.fs65 {font-size:65px;}
.fs85 {font-size:85px;}
@media (max-width: 729px)
{
	
.fs13 {font-size:12px;}
.fs14 {font-size:13px;}
.fs15 {font-size:14px;}
.fs16 {font-size:15px;}
.fs17 {font-size:16px;}
.fs18 {font-size:17px;}
.fs19 {font-size:18px;}
.fs20 {font-size:19px;}
.fs21 {font-size:20px;}
.fs22 {font-size:21px;}
.fs23 {font-size:22px;}
.fs24 {font-size:23px;}
.fs25 {font-size:24px;}
.fs26 {font-size:20px;}
.fs27 {font-size:20px;}
.fs28 {font-size:20px;}
.fs29 {font-size:20px;}
.fs30 {font-size:20px;}
.fs35 {font-size:25px;}
.fs40 {font-size:25px;}
.fs45 {font-size:25px;}
.fs50 {font-size:30px;}
.fs55 {font-size:30px;}
.fs60 {font-size:40px;}
.fs65 {font-size:40px;}
.fs85 {font-size:65px;}
}
.pt0 { 	padding-top:0px; }
.pt1 { 	padding-top:0px; }
.pt2 { 	padding-top:20px; }
.pt3 { 	padding-top:30px; }
.pt4 { 	padding-top:40px; }
.pt5 { 	padding-top:50px; }
.pb0 { 	padding-bottom:0px; }
.pb1 { 	padding-bottom:10px; }
.pb2 { 	padding-bottom:20px; }
.pb3 { 	padding-bottom:30px; }
.pb4 { 	padding-bottom:40px; }
.pb5 { 	padding-bottom:50px; }
.mt0 { 	margin-top:0px; }
.mt1 { 	margin-top:10px; }
.mt2 { 	margin-top:20px; }
.mt3 { 	margin-top:30px; }
.mt4 { 	margin-top:40px; }
.mt5 { 	margin-top:50px; }
.mb0 { 	margin-bottom:0px; }
.mb1 { 	margin-bottom:10px; }
.mb2 { 	margin-bottom:20px; }
.mb3 { 	margin-bottom:30px; }
.mb4 { 	margin-bottom:40px; }
.mb5 { 	margin-bottom:50px; }
.pr0 { 	padding-right:0px; }
.pl0 { 	padding-left:0px; } 
.tC {
  text-align: center;
}
.tL {
  text-align: left;
}
.tR {
  text-align: right;
}

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

/* HEADER */
.header {
    width: 100%;
    padding:0;
    background: transparent;
    z-index: 10;
    position: absolute;
    top: 0px;
    left: 0px;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav ul li a:hover {
  color: #ffd54f;
}

/* BUTTONS */
.header-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding:15px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-light {
  background: #fff;
  color: #00a7bc;
}

.btn-primary {
  background: #00a7bc;
  color: #fff;
}

.btn:hover {
  opacity: 0.85;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav,
  .header-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .container {
    justify-content: space-between;
  }

  .logo img {
    height: 40px;
  }
}



.cover {
    background: url(img/cover_bg.png) no-repeat;
    background-size: cover;
}
.cover img {
    width: 100%;
    height: auto;
}

.head {
    text-align: center;
}

.head h2 {
  font-size: 46px;
  color: #444050;
  font-weight: 700;
    margin-bottom: 10px;
}
.head  .subtitle {
  color: #444050;
  margin-bottom: 30px;
  font-size: 28px;
}


.section-solution {
    background: #fff url(img/bg_solution.png) no-repeat center;
    padding: 80px 0;
    background-size: auto 100%;
}

.section-solution .container {
}

.solution-content {
  flex: 1;
}




.solution-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: space-between;
    align-items: center;
}

.solution-tabs .tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 40px;
    padding-left: 5px;
	padding-right:25px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
    height: 45px;
    border: none;
    font-size: 24px;
    border: 1px solid #CDCCCE;
}
.solution-tabs .tab span {
    height: 30px;
    width: 30px;
    background-color: #fff;
    display: flex;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
}

/* === Scroll ngang trên mobile === */
@media (max-width: 768px) {
  .solution-tabs {
    flex-wrap: nowrap;              /* không xuống dòng */
    overflow-x: auto;               /* bật cuộn ngang */
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    justify-content: flex-start;    /* căn trái */
    scroll-snap-type: x mandatory;  /* cuộn mượt từng nút */
    padding-bottom: 5px;
	
  }

  .solution-tabs::-webkit-scrollbar {
    display: none; /* ẩn thanh cuộn */
  }

  .solution-tabs .tab {
    flex: 0 0 auto;                 /* cố định độ rộng mỗi tab */
    scroll-snap-align: start;
    font-size: 18px;                /* giảm cỡ chữ cho vừa mobile */
    white-space: nowrap;            /* không cho xuống dòng */
  }
}


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

.solution-image {
  flex: 0 0 40%;
  max-width: 40%;
}

.solution-image img {
  width: 100%;
  height: auto;
  display: block;
}

.solution-text {
  flex: 0 0 60%;
  max-width: 60%;
}

@media (max-width: 768px) {
  .solution-content {
    flex-direction: column;
  }

  .solution-image,
  .solution-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.solution-tabs .tab img {
  height: 18px;
}

.solution-tabs .tab.active {
  background: #00bcd4;
  color: #fff;
  border: none;
}



/* Nội dung text */
.solution-text h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.solution-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature {
    border-left: 4px solid #C0BFC4;
    padding-left: 20px;
	opacity:0.8
}
.feature h4 {
  font-weight: 600;
  color: #333;
  position: relative;
  margin-bottom: 5px;
}

.feature.active {
  border-color:#00bcd4;
  opacity:1;
}

.solution-footer {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.solution-footer .btn-cta {
    height: 60px;
    padding-right: 10px;
}
.solution-footer .btn-cta span {
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #444;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00bcd4;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  opacity: 0.9;
}

/* Hình ảnh */
.solution-image img {
  max-width: 450px;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .section-solution .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .solution-image img {
    max-width: 300px;
  }

  .solution-tabs {
    justify-content: center;
  }

  .solution-text {
    text-align: left;
  }
}


.section-feature {
  background: #faf9fc;
  padding: 80px 20px;
}

.section-feature .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-feature .head {
  margin-bottom: 50px;
}

/* Feature item */
.feature-item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: stretch; /* giúp ảnh và text cao bằng nhau */
}

.feature-image {
  flex: 0 0 30%;
  max-width: 30%;
  position: relative;
  overflow: hidden;
}

.feature-image::before {
  content: "";
  display: block;
  padding-top: 100%; /* giữ tỷ lệ vuông (1:1) */
}

.feature-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill khung */
  display: block;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-content a.btn-outline {
    width: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
  }

  .feature-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .feature-image::before {
    padding-top: 100%; /* vẫn giữ vuông trên mobile */
  }
}

/* Hình ảnh */
.feature-image {
  flex: 1;
  background: #d8d8d8; /* placeholder */
  min-height: 300px;
}

/* Nội dung */
.feature-content {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content h3 {
  color: #3f3d56;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Nút */
.btn-outline {
  display: inline-block;
  border: 1px solid #00bcd4;
  color: #00bcd4;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #00bcd4;
  color: #fff;
}



.feature-item.reverse .feature-image {
    order: 2;
}
 
@media (max-width: 992px) {


  .feature-content {
    padding: 30px;
  }

  .feature-image {
    min-height: 220px;
	        order: 1;
  }
}


.section-customer {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.section-customer h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3f3d56;
  margin-bottom: 40px;
}

.customer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #80839029;
}

/* phần trên */
.customer-top {
  padding: 20px 25px;
}

.store-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.review {
  font-style: italic;
  color: #333;
  line-height: 1.6;
}

/* phần dưới */
.customer-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.info h4 {
  margin: 0;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.info p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* Swiper arrow */
.swiper-button-next,
.swiper-button-prev {
  color: #444;
  background: rgba(255, 255, 255, 0.8);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.swiper-pagination-bullet {
  background: #00bcd4;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .customer-card {
    margin: 0 10px;
  }
}

.section-customer .swiper.customer-swiper {
    padding-bottom: 50px;
}


    :root {
      --psnk-bg: #fbfafc;
      --psnk-accent: #00b9bf;
      --psnk-accent-dark: #009aa2;
      --psnk-primary: #232328;
      --psnk-soft: #e6fbfd;
      --psnk-card-radius: 18px;
      --psnk-shadow: 0 12px 30px rgba(29,31,41,0.08);
      --psnk-popular-red: #ff4f4f;
      --psnk-purple: #6b55ff;
    }

#psnk-pricing-section {
    padding: 60px 24px;
    background: #fff url(img/bg_psnk.png)  no-repeat center;
    color: var(--psnk-primary);
    box-sizing: border-box;
    background-size: auto 100%;
}
    /* Inner centered column */
    #psnk-pricing-section .psnk-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    /* Title */
    #psnk-pricing-section h2.psnk-title {
      font-size: 48px;
      margin: 0 0 18px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    /* Toggle */
.psnk-toggle-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}
    .psnk-toggle {
      background: #e7fbfb;
      border-radius: 50px;
      padding: 6px;
      display: inline-flex;
      gap: 6px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
      border: 1px solid rgba(0,150,160,0.12);
    }
.psnk-toggle button {
    border: none;
    background: transparent;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    color: #2b2b2b;
    font-size: 18px;
}
    .psnk-toggle button.psnk-active {
      background: white;
      box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    }

    /* Cards row */
    .psnk-cards {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 28px;
      margin-top: 26px;
      align-items: stretch;
    }

    /* Card base */
    .psnk-card {
      background: white;
      border-radius: var(--psnk-card-radius);
      padding: 34px 28px;
      box-shadow: var(--psnk-shadow);
      text-align: left;
      position: relative;
      overflow: visible;
      min-height: 520px;
      display: flex;
      flex-direction: column;
    }

    /* Left & right subtle */
    .psnk-card.psnk-left {
      padding-top: 36px;
    }

    /* Middle popular style */
    .psnk-card.psnk-popular {
      background: linear-gradient(180deg, rgba(226,251,251,0.98), rgba(226,251,251,0.94));
      border: 3px solid rgba(0,169,180,0.18);
      box-shadow: 0 18px 40px rgba(20,120,130,0.06);
      transform: translateY(-6px);
    }

    /* Popular badge (pseudo-element look) */
.psnk-card.psnk-popular::before {
    content: " ";
    position: absolute;
    top: -16px;
    right:10px;

    background: url(img/Hot_label.png);
    color: #fff;
    padding: 10px 22px;
    border-radius: 22px;
    font-weight: 700;
    font-size: 14px;
    background-size: cover;
    height: 40px;
    width: 101px;
}

    /* Card header (title + price) */
    .psnk-card .psnk-top {
      margin-bottom: 18px;
    }
    .psnk-card .psnk-package {
      font-size: 13px;
      font-weight: 700;
      color: #6f6f79;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .psnk-card .psnk-price {
      font-size: 44px;
      margin: 8px 0 6px;
      color: #2a2a2f;
    }
    .psnk-card .psnk-sub {
      font-size: 14px;
      color: #7a7a82;
      margin-bottom: 18px;
    }

    /* CTA button */
.psnk-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin: 6px 0 18px;
    border: none;
    font-size: 18px;
}
    .psnk-card.psnk-left .psnk-btn { background:#10ac55; color:#fff; box-shadow: 0 6px 18px rgba(16,172,85,0.18); }
    .psnk-card.psnk-popular .psnk-btn { background: #009aa2; color:#fff; box-shadow: 0 6px 18px rgba(0,150,160,0.16); }
    .psnk-card.psnk-right .psnk-btn { background: #6b55ff; color:#fff; box-shadow: 0 6px 18px rgba(107,85,255,0.12); }

    /* Features list */
    .psnk-features {
      margin-top: 8px;
      margin-left: 4px;
      margin-bottom: auto;
    }
    .psnk-features li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 0px 6px;
	  margin-bottom:10px;
      color: #5e6a6b;
      font-weight: 500;
      font-size: 14px;
      line-height: 1.25;
    }

    /* check icon circle */
    .psnk-features svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      margin-top: 2px;
    }

    /* Right card special small badge */
    .psnk-card.psnk-right .psnk-hot {
      display: inline-block;
      background: #ffd9df;
      color: #ff4f66;
      padding: 4px 8px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 12px;
      margin-left: 8px;
    }

    /* card border accent on popular for inside rounded border */
    .psnk-card.psnk-popular { border-radius: calc(var(--psnk-card-radius) + 4px); }

    /* subtle large price symbol positioning to match picture (left aligned) */
    .psnk-price sup { font-size: 16px; font-weight: 600; vertical-align: top; margin-left: 4px; color:#404040; }

    /* Responsive */
    @media (max-width: 1100px) {
      #psnk-pricing-section h2.psnk-title { font-size: 38px; }
      .psnk-cards { grid-template-columns: 1fr; gap: 18px; }
      .psnk-card { min-height: auto; }
      .psnk-card.psnk-popular::before { right: 32px; transform: none; top: -16px; }
      .psnk-inner { padding: 0 12px; }
    }

    /* small helpers to keep styling local */
    .psnk-muted { color: #87919a; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing:.06em; }
 
 
 
 #nk-faq-section {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: #2b2b33;
  padding: 60px 20px 0px;
}

/* --- Layout --- */
.nk-faq-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 80px;
  gap: 40px;

}

/* Left heading */
.nk-faq-left {
  flex: 1 1 40%;
  min-width: 300px;
}

.nk-faq-left h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  color: #2b2b33;
}

/* Right content (FAQ list) */
.nk-faq-right {
  flex: 1 1 60%;
  min-width: 320px;
}

/* Item box */
.nk-faq-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}

.nk-faq-question {
  padding: 18px 20px;
  font-weight: 500;
  font-size: 16px;
  color: #2b2b33;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nk-faq-icon {
  font-size: 22px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  color: #444;
}

/* Expanded */
.nk-faq-item.active .nk-faq-icon {
  transform: rotate(90deg);
}

.nk-faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  display: block;
}

/* Hidden answer when inactive */
.nk-faq-item:not(.active) .nk-faq-answer {
  display: none;
}

/* --- Banner (green bottom block) --- */
.nk-faq-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: #21b655;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  flex-wrap: wrap;
  gap: 30px;
  color: #ffffff;
}

.nk-faq-banner-left img {
  max-width: 300px;
  height: auto;
  display: block;
}

.nk-faq-banner-right {
  flex: 1 1 500px;
  min-width: 300px;
}

.nk-faq-banner-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.nk-faq-banner-right p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #ffffff;
}

/* Form */
.nk-faq-form {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 999px;
  overflow: hidden;
  max-width: 500px;
}

.nk-faq-form input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  border-radius: 999px 0 0 999px;
  outline: none;
  color: #333;
}

.nk-faq-form button {
  background: #21b655;
  color: #ffffff;
  border: none;
  font-weight: 600;
  padding: 0 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s;
}

.nk-faq-form button:hover {
  background: #18a14c;
}

/* Responsive */
@media (max-width: 900px) {
  .nk-faq-container {
    flex-direction: column;
  }
  .nk-faq-left, .nk-faq-right {
    width: 100%;
  }
  .nk-faq-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .nk-faq-banner-left img {
    margin: 0 auto 20px;
  }
  .nk-faq-form {
    margin: 0 auto;
  }
}










#nk-footer-section {
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    padding: 46px 24px 22px;
    background: url(img/footerbg.png) no-repeat center;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

/* optional subtle wave using radial gradient overlay */
#nk-footer-section::before{
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  bottom: 0;
  background:
    radial-gradient(1200px 200px at 10% 20%, rgba(255,255,255,0.03), transparent 10%),
    radial-gradient(900px 200px at 90% 80%, rgba(255,255,255,0.02), transparent 10%);
  pointer-events: none;
  z-index: 0;
}

/* container */
#nk-footer-section .nk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* left column (brand + contact) */
#nk-footer-section .nk-footer-left {
  flex: 1 1 300px;
  min-width: 260px;
}

#nk-footer-section .nk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
#nk-footer-section .nk-brand .nk-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2b2b33;
  font-weight:700;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  font-size:18px;
}
#nk-footer-section .nk-brand .nk-brand-name {
  color: #ffffff;
  font-weight:600;
  font-size:18px;
}

/* contact list */
#nk-footer-section .nk-contact {
  margin-top: 8px;
  color: rgba(255,255,255,0.92);
  font-size:14px;
  line-height:1.9;
}
#nk-footer-section .nk-contact li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.95);
}
#nk-footer-section .nk-contact li svg { flex: 0 0 16px; }

/* columns middle/right */
#nk-footer-section .nk-footer-cols {
  display: flex;
  gap: 40px;
  flex: 1 1 600px;
  justify-content: space-between;
  min-width: 300px;
  flex-wrap: wrap;
}

#nk-footer-section .nk-col {
  min-width: 180px;
  flex: 1 1 180px;
}

#nk-footer-section .nk-col h4 {
  margin: 6px 0 14px;
  font-size:16px;
  font-weight:600;
  color: rgba(255,255,255,0.98);
}

#nk-footer-section .nk-col ul {
  margin:0;
  padding:0;
  list-style:none;
  color: rgba(255,255,255,0.92);
  font-size:14px;
  line-height:2;
}
#nk-footer-section .nk-col ul li a {
  color: rgba(255,255,255,0.92);
  text-decoration:none;
}
#nk-footer-section .nk-col ul li a:hover {
  text-decoration: underline;
}

/* bottom divider + copyright row */
#nk-footer-section .nk-divider {
  margin: 26px auto 14px;
  max-width: 1200px;
  border-top: 1px solid rgba(255,255,255,0.18);
  opacity: 0.9;
}

#nk-footer-section .nk-bottom {
  max-width: 1200px;
  margin: 6px auto 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.86);
  font-size:13px;
  flex-wrap:wrap;
}

/* social icons */
.nk-social {
  display:flex;
  gap:12px;
  align-items:center;
}
.nk-social a {
  display:inline-flex;
  width:36px;
  height:36px;
  border-radius:6px;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  text-decoration:none;
  transition: transform .15s, background .15s;
}
.nk-social a:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

/* responsive */
@media (max-width: 880px) {
	
  #nk-footer-section .nk-footer-inner { flex-direction: column; display: block;}
  #nk-footer-section .nk-footer-cols { width:100%; gap:20px;        display: block;} 
  #nk-footer-section .nk-bottom { justify-content:center; text-align:center; }
  #nk-footer-section .nk-bottom .nk-copyright { order:2; width:100%; }
  #nk-footer-section .nk-bottom .nk-social { order:1; margin-bottom:12px; }
  #nk-footer-section .nk-col{ width:100%;margin-bottom:20px;}
}






.omipos-register-box {
  position: relative;
}

.omipos-box {
    background: #27cc79;
    border-radius: 30px;
    padding: 40px 80px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    margin-bottom: 50px;
}
.omipos-right .header-text {
    padding-left: 300px;
    position: relative;
}

.omipos-right .header-text img {
    position: absolute;
    width: 355px;
    bottom: -30px;
    left: -35px;
}
.omipos-left {
  position: absolute;
  left: -90px;
  bottom: -10px;
  z-index: 2;
}

.omipos-left img {
  max-height: 200px;
  height: auto;
  display: block;
}

.omipos-right {
  color: #fff;
  flex: 1;
  min-width: 280px;
  z-index: 1;
}

.omipos-right h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.omipos-right p {
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px 0;
  font-size: 15px;
}

.omipos-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.omipos-form input {
  flex: 1;
  min-width: 240px;
  height: 48px;
  border: none;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 15px;
  outline: none;
}

.omipos-form button {
  background: #fff;
  color: #27cc79;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 0 24px;
  height: 48px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.omipos-form button i {
  margin-left: 8px;
  font-size: 13px;
}

.omipos-form button:hover {
  background: #f4f4f4;
}

/* Responsive */
@media (max-width: 992px) {
  .omipos-box {
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
  }

  .omipos-left {
    position: static;
    margin-bottom: 20px;
  }

  .omipos-left img {
    max-height: 150px;
  }

  .omipos-right h2 {
    font-size: 18px;
  }

  .omipos-form {
    justify-content: center;
  }

  .omipos-form input,
  .omipos-form button {
    width: 100%;
  }
}

@media (max-width: 729px) {
	.omipos-right .header-text {
    padding-left: 0px;
}
.omipos-right .header-text img {
    position: relative;
    width: 100%;
    bottom: 0px;
    left: 0px;
    margin-top: -115px;
}
}

 


.header:not(.sticky) .logo img:last-child {
    display: none;
}
body:not(.home)  .logo img:last-child {
    display: block !Important;	
}
body:not(.home)  .header,
header.header.sticky {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
body:not(.home)  .header .logo img:first-child ,
header.header.sticky .logo img:first-child {
    display: none;
}
body:not(.home) .logo img,
header.header.sticky .logo img {
    height: 50px;
    margin: 5px 0px;
}
body:not(.home) nav.nav a,
header.header.sticky nav.nav a {
    color: #222;
}
body:not(.home) .menu-toggle,
header.header.sticky .menu-toggle {
    color: #333;
} 


.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  position: relative;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.close-menu {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

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

.nav-clone ul li {
  margin: 15px 0;
}

.nav-clone ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-clone ul li a:hover {
  color: #00bfff;
}

.mobile-menu-content .header-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-menu-content .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  width: 180px;
  text-align: center;
}

.mobile-menu-content .btn.btn-light {
  background: #fff;
  color: #000;
}

.mobile-menu-content .btn.btn-primary {
  background: #00bfff;
  color: #fff;
}


/* Basic reset for this snippet */
.section-feature {    background: #fff url(img/bg_solution.png) no-repeat center;
    background-size: auto 100%; padding: 60px 20px; background: linear-gradient(180deg,#ffffff 0%, #f9f7fb 100%); font-family: "Roboto", Arial, sans-serif; }
.section-feature .container { max-width: 1180px; margin: 0 auto; }

/* Head */
.section-feature .head { text-align: center; margin-bottom: 32px; }
.section-feature .head h2 { font-size: 32px; margin: 0; color: #222; font-weight: 700; }

/* Grid */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }

/* Card */
.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(30,30,50,0.08);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 420px;
}

/* Image area - keep aspect and neat padding like mockup */
.news-image {
  width: 100%;
  padding: 18px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), transparent 60%);
  padding-bottom: 0px;
}
.news-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 6px 18px rgba(10,10,30,0.06);
}

/* Body */
.news-body { padding: 20px 22px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-body h3 { margin: 0; font-size: 18px; color: #1f2b3a; font-weight: 700; }
.news-body p { margin: 0; font-size: 14px; line-height: 1.55; color: #55606a; flex: 1; }

/* Button outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid #28a3a3;
  color: #28a3a3;
  font-weight: 600;
  font-size: 14px;
  width: max-content;
  transition: background .18s ease, color .18s ease, transform .12s ease;
}
.btn-outline:hover {
  background: rgba(40,163,163,0.06);
  transform: translateY(-2px);
}

/* Hover effect on card */
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20,30,70,0.10);
}

/* Responsive */
@media (max-width: 1000px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: auto; }
  .news-image img { height: 220px; }
  .section-feature { padding: 36px 16px; }
  .section-feature .head h2 { font-size: 24px; }
}




.news-archive {
  padding: 40px 0 80px;
  margin-top:80px;
}

.news-archive .container {
  width: 90%;
  max-width: 800px;
  margin: auto;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.breadcrumb a {
  color: #10a0a0;
  text-decoration: none;
}
.breadcrumb span {
  color: #777;
}

/* Featured Post */
.featured-post {
  margin-bottom: 50px;
}
.featured-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
}
.featured-title {
  font-size: 28px;
  margin: 20px 0 10px;
  font-weight: 700;
  color: #222;
}
.featured-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Grid */
body.archive .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* Grid Item */
.news-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(10,10,30,0.05);
  padding-bottom: 18px;
  transition: .2s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.news-item .thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.news-title {
  font-size: 17px;
  margin: 14px 16px 6px;
  font-weight: 600;
  color: #222;
}

.news-date {
  margin-left: 16px;
  font-size: 14px;
  color: #888;
}


/* RESPONSIVE */
@media (max-width: 768px) {
 body.archive  .news-grid {
    grid-template-columns: 1fr;
  }
  .featured-title {
    font-size: 22px;
  }
}




.postSingle {
  padding: 40px 0 80px;
  margin-top:90px;
}

.post-main {
    width: 70%;
    float: left;
}
aside.sidebar {
    width: 30%;
    float: left;
    padding-left: 30px;
}

@media (max-width: 768px) {
	.post-main {
		width:100%;
	}
aside.sidebar {
    width: 100%;
    padding-left: 0px;
}

}
/* Post Title + Meta */
.post-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px;
}
.post-meta {
  color: #888;
  margin-bottom: 18px;
  font-size: 15px;
}

/* Excerpt */
.post-excerpt {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Featured Image */
.post-image img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 22px;
}

/* Content */
.post-content p {
  color: #444;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.post-content  img {
	max-width:100%;
	height:auto;
}


/* SIDEBAR */
.sidebar-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.side-post {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.side-post img {
  width: 86px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.side-post a {
  color: #222;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  display: block;
}

.side-post a:hover {
  color: #10a0a0;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .postSingle .container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    margin-top: 40px;
  }
}

.post-content {
    text-align: justify;
}



/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}