body{
  margin:0;
  font-family:'Montserrat', Arial, sans-serif;
  color:#222;
  line-height:1.6;
  background:#ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  }
  
  
  
  
  
  
  
  
  /* NAVBAR */
  
  
  
  
  .navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 80px; /* tightened slightly so bigger logo fits nicely */
  border-bottom:1px solid #eee;
  background:white;
  }
  
  
  
  
  .logo img{
  height:84px; /* 🔥 doubled size */
  width:auto;
  display:block;
  }
  
  
  
  
  .nav-links a{
  margin-left:28px;
  text-decoration:none;
  color:#1f2d3d;
  font-size:15px;
  font-weight:500;
  }
  
  
  
  
  
  
  
  
  /* HERO SECTION */
  
  
  
  
  .hero{
  position:relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #0b3c66;
  
  background-image: url("../images/world_map.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:white;
  text-align:center;
  
  min-height: 520px;
  
  /* ✅ THIS IS THE FIX */
  display:flex;
  align-items:center;
  justify-content:center;
  
  padding:20px; /* 🔥 reduced so centering works cleanly */
  }
  
  
  
  
  /* ✅ NEW OVERLAY LAYER */
  .hero-overlay{
  position:absolute;
  inset:0;
  background: rgba(11, 60, 102, 0.78);
  z-index:1;
  }
  
  
  
  
  .hero-container{
  max-width:1100px;
  margin:auto;
  position:relative; /* ✅ ADDED */
  z-index:2; /* ✅ ADDED */
  }
  
  
  
  
  .hero h1{
  font-size:32px; /* 👈 reduced to force single line */
  margin-bottom:20px;
  font-weight:600;
  letter-spacing:-0.3px;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
  white-space:nowrap; /* 👈 CRITICAL: forces one line */
  overflow:hidden;
  text-overflow:ellipsis; /* 👈 safety if screen too small */
  }
  
  
  
  
  .hero-intro{
  font-size:18px;
  color:#cfe8f5;
  margin-bottom:40px;
  font-weight:400;
  max-width:750px;
  margin-left:auto;
  margin-right:auto;
  }
  
  
  
  
  
  
  
  
  /* ACTION PANEL */
  
  
  
  
  .action-panel{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:30px;
  }
  
  
  
  
  .action-field{
  display:flex;
  flex-direction:column;
  text-align:left;
  }
  
  
  
  
  .action-field label{
  font-size:14px;
  margin-bottom:6px;
  color:#cfe8f5;
  font-weight:500;
  }
  
  
  
  
  .action-field input{
  padding:14px;
  border-radius:6px;
  border:none;
  width:260px;
  font-size:15px;
  font-family:'Montserrat', sans-serif;
  background:#f4f7fa;
  }
  
  
  
  
  
  
  
  
  /* ACTION BUTTON */
  
  
  
  
  .action-button{
  padding:14px 30px;
  background:#4fc3a1;
  color:white;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
  font-weight:600;
  }
  
  
  
  
  .action-button:hover{
  background:#3da98a;
  }
  
  
  
  
  
  
  
  
  /* HERO LINKS */
  
  
  
  
  .hero-links{
  margin-top:10px;
  }
  
  
  
  
  .hero-links a{
  color:#cfe8f5;
  margin:0 14px;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  }
  
  
  
  
  .hero-links a:hover{
  text-decoration:underline;
  }
  
  
  
  
  
  
  
  
  /* NETWORK SECTION */
  
  
  
  
  .network{
  background:#f5f7fa;
  padding:90px 20px;
  text-align:center;
  }
  
  
  
  
  .network h2{
  font-size:32px;
  margin-bottom:50px;
  font-weight:600;
  letter-spacing:-0.3px;
  color:#0b3c66;
  }
  
  
  
  
  .stats{
  display:flex;
  justify-content:center;
  gap:80px;
  flex-wrap:wrap;
  }
  
  
  
  
  .stat h3{
  font-size:36px;
  margin:0;
  font-weight:600;
  color:#0b3c66;
  }
  
  
  
  
  .stat p{
  margin-top:8px;
  color:#667085;
  font-weight:400;
  }
  
  
  
  
  
  
  
  
  /* ECOSYSTEM SECTION — FIXED */
  
  
  
  
  .ecosystem{
  padding:90px 20px;
  text-align:center;
  }
  
  
  
  
  .ecosystem h2{
  font-size:32px;
  margin-bottom:20px;
  font-weight:600;
  letter-spacing:-0.3px;
  color:#0b3c66;
  }
  
  
  
  
  .ecosystem p{
  max-width:800px;
  margin:auto;
  margin-bottom:50px;
  color:#556070;
  font-weight:400;
  }
  
  
  
  
  /* 🔥 GRID LOCKED: 3 TOP, 3 BOTTOM */
  .ecosystem-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  max-width:1000px;
  margin:0 auto;
  }
  
  
  
  
  .eco-item{
  background:white;
  padding:30px 25px;
  border-radius:12px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
  min-height:140px;
  
  
  
  
  display:flex;
  flex-direction:column;
  justify-content:center;
  }
  
  
  
  
  .eco-item h3{
  margin-bottom:10px;
  font-weight:600;
  color:#0b3c66;
  }
  
  
  
  
  .eco-item p{
  color:#556070;
  font-weight:400;
  }
  
  
  
  
  
  
  
  
  /* QUALITY SYSTEM */
  
  
  
  
  .quality-system{
  padding:90px 40px;
  background:#f7f9fc;
  text-align:center;
  }
  
  
  
  
  .quality-system h2{
  font-weight:600;
  color:#0b3c66;
  }
  
  
  
  
  .pin-levels{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:40px;
  flex-wrap:wrap;
  }
  
  
  
  
  .pin-card{
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
  max-width:260px;
  }
  
  
  
  
  .pin-card h3{
  font-weight:600;
  color:#0b3c66;
  }
  
  
  
  
  .pin-card p{
  font-weight:400;
  color:#556070;
  }
  
  
  
  
  .pin-icon{
  width:55px;
  height:auto;
  margin:0 auto 20px auto;
  display:block;
  object-fit:contain;
  }
  
  
  
  
  
  
  
  
  /* GOLD PIN GLOW */
  
  
  
  
  .pin-card:nth-child(3) .pin-icon{
  filter: drop-shadow(0 6px 12px rgba(241, 196, 15, 0.35));
  }
  
  
  /* =============================== */
  /* HERO TEXT ROTATION (ISOLATED) */
  /* =============================== */
  
  
  .hero-rotator{
  position:relative;
  height:60px;
  }
  
  
  .hero-rotator span{
  position:absolute;
  left:0;
  right:0;
  opacity:0;
  transition:opacity 0.8s ease;
  }
  
  
  .hero-rotator span.active{
  opacity:1;
  }
  /* === ToTheLoo Engage Strip === */
  
  .engage-strip {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
  }
  
  .engage-title {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
  }
  
  .engage-links {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }
  
  .engage-links a {
    text-decoration: none;
    color: #003366;
    transition: opacity 0.2s ease;
  }
  
  .engage-links a:hover {
    opacity: 0.7;
  }
  
  .engage-main {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .engage-sub {
    display: block;
    font-size: 14px;
    color: #666;
  }