.mobile-nav{
  display:none;
}



/* ================= STICKY HEADER ================= */
.sticky-header{
  position:sticky;
  top:0;
  z-index:1000;
}

/* ================= TOPBAR ================= */
.topbar{
  background:#0f172a;
  color:#fff;
  font-size:13px;
  padding:8px 0;
}

.topbar-links{
  display:flex;
  justify-content:flex-end;  /* moves to right */
  padding-right:40px;        /* control distance from edge */
  gap:20px;
}


.topbar a{
  color:#fff;
  text-decoration:none;
}

/* ================= HEADER ================= */
.site-header{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.header-row{
  width:100%;
  padding:14px 40px 14px 20px; /* left smaller, right slightly larger */
  display:flex;
  align-items:center;
  justify-content:space-between;
}


/* LOGO */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo-img{
  height:45px;
  width:auto;
}

.brand svg{
  width:0px;
}

.title{
  font-weight:700;
  font-size:18px;
}

.tag{
  font-size:12px;
  color:#6b7280;
}

/* NAVIGATION */
.primary{
  display:flex;
  gap:20px;
}

.primary a{
  text-decoration:none;
  color:#111;
  font-weight:500;
  transition:0.3s;
}

.primary a:hover{
  color:#0f6efd;
}

/* HEADER RIGHT */
.header-utils{
  display:flex;
  align-items:center;
  gap:15px;
}

.cta{
  background:#0f6efd;
  color:#fff;
  padding:8px 14px;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.cta:hover{
  background:#0b5ed7;
}
@media(min-width:993px){
  .cta{
    margin-right:20px;  /* increase if needed */
  }
}

.icon-btn, .mobile-toggle{
  background:none;
  border:none;
  font-size:20px;
  cursor:pointer;
}

/* ================= INSIGHTS ================= */
.insights-dropdown{
  position:relative;
}

.insights-panel{
  position:absolute;
  right:0;
  top:45px;
  width:270px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  padding:15px;
  display:none;
  animation:fadeIn 0.2s ease;
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(-5px);}
  to{opacity:1; transform:translateY(0);}
}

.insights-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.insight-card{
  background:#f3f4f6;
  padding:10px;
  border-radius:6px;
  text-align:center;
}

.insight-value{
  font-weight:700;
  color:#0f6efd;
}

/* ================= MOBILE NAV ================= */
.mobile-toggle{
  display:none;
}

/* ================= MOBILE FULL SCREEN ================= */
@media(max-width:992px){

  .mobile-nav{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100%;
    padding:40px 30px;
    transition:0.4s ease;
    z-index:2000;
    overflow-y:auto;

    /* CORPORATE GLASS COLOR */
    background:rgba(15, 23, 42, 0.96);   /* same family as top bar */
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
  }

  .mobile-nav.active{
    right:0;
  }
  .mobile-nav{
  display:block;
}


}
@media(max-width:992px){

  .mobile-nav a{
    color:#ffffff;
    font-size:18px;
    font-weight:500;
    padding:12px 0;
    display:block;
    border-bottom:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
    text-decoration:none;
  }

  .mobile-nav a:hover{
    color:#0f6efd;
    padding-left:8px;
  }
   .mobile-head{
    position:relative;
    margin-bottom:30px;
  }

  .mobile-head strong{
    color:#ffffff;
    font-size:20px;
    letter-spacing:1px;
  }

  #mobileClose{
      position:absolute;
    top:0;
    right:0;      /* pushes to extreme right */ 
    background:none;
    border:none;
    font-size:22px;
    color:#ffffff;
    cursor:pointer;
  }

}
@media(max-width:992px){

  .mobile-contact-card{
    margin-top:40px;
    padding:20px;
    border-radius:12px;

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    color:#ffffff;
    font-size:14px;
  }

}
@media(max-width:992px){

  .mobile-nav{
    opacity:0;
  }

  .mobile-nav.active{
    opacity:1;
  }

}

@media (max-width: 992px){

  .contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    color:#ffffff;
  }

  .contact-icon{
    font-size:16px;
    flex-shrink:0;
  }

  .contact-text{
    font-size:15px;
    word-break:break-word;
  }

}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

  .topbar{
    display:none;
  }

  .primary{
    display:none;
  }

  .cta{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }
}