/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}

body {
  font-family: "Titillium Web", san-serif;
  color: #fff;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  background: #000;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

#page-content {
  max-width: 1900px;
  margin: 0 auto;
}

:root {
  --index-accent: #00DD87;
  --index-muted: #9aa0a6;
  --index-bg-dark: #0a0a0a;
  --index-gradient: linear-gradient(90deg, #00DD87, #00ccff);
}

.index-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* LOGO BAR */
.index-logo-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 5%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1900px;
  height: 70px;
  z-index: 3000;
  background: var(--index-bg-dark);
  box-sizing: border-box;
}

.index-logo-icon {
  height: 40px;
  width: auto;
  display: block;
  cursor: pointer;
}

.index-logo-icon:hover {
  transform: scale(1.05);
}

.index-logo-name {
  width: 400px;
  height: auto;
  padding: 20px;
}


/* NAV BAR */
.index-site-header {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1900px;
  height: 75px;
  display: flex;
  align-items: center;
  background: rgba(21, 20, 29, 0.25);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform .4s ease;
  z-index: 2500;
  box-sizing: border-box;
}

.index-nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 5%;
  box-sizing: border-box;
}

.index-nav {
  display: flex;
  gap: 40px;
}

.index-nav a {
  font-size: 19px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.973);
  text-decoration: none;
  transition: color 0.3s;
  min-width: max-content;
}

.index-nav a.active {
  color: #00DD87;
  font-weight: 400;
}

.index-nav a:hover {
  color: #00DD87;
}

/* ===================== CTA Buttons ===================== */
.index-nav-cta {
  display: flex;
  height: 52px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.index-nav-cta .index-btn-primary {
  display: flex;
  width: 188px;
  height: 48px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #00DD87;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  line-height: 19.5px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.index-nav-cta .index-btn-outline {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #00DD87;
  color: #00DD87;
  font-size: 17px;
  font-weight: 600;
  line-height: 19.5px;
  border-radius: 25px;
  padding: 8px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: -40px;
  height: 48px;
  width: 200px;
}

.index-nav-cta .index-btn-outline:hover {
  background: rgba(0, 187, 114, 0.25);
  /* darker green with same transparency */
  color: #00B368;
  /* darker text/border */
  border-color: #00B368;
}


.index-nav-cta .index-btn-primary:hover {
  background: #009F5A;
  color: #000;
}

/* Highlight dropdown item */
.index-nav .dropdown-content a.selected {
  color: #00DD87;
  font-weight: 600;
}

/* Highlight parent toggle */
.index-nav .dropdown-toggle.selected-toggle {
  color: #00DD87;
  font-weight: 600;
}

.index-btn-primary,
.index-btn-outline {
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
}

.index-btn-primary {
  background: #00DD87;
  color: #000;
}

.index-btn-outline {
  border: 1px solid #00DD87;
  color: #00DD87;
  font-size: .9rem;
}

.index-tag {
  margin-left: 6px;
  padding: 2px 6px;
  border: 1px solid #00DD87;
  border-radius: 6px;
  font-size: .75rem;
  background: #00DD87;
  color: #000;
}

/* ===================== DROPDOWN NAVIGATION ===================== */
.index-nav .dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.index-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.index-nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(21, 20, 29, 0.95);
  min-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(214, 207, 207, 0.3);
  z-index: 100;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  margin-top: 10px;
}

.index-nav .dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border: none;
  background: transparent;
  margin: 2px 0;
  transition: all 0.2s ease;
}

.index-nav .dropdown-content a:hover {
  background: rgba(0, 221, 135, 0.1);
  color: #00DD87;
  border: 1px solid #00DD87;
  border-radius: 20px;
  padding: 15px 20px;
}

.index-nav .dropdown.show .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.index-nav .dropdown-content a.selected {
  color: #00DD87;
  font-weight: 600;
}

.index-nav .dropdown>a.active {
  color: #00DD87;
  font-weight: 600;
}

/* GLOBAL BODY + HERO GRADIENT DIV */
.hero-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1898px;
  height: 808px;
  background: linear-gradient(90deg,
      rgba(107, 183, 69, 0.2) 5%,
      rgba(0, 178, 255, 0.22) 80%);
  border-radius: 1467px;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

/* HERO */
.index-hero {
  padding: 170px 5% 0;
  background: transparent;
  text-align: left;
  position: relative;
  z-index: 1;
}

.index-hero-tags {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.index-pill {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  background: rgba(68, 68, 68, 0.40);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none !important;
  width: 130px;
  text-align: center;
  border: 2px solid #00ff005f;
}


.index-pill:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  /* box-shadow: 0 5px 14px rgba(0, 178, 255, 0.35); */
  color: #000000;
  background: #ffffffca;
}

/* NEW HERO HEADING SECTION */
.index-hero-heading-section {
  padding: 10px 5% 60px;
  /* keeps spacing consistent */
  background: transparent;
  text-align: left;
  /* align content to the left */
  position: relative;
  z-index: 1;
}

.index-hero-heading-section .index-hero-content {
  max-width: 1200px;
  margin: 0;
  /* remove auto centering */
}

.index-hero-heading-section .index-hero-heading {
  color: #EAEAEA;
  font-size: 45px;
  font-weight: 600;
  line-height: 100px;
  letter-spacing: -1.8px;
  text-transform: capitalize;
  text-align: left;
  /* ensure heading aligns left */
}

.index-hero-heading-section .index-highlight-pill {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 40px;
  background: #0f5c2c;
  color: #FFF;
  font-size: 45px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* HERO CONTENT */
.index-hero-content-section {
  padding: 30px 6% 60px;
  background: transparent;
  position: relative;
  overflow: visible;
  z-index: 1;
  margin-top: -50px;
}

/* HERO GRID */
.index-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  /* reduced gap between left and right */
  align-items: stretch;
  /* stretch to match heights */
  position: relative;
}

/* LEFT IMAGE */
.index-hero-left {
  position: relative;
  left: -70px;
  /* move image more left */
}

.index-hero-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* RIGHT CONTENT */
.index-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  margin-left: -30px;
  /* move right content closer to image */
  position: relative;
  z-index: 1;
}

/* HERO HEADING */
.index-infra-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 0;
}

/* HERO TEXT */
.index-infra-text {
  font-size: 15px;
  color: #d0d0d0;
  max-width: 520px;
  margin-top: 10px;
  text-align: left;
}

/* CHIP ROW */
.index-chip-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.index-infra-chip {
  width: 100%;
  max-width: 700px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  margin-top: -20px;
}

.index-chip-dots {
  width: 248px;
  height: 76px;
  flex-shrink: 0;
  background-image: radial-gradient(rgba(174, 231, 255, 1) 1.5px, transparent 1.5px);
  background-size: 22.545px 15.2px;
  background-repeat: repeat;
  opacity: 0.8;
  align-self: center;
}

/* SWIPER HERO SLIDER */
.hero-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-swiper .swiper-wrapper {
  display: flex;
}

.hero-swiper .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  display: block;
  transition: transform 0.8s ease-in-out;
}


/* ======== TECHNOLOGIES SECTION ========== */
.index-technologies {
  padding: 10px 0 25px;
  text-align: center;
  background: transparent;
}

.index-tech-title {
  color: var(--index-accent);
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.index-tech-marquee {
  overflow: hidden;
  background: #1a1a1a;
  padding: 16px 0;
  position: relative;
  white-space: nowrap;
}

.index-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  animation: index-scroll 20s linear infinite;
}

.index-tech-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.index-tech-item img {
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.index-tech-item span {
  font-size: 1rem;
  color: #eee;
  font-weight: 500;
}

@keyframes index-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SOLUTIONS */
.index-solutions {
  position: relative;
  padding: 35px 0 50px;
  overflow: hidden;
  /* prevents dots overflow */
  margin-left: 15px;
}

/* Heading container */
.index-section-header {
  padding-left: 50px;
  /* move heading slightly right */
  margin-bottom: 25px;
  /* space before grid starts */
}

/* Section title */
.index-section-header .index-section-title {
  color: #FFF;
  font-size: 60px;
  /* reduced slightly from 70px */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Subheading */
.index-section-header .index-section-sub {
  color: #FFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1px;
  margin-top: 8px;
  margin-bottom: 30px;
  /* space before grid */
}

/* Grid */
.index-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "card1 card1 card1"
    "card2 card3 ."
    "card4 card5 card6";
  gap: 45px;
  /* increased space between cards */
  /* max-width: 1500px; bigger grid width */
  width: 100%;
  justify-items: start;
  padding-left: 50px;
}

/* Assign cards to grid areas */
.index-solutions-grid .index-card:nth-child(1) {
  grid-area: card1;
}

.index-solutions-grid .index-card:nth-child(2) {
  grid-area: card2;
}

.index-solutions-grid .index-card:nth-child(3) {
  grid-area: card3;
}

.index-solutions-grid .index-card:nth-child(4) {
  grid-area: card4;
}

.index-solutions-grid .index-card:nth-child(5) {
  grid-area: card5;
}

.index-solutions-grid .index-card:nth-child(6) {
  grid-area: card6;
}

/* Card styling */
.index-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  height: 280px;
  transition: transform 0.3s ease;
}

/* Add a light white border only to the 3rd card */
.index-solutions-grid .index-card:nth-child(3) {
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* subtle light white border */
  transition: transform 0.3s ease, border 0.3s ease;
}


.index-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.index-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.index-card-bar img {
  width: 16px;
  height: 16px;
}

.index-card {
  cursor: pointer;
}

/* Card hover effect */
.index-card:hover {
  transform: translateY(-4px);
}

.index-card:hover .index-card-bar {
  background: rgba(255, 255, 255, 0.25);
  /* subtle transparent light */
  transition: background 0.3s ease;
}

/* Keep text and icon colors unchanged */
.index-card-bar span,
.index-card-bar img {
  transition: none;
}



/* Dots on the right */
.index-solutions::after {
  content: "";
  position: absolute;
  top: 3%;
  /* left: 87%; */
  right: 0;
  width: 112px;
  /* 4 columns */
  height: calc(15 * 30px);
  /* increased vertical space */
  background-image: radial-gradient(rgba(174, 231, 255, 1) 1.5px, transparent 1.5px);
  /* light blue dots */
  background-size: 28px 24px;
  /* horizontal × vertical spacing */
  background-repeat: repeat;
  background-position: right top;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}



/* CTA */
.index-cta {
  text-align: center;
  padding: 10px 20px;
}

.index-cta-box {
  background: radial-gradient(circle at 30% 20%, rgba(107, 183, 69, 0.15), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(0, 204, 255, 0.15), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(138, 43, 226, 0.15), transparent 60%),
    #0a0a0a;
  border-radius: 16px;
  padding: 85px 85px;
  /* increased horizontal padding */
  max-width: 1400px;
  /* increased max-width */
  margin: 0 auto 35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-cta h2 {
  max-width: 750px;
  /* slightly wider */
  font-size: 2rem;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.index-cta h2 span {
  display: block;
  max-width: 650px;
  /* slightly wider */
  margin: 10px 100px 20px 100px;
  font-size: 18px;
  color: #8F9BB7;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
}

/* CTA Buttons */
.index-cta-buttons {
  display: flex;
  /* make container flex */
  gap: 60px;
  /* space between buttons, adjust as needed */
  flex-wrap: wrap;
  /* wrap buttons on smaller screens if needed */
}

.index-cta-buttons a {
  background: transparent;
  /* no background */
  color: #FFF;
  /* white text */
  border: 2px solid #00ff005f;
  /* green border */
  border-radius: 50px;
  /* pill shape */
  padding: 12px 28px;
  /* adjust pill padding */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.index-cta-buttons a:hover {
  border-color: #489b1e;
  /* darker green border */
  transform: translateY(-2px);
  opacity: 0.95;
  color: #000000;
  background: #ffffffca
}


/* Hide only the Start Chat button (future use) */
a.index-btn-primary[href="#contact"] {
  display: none !important;
}


/* NUVENURES CTA SECTION */
.nuventures-cta {
  padding: 0;
  /* match index CTA spacing */
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* MAKE THIS BOX 100% IDENTICAL TO index-cta-box */
.nuventures-box {
  max-width: 1216.76px;
  max-height: 430px;
  margin: 0 auto 35px;

  /* SAME BACKGROUND */
  background: radial-gradient(circle at 30% 20%, rgba(107, 183, 69, 0.15), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(0, 204, 255, 0.15), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(138, 43, 226, 0.15), transparent 60%),
    #0a0a0a;

  border-radius: 16px;

  /* SAME SHADOW */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);

  /* SAME PADDING */
  padding: 55px;

  /* LAYOUT */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* match index cta compact spacing */

  color: #eaeaea;
  align-items: center;
}

/* Left column (text) */
.nuventures-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nuventures-text h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #00b2ff;
}

.nuventures-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.nuventures-arrow {
  display: inline-block;
  color: #00aaff;
  margin-left: 10px;
  font-size: 48px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.3s ease;
  vertical-align: middle;
  transform: translateY(-5px);
  /* adjust the px until it looks perfect */
}

.nuventures-arrow:hover {
  transform: translateY(-8px);
}

/* Right column (image) */
.nuventures-image {
  text-align: center;
}

.nuventures-image img {
  width: 100%;
  max-width: 575px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nuventures-image img:hover {
  transform: scale(1.05);
  /* Zoom in slightly */

}


/* === FOOTER CONTENT === */
.index-footer-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 50px;
  /* slightly bigger gap between columns */
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 40px 25px;
  box-sizing: border-box;
}

/* === FOOTER LOGO === */
.index-footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #1a1a1a;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-footer-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(107, 183, 69, 0.5);
}

.index-footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* === FOOTER COLUMNS === */
.index-footer-content>.index-footer-col {
  flex: 1 1 auto;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* slightly bigger gap between items */
  margin-left: 20px;
  display: inline-block;
}

.footer-linkedin img {
  width: 20px;
  height: 20px;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  top: 9px;
  left: 5px;
  margin-right: 5px;
}

.footer-linkedin img:hover {
  transform: scale(1.1);
}

.index-footer-col {
  text-align: left;
}

.index-footer-title {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
}

.index-footer-col p {
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 8px;
}

.index-footer-col a {
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.index-footer-col a:hover {
  color: var(--index-accent);
  transform: translateX(3px);
}

a.index-underline-link {
  text-decoration: underline;
  color: inherit;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.index-btn-footer {
  color: inherit;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

/* =========================
   FOOTER BOTTOM BAR
   ========================= */
.index-footer-bottom {
  font-size: 15px;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(90deg,
      rgba(107, 183, 69, 0.9) 0%,
      rgba(107, 183, 69, 0.9) 40%,
      rgba(0, 178, 255, 0.9) 100%);
  transition: background 0.3s ease;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1900px;
}

/* .index-footer-bottom:hover {
  background: linear-gradient(90deg,
      rgba(107, 183, 69, 1) 0%,
      rgba(107, 183, 69, 1) 40%,
      rgba(0, 178, 255, 1) 100%);
} */


/* ===== MOBILE NAV / HAMBURGER ========= */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 3500;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: relative;
  left: 0;
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

/* When active */
.hamburger.is-active span {
  background: transparent;
}

.hamburger.is-active span::before {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-active span::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 58px;
  /* header height */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  padding: 16px 5%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  z-index: 2400;
  transform-origin: top center;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  transform: translateY(-10px);
}

/* Show menu (scrollable) */
.mobile-nav.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  height: 100vh;
  /* take full viewport height */
  overflow-y: auto;
  /* enable scrolling when open */
  -webkit-overflow-scrolling: touch;

  /* Smooth, subtle scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 221, 135, 0.4) transparent;
}

.mobile-nav.show::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav.show::-webkit-scrollbar-thumb {
  background-color: rgba(0, 221, 135, 0.4);
  border-radius: 3px;
}

/* Wrapper for spacing inside the nav */
.mobile-nav-wrapper {
  padding-bottom: 40px;
  height: auto;
  min-height: 100%;
}

/* Links inside mobile nav */
.mobile-nav a {
  display: block;
  padding: 12px 10px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 17px;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(0, 221, 135, 0.06);
  color: var(--index-accent);
}

/* Dropdown inside mobile nav */
.mobile-nav .dropdown-content {
  display: none;
  padding-left: 10px;
  max-height: 50vh;
  /* allow dropdown scrolling if too tall */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;
  scrollbar-color: rgba(0, 221, 135, 0.4) transparent;
}

.mobile-nav .dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav .dropdown-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 221, 135, 0.4);
  border-radius: 3px;
}

/* Show dropdown */
.mobile-nav .dropdown.show>.dropdown-content {
  display: block;
}

/* Optional: scroll dropdown fully into view */
.mobile-nav .dropdown.show {
  scroll-margin-top: 20px;
}

.mobile-cta-wrapper {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
}

/* =========================
   HERO / LOGO / SOLUTIONS
   ========================= */
@media (min-width: 1400px) {
  .hero-wrapper {
    margin-top: 30px;
  }

  .index-hero {
    padding-top: 180px;
  }

  .index-logo-bar {
    height: 80px;
    padding: 20px 5%;
  }

  .index-logo-icon {
    height: 50px;
  }

  .index-site-header {
    top: 80px;
    height: 92px;
  }

  .index-nav a {
    font-size: 24px;
  }

  .index-nav .dropdown-content a {
    font-size: 18px;
  }

  .index-nav-cta .index-btn-primary {
    width: 200px;
    height: 54px;
    font-size: 20px;
  }

  .index-nav-cta .index-btn-outline {
    font-size: 20px;
    height: 54px;
    width: 220px;
  }

  .index-hero-heading-section .index-hero-heading {
    font-size: 65px;
    line-height: 110px;
  }

  .index-hero-heading-section .index-highlight-pill {
    font-size: 65px;
  }

  .index-hero-content-section {
    padding: 40px 10% 80px;
  }

  .index-hero-grid {
    gap: 50px;
  }

  .index-hero-left {
    left: -100px;
  }

  .index-hero-right {
    margin-left: -50px;
  }

  .index-infra-heading {
    font-size: 2rem;
    line-height: 1.1;
  }

  .index-infra-text {
    font-size: 18px;
    max-width: 700px;
    margin-top: 2px;
  }

  .index-infra-chip {
    height: 265px;
  }

  .index-section-header .index-section-title {
    font-size: 70px;
  }

  .index-solutions {
    position: relative;
    padding: 35px 0 50px;
    overflow: hidden;
    left: 35px;
    /* left: 12%;
  width:85%; */
  }

  .index-container {
    max-width: 1900px;
    width: 100%;
  }

  .index-nav-cta {
    padding-inline: 100px;
  }

  .index-nav-container {
    width: 2000px;
  }

  .index-nav {
    gap: 25px;
  }

  .index-solutions-grid {
    grid-template-columns: repeat(3, 0.25fr);
    grid-template-areas:
      "card1 card1 card1"
      "card2 card3 ."
      "card4 card5 card6";
    gap: 45px;
    padding-left: 50px;
  }

  .index-card {
    max-width: 380px;
    max-height: 420px;
    aspect-ratio: 1 / 1;
  }

  .index-footer-title {
    font-size: 32px;
  }

  .index-footer-col p,
  .index-footer-col a {
    font-size: 16px;
  }

  .index-footer-logo {
    width: 240px;
    height: 240px;
  }

  .nuventures-box {
    max-width: 1400.76px;
  }
}

@media (max-width: 1200px) {
  .index-logo-bar {
    padding: 14px 5%;
    height: 66px;
  }

  .index-site-header {
    top: 66px;
    height: 56px;
  }

  .index-hero {
    padding-top: 160px;
  }

  .index-hero-heading-section {
    padding: 8px 5% 40px;
  }

  .index-hero-heading-section .index-hero-heading {
    font-size: 47px;
    line-height: 82px;
  }

  .index-hero-heading-section .index-highlight-pill {
    font-size: 47px;
  }

  .index-solutions {
    padding-top: 28px;
    margin-left: 20px;
    width: 100%;
  }

  .hero-gradient {
    opacity: 0.8;
    width: 1200px;
    height: 700px;
    filter: blur(80px);
  }

  .index-solutions-grid {
    grid-template-columns: repeat(3, 0.25fr);
    grid-template-areas:
      "card1 card1 card1"
      "card2 card3 ."
      "card4 card5 card6";
    gap: 45px;
    /* max-width: 90%; */
    padding-left: 50px;
  }

  .index-card {
    max-width: 250px;
    max-height: 420px;
    aspect-ratio: 1 / 1;
  }

  .index-solutions::after {
    content: "";
    position: absolute;
    top: 3%;
    /* left: 87%; */
    right: 0;
    width: 112px;
    /* 4 columns */
    height: calc(15 * 30px);
    /* increased vertical space */
    background-image: radial-gradient(rgba(174, 231, 255, 1) 1.5px, transparent 1.5px);
    /* light blue dots */
    background-size: 28px 24px;
    /* horizontal × vertical spacing */
    background-repeat: repeat;
    background-position: right top;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
  }

}

@media (max-width: 1024px) {
  .nuventures-box {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 30px;
  }

  .nuventures-text h2 {
    font-size: 36px;
  }

  .nuventures-text p {
    font-size: 16px;
  }
}

@media(min-width: 1250px) and (max-width:1399px) {
  .index-nav-cta .index-btn-primary {
    width: 140px;
    height: 40px;
  }

  .index-nav-cta .index-btn-outline {
    width: 158px;
    height: 40px;
  }

  .index-nav-cta .index-btn-outline .index-tag {
    margin-left: -2px;
    font-size: 8px;
  }

  .index-nav-cta {
    padding-left: 115px;
    margin-right: -10px;
    gap: 7px;
  }

  .index-nav a.active {
    font-weight: 200;
  }

  .index-nav-container {
    width: 100%;
  }

}


/* RESPONSIVE HERO SLIDER */
@media (max-width: 1024px) {
  .index-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .index-hero-left {
    left: 0;
  }

  .index-hero-right {
    margin-left: 0;
    margin-top: 20px;
  }

  .index-infra-heading {
    font-size: 1.4rem;
  }

  .index-infra-text {
    font-size: 14px;
  }

  .index-infra-chip {
    height: 200px;
  }
}

@media (min-width: 992px) and (max-width:1249px) {
  .index-nav-cta {
    padding: 10px 0;
    margin-left: 100px;
  }

  .index-nav-cta .index-btn-primary {
    height: 35px;
    font-size: 15px;
    width: 130px;
  }

  .index-nav-cta .index-btn-outline {
    font-size: 15px;
    height: 38px;
    width: 190px;
  }

  .index-nav {
    gap: 15px;
  }

  .index-nav a {
    font-size: 15px;
  }

  .nuventures-box {
    max-height: 600px;
  }
}

/* Footer bottom responsive */
@media (max-width: 992px) {
  .index-footer-bottom {
    font-size: 14px;
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  .index-footer-bottom {
    font-size: 13px;
    padding: 6px 0;
  }
}

@media (max-width: 600px) {
  .index-footer-bottom {
    font-size: 12px;
    padding: 5px 0;
  }
}

@media (max-width: 420px) {
  .index-footer-bottom {
    font-size: 11px;
    padding: 4px 0;
  }
}

@media (max-width: 360px) {
  .index-footer-bottom {
    font-size: 10px;
    padding: 3px 0;
  }
}

/* =========================
   FOOTER CONTENT RESPONSIVE
   ========================= */
@media (max-width: 992px) {
  .hamburger {
    display: inline-flex;
    margin-left: 12px;
  }

  .index-nav {
    display: none;
  }

  .index-nav-cta {
    display: none;
  }

  .mobile-nav .index-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .mobile-nav .index-nav-cta a {
    width: 100%;
    text-align: center;
  }

  .mobile-nav a,
  .mobile-nav .dropdown-toggle {
    font-size: 16px;
    padding: 10px 12px;
  }

  .mobile-nav .dropdown-content a {
    padding-left: 20px;
  }

  .index-logo-bar {
    padding: 12px 4%;
    height: 64px;
  }

  .index-hero {
    padding-top: 150px;
  }

  .index-site-header {
    top: 64px;
    height: 56px;
  }

  .index-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .index-hero-left {
    left: 0;
  }

  .index-hero-right {
    margin-left: 0;
    margin-top: 12px;
    align-items: center;
    text-align: center;
  }

  .index-hero-heading-section .index-hero-heading,
  .index-hero-heading-section .index-highlight-pill {
    font-size: 40px;
    line-height: 56px;
  }

  .index-section-header {
    padding-left: 20px;
    text-align: center;
  }

  .index-cta-box {
    padding: 50px 30px;
  }

  .nuventures-box {
    padding: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
    max-height: 600px
  }

  .nuventures-text h2 {
    font-size: 34px;
  }

  /* .index-footer-content { padding: 0 24px 30px; gap: 28px; } */
  .index-footer-content>.index-footer-col {
    margin-left: 0;
    min-width: 180px;
  }

  .index-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "card1 card2"
      "card3 card4"
      "card5 card6";
    padding-left: 20px;
    max-width: 700px;
    gap: 30px;
  }

  .index-card {
    max-width: 100%;
    height: 260px;
  }

  .index-footer-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    padding: 0 30px 40px;
    text-align: center;
  }

  .index-footer-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .index-footer-col {
    text-align: center;
  }

  .index-footer-title {
    font-size: 24px;
  }

  .index-footer-col p,
  .index-footer-col a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .index-logo-bar {
    padding: 10px 4%;
    height: 60px;
  }

  .index-site-header {
    top: 60px;
    height: 54px;
    backdrop-filter: blur(18px);
  }

  .index-hero {
    padding-top: 130px;
  }

  .index-hero-heading-section .index-hero-heading,
  .index-hero-heading-section .index-highlight-pill {
    font-size: 36px;
    line-height: 44px;
  }

  .index-hero-content-section {
    margin-top: -30px;
  }

  .index-hero-tags {
    gap: 14px;
  }

  .index-pill {
    font-size: 16px;
    padding: 6px 14px;
  }

  .index-solutions {
    margin-left: 0;
    padding: 24px 0 30px;
  }

  .index-solutions-grid {
    padding-left: 0;
    gap: 5px;
    padding-left: 40px;
  }

  .index-card {
    max-width: 90%;
    height: 260px;
  }

  .index-cta-box {
    padding: 40px 20px;
  }

  .index-cta h2 {
    font-size: 1.4rem;
  }

  .index-cta h2 span {
    margin: 8px 30px;
    font-size: 15px;
    max-width: 100%;
  }

  .nuventures-box {
    padding: 32px 40px;
    gap: 18px;
  }

  .nuventures-text h2 {
    font-size: 30px;
    text-align: center;
  }

  .index-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 28px;
  }

  .index-footer-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 18px;
  }

  .index-footer-content>.index-footer-col {
    margin-left: 0;
    min-width: unset;
    width: 100%;
  }

  .index-nav a,
  .index-cta-buttons a,
  .index-btn-primary,
  .index-btn-outline {
    padding: 10px 12px;
    min-height: 40px;
  }

  .index-pill,
  .index-tag {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nuventures-image img {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .index-logo-bar {
    padding: 8px 4%;
    height: 56px;
    gap: 12px;
  }

  .index-site-header {
    top: 50px;
    height: 61px;
  }

  .index-hero {
    padding: 120px 6% 0;
  }

  .index-hero-heading-section {
    padding: 6px 4% 36px;
  }

  .index-hero-heading-section .index-hero-heading,
  .index-hero-heading-section .index-highlight-pill {
    font-size: 30px;
    line-height: 40px;
  }

  .index-hero-left img {
    border-radius: 10px;
  }

  .index-tech-item img {
    height: 28px;
  }

  .index-solutions-grid {
    display: flex;
    /* use flexbox */
    justify-content: center;
    /* center horizontally */
    flex-wrap: wrap;
    /* allow wrapping if multiple cards */
    gap: 24px;
    /* spacing between cards */
    padding-left: 0;
  }

  .index-cta-buttons {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .index-cta-buttons a {
    width: auto;
    padding: 10px 22px;
  }

  .nuventures-text p {
    font-size: 15px;
  }

  .nuventures-arrow {
    font-size: 38px;
    transform: translateY(-3px);
  }

  .index-footer-content {
    padding: 0 16px 22px;
    gap: 20px;
  }

  .index-footer-logo {
    width: 160px;
    height: 160px;
  }

  .index-footer-title {
    font-size: 20px;
  }

  .index-footer-col p,
  .index-footer-col a {
    font-size: 13px;
  }

  .index-card {
    max-width: 360px;
    width: 100%;
    height: 240px;
  }

  .hero-gradient {
    opacity: 0.6;
    width: 900px;
    height: 500px;
    filter: blur(60px);
  }
}

@media (max-width: 420px) {
  .index-hero {
    padding: 120px 5% 0;
  }

  .index-logo-icon {
    height: 20px;
  }

  .index-hero-heading-section .index-hero-heading,
  .index-hero-heading-section .index-highlight-pill {
    font-size: 26px;
    line-height: 34px;
  }

  .index-pill {
    font-size: 14px;
    padding: 6px 12px;
  }

  .index-infra-text {
    font-size: 14px;
    max-width: 100%;
  }

  .index-card {
    max-width: 360px;
    height: 220px;
  }

  .index-cta-box {
    padding: 28px 16px;
  }

  .index-cta h2 {
    font-size: 1.15rem;
  }

  .index-cta h2 span {
    font-size: 14px;
    margin: 8px 10px;
  }

  .index-footer-logo {
    width: 140px;
    height: 140px;
  }

  .index-footer-content>.index-footer-col {
    padding: 0 6px;
  }
}

@media (max-width: 360px) {

  html,
  body {
    font-size: 14px;
  }

  .index-hero {
    padding: 120px 6% 0;
  }

  /* .index-logo-icon {height: 20px;} */
  .index-hero-heading-section .index-hero-heading,
  .index-hero-heading-section .index-highlight-pill {
    font-size: 24px;
    line-height: 32px;
  }

  .index-hero-tags {
    gap: 10px;
  }

  .index-pill {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 20px;
  }

  .index-card {
    max-width: 300px;
    height: 200px;
  }

  .index-cta-buttons a {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 40px;
  }

  .index-footer-bottom {
    font-size: 10px;
    padding: 3px 0;
  }

  .index-site-header {
    top: 45px;
    height: 45px;
  }

  .hamburger {
    height: 35px;
    width: 45px;
  }
}



/* =========================
   LOGO BAR MOBILE ADJUSTMENTS - SINGLE LINE
========================= */
@media (max-width: 520px) {
  .index-logo-bar {
    flex-wrap: nowrap;
    /* keep everything in one line */
    justify-content: flex-start;
    padding: 8px 5%;
    height: 50px;
    /* reduce height */
  }

  .index-logo-icon {
    height: 20px;
    /* smaller icon */
    margin-right: 6px;
    /* small gap between icon and name */
  }

  .index-logo-name {
    width: auto;
    /* shrink to content */
    height: 18px;
    padding: 0;
    white-space: nowrap;
    /* prevent text from wrapping */
    overflow: hidden;
    /* hide overflow if needed */
    text-overflow: ellipsis;
    /* show ... if too long */
  }
}

/* Extra small devices (<=360px) */
@media (max-width: 360px) {
  .index-logo-bar {
    height: 45px;
    /* slightly smaller */
  }

  .index-logo-icon {
    height: 18px;
    /* shrink icon */
    margin-right: 5px;
  }

  .index-logo-name {
    height: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nuventures-image img {
    max-width: 400px;
    /* resize image for medium devices */
    width: 100%;
    /* height: auto; */
  }

  .nuventures-box {
    gap: 1px;
    /* reduce spacing between text & image */
  }

}


* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}





.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0e0d0d;
  padding: 15px;
  border-top: 1px solid #ccc;
  display: none;
  /* hidden initially */
  z-index: 9999;
  font-size: 14px;
}

.cookie-banner p {
  margin: 0;
  display: inline-block;
  width: 92%;
}

.cookie-banner button {
  background: #28a745;
  border: none;
  color: white;
  padding: 6px 15px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 3px;
}