/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'YourCustomFont', sans-serif;
  background-color: #fff;
  color: #000;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* ===== ICONS ===== */
.desktop-icons { display: flex; }
.mobile-icons { display: none; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3000;
  background-color: #FBFBFD;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.nav-left {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.logo { height: 16px; }

/* ========== NAV CONTAINER ========== */
.container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 48px 16px 100px;
}

/* ========== NAV LINKS ========== */
.nav-center {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links-left {
  gap: 44px;
  margin-left: 10px;
}

.nav-links-right {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 48px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
  transition: color 0.2s;
}

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

.icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.login-link { margin-right: 16px; }

.nav-right {
  display: flex !important;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  gap: 20px;
}

/* ========== LANDING ========== */
.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 40px;
  padding: 80px 0 40px 0;
  overflow: visible;
}

/* animations for sections */

.section {
  width: 100%;
  max-width: 1100px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; */
}

/* .section.visible {
  opacity: 1;
  transform: translateY(0);
} */

.section-title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
  text-align: center;
}

.section-subtitle {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
}

.section img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto 0; /* ✅ pushes image down to sit on the divider */
  align-self: center;
}
.section .section-title {
  margin-top: 0;
  margin-bottom: 16px;      
}

.section .section-subtitle {
  margin-top: 0;
  margin-bottom: 24px;      
}

.section .link-group {
  margin-top: 0;
  margin-bottom: 32px;      
}

.section-divider {
  margin-top: 32px;         
}

.section-earn img {
  margin-bottom: -105px; 
  
  
}
.section-earn .section-title {
  /* transform: translateX(-26%); 🔧 adjust until left edge aligns with "Make Money" */
}
/* === ALIGN SIGN UP END WITH "LIVE YOUR WAY" END === */
.section-earn .link-group {
  /* width: 44%;             
  margin: 0 auto; */
}

.section-divider {
  width: 100%;
  height: 0.5px;
  background-color: #afadad;
  
}

/* ========== LINK GROUPS ========== */
.link-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  color: #2A64C5;
  font-family: Roboto;
  font-size: 24px;
}

.link-group a {
  color: #2A64C5;
  text-decoration: none;
}

.link-group a:hover { text-decoration: underline; }

/* ========== SEARCH SECTION ========== */
.search-section {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

.input-box {
  display: flex;
  width: 100%;
  height: 80px;
  padding: 10px 16px;
  align-items: center;
  border-radius: 8px;
  background-color: #f3f3f3;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #757575;
}

.input-box input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  color: #000;
}

.input-box .icon-right { margin-left: auto; }

/* POST JOB GROUP */
.job-link-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
}

.job-link-group .post-job {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.job-link-group a {
  color: #2A64C5;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* FOOTER */
.section-footer { display: none !important; }

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 4000;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #aaa;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}




@media (min-width: 769px) and (max-width: 1280px),
       (max-width: 768px) {
  .hamburger span { background: #000; }
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* ≤576px */
@media (max-width: 576px) {
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 20px; }
  .input-box { height: 60px; }
  .job-link-group { flex-direction: column; gap: 8px; }
}

/* ≤768px (mobile) */
@media (max-width: 768px) {
  .desktop-icons { display: none !important; }
  .navbar { background-color: #f5f5f7; }

   .section-earn img {
    margin-bottom: 0px; 
  }

  .hamburger {
    display: flex !important;
    position: absolute;
    right: 18px;
    top: 18px;
  }

  .mobile-icons {
    display: flex !important;
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    gap: 20px;
  }

.nav-left .logo {
  content: url("../images/logo-white.gif");
  height: 32px;
}

  /* ✨ Animated slide/fade for mobile menu */
  .container {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    width: 100%;
    padding: 40px 30px;
    border-top: 1px solid #eee;
    position: fixed;
    top: 60px;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-center {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .nav-link {
    font-size: 20px;
    font-weight: 600;
    color: #000 !important;
    text-align: left;
  }

  .nav-link.light { color: #000 !important; }

  .landing { margin-top: 25px; }
  .section { padding: 32px 16px; }
}

/* 769–1280px (tablet) */
@media (min-width: 769px) and (max-width: 1280px) {
  .desktop-icons, .nav-right { display: none !important; }

  .hamburger {
    display: flex !important;
    position: absolute;
    right: 18px;
    top: 18px;
  }

  .mobile-icons {
    display: flex !important;
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    gap: 20px;
  }

  /* ✅ Keep navbar visible by default on desktop/tablet */
  .container {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    width: 100%;
    padding: 40px 30px;
    border-top: 1px solid #eee;
    position: fixed;
    top: 60px;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* show menu when active */
  .container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-center {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .nav-link {
    font-size: 20px;
    font-weight: 600;
    color: #000 !important;
    text-align: left;
  }
}

/* ========== STAGGERED FADE LINKS ========== */
.container.active .nav-link {
  animation: fadeSlideIn 0.35s ease forwards;
  opacity: 0;
}

.container.active .nav-link:nth-child(1) { animation-delay: 0.05s; }
.container.active .nav-link:nth-child(2) { animation-delay: 0.1s; }
.container.active .nav-link:nth-child(3) { animation-delay: 0.15s; }
.container.active .nav-link:nth-child(4) { animation-delay: 0.2s; }
.container.active .nav-link:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== MISC ========== */
.section-title a { color: #000 !important; text-decoration: none; }
.section-title .underline { text-decoration: underline; }
/* ========== APPLE-STYLE FLUSH-LEFT HAMBURGER MENU ========== */
/* ========== APPLE-STYLE FLUSH-LEFT HAMBURGER MENU (final unified) ========== */
@media (max-width: 1280px) {
  .container.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ✅ flush-left alignment */
    justify-content: flex-start;
    background: #fff;
    width: 100%;
    padding: 60px 40px; /* ✅ consistent left offset */
    border-top: 1px solid #eee;
    z-index: 1500;
    position: fixed;
    top: 60px;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* 🔧 Unify all subcontainers for perfect left alignment */
  .nav-center,
  .nav-links,
  .nav-links-left,
  .nav-links-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 28px !important;
    width: 100%;
  }

  /* ✅ Link styling — consistent flush-left like Apple */
  .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 22px;
    font-weight: 600;
    color: #000 !important;
    line-height: 1.2;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
  }

  .nav-link:hover {
    color: #2A64C5;
  }

  /* ✅ Smooth fade-in from left for all links */
  .container.active .nav-link {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.4s ease forwards;
  }

  .container.active .nav-link:nth-child(1) { animation-delay: 0.05s; }
  .container.active .nav-link:nth-child(2) { animation-delay: 0.1s; }
  .container.active .nav-link:nth-child(3) { animation-delay: 0.15s; }
  .container.active .nav-link:nth-child(4) { animation-delay: 0.2s; }
  .container.active .nav-link:nth-child(5) { animation-delay: 0.25s; }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-15px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
/* ========== HERO LAYOUT REFINEMENT (LEFT-ALIGNED VERSION) ========== */

.hero {
  font-family: Roboto, sans-serif;
  text-align: left; /* align hero text left */
  width: 100%;
  max-width: 1100px; /* match other sections */
  margin: 0 auto;
  padding: 80px 24px 60px;
}

/* black underline under O */
.section-title .underline-o {
  position: relative;
  display: inline-block;
}
.section-title .underline-o::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

/* subtitle and links left-aligned */
.hero .section-subtitle,
.hero .link-group {
  text-align: left;
  justify-content: flex-start;
}

/* stretch search bar full width of hero container */
.hero .search-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
}

/* grey search bar box */
.hero .input-box {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background-color: #f3f3f3;
  padding: 10px 16px;
  height: 80px;
  width: 100%;
}

/* input text */
.hero .input-box input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  color: #000;
}

/* align Post A Job section to right end of hero */
.hero .job-link-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  gap: 10px;
}

.hero .post-job {
  font-weight: 700;
  color: #000;
}

.hero .job-link-group a {
  color: #2A64C5;
  text-decoration: underline;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 16px;
  }

  .hero .section-title,
  .hero .section-subtitle,
  .hero .link-group {
    text-align: left;
  }

  .hero .job-link-group {
    flex-direction: column;
    align-items: flex-end;
  }
}
.section-hire {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  padding: 60px 24px;
}

.section-hire .section-title {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.section-hire .section-subtitle {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  margin-bottom: 24px;
}

.section-hire .link-group {
  justify-content: center;
  text-align: center;
}

/* ========== MINI SECTION ========== */
.mini-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px 80px;
  max-width: 1100px;
  margin: 80px auto 60px auto;
  padding: 0 24px;
  font-family: 'Roboto', sans-serif;
}

.mini-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #ddd; */
  padding-bottom: 24px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mini-item:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.mini-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.mini-text p {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.mini-links {
  display: flex;
  gap: 10px;
}

.mini-links a {
  color: #2A64C5;
  text-decoration: none;
  font-size: 15px;
}

.mini-links a:hover {
  text-decoration: underline;
}

.mini-arrow {
  font-size: 70px;
  color: #2A64C5;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.25s ease;
}


.dome-logo {
  margin: 8px 0;
  display: flex;
  justify-content: flex-start;
}

.dome-logo svg {
  width: 28px;
  height: 28px;
}

.dome-link {
  color: #000 !important;   /* make Dome text black */
  font-weight: 500;         /* bold for emphasis */
}

.dome-link:hover {
  text-decoration: underline;
}

/* ========== RESPONSIVE MINI SECTION ========== */
@media (max-width: 768px) {
  .mini-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mini-text h3 {
    font-size: 22px;
  }

  .mini-text p {
    font-size: 16px;
  }

  .mini-arrow {
    font-size: 36px;
  }
}
/* ========== FIX: UNIFY MOBILE TITLES AND LINKS ========== */
@media (max-width: 768px) {
  /* Same title size for all sections */
  .section-hire .section-title,
  .section-earn .section-title,
  .section-techify .section-title {
    font-size: 28px;
    transform: none !important;
  }

  /* Consistent subtitle size */
  .section-hire .section-subtitle,
  .section-earn .section-subtitle,
  .section-techify .section-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* Center link groups on mobile */
  .section-earn .link-group,
  .section-hire .link-group,
  .section-techify .link-group {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px;
    font-size: 18px;
  }

  /* Make links same color and size */
  .link-group a {
    font-size: 18px !important;
    color: #2A64C5 !important;
    text-decoration: none;
  }

  .link-group a:hover {
    text-decoration: underline;
  }

  /* Fix spacing below each section */
  .section {
    padding: 40px 16px !important;
  }

  /* Prevent text overlap with images */
  .section-earn img {
    margin-top: 12px !important;
  }
}
/* ========== HERO & MINI-SECTION HEIGHT ADJUSTMENTS ========== */

/* desktop */

.hero .section-title {
  font-size: 52px; /* slightly larger headline */
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero .section-subtitle {
  font-size: 26px;
  margin-bottom: 40px;
}

.mini-section {
  margin-top: 40px;      /* tighter connection to hero */
  margin-bottom: 120px;  /* more breathing room at bottom */
  row-gap: 60px;         /* bigger tiles vertically */
}

/* make sure first screen shows hero + mini-sections */
@media (min-width: 1025px) {
  .landing {
    padding-top: 100px; /* extra offset for fixed navbar */
  }
}

/* mobile */
@media (max-width: 768px) {
  .hero {
    padding: 100px 16px 80px;
  }
  .hero .section-title {
    font-size: 34px;
  }
  .hero .section-subtitle {
    font-size: 20px;
  }
  .mini-section {
    margin-top: 30px;
    margin-bottom: 80px;
    row-gap: 48px;
  }
}
/* ========== FIT HERO + MINI SECTIONS INTO FIRST VIEW ========== */

/* Desktop layout */
@media (min-width: 1025px) {
  .landing {
    padding-top: 60px; /* smaller offset for navbar */
  }

  .hero {
  
    padding: 60px 24px 20px;
  }

  .hero .section-title {
    font-size: 48px;
    margin-bottom: 8px;
  }

  .hero .section-subtitle {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .search-section {
    margin-top: 20px;
  }

  .mini-section {
    margin-top: 10px;
    margin-bottom: 20px;
    row-gap: 32px;
  }

}

/* Mobile/tablet adjustments */
@media (max-width: 1024px) {
  .hero {
    /* min-height: 50vh; */
    padding: 40px 16px 20px;
  }

  .mini-section {
    margin-top: 16px;
    margin-bottom: 32px;
  }

 
}

:target {
  scroll-margin-top: 80px; /* space equal or slightly larger than your navbar height */
}

@media (max-width: 1555px) {
  /* hide desktop icons + right-aligned icons */
  .desktop-icons,
  .nav-right {
    display: none !important;
  }
  
  /* show mobile hamburger */
  .hamburger {
    display: flex !important;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 4000;
  }
  
  .mobile-icons {
    display: flex !important;
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    gap: 20px;
  }
  
  /* enable mobile-style sliding menu */
  .container {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    width: 100%;
    padding: 40px 30px;
    border-top: 1px solid #eee;
    position: fixed;
    top: 60px;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2000;
  }
  
  .container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  /* stack links vertically */
  .nav-center,
  .nav-links,
  .nav-links-left,
  .nav-links-right {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }
  
  /* mobile link styling */
  .nav-link {
    font-size: 22px !important;
    font-weight: 600;
    color: #000 !important;
    width: 100%;
    text-align: left;
  }
  .hamburger span { background: #000; }
}
.mini-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  
  
}
.mini-item:hover {
  transform: translateY(-3px);
  opacity: 0.95;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  }

.underline-text {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 2px; /* adjust if needed */
}


@keyframes clean-slit-in {
  0% {
    transform: translateY(20px) scale(0.98);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.clean-slit-in {
  animation: clean-slit-in 0.55s ease-out both;
}

/* ---- SLIT OUT (exit) ---- */
@keyframes clean-slit-out {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(0.98);
    opacity: 0;
  }
}

.clean-slit-out {
  animation: clean-slit-out 0.45s ease-in both;
}
/* ============================
   TEXT ANIMATIONS (Premium)
   ============================ */

/* ---- TEXT IN (enter) ---- */
@keyframes text-fade-rise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-in {
  animation: text-fade-rise 0.6s ease-out both;
}

/* ---- TEXT OUT (exit) ---- */
@keyframes text-fade-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.text-out {
  animation: text-fade-out 0.45s ease-in both;
}


@keyframes gentle-shake {
  0%   { transform: translateX(0) rotate(0); }
  20%  { transform: translateX(3px) rotate(4deg); }
  40%  { transform: translateX(-3px) rotate(-4deg); }
  60%  { transform: translateX(2px) rotate(3deg); }
  80%  { transform: translateX(-2px) rotate(-3deg); }
  100% { transform: translateX(0) rotate(0); }
}

.mini-item:hover .mini-arrow {
  animation: gentle-shake 0.45s ease-in-out;
}

.section-hubs {
  padding-top: 60px;
}

.section-hubs img {
  width: 100%;
  height: 600px;       /* desktop default */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Tablet */
@media (max-width: 1024px) {
  .section-hubs img {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-hubs img {
    height: 260px;     
  }
}



@media (min-width: 769px) and (max-width: 1555px) {
  .mini-section {
    margin-top: 0px ;         /* bring it much higher */
    margin-bottom: 80px ;
  }

  /* Reduce empty space after the Innovation Hubs video */
  .section-hubs {
    padding-bottom: 0px ;
    margin-bottom: 0px ;
  }

  /* Optional: reduce section padding to tighten layout */
  .section {
    padding-top: 32px ;
    padding-bottom: 32px ;
  }
}
