/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


body {
 
      font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: bold;
  color: #222;
}

.logo span {
  color: #f4c10f;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-header {
  background-color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
  font-family: 'Outfit', sans-serif;
}

.main-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f4c10f, #ffe369, #f4c10f);
  box-shadow: 0 6px 15px #f4c10f;
  animation: shineLine 4s linear infinite;
}

@keyframes shineLine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  flex-wrap: wrap;
}

.nav-links {
  transition: all 0.3s ease;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links ul li a {
  text-decoration: none;
  color: #0f2150;
  font-weight: 490;
  transition: color 0.2s;
    font-size: 19px;
}

.nav-links ul li a:hover {
  color: #f4c10f;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ✅ KEEP header-buttons inside header-right */
.header-buttons button {
  padding: 8px 16px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}



.btn-trial {
  background-color: #f4c10f;
  color: #000;
    font-size: 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1A2C53;
  border-radius: 3px;
}

/* ✅ FINAL MOBILE FIX */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .header-buttons {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
    animation: slideDown 0.3s ease forwards;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ipad */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links ul {
    gap: 20px;
  }

  .logo {
    font-size: 22px;
  }

  .nav-links ul li a {
    font-size: 17px;
  }

  .header-buttons button {
    font-size: 14px;
    padding: 6px 12px;
  }
}
/* ipadpro */
/* iPad Pro Landscape (optional fine-tuning) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .container {
    padding: 0 20px;
  }

  .nav-links ul li a {
    font-size: 18px;
  }

  .header-buttons button {
    font-size: 15px;
  }
}
