* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvatica-reg, sans-serif;
}
@font-face {
  font-family: Helvatica-reg; /* set name */
  src: url(../fonts/Helvetica.ttf); /* url of the font */
}
body {
  overflow-x: hidden;
}
:root {
  --primary: #2d9be4;
  --text-main: #23254c;
  --text-light: #77788f;
  --bg-light: #ffffff;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
}
.navbar .logo {
  font-weight: 700;
  font-size: 20px;
  color: black;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links .nav-link-item {
  text-decoration: none;
  font-weight: 400;
  position: relative;
  color: black;
  text-transform: uppercase;
  font-size: 0.875rem;
}
/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--bg-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 0;
}
/* Arrow (cone shape) */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}
.dropdown-menu a {
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.dropdown-menu a:hover {
  background: #e2f8fd;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.nav-btn {
  background: white;
  color: #00b1da;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 6px;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}
/*Hero Section*/
.hero-section {
  /* height: 130vh; */
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 150px;
  gap: 0px;
  background: url("hero-background.png") no-repeat right top/contain;
}
.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
}
.hero-content {
  width: 50%;
  padding-right: 60px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 25px;
}
.hero-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
}
.email-signup {
  position: relative;
  max-width: 450px;
  display: flex;
  align-items: center;
}
.email-input {
  width: 100%;
  padding: 15px 120px 15px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}
.start-btn {
  position: absolute;
  right: 3px;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.3s ease;
}
.start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}
/* BLUE VERTICAL LINE SECTION */
.blue-line-section {
  padding: 50px 0;
  width: 100%;
}
.blue-line-section .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20vh 40px 0px 40px;
}
.blue-vertical-line {
  width: 5px;
  height: 100px;
  background: linear-gradient(180deg, #36d1dc, #5b86e5);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0;
  box-shadow: 0 4px 15px rgba(54, 209, 220, 0.4);
}
.line-content {
  flex: 1;
  max-width: 700px;
}
.line-content h2 {
  font-size: 34px;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
}
.line-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.4;
  width: 100%;
  max-width: 700px;
}
/* STAKEHOLDER SECTION */
.stakeholders-section {
  padding: 50px 0;
  align-items: center;
  display: flex;
  justify-content: center;
}
.stakeholders-section .content-container {
  max-width: 1600px;
  display: flex;
  align-items: center;
}
.content-text {
  width: 50%;
  padding: 4rem 8rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-text .section-label {
  color: var(--text-light);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}
.content-text h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
}
.content-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.4;
  width: 100%;
}
.content-text .more-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stakeholders-section .content-image {
  width: 50%;
  box-shadow: 0px 30px 113px 0px rgba(37, 41, 66, 8%);
}
.section-label {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.content-image-res {
  display: none;
  box-shadow: 0px 30px 113px 0px rgba(37, 41, 66, 8%);
}
/* Content SECTION 2*/
.content-section {
  padding: 80px 0;
  align-items: center;
  display: flex;
  justify-content: center;
}
.content-section .content-container {
  max-width: 1600px;
  display: flex;
  align-items: center;
}
/* FEATURE SECTION */
.section-4 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vw 0px;
  margin: -15vw 0px;
}
.section-4-container {
  padding: 20vw 40px 20vw 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.section-4 svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* behind content */
}
.section-4 svg:nth-child(2) {
  display: none;
}
/* White VERTICAL LINE SECTION */
.white-line-section {
  width: 100%;
}
.white-line-section .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.white-vertical-line {
  width: 5px;
  height: 100px;
  background: white;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0;
  box-shadow: 0 4px 15px rgba(54, 209, 220, 0.4);
}
.line-content {
  flex: 1;
  max-width: 700px;
}
.white-line-section .line-content h2 {
  color: white;
}
.white-line-section .line-content p {
  color: white;
  opacity: 0.8;
}
/*feature grid*/
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
  max-width: 1200px;
  color: white;
}
.feature-item {
  display: flex;
  gap: 20px;
  text-align: left;
  align-items: flex-start;
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: white;
}
.feature-icon.lightning {
  background: #4caf50;
}
.feature-icon.sun {
  background: #ff9800;
}
.feature-icon.heart {
  background: #e91e63;
}
.feature-icon.gear {
  background: #2196f3;
}
.feature-icon.target {
  background: #9c27b0;
}
.feature-icon.star {
  background: #ffc107;
}
.feature-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}
.feature-content p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}
/*Testimonial Section*/
section.testimonials {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.testimonials h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
}
section.testimonials p.subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 450px;
  font-weight: 300;
}
.slider {
  position: relative;
  max-width: 1300px;
  margin: 2rem auto 0 auto;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.slide {
  flex: 0 0 33.3333%; /* 3 cards visible */
  padding: 0 20px;
  box-sizing: border-box;
}
.testimonial {
  margin: 5rem 0rem;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0px 20px 20px 0px rgba(37, 41, 66, 8%);
  border-radius: 1rem;
}
.testimonial p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 450px;
  padding: 1rem;
}
.author {
  font-weight: bold;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.role {
  font-size: 14px;
  color: #7d7d9c;
  margin-bottom: 15px;
}
.photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: -25px;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dots {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #0f4c81;
}
/* ----------------------------------------------
Final CTA
---------------------------------------------- */
.final-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}
.final-cta-wrap .content-container {
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.final-cta-wrap h1 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
}
.final-cta-wrap p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.4;
  width: 100%;
  max-width: 700px;
}
.final-cta-btn {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  transition: all 0.3s ease;
  width: fit-content;
  text-decoration: none;
}
.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}
/* ----------------------------------------------
FOOTER
---------------------------------------------- */
.footer {
  background-color: #0b0b19; /* Dark background */
  color: #ffffff;
  padding: 60px 40px 30px;
  margin-top: 80px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 140px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}
.copyright {
  color: #cccccc;
  font-size: 13px;
  margin-top: auto;
}
.footer-right {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-section h4 {
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 12px;
}
.footer-section a {
  color: #cccccc;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: #ffffff;
}
.footer-section p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-section p a {
  color: #cccccc;
  text-transform: none;
  font-size: 14px;
}
/* Social icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
.social-icons a {
  color: #ffffffff;
  font-size: 16px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #ffffff;
}
/* Overview Video */
.video-wrapper {
  position: relative;
  height: 0; /* Minimal height to not disrupt flow */
  width: 100%;
}
.overview-video {
  position: absolute;
  top: 175px;
  right: 10px;
  width: 450px;
  height: auto;
  z-index: 999;
  border: 2px solid #2d9be4; 
  border-radius: 8px; 
}
/* Responsive */
@media (max-width: 768px) {
  .footer-left {
    min-height: 0px;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .footer-right {
    justify-content: left;
    gap: 40px;
    flex-direction: column;
    width: 100%;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .slide {
    flex: 0 0 50%; /* 2 cards visible */
  }
}
@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%; /* 1 card visible */
    align-items: center;
  }
  .testimonial {
    width: 320px;
  }
}
/* Mobile */
.hamburger {
  display: none;
  font-size: 22px;
  color: black;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar {
    align-items: flex-start;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--bg-light);
    position: absolute;
    top: 70px;
    right: 5%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    width: 90%; /* full responsive width */
  }
  .nav-links .nav-link-item,
  .nav-links .nav-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }
  .nav-links .nav-btn {
    margin-top: 6px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    border: none;
  }
  .nav-links .nav-link-item:last-child,
  .nav-links .nav-btn:last-child {
    border-bottom: none;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  /* --- Submenu always visible under More --- */
  .dropdown {
    width: 100%;
  }
  .dropdown .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .dropdown .dropdown-menu a {
    padding: 12px 30px; /* indent to show submenu visually */
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  .dropdown-toggle::after {
    display: none; /* remove arrow on mobile */
  }
  .dropdown-menu::before {
    display: none;
  }
  /* --- Hero Section Mobile --- */
  .hero-section {
    height: 130vh;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    gap: 40vh;
    background: url("assets/Home/hero-bg-res.png") no-repeat right
      center/contain;
  }
  .hero-content {
    width: 100%;
    padding: 0;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
  .email-signup {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
  .start-btn {
    position: relative;
    width: 100%;
    padding: 18px 25px;
    border-radius: 99px;
  }
  .blue-line-section .container {
    padding: 10vh 0px;
    gap: 20px;
  }
  .line-content h2 {
    font-size: 2.3rem;
  }
  .line-content {
    padding-right: 1rem;
  }
  /* Content Section Mobile */
  .stakeholders-section {
    padding: 16rem 1.5rem 0 0;
  }
  .stakeholders-section .section-label,
  .stakeholders-section h2,
  .stakeholders-section p,
  .stakeholders-section a {
    padding-left: 1.5rem;
  }
  .stakeholders-section p {
    padding-right: 1.5rem;
  }
  .content-image {
    display: none;
  }
  .content-image-res {
    display: block;
    width: 100%;
    height: auto;
  }
  .content-text {
    width: 100%;
    padding: 0rem;
  }
  .content-section.first {
    padding: 1rem 0 0 1.5rem;
  }
  .content-section.first .section-label,
  .content-section.first h2,
  .content-section.first p,
  .content-section.first a {
    padding-right: 1.5rem;
  }
  .content-section.second {
    padding: 1rem 1.5rem 0 0;
  }
  .content-section.second .section-label,
  .content-section.second h2,
  .content-section.second p,
  .content-section.second a {
    padding-left: 1.5rem;
  }
  /*Section 4*/
  .section-4 {
    margin: -10rem 0rem;
  }
  .section-4 svg:nth-child(1) {
    display: none;
  }
  .section-4 svg:nth-child(2) {
    display: block;
  }
  .white-line-section .container {
    gap: 20px;
  }
  .section-4-container {
    padding: 20rem 0px 20rem 0px;
  }
  .features-grid {
    padding: 0 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}
