* {
  box-sizing: border-box;
}
html { overscroll-behavior: none;}
body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
}
/* --- HEADER BASE (Desktop-first) --- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
  padding: 0 30px;
  box-sizing: border-box;
  z-index: 1000;
  transition: border-bottom 0.3s ease;
  border-bottom: none;
}
.header-left {
  padding-left: 5px;
  display: none;
}
.header.shrink {
  border-bottom: 1px solid #DADADA;
}
.header.scrolled-mobile {
  border-bottom: 1px solid #DADADA;
}
/* --- LOGO --- */
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  height: 100%;
  pointer-events: none;
}
.logo {
  height: 60px;
  transition: height 0.3s ease;
  pointer-events: auto;
}
.logo-container.initial {
  transform: translate(-50%, 45%);
}
.header.shrink .logo {
  height: 47px;
}
.header.shrink .logo-container.initial {
  transform: translate(-50%, 0%);
}
/* --- DESKTOP NAV --- */
.nav {
  display: flex;
  gap: 25px;
}
.nav a {
  text-decoration: none;
  color: #333;
  font-weight: normal;
  font-size: 15px;
}
.nav a:hover {
  text-decoration: underline;
}
.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}
.header-right a {
  text-decoration: none;
  color: #333;
  font-weight: normal;
  font-size: 15px;
}
#myaccount:hover {
  text-decoration: underline;
}
/* --- MOBILE MENU TOGGLE --- */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}
.mobile-menu a {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
  font-size: 15px;
}
.mobile-menu.show {
  display: flex;
}
.menu-toggle {
  display: block;
  width: 26px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}
/* Base hamburger bars */
.menu-toggle .bar {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #333;
  transition: 0.3s ease all;
  border-radius: 2px;
}
.menu-toggle .top {
  top: 0;
}
.menu-toggle .middle {
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle .bottom {
  bottom: 0;
}
/* When open — animate into X */
.menu-toggle.open .top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.open .middle {
  opacity: 0;
}
.menu-toggle.open .bottom {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
/* --- HERO SECTION --- */
.spacer {
  height: 125px;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px 20px 60px;
  background-color: #fff;
}
.hero-content {
  max-width: 700px;
}
.hero-headline {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #000;
}
.hero-subheadline {
  font-size: 32px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #000;
}
.hero-button {
  background-color: #00A5F7;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(60, 166, 226, 0.4);
  display: inline-block;
}
.hero-button:hover {
  background-color: #2e92cd;
}
/* --- HEADER BUTTON (Scroll-Activated) --- */
.header-button {
  display: none;
  background-color: #00A5F7;
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(60, 166, 226, 0.4);
}
.header-button:hover {
  background-color: #2e92cd;
  color: white;
}
.header-button:visited,
.mobile-button:visited {
  color: white;
}
.header-button.show {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  animation: slideBounceDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.desktop-button {
  font-size: 16px;
  color: white !important;
  padding: 10px 22px;
  margin-left: 16px;
}
.mobile-button {
  font-size: 14px;
  color: white !important;
  padding: 8px 16px;
  margin-left: 8px;
  display: none;
}
.mobile-button.show {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  animation: slideBounceDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes slideBounceDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  60% {
    opacity: 1;
    transform: translateY(10px);
  }
  80% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
/* --- RESPONSIVE (Mobile) --- */
@media (max-width: 1250px) {
  .header {
    padding: 0 12px;
    justify-content: space-between;
  }
  .header-left {
    display: flex;
    align-items: center;
    z-index: 10;
  }
  .menu-toggle {
    display: block;
  }
  .left-nav,
  .header-right,
  .nav {
    display: none;
  }
  .logo {
    height: 40px !important;
  }
  .logo-container.initial {
    transform: translate(-50%, 0%);
  }
  .header.shrink .logo {
    height: 40px;
  }
  .logo-container {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    height: 100%;
  }
  .desktop-button {
    display: none !important;
  }
}
/* --- HERO RESPONSIVE --- */
@media (max-width: 768px) {
  .spacer {
    height: 63px;
  }
  .hero {
    padding: 30px 16px;
  }
  .hero-headline {
    font-size: 32px;
  }
  .hero-subheadline {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .hero-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}
@media (max-width: 480px) {
  .hero-headline {
    font-size: 28px;
  }
  .hero-subheadline {
    font-size: 20px;
  }
}
/* --- PAGE SECTIONS --- */
.tracking-form-container {
  padding: 40px 20px 20px;
  text-align: center;
}
.tracking-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.tracking-input {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
.tracking-button {
  background-color: #00A5F7;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(60, 166, 226, 0.4);
}
.tracking-button:hover {
  background-color: #028ed2;
}
/* Page Sections */
.info-panel {
  width: 100%;

  box-sizing: border-box;
  color: #111;
}
.info-panel .content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
  display: inline-block;
  text-align: left;
}
.info-list li {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.hero-headline2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.hero-subheadline2 {
  font-size: 25px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #00A5F7;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .info-list li {
    font-size: 20px;
  }
  .hero-headline2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .info-list li {
    font-size: 20px;
  }
  .hero-headline2 {
    font-size: 27px;
  }
}
/* Colored backgrounds */
.light-gray-panel {
  background-color: #F7F7F7;
  color: #333;
}
.white-panel {
  background-color: white;
  color: #111;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .info-panel {
    padding: 20px 16px;
  }
  .info-panel .content {
    max-width: 90%;
  }
  .info-panel h2 {
    font-size: 24px;
  }
  .info-panel p {
    font-size: 16px;
  }
  @media (hover: none) {
    a:hover { color: inherit; }
  }
}
@media (max-width: 480px) {
  .info-panel {
    padding: 20px 16px;
  }
  .info-panel .content {
    max-width: 90%;
  }
  .info-panel h2 {
    font-size: 22px;
  }
  .info-panel p {
    font-size: 14px;
  }
}
/* services and options*/
#services {
  padding-top: 80px;
}
.bundle-section {
  background: white;
  padding-top: .5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}
.bundle-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  padding-left: 15px;
  padding-right: 15px;
}
.bundle-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.bundle-box {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.09), 
              0 8px 16px rgba(0, 0, 0, 0.08); /* layered, tighter shadow */
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}
.bundle-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.bundle-box h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 0.5rem;
}
.bundle-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.2rem;
}
.bundle-btn {
  background-color: #00A5F7;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;  /* less rounded */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(60, 166, 226, 0.3);
  text-transform: uppercase;
}
.bundle-btn:hover {
  background-color: #2d93cc;
}
.tagline {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #888;
}
.iclass {
  color:#00A5F7;
  font-size:50px;
}
.light-gray-panel2 {
  background-color: #F7F7F7;  /* very light gray */
}
.trademark-text::after {
  content: "\2122"; /* Unicode for ™ */
  font-size: 0.7em; /* Make it slightly smaller */
  vertical-align: super; /* Position it as a superscript */
  margin-left: .5px; /* Add a small space after the text */
}
/* Responsive for services and options*/
@media (max-width: 768px) {
  .bundle-boxes {
    flex-direction: column;
    align-items: center;
  }
  .bundle-box {
    width: 100%;
    max-width: 350px;
  }
  .bundle-section h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .bundle-box {
    width: 100%;
    max-width: 330px;
  }
}
/* --- Footer --- */
.custom-footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 45px 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.footer-top,
.footer-bottom {
  display: flex;
  justify-content: flex-start; /* left-aligned */
  max-width: 800px;
  gap: 15px 40px; /* row-gap  column-gap */
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}
.footer-div {
  flex: 0 1 auto;
  text-align: left;
}
.footer-divider {
  border: none;
  border-top: 1px solid #444;
  width: 100%;
  max-width: 775px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-contact {
  color: #ccc;
}
.footer-links a, .footer-contact a {
  color: #ccc;
  text-decoration: none;
}
.footer-links a:hover, .footer-contact a:hover {
  text-decoration: underline;
}
.footer-small {
  font-size: 14px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: left;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
/* Responsive for footer*/
@media (max-width: 768px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .footer-links {
    margin-top: 10px;
  }
  .footer-div {
    width: 100%;
    min-width: unset;
  }
  .footer-social {
    padding-bottom: 10px;
  }
}