* {
  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 20px 18px 10%; /* Updated: Reduced right padding to ~20px for shift right */
position: fixed;
top: 0;
left: 0;
right: 0;
background: transparent;
z-index: 1000;
}
.navbar .logo {
font-weight: 700;
font-size: 20px;
color: white;
}
.nav-links {
display: flex;
gap: 22px;
align-items: center;
}
.nav-links .nav-link-item {
text-decoration: none;
font-weight: 400;
position: relative;
color: var(--text-light);
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: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
color: black !important;
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;
align-items: center;
transition: all 0.3s ease;
}
.nav-btn svg {
vertical-align: middle;
}
.nav-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}
.nav-btn-outline {
background: transparent;
color: white;
border: 2px solid white;
padding: 10px 22px; /* Slight adjust for border thickness */
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-outline:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
color: white;
}
/* CTA Button (shared across pages) */
.cta-btn {
background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
color: white;
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;
width: fit-content;
}
.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;
max-width: 150px; /* Added: Compact width to reduce elongation */
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: flex-start; /* Updated: Top justify instead of 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;
}
/* Base Typography & Spacing (common page elements) */
.page-title {
font-size: 45px;
font-weight: 600;
color: var(--text-main);
margin-bottom: 20px;
line-height: 1.2;
font-weight: bold;
text-align: center;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
/* Mobile Hamburger */
.hamburger {
display: none;
font-size: 22px;
color: black;
cursor: pointer;
}
/* Common Responsive Media Queries */
@media (max-width: 900px) {
/* From GettingStarted/WhyGenchi etc. */
}
@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%;
  }
.nav-links .nav-link-item,
.nav-links .nav-btn,
.nav-links .nav-btn-outline {
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,
.nav-links .nav-btn-outline {
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,
.nav-links .nav-btn-outline: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;
border-bottom: 1px solid #eee;
font-size: 14px;
  }
.dropdown-toggle::after {
display: none;
  }
.dropdown-menu::before {
display: none;
  }
/* Footer */
.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) {
/* From Home/Pricing etc. */
}
