/* ==========================================================================
   NTIT - ESET
   ========================================================================== */

/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
  --primary: #35b7ea;
  --primary-dark: #0f99cf;
  --primary-darker: #0f79b0;
  --primary-light: #68d4ff;
  --dark: #2f3036;
  --gray: #9e9e9e;
  --border: #ececec;
  --radius: 14px;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}

/* ==========================================================================
   BASE
   ========================================================================== */

body {
  color: var(--dark);
  background: #fff;
}

img {
  max-width: 100%;
}

a {
  transition: var(--transition);

  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

::selection {
  background: var(--primary);

  color: #fff;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

/* p {
  color: #5b5b5b;
} */

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* .nt-section {
  padding: 90px 0;
} */

.nt-section-small {
  padding: 70px 0;
}

.bg-light {
  background: #f7fafc !important;
}

.nt-section-dark {
  /* background: var(--dark); */
}

.nt-section-dark h2,
.nt-section-dark h3,
.nt-section-dark p {
  color: #fff;
}

/* ==========================================================================
   SECTION TITLE
   ========================================================================== */

.section-heading {
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: #eaf8fd;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-heading p {
  max-width: 820px;
  margin: auto;
}

/* ==========================================================================
   HERO PLACEHOLDER
   ========================================================================== */

.hero-placeholder {
  min-height: 420px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.nt-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.nt-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.nt-card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   ICON CIRCLE
   ========================================================================== */

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf8fd;
  margin-bottom: 25px;
  transition: var(--transition);
}

.icon-circle i {
  color: var(--primary-dark);
  font-size: 30px;
}

.nt-card:hover .icon-circle {
  background: var(--primary);
}

.nt-card:hover .icon-circle i {
  color: #fff;
}

/* ==========================================================================
   FEATURE LIST
   ========================================================================== */

.feature-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
}

.feature-list i {
  color: #07c00f;
  width: 30px;
  margin-top: 4px;
}

/* ==========================================================================
   HIGHLIGHT BOX
   ========================================================================== */

.nt-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 45px;
  box-shadow: var(--shadow);
}

.nt-highlight h3,
.nt-highlight p {
  color: #fff;
}

/* ==========================================================================
   NT INFO CARD
   ========================================================================== */

.nt-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.nt-info-card h3,
.nt-info-card p {
  color: var(--dark);
}
.nt-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.info-icon {
  width: 72px;
  height: 72px;
  margin: auto auto 25px;
  border-radius: 50%;
  background: #eaf8fd;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.info-icon i {
  font-size: 30px;
  color: var(--primary-dark);
}

.nt-info-card:hover .info-icon {
  background: var(--primary);
}

.nt-info-card:hover .info-icon i {
  color: #fff;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.nt-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.nt-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 34px;
  height: 2px;
  background: #d7eef7;
}

.timeline-item {
  position: relative;
  text-align: center;
  z-index: 2;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  margin: auto;
  background: var(--primary);
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
  margin-top: 30px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   LICENSE CARDS
   ========================================================================== */

.license-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 38px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: 0.35s;
  border-top: 4px solid transparent;
}

.license-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.license-card h3 {
  margin-bottom: 20px;
}

.license-card p {
  margin: 0;
}

.recommended {
  border-top: 4px solid var(--primary);
}

.recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   STATS
   ========================================================================== */

.nt-stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.stat-box {
  color: #fff;
  padding: 25px;
}

.stat-box span {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box small {
  display: block;
  opacity: 0.92;
  font-size: 1rem;
}

/* ==========================================================================
   TRUST BOX
   ========================================================================== */

.trust-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: var(--shadow-sm);
  /* border: 1px solid var(--primary);
  border-left: 5px solid var(--primary); */
  border: 1px solid #008ea0;
  border-left: 5px solid #008ea0;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.nt-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 90px 0;
}

.nt-cta h2,
.nt-cta p {
  color: #fff;
}

.cta-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nt-cta::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(25deg);
  left: -220px;
  animation: shine 8s infinite linear;
}

@keyframes shine {
  from {
    left: -250px;
  }

  to {
    left: 120%;
  }
}

.nt-cta .btn {
  padding: 15px 36px;
  border-radius: 50px;
  transition: 0.3s;
}

.nt-cta .btn:hover {
  transform: translateY(-3px);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

/* ==========================================================================
   BUTTONS
   ========================================================================== */

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

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

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

  .nt-timeline::before {
    display: none;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 2rem;
  }

  /* .nt-section {
    padding: 70px 0;
  } */
}

@media (max-width: 767px) {
  .trust-box {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .nt-timeline {
    grid-template-columns: 1fr;
  }

  .stat-box {
    margin-bottom: 25px;
  }

  .nt-card,
  .license-card,
  .nt-info-card {
    padding: 30px;
  }

  h2 {
    font-size: 1.7rem;
  }
}

/* ==========================================================================
   BUTTON CLICK
   ========================================================================== */

.btn-click {
  transform: scale(0.96) !important;
}

/* ==========================================================================
   CARD GPU
   ========================================================================== */

.nt-card,
.nt-info-card,
.license-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ESET PACKAGES SECTION */
#eset-packages {
  background: url("../_images/eset/eset-bg.webp");
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  background-size: cover;
  text-align: center;
  position: relative;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.package-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  border: 4px solid #008ea0;
  margin: 5px 0;
}

@media (max-width: 575px) {
  .package-box {
    min-height: 120px;
  }
  .package-box img {
    min-height: 92px;
  }
}
