/* 1. Clean up the container (Remove green box/shadow) */
.nav-brand__mark {
  background: none !important;      /* Removes the green background */
  box-shadow: none !important;      /* Removes the shadow */
  padding: 0 !important;           /* Removes extra internal spacing */
  border-radius: 0 !important;      /* Removes rounded corners */
  display: flex;
  align-items: center;
}

/* 2. Scale the logo image */
.navbar-logo-image {
  height: 300px;                    /* Adjust this (e.g., 70px or 80px) to make it bigger */
  width: auto;                     /* Maintains aspect ratio */
  display: block;
  object-fit: contain;
}

/* 3. Align the text next to the larger logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;                       /* Adds a clean gap between logo and name */
}

/* ===== DEFAULT (DESKTOP) ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features__scroll {
  overflow: visible;
}


/* ===== MOBILE FIX ===== */
@media screen and (max-width: 768px) {

  .features__scroll {
    overflow-x: auto !important;
    display: block;
  }

  .features__grid {
    display: flex !important;
    flex-direction: row;
    gap: 16px;
    width: max-content;
  }

  .feature-card {
    min-width: 260px;
    flex: 0 0 auto;
  }


}



/* --- Hide by default on Desktop --- */
.mobile-hero-logo {
  display: none;
}

/* --- Mobile Specific Placement --- */
@media (max-width: 767px) {
  .hero__left {
    position: relative; /* Acts as the anchor for the logo */
  }

  .mobile-hero-logo {
    display: block;
    position: absolute;
    top: -10px;    /* Adjust this to move it up or down */
    right: 0;      /* Pins it to the right edge */
    width: 80px;   /* Size of the logo */
    height: 80px;
    z-index: 5;
    animation: fadeUp 0.8s var(--ease-out) forwards;
  }

  .mobile-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps logo from stretching */
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1)); /* Optional: adds a soft shadow */
  }
  
  /* Prevent text from overlapping the logo if the screen is very narrow */
  .hero__badge {
    padding-right: 90px;
  }
}










