:root {
	--utv-primary: #38a35b;
	--utv-primary-dark: #2f8e4b;
	--utv-secondary: #e9fff0;
	--utv-accent: #2f8e4b;
	--utv-muted: #6b7280;
}

body {
	background-image: url('/unlocktoview/img/greenbg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	color: #111;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	/* full viewport height */
}

.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
.features {
  flex: 1;
  margin: 0 auto;
  padding: 40px 20px; 
}
.featheading{
	margin: 40px 20px;
	color:#fff;
}
h2,
h3 {
	margin: 40px 0 8px 0;
}
a
{
color:#fff;
}
p {
	margin: 8px 0;
}
.contactlink{
color:#2f8e4b;
}

/* ================= */
/* Hero Section + header inside hero */
/* ================= */
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	padding: 20px;
	/* add small vertical padding */
	min-height: auto;
	/* let it grow naturally */
	max-height: 100vh;
	/* prevent it from exceeding viewport */
	color: #fff;
	background: linear-gradient(270deg, #3ad66d, #38a35b, #1b3d21, #2f8e4b);
	background-size: 800% 800%;
	animation: heroGradient 15s ease infinite;
	box-sizing: border-box;
	/* include padding inside height */
	overflow: hidden;
}

/* Hero inner wrapper */
.hero-inner {
	width: 100%;
	max-width: 1200px;
	margin: 40px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* HEADER & MENU */
.hero-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 40px;
}

.header-left {
	display: flex;
	align-items: center;
}

.header-left span {
	color: #fff;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1.2;
}

.header-left img {
	height: 60px;
	/* logo height fixed */
	margin-right: 12px;
}

/* MENU LINKS */
#utv-menu {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 10;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 20px 20px 20px 40px;
	box-sizing: border-box;
	background: transparent;
	overflow: hidden;
}

#utv-menu-pages {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 10px 20px;
	box-sizing: border-box;
	backdrop-filter: blur(5px);
}
.utv-menu-toggle {
  display: none;
}
/* Logo */
.utv-logo {
  display: flex;
 align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.utv-logo img {
  margin-right: 0.6rem;
  width: auto;
  height: 60PX;
}

/* Nav links */
.utv-nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.utv-nav-links li {
	display: inline-block;
}

.utv-nav-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 12px;
	transition: color 0.2s ease;
}

.utv-nav-links a:hover {
	color: #011206;
	font-weight: 600;
}

.utv-nav-links a.active {
	color: #011206;
	font-weight: 600;
}

/* Animated gradient background for top menu */
#utv-menu .utv-top-menu {
  position: fixed;             /* stays at top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between; /* logo left, links right */
  align-items: center;
  background: linear-gradient(270deg, #3ad66d, #38a35b, #1b3d21, #2f8e4b);
  background-size: 800% 800%;
  animation: heroGradient 15s ease infinite;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  margin: 0;
  padding: 20px 40px;
  box-sizing: border-box;
}

@keyframes heroGradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-content .lead {
	font-size: 1.25rem;
	max-width: 900px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.hero-buttons .btn-primary {
	background-color: #fff;
	color: var(--utv-primary-dark);
	font-size: 1.1rem;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
	background-color: var(--utv-primary-dark);
	color: #fff;
}


.mobile-only {
  display: none;
}

/* Highlights Section */
.highlights-section {
	background: linear-gradient(135deg, #3ad66d, #38a35b, #1b3d21, #2f8e4b);
	padding: 60px 20px;
}

.highlights-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.highlight-item {
	flex: 1;
	min-width: 250px;
	text-align: center;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.9);
	/* subtle white card over gradient */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.highlight-item .icon {
	font-size: 40px;
	margin-bottom: 15px;
}

.highlight-item h3 {
	margin-bottom: 10px;
	color: #1b3d21;
}

.highlight-item p {
	margin: 0;
	color: #333;
}
/* Base plan box */
/* ============================= Plan Boxes Styling ============================= */
.plan-fees {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

/* Base plan box */
.plan-box {
  flex: 0 1 260px;
  min-width: 220px;
  max-width: 300px;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: .25s ease;
  background: linear-gradient(145deg, #ffffff, #b9edc2); /* inactive pastel */
  color: var(--utv-primary-dark, #333);
  box-shadow: 0 6px 16px rgba(10, 20, 10, 0.06);
}

/* Highlighted (selected) plan - default Basic) */
.plan-box.highlight {
  background: linear-gradient(135deg, #3ad66d, #38a35b); /* bright green */
  color: #fff;
  box-shadow: 0 12px 30px rgba(47, 142, 75, 0.28);
  border: 3px solid #fff;
  z-index: 5;
}

/* Hover effect on any plan */
.plan-box:hover {
  background: linear-gradient(135deg, #3ad66d, #38a35b);
  color: #fff;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 44px rgba(47, 142, 75, 0.34);
  z-index: 10;
}

/* When hovering any plan, make the original highlight inactive */
.plan-fees:hover .plan-box.highlight {
  background: linear-gradient(145deg, #ffffff, #b9edc2);
  color: var(--utv-primary-dark);
  box-shadow: 0 6px 16px rgba(10, 20, 10, 0.06);
}
/* Only make the original highlight inactive if it is NOT being hovered */
.plan-fees:hover .plan-box.highlight:hover {
  background: linear-gradient(135deg, #3ad66d, #38a35b);
  color: #fff;
  box-shadow: 0 6px 16px rgba(10, 20, 10, 0.06);
}


/* Headings, price, license - inherit color dynamically */
.plan-box h3,
.plan-box .price,
.plan-box .license {
  margin: 0;
  color: inherit;
}

.plan-box .price {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.plan-box .license {
  font-size: 14px;
  margin-bottom: 12px;
  color: inherit;
}

.plan-box ul {
  text-align: left;
  padding-left: 18px;
  color: #333;
  line-height: 1.6;
}


/* Buttons */ .plan-box .btn, .plan-box .btn-basic { display: inline-block; padding: 10px 16px; margin-top: 12px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; z-index: 2; position: relative; } .btn-primary { background-color: var(--utv-primary, #3ad66d); color: #fff; } .btn-primary:hover { background-color: var(--utv-primary-dark, #38a35b); } .btn-basic { background: linear-gradient(90deg, #38a35b, #3ad66d); color: #fff; } .btn-basic:hover { background: linear-gradient(90deg, #3ad66d, #38a35b); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(56, 163, 91, 0.4); } /* Ensure text/buttons stay visible during all states */ .plan-box.highlight .btn, .plan-box.highlight .btn-basic { color: #fff; } .plan-box.inactive-hover .btn, .plan-box.inactive-hover .btn-basic { color: #fff; }

/* ================= */
/* Features table, icons */
/* ================= */
.features-table {
	width: 100%;
	/* take the full width of plan-fees */
	border-collapse: separate;
	border-spacing: 0;
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.features-table th,
.features-table td {
	border: 1px solid #e6efe6;
	padding: 12px;
	text-align: center;
}

.features-table th:first-child,
.features-table td:first-child {
	text-align: left;
	padding-left: 16px;
}

.features-table thead th {
	background-color: var(--utv-primary);
	color: #fff;
}

.features-table thead th:first-child {
	border-top-left-radius: 12px;
}

.features-table thead th:last-child {
	border-top-right-radius: 12px;
}

.features-table tbody tr:nth-child(odd) {
	background-color: #ffffff;
}

.features-table tbody tr:nth-child(even) {
	background-color: #e6f7ea;
}

.icon.check {
	color: var(--utv-primary);
	font-weight: bold;
}

.icon.cross {
	color: red;
	font-weight: bold;
}

/* Remove flex from wrapper so table can be full width */
.features-table-section {
	display: block;
	/* no flex */
	width: 100%;
	margin: 0 auto;
}

.features .section-header h3 {
	font-size: 2rem;
	/* bigger text */
	font-weight: 700;
	/* bold */
	color: var(--utv-primary-dark);
	/* match your theme */
	text-align: center;
	/* center align */
	text-transform: uppercase;
	/* optional, makes it more prominent */
	letter-spacing: 1px;
	/* subtle spacing for emphasis */
	margin-bottom: 16px;
	background: linear-gradient(90deg, #38a35b, #3ad66d);
	/* gradient text effect */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	margin-top:100px;
}

.features .section-header h3::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: var(--utv-primary);
	margin: 8px auto 0 auto;
	/* small underline centered */
	border-radius: 2px;
}

.video-wrapper {
	position: relative;
	width: 90%;
	/* use more of the available width */
	max-width: 1000px;
	/* allow it to get larger on big screens */
	margin: 30px auto;
	/* center it horizontally */
	padding-bottom: 56.25%;
	/* keeps 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.faq-list {
	max-width: 700px;
	margin: 2rem auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 15px 20px;
	background: #f8f8f8;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #efefef;
}

.faq-icon {
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: max-height 0.4s ease;
}

.faq-answer p {
	padding: 15px 20px;
	margin: 0;
	line-height: 1.5;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

/* ================= */
/* Footer + scroll top */
/* ================= */
.site-footer {
	background-color: var(--utv-primary-dark);
	color: #fff;
	padding: 30px 20px;
	text-align: center;
	margin-top: 0px;
	font-size: 0.95rem;
}

.site-footer a {
	color: #fff;
	text-decoration: underline;
}

.site-footer .footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.site-footer .footer-left,
.site-footer .footer-right {
	flex: 1 1 200px;
	margin: 10px;
}

.hero-inner.utv-container {
	flex: 1;
	/* take remaining space, push footer down */
}

#footer-container {
	flex-shrink: 0;
	/* do not shrink, stay at bottom */
}

#scrollToTopBtn {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 100;
	background-color: var(--utv-primary);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 24px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

#scrollToTopBtn:hover {
	background-color: var(--utv-primary-dark);
}

/* --- Informational Sections (How It Works / Why Use) --- */
.utv-section {
	padding: 4rem 1rem;
	background: #f9f9f9;
	color: #222;
}

.utv-section.alt {
	background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
}

.utv-section h2 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 600;
}

.utv-section .utv-container {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.utv-section ol,
.utv-section ul {
	list-style-position: outside;
	padding-left: 1.5rem;
}

.utv-section li {
	margin-bottom: 1rem;
	font-size: 1.05rem;
}

.utv-section li::marker {
	color: #efc648;
	font-weight: bold;
}

.utv-section p {
	text-align: center;
	font-size: 1.1rem;
	margin-top: 1.5rem;
}

.utv-section .btn {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0.75rem 1.5rem;
	background: #efc648;
	color: #000;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease;
}

.utv-section .btn:hover {
	background: #000;
	color: #efc648;
}
/* =========================
   Mobile / Tablet Responsive
========================= */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

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

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

  body {
    background-attachment: scroll;
  }

  .content-wrapper {
    width: calc(100% - 24px);
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 12px;
  }

  /* =========================
     Header / Menu
  ========================= */
  #utv-menu .utv-top-menu,
  #utv-menu-pages {
    padding: 14px 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .utv-logo {
    align-items: center;
  }

  .utv-logo img {
    height: 48px;
    margin-right: 0;
  }

  .utv-menu-toggle {
    display: flex;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .utv-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .utv-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .utv-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .utv-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .utv-nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.4rem;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .utv-nav-links.open {
    display: flex;
  }

  .utv-nav-links li {
    width: 100%;
  }

  .utv-nav-links a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.95rem;
    box-sizing: border-box;
  }
 .mobile-only {
    display: block !important;
  }
  .table-mobile-note {
  text-align: center;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(106, 27, 154, 0.06);
  border-radius: 8px;
}
  /* =========================
     Hero
  ========================= */
  .hero {
    padding: 100px 16px 36px;
    max-height: none;
    min-height: auto;
  }

  .hero-inner {
    margin: 10px auto 0;
    max-width: 100%;
  }

  .hero-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 24px;
  }

  .header-left {
    justify-content: center;
    text-align: center;
  }

  .header-left img {
    height: 48px;
    margin-right: 10px;
  }

  .header-left span {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-content .lead {
    font-size: 1.02rem;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 22px;
  }

  .hero-buttons {
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn,
  .btn-primary,
  .btn-basic {
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 1rem;
    padding: 12px 18px;
  }

  /* =========================
     Highlights
  ========================= */
  .highlights-section {
    padding: 40px 16px;
  }

  .highlights-container {
    flex-direction: column;
    gap: 16px;
  }

  .highlight-item {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    padding: 18px 16px;
  }

  .highlight-item .icon {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .highlight-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.15rem;
  }

  .highlight-item p {
    font-size: 0.96rem;
  }

  /* =========================
     Plan Boxes
  ========================= */
  .plan-fees {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .plan-box {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 18px 16px;
  }

  .plan-box h3 {
    font-size: 1.35rem;
  }

  .plan-box .price {
    font-size: 1.9rem;
  }

  .plan-box .license {
    font-size: 0.95rem;
  }

  .plan-box ul {
    padding-left: 18px;
  }

  .plan-box ul li {
    font-size: 0.95rem;
  }

  /* =========================
     Features table
  ========================= */
  .features-table{
    display:none;
  }
 
  /* =========================
     Video
  ========================= */
  .video-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
  }

  /* =========================
     FAQ
  ========================= */
  .faq-list {
    max-width: 100%;
    margin: 1.5rem auto;
    gap: 10px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.98rem;
    align-items: flex-start;
    text-align: left;
  }

  .faq-answer p {
    padding: 14px 16px;
    font-size: 0.96rem;
  }

  /* =========================
     Informational sections
  ========================= */
  .utv-section {
    padding: 3rem 1rem;
  }

  .utv-section h2 {
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
  }

  .utv-section .utv-container {
    max-width: 100%;
  }

  .utv-section li {
    font-size: 1rem;
    margin-bottom: 0.9rem;
  }

  .utv-section p {
    font-size: 1rem;
  }

  /* =========================
     Footer
  ========================= */
  .site-footer {
    padding: 24px 16px;
    font-size: 0.92rem;
  }

  .site-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .site-footer .footer-left,
  .site-footer .footer-right {
    flex: 1 1 auto;
    margin: 6px 0;
  }

  /* =========================
     Scroll button
  ========================= */
  #scrollToTopBtn {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .content-wrapper {
    width: calc(100% - 16px);
    padding: 14px 8px;
  }

  #utv-menu .utv-top-menu,
  #utv-menu-pages {
    padding: 12px 12px;
  }

  .utv-logo img {
    height: 42px;
  }

  .utv-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .utv-menu-toggle span {
    width: 26px;
  }

  .hero {
    padding: 92px 12px 28px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content .lead {
    font-size: 0.95rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn,
  .btn-primary,
  .btn-basic {
    font-size: 0.95rem;
    padding: 11px 16px;
  }
  
   .desktop-only {
    display: none !important;
  }

  .highlight-item {
    padding: 16px 14px;
  }

  .highlight-item .icon {
    font-size: 30px;
  }

  .highlight-item h3 {
    font-size: 1.05rem;
  }

  .highlight-item p {
    font-size: 0.92rem;
  }

  .plan-box {
    padding: 16px 14px;
  }

  .plan-box h3 {
    font-size: 1.2rem;
  }

  .plan-box .price {
    font-size: 1.65rem;
  }

  .plan-box .license,
  .plan-box ul li {
    font-size: 0.9rem;
  }

  .features-table{
    display:none;
  }
 
  .faq-question {
    font-size: 0.94rem;
  }

  .faq-answer p {
    font-size: 0.92rem;
  }

  .utv-section h2 {
    font-size: 1.45rem;
  }

  .utv-section li,
  .utv-section p {
    font-size: 0.95rem;
  }
  .mobile-only {
    display: block !important;
  }
  .table-mobile-note {
  text-align: center;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(106, 27, 154, 0.06);
  border-radius: 8px;
}
}