* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #e6f3ff;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0; /* Removed extra side gap */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  height: 60px;
}

.logo-container {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.3s;
}

nav a:hover {
  transform: scale(1.1);
}

/* DROPDOWN */
.dropbtn {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  font-size: 15px;
  font-weight: 500;
  color: #003366;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HERO SECTION */
.hero {
  padding: 100px 40px;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px;
}

.hero-text {
  flex: 1 1 60%;
}

.hero h1 {
  font-size: 3rem;
  color: #001d3d;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #003366;
}

.hero-left-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* UNIVERSAL BUTTON STYLE */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.7);
}

.btn.primary {
  background-color: #007bff;
  color: white;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.7);
}

.btn.outline {
  border: 2px solid #007bff;
  color: #007bff;
  background: white;
}

.btn.pickup {
  background-color: #28a745;
  color: white;
  font-weight: bold;
}

/* TICKER SECTION */
.partner-ticker {
  background-color: #f8f9fa;
  padding: 20px 0;
  overflow: hidden;
}

.ticker-wrap {
  overflow: hidden;
  position: relative;
}

.ticker-move {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerMove 15s linear infinite;
  gap: 20px;
}

.ticker-move img {
  height: 60px;
  margin: 0 20px;
  object-fit: contain;
}

@keyframes tickerMove {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.ticker {
  background: #001d3d;
  color: white;
  padding: 10px;
  font-size: 16px;
}

/* FOOTER */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

/* PROCESS GRID (for step cards) */
.process-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 30px;
  gap: 20px;
}

.step-card {
  flex: 1 1 180px;
  max-width: 200px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step-card img {
  height: 48px;
  margin-bottom: 12px;
}

.step-card p {
  font-weight: 600;
  color: #003366;
  font-size: 16px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.15);
}

/* SCROLL TO TOP BUTTON */
#scrollBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  padding: 14px;
  border-radius: 50%;
  font-size: 22px;
  border: none;
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  animation: pulse 2s infinite;
}

#scrollBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,123,255, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(0,123,255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0,123,255, 0); }
}
.partner-ticker h2,
.partner-ticker p {
  text-align: center;
}

.hero-animation {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#canvas-container {
  position: relative;
  width: 450px;
  height: 450px;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: orange;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #003366;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-left-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-animation {
    margin-top: 40px;
  }
}
