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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff; 
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(270deg, #3ad66d, #38a35b, #1b3d21, #2f8e4b);
  background-size: 800% 800%;
  animation: gradientFlow 18s ease infinite;
}

/* ================= */
/* KEYFRAMES */
/* ================= */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  from { transform: scale(1); opacity: 0.5; }
  to { transform: scale(1.3); opacity: 0.8; }
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

/* ================= */
/* TOP MENU / HEADER */
/* ================= */
#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);
}

/* 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, .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;
}

/* Logo */
.utv-logo {
  display: flex;
  align-items: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.utv-logo img {
  margin-right: 0.6rem;
  width: auto;
  height: 60PX;
}
.utv-menu-toggle {
  display: none;
  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);
}
/* ================= */
/* HERO SECTION */
/* ================= */
.hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
  background: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /*background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);*/
  animation: pulse 8s infinite alternate;
  z-index: 0;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.hero-content .lead {
  font-size: 1.25rem;
  max-width: 900px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-buttons .btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  background: linear-gradient(90deg, #3ad66d, #38a35b);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.hero-buttons .btn:hover {
  background: linear-gradient(90deg, #38a35b, #3ad66d);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}
.hero-video {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}
.hero-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}
.hero-media {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
  margin: 0 auto 24px auto;
}

.hero-video {
  width: 100%;
  margin: 0 auto;
}

.hero-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
}

/* ================= */
/* HIGHLIGHTS SECTION */
/* ================= */
.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  position: relative;
}
.highlights::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}
.highlight-item {
  flex: 1 1 300px;
  /*max-width: 350px;*/
  width:100%;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.highlight-item .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: floatIcon 3s ease-in-out infinite;
}
.highlight-item h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.highlight-item p {
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-size: 1rem;
}

/* ================= */
/* SECTIONS: HOW IT WORKS / WHY USE */
/* ================= */
.utv-section, .highlights.info {
  padding: 4rem 2rem;
  color: #111;
  background: #fff;
  text-align: left;
  position: relative;
}
.utv-section h2, .highlights.info h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--utv-primary-dark);
  margin-bottom: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #38a35b, #3ad66d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.utv-section ol, .utv-section ul {
  list-style-position: outside;
  padding-left: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}
.utv-section li::marker { color: var(--utv-primary-dark); }
.utv-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(56,163,91,0.15), transparent 70%);
  border-radius: 50%;
}

/* ================= */
/* SCROLL TO TOP */
/* ================= */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--utv-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
#scrollToTopBtn:hover {
  background: var(--utv-primary-dark);
  transform: translateY(-4px);
}

/* ================= */
/* FOOTER */
/* ================= */
.site-footer {
  background-color: var(--utv-primary-dark);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}
.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;
}

/* ================= */
/* RESPONSIVE */
/* ================= */
@media (max-width: 900px) {
  #utv-menu .utv-top-menu,
  #utv-menu-pages {
    padding: 14px 16px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

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

  .utv-menu-toggle {
    display: flex;
  }

  .utv-nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.4rem;
    margin-top: 0.9rem;
    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.9rem;
    box-sizing: border-box;
  }

  .hero {
    padding: 6.5rem 1rem 2.5rem;
  }

  .hero-inner {
    margin: 20px auto;
  }

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

  .hero-content .lead {
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
  }

  .hero-video {
    width: 100%;
    max-width: 100%;
    margin: 1.5rem auto 0;
    border-radius: 14px;
  }

  .hero-video video {
    border-radius: 14px;
  }

  .highlights {
    padding: 0 1rem;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .highlight-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 1.4rem 1rem;
  }

  .highlight-item h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

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

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

  .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;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 6rem 0.9rem 2rem;
  }

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

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

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

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

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

  .hero-buttons .btn {
    font-size: 0.96rem;
  }

  .highlight-item {
    padding: 1.2rem 0.9rem;
  }

  .highlight-item .icon {
    font-size: 2.2rem;
  }

  #scrollToTopBtn {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
    font-size: 20px;
  }
}
