/* =========================
   GLOBAL
   ========================= */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #111;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  background: #ffffff;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #111;
}

.navbar-nav .nav-link:hover {
  color: #000;
}

/* TEXT-ONLY LOGO (YOU ARE USING THIS NOW) */
.brand-text-logo{
  text-decoration: none;
  line-height: 1;
  display: inline-block;
}

.brand-text-logo .brand-main{
  display: block;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 20px;
  color: #111;
}

.brand-text-logo .brand-sub{
  display: block;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
}

/* KEEP THIS ONLY IF YOU STILL USE IMAGE LOGO SOMEWHERE */
/* .navbar-logo {
  height: 44px;
  width: auto;
  display: block;
} */

/* APPLY BUTTON */
.navbar .btn-dark {
  border-radius: 999px;
  padding: 8px 18px;
}

/* =========================
   HERO / BANNER
   ========================= */
.banner-head {
  position: relative;
  min-height: 100svh; /* iOS-safe full height */
  height: 100svh;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

/* Make sure hero content stays ABOVE overlays */
.banner-head > .container {
  position: relative;
  z-index: 2;
}

/* GRAIN / NOISE OVERLAY */
.banner-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* HERO TEXT */
.banner-head h1,
.banner-head h2,
.banner-head p {
  color: #f5f5f7;
}

/* REMOVE INNER BACKGROUND BLOCKS (prevents “rectangle”) */
.banner-head .container,
.banner-head .row,
.banner-head [class*="col-"] {
  background: transparent !important;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  border-radius: 999px;
}

.btn-light {
  background: #ffffff;
  color: #111;
}

.btn-light:hover {
  background: #f2f2f2;
}

/* Optional: outline light button looks cleaner */
.btn-outline-light {
  border-width: 2px;
}

/* =========================
   SECTIONS
   ========================= */
section {
  padding: 80px 0;
}

/* Fix your insights negative margin so it doesn't create weird gaps */
#insights {
  margin-top: 0 !important;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #f8f9fa;
  color: #666;
  font-size: 13px;
}

/* =========================
   MOBILE FIXES
   ========================= */
@media (max-width: 768px) {

  .brand-text-logo .brand-main { font-size: 18px; }
  .brand-text-logo .brand-sub  { font-size: 9px; }

  .banner-head {
    min-height: 100svh;
    height: auto;
    padding: 60px 0;
  }
}