/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

html {
  overflow-y: scroll;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
}


.nav-inner {
  height: 64px;
  width: 92%;
  max-width: 1200px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 50px;

  display: flex;
  align-items: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= LOGO ================= */
.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 5%;
 
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}

.nav-links li {
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #6291fe;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.nav-links li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #5B6CFF;
  transition: 0.3s;
}

.nav-links li:hover::after {
  width: 100%;
}

.nav-links li:hover a {
  color: #5B6CFF;
}

/* ================= CONTACT BUTTON ================= */
.contact-btn {
  padding: 10px 8px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #5B6CFF, #8F9BFF);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(91,108,255,0.35);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 16px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #0f172a;
}

/* ================= MOBILE DROPDOWN ================= */
.mobile-dropdown {
  position: fixed;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  padding: 18px;

  display: none;
  flex-direction: column;
  gap: 14px;

  z-index: 999;
}

.mobile-dropdown a {
  text-decoration: none;
  color: #0f172a;
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.mobile-dropdown a:hover {
  color: #5B6CFF;
}

.contact-btn.mobile {
  margin-top: 10px;
  width: 100%;
}

/* ================= HERO SECTION ================= */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  background: url("images/sl_122221_47450_06.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.hero-text {
  max-width: 520px;
}

/* ================= HERO TEXT ================= */
.hero-tag {
  font-size: 22px;
  letter-spacing: 1.4px;
  color: #5B6CFF;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.8s;
}

.hero h1 {
  margin-top: 14px;
  font-size: 54px;
  line-height: 1.1;
  color: #0f172a;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 1.5s;
}

.hero h1 span {
  color: #5B6CFF;
}

.hero p {
  margin-top: 12px;
  font-size: 18px;
  color: #475569;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 2s;
}

.hero .contact-btn {
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 2.4s;
}

/* ================= HERO VISUAL ================= */
.hero-visual-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.growth-graph {
  position: absolute;
  width: 520px;
  top: 25%;
  left: 8%;
  opacity: 0.35;
}

.growth-graph polyline {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1500;
  animation: drawGraph 3s ease forwards;
}

/* ================= CTA ARROW ================= */
.cta-wrap {
  position: relative;
  display: inline-block;
  margin-top: 28px;
}

.cta-arrow {
  position: absolute;
  right: -170px;
  top: -7px;
  width: 160px;
  opacity: 0;
  transform: scale(0);
  animation: arrowReveal 1.9s ease forwards;
  animation-delay: 1.9s;
  pointer-events: none;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawGraph {
  to {
    stroke-dashoffset: 1;
  }
}

@keyframes arrowReveal {
  from {
    opacity: 0;
    transform: translateX(10px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-inner > .contact-btn,
  .nav-links {
    display: none;
  }
  .logo img{
     margin-left: 30px;
     height: 100px;
  }
  
  .hamburger {
    display: flex;
    margin-left: 70px;

  }

  .logo {
    margin-left: -10%;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-inner {
    margin-bottom: 250px;
  }

  .growth-graph {
    display: none;
  }

  .cta-arrow {
    width: 160px;
    right: -170px;
    top: -30px;
    opacity: 0.5;
  }
}

/* ===== NAVBAR TEXT LOCK (GLOBAL FIX) ===== */
.navbar a,
.nav-links li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  color: #5B6CFF !important;
}
