html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #f8f5f2;
  --accent-red: #d98e84;
  --folder-border: #333;
  --bento-bg: #ffffff;
  --bento-border: #999999;
  --bento-accent: #5c0b0b;
  --bento-text: #000000;
  --font-mono: "Share Tech Mono", monospace;
  --bg-default: #f4f4f4;
  --bg-hover: #5c0b0b;
  --text-default: #000000;
  --text-hover: #ffffff;
}

body {
  /* background-color: #000; */
  /* font-family: 'Inter', sans-serif; */
  color: #000;
}

a {
  text-decoration: none;
}

/* header section */

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  padding: 20px 0;
}

/* container */
.logo {
  display: flex;
  align-items: center;
}

/* clickable area */
/* main layout */
.logo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* group */
.logo-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  color: #fff;
}

/* normal elements */
.logo-symbol,
.logo-text {
  transition: all 0.4s ease;
}

.logo-text {
  line-height: 1;
  font-family: 'plus jakarta sans', sans-serif;
}

/* hover image (start hidden right side) */
.logo-hover-img {
  position: absolute;
  left: 0;
  height: 30px;
  opacity: 0;
  transform: translateX(-30px);
  /* 👈 right side se start */
  transition: all 0.4s ease;
}

/* HOVER EFFECT */

/* old content slide left + fade */
.logo-link:hover .logo-symbol,
.logo-link:hover .logo-text {
  opacity: 0;
  transform: translateX(30px);

  /* 👈 left move */
}

/* new content slide from right */
.logo-link:hover .logo-hover-img {
  opacity: 1;
  transform: translateX(0px);
  width: 100%;
}

/* Mobile (default hidden handled by Bootstrap) */
.nav-menu {
  flex-direction: column;
}

/* When Bootstrap opens menu */
.nav-menu.collapse.show {
  display: flex;
}

/* Desktop */
@media (min-width: 992px) {
  .nav-menu {
    display: flex !important;
    flex-direction: row;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    text-align: right;
    z-index: 999;
  }

  .nav-menu a {
    display: block;
    padding: 10px 0;
    color: #fff;
  }

  .nav-menu a::after {
    display: none;
    /* remove divider lines */
  }
}

@media (max-width: 991px) {
  .nav-menu {
    transform: translateX(100%);
    transition: 0.3s ease;
  }

  .nav-menu.show {
    transform: translateX(0);
  }
}

.nav-menu a {
  position: relative;
  color: #ccc;
  padding: 0 15px;
  text-decoration: none;
  font-size: 14px;
  font-family: "Kode Mono", monospace;
  transition: color 0.6s ease;
}

.nav-menu a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background: #000;
}

.nav-menu a:hover {
  color: #fff;
}

.shiny-btn {
  position: relative;
  padding: 12px 30px !important;
  /* Fixed dimensions to prevent any layout shifting */
  /* width: 200px;
    height: 55px; */
  background-color: #000;
  border: 3px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.3s ease;
  text-decoration: none;
}

/* The Mouse-Follow Glow */
.shiny-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle 60px at var(--x) var(--y),
      var(--glow-color),
      transparent);
}

.shiny-btn span {
  text-decoration: none !important;
  color: #fff;
}

.shiny-btn:hover::before {
  opacity: 1;
}

/* Styling the inner text */
.shiny-btn span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  pointer-events: none;
  display: inline-block;
  /* Required for transform to work */

  /* The "Smooth" secret: transition the transform and color */
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s ease;
}

/* --- THE CLICK STATE (TEXT ONLY) --- */
.shiny-btn:active span {
  /* Using scale instead of font-size for a much smoother animation */
  transform: scale(0.8);
  color: brown;
}

.shiny-btn:active {
  border-color: #fff;
}

/* ================= HERO ================= */
.hero-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-section {
  position: relative;
  background: url("../images/hero-banner.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh + 75px);
  display: flex;
  align-items: center;
}

.hero-section.partner {
  background-image: url("../images/partner-banner-hero.png");
}

.hero-section.innovation {
  position: relative;
  background-image: url("../images/innovation.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-section.innovation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.04);
  z-index: -1;
}

.hero-mini-title {
  font-family: 'barlow condensed', sans-serif;
  font-weight: 600;
  margin-bottom: -10px;
  font-size: 20px;
  color: #780000;
  text-transform: uppercase;
  letter-spacing: 4%;
}

.hero-section.founder {
  background-image: url("../images/founderrr.png");
}

.hero-section.portfolio {
  background: url("../images/portfolio-banner.png");
}

.hero-section.news {
  background: url("../images/News-banner.png");
}

.hero-section.inner {
  background-image: url("../images/drone.png");
}

.hero-section.opportunity {
  position: relative;
  background-image: url("../images/opportunity-banner.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* overlay */
.hero-section.opportunity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.01);
  z-index: -1;
}

/* RIGHT SIDE IMAGE */
.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25%;
  height: 100%;
  background: url("../images/Layer\ 1.png") no-repeat center right;
  background-size: contain;
  z-index: 1;
  opacity: 50%;
  right: 80px;
}

.hero-section.opportunity::after {
  display: none !important;
}

/* .hero-section.portfolio::after {
  display: none !important;
} */

.hero-section.news::after {
  display: none !important;
}

.hero-section.inner::after {
  display: none !important;
}

.hero-section.innovation::after {
  display: none !important;
}

.hero-section.partner::after {
  display: none !important;
}

.hero-section.partner .hero-con {
  padding-top: 60px;
  /* padding-bottom: 40px; */
}

.hero-con {
  /* padding-top: 60px; */
  /* padding-bottom: 40px; */
}

.est-tag {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line */
.est-tag .line {
  display: inline-block;
  height: 1px;
  width: 20px;
  background: red;
}

/* text */
.est-tag .tagline {
  margin: 0;
  font-size: 12px;
  letter-spacing: 3px;
  color: red;
}

/* overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* text */
.tagline {
  color: red;
  font-size: 12px !important;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 120px;
  font-weight: 600 !important;
  /* line-height: 115px; */
  font-family: 'barlow condensed', sans-serif;
}

.hero-title span {
  color: #C01424;
}

.barlow-text {
  color: #6C0802;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 8%;
}
.bg-danger {
  background-color: #6C0802 !important;
}
.jakarta-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #575757;
}

.hero-desc {
  /* max-width: 500px; */
  margin: 10px 0;
  color: #ddd;
  font-size: 20px;
  font-family: "Ubuntu", sans-serif;
}

.apply-btn {
  display: inline-block;
  padding: 6px 35px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #000;
}

/* hover */
.apply-btn:hover {
  background-color: #000;
  color: #fff;
}

/* bottom strip */
.bottom-strip {
  background: maroon;
  overflow: hidden;
  padding: 10px 0;
}

/* container */
.marquee {
  width: 100%;
  overflow: hidden;
}

/* moving content */
.marquee-content {
  display: flex;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollMarquee 15s linear infinite;
}

@media (max-width: 768px) {
  .marquee-content {
    animation: scrollMarquee 4s linear infinite;
  }
}

/* items */
.marquee-content li {
  color: #c4c4c4;
  white-space: nowrap;
  position: relative;
  padding-right: 30px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 14%;
}

/* white dot after each item */
.marquee-content li::after {
  content: "•";
  position: absolute;
  right: 0;
  color: #fff;
  font-size: 18px;
}

/* last item me dot hatao (optional) */
.marquee-content li:last-child::after {
  display: none;
}

.marquee-background {
  background-color: black;
  padding: 40px 0;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* animation */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 50px;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 50px;
    line-height: 40px !important;
  }

  .bottom-strip {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

/* ================================================================================================================= */
/* Footer section */

.footer-section {
  background-color: #000;
  color: #fff;
  position: relative;
}

/* Typography & Links */
.tagline-footer {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.top-nav a {
  color: #888;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.main-links li {
  margin-bottom: 12px;
}

.main-links a {
  color: #B2B1AA;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  font-family: 'plus jakarta sans', sans-serif;
  transition: 0.3s;
}

.org-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
}

.main-links a:hover,
.org-links a:hover,
.top-nav a:hover {
  color: #fff;
}

/* Custom Elements */
.newsletter-box input {
  outline: none;
}

.address-text {
  color: #B2B1AA !important;
  font-family: 'plus jakarta sans', sans-serif;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.footer-section .container {
  position: relative;
  /* 👈 main trick */
}

/* wrapper */
.social-wrapper {
  position: absolute;
  bottom: 20px;
  /* 👈 niche spacing */
  left: 20px;
  /* 👈 left spacing */
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.5;
  /* 👈 yaha control karo */
}

/* BIG CIRCLE */
.big-circle {
  width: 90px;
  height: 90px;
  border: 1px solid #fff;
  /* ✅ white */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

/* ARROW */
.arrow-up {
  position: relative;
  width: 2px;
  height: 25px;
  background: #fff;
  /* ✅ white */
}

.arrow-up::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -5px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  /* ✅ white */
  border-top: 2px solid #fff;
  /* ✅ white */
  transform: rotate(45deg);
}

/* SOCIAL ICONS (vertical) */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 100px !important;
}

/* SMALL CIRCLES */
.icon-circle {
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  /* ✅ white */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* ✅ white */
  font-size: 16px;
  transition: 0.3s;
}

.footer-content {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

/* Active animation */
.footer-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* hover */
.icon-circle:hover,
.big-circle:hover {
  /* background: #fff; */
  color: #fff;
}

.ls-1 {
  letter-spacing: 2px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .social-icons {
    margin-top: 30px !important;
  }
}

.social-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #575757;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: 0.3s;
}

.social-btn:hover {
  border-color: #fff;
  color: #fff;
}

/* =========================================================================================== */

/* bottom footer */

.bottom-footer {
  background: #131311;
  color: #aaa;
  font-size: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* 👈 top line */
  margin-top: 0;
  /* 👈 gap remove */
}

.bottom-footer p {
  margin: -20px 0 0 0;
}

.bottom-footer a {
  color: #aaa;
  text-decoration: none;
}

.bottom-footer a:hover {
  color: #fff;
}

/* initially hidden */

/* ================================================================================ */

/* Scroll text animation section */

/* Container styling */
.horizontal-scroll-container {
  overflow: hidden;
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
}

.bg-black {
  background-color: #25292f !important;
  color: white;
  text-decoration: none;
}

.text-slider {
  display: flex;
  width: 100%;
  position: relative;
}

.domain-text {
  font-size: 60px;
  font-weight: 600 !important;
  font-family: 'Barlow Condensed', sans-serif;
}

.domain-text span {
  color: #6C0802;
}

/* .slide {
    font-size: 108px;
    font-weight: 600;
    font-family: Oswald, sans-serif;
    color: #b31b1b;
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    opacity: 0;
    transform: translateX(100px);
    animation: lateralMove 15s infinite ease-in-out;
    margin-top: -88px;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 3s;
}

.slide:nth-child(3) {
    animation-delay: 6s;
}

.slide:nth-child(4) {
    animation-delay: 9s;
}

.slide:nth-child(5) {
    animation-delay: 12s;
}

@keyframes lateralMove {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    5% {
        opacity: 1;
        transform: translateX(0);
    }

    15% {
        opacity: 1;
        transform: translateX(0);
    }

    20% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 0;
    }
} */

.custom-marquee-wrap {
  overflow: hidden;
}

.custom-marquee-wrap:hover .auto-marquee-content {
  animation-play-state: paused;
}

.auto-marquee {
  overflow: hidden;
  position: relative;
}

.auto-marquee-content {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: flex;
  gap: 280px;
  animation: autoScroll 8s linear infinite;
}

.auto-marquee-content li {
  white-space: nowrap;
  font-weight: 400 !important;
  letter-spacing: 1px;
  font-size: 110px;
  color: red;
  font-family:
    Bebas Neue,
    sans-serif;
}

/* animation */
@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Button & Responsiveness */
.btn-danger-custom {
  background-color: #7a1212;
  color: white;
  border: none;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  transition: 0.3s;
  /* padding: 12px !important; */
}

.horizontal-scroll-container {
  width: 50%;
}

@media (max-width: 768px) {
  .slide {
    font-size: 2.5rem;
    margin-top: -32px;
  }
  .partner-row {
      border: 1px solid #ddd;
      margin-bottom: 55% !important;
  }
  .checklist li {
    font-size: 14px !important;
  }
  #scrollContainer .partner-row {
      margin-bottom: 10% !important;
  }
  .horizontal-scroll-container {
    height: 80px;
  }
}

/* ================================================================================= */

/* partner-section */

.partners-section {
  background: #f5f5f5;
}

.partner-main-heading {
  font-weight: 600 !important;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

.partner-main-heading span {
  color: #7a0c05;
}

.partner-row {
  border: 1px solid #ddd;
}

.partner-box {
  padding: 20px 20px;
  border-right: 1px solid #ddd;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-box:last-child {
  border-right: none;
}

.partner-box img {
  max-height: 100px;
}

.partner-box p {
  margin: 0;
  font-size: 14px;
  text-align: left;
  font-weight: 700;
}

/* =========+++++++==========================+++++++++++======================? */

/* $$$$$$$$$$$$$   partner with us css animation  $$$$$$$$$$$$$$$$$ */

:root {
  --bg-color: #000;
  --glow: rgba(255, 255, 255, 0.8);
  --transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-container {
  position: relative;
  display: inline-block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 15px;
}

/* The Main Body */
.btn-body {
  background-color: var(--bg-color);
  color: white;
  padding: 16px 50px;
  font-weight: 700;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  clip-path: inset(0 0 0 0 round 12px);
}

/* The Fragments (Shards) */
.shard {
  position: absolute;
  background-color: var(--bg-color);
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}

/* Top Left Assembly */
.tl-1 {
  width: 18px;
  height: 18px;
  top: 16px;
  left: 16px;
  border-radius: 8px 0 0 0;
}

.tl-2 {
  width: 16px;
  height: 18px;
  top: 20px;
  left: 32px;
}

.tl-3 {
  width: 19px;
  height: 18px;
  top: 31px;
  left: 20px;
}

/* Bottom Right */
.br-1 {
  width: 18px;
  height: 18px;
  bottom: 20px;
  right: 20px;
  border-radius: 0 0 10px 0;
}

/* --- HOVER STATE --- */

.btn-container:hover .btn-body {
  /* THE STEPPED INNER CUT: matching your yellow markup */
  clip-path: polygon(
      /* Top Edge start */
      33px 0%,
      100% 0%,
      /* Bottom Right Gap */
      100% calc(100% - 20px),
      calc(100% - 20px) calc(100% - 20px),
      calc(100% - 20px) 100%,
      /* Bottom Edge to Left Edge */
      0% 100%,
      0% 33px,
      /* THE STEPS (Top Left) */
      18px 33px,
      18px 18px,
      33px 18px,
      33px 0%);
}

/* Show and offset the shards exactly like the image */
.btn-container:hover .shard {
  opacity: 1;
}

.btn-container:hover .tl-1 {
  transform: translate(-8px, -8px);
}

.btn-container:hover .tl-2 {
  transform: translate(-2px, -12px);
}

.btn-container:hover .tl-3 {
  transform: translate(-12px, -2px);
}

.btn-container:hover .br-1 {
  transform: translate(8px, 8px);
}

/* Text Styling */
.btn-text {
  display: inline-block;
  transition: var(--transition);
}

.btn-container:hover .btn-text {
  text-shadow: 0 0 20px var(--glow);
}

/* CLICK STATE: Shatter */
/* .btn-container:active .shard {
            opacity: 0;
            transform: scale(0.2) translate(var(--tx), var(--ty));
        } */
.btn-container:active .tl-1 {
  --tx: -40px;
  --ty: -40px;
}

.btn-container:active .tl-2 {
  --tx: 0px;
  --ty: -50px;
}

.btn-container:active .tl-3 {
  --tx: -50px;
  --ty: 0px;
}

.btn-container:active .br-1 {
  --tx: 40px;
  --ty: 40px;
}

.partner-btn span {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  color: #ffffff;
}

/* hover glow */
.partner-btn:hover span {
  text-shadow:
    0 0 3px #ffffff,
    0 0 6px #ffffff,
    0 0 10px rgba(255, 255, 255, 1.9);
}

.partner-btn {
  position: relative;
  background: black;
  color: white;
  padding: 14px 35px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  overflow: visible;
}

.partner-box a {
  display: block;
  text-align: center;
}

.partner-box a {
  background: #f5f5f5;
  /* padding:10px 0; */
}

.partner-box {
  transition: 0.8s ease;
}

.partner-box img {
  transition: 0.8s ease;
}

.partner-box:hover {
  background: #000;
}

.partner-box:hover img {
  transform: scale(1.3);
}

.partner-box:hover p {
  color: #fff;
}

.partner-scroll {
  overflow-x: auto;
}

.partner-scroll .row {
  flex-wrap: nowrap;
}

/* =================================================================================== */

/* incubator section */

.inside-incubator-text p {
  font-size: 17px !important;
  font-weight: 300;
  letter-spacing: 0%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #575757;
}

.section-background {
  background-color: #f5f5f5;
}

.incubation-framework {
  border-top: 1px solid #ddd;
}

.phase-box {
  position: relative;
  padding: 50px;
  border-bottom: 1px solid #ddd;
  transition: 0.3s ease;
}

.phase-box:hover {
  background: #ffffff;
}

.phase-box:nth-child(odd) {
  border-right: 1px solid #ddd;
}

.phase-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #6C0802;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
}

.phase-box h3 {
  font-weight: 600 !important;
  font-size: 27px;
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 10px;
}

.phase-box p {
  font-size: 16px;
  color: #575757;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 26px !important;
  letter-spacing: 0%;
}

.phase-number {
  position: absolute;
  right: 40px;
  top: 20px;
  font-size: 65px;
  color: #e6e6e6;
  font-weight: 700;
  font-family: "Kode Mono", monospace;
}

/* ================================================================================ */

/* why-partner-section */

.why-partner-row {
  border-top: 1px solid #ddd;
}

.why-partner-box {
  padding: 40px;
  border: 1px solid #ddd;
}

.why-partner-box:hover {
  background: #fff;
}

.why-partner-number {
  font-size: 40px;
  font-weight: 700;
  color: #e5e5e5;
  display: block;
  margin-bottom: 15px;
  font-family: oswald, sans-serif;
}

.why-partner-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

.why-partner-text {
  font-size: 14px;
  color: #575757;
  line-height: 1.6;
}

/* lab-section */

.live-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid #22A05A;
  border-radius: 6px;
  color: #22A05A;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  text-decoration: none;
  font-family: "Kode Mono", sans-serif;
}

.live-btn:hover {
  color: #ff4d4d;
}

/* red dot */
.live-btn .dot {
  width: 8px;
  height: 8px;
  background-color: #ff4d4d;
  border-radius: 50%;
}
.home-live-btn .live-btn {
  border-color: rgba(139, 26, 26, 0.4);
  color: #E30A1E;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: normal;
  font-weight: 400;
  border-radius: 20px;
  padding: 3px 12px;
  border: 1px solid;
  background: rgba(139, 26, 26, 0.2);
}
.event-date {
    margin-top: -4.5%;
}

.custom-badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Kode Mono", sans-serif;
}

.event-date span {
  line-height: 0.5 !important;
  /* 👈 ye hi main fix hai */
}

.custom-badge.next-up {
  background-color: #b11212;
  color: #fff;
}

/* #575757 badge */
.custom-badge.workshop {
  background-color: #3a3f45;
  color: #ccc;
}

.custom-badge-outline {
  display: inline-block;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ccc;
  /* text #575757 */
  border: 1px solid #5a5f66;
  /* outline */
  border-radius: 6px;
  background: transparent;
  font-family: "Kode Mono", sans-serif;
}

/* item */
.event-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 🔥 last item ka bottom border remove */
.event-item:last-child {
  border-bottom: none;
}

/* date */
.event-date h3 {
  font-size: 42px;
  font-family: 'Kode Mono', monospace;
  /* color: red; */
  /* margin: 0; */
}

/* default (sab #575757) */
.event-date h3 {
  color: #999;
}

/* 🔥 sirf active event red */
.active-event .event-date h3 {
  color: #b11212;
}

.event-date span {
  font-size: 12px;
  color: #999;
  font-family: "Kode Mono", monospace;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
}

/* single circle */
.icon-circle {
  width: 12px;
  height: 12px;
  border: 2px solid #aaa;
  border-radius: 50%;
  display: inline-block;
}

/* double circle */
.icon-circle-double {
  width: 14px;
  height: 14px;
  border: 2px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.icon-circle-double::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #aaa;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.event-speaker {
  gap: 10px;
  font-size: 18px !important;
  color: #ccc;
  font-family: "Ubuntu", sans-serif;
}

.speaker-text {
  font-family: 'Jakarta Sans', sans-serif;
}

/* circle */
.speaker-circle {
  width: 30px;
  height: 30px;
  background-color: #1f2430;
  color: #aaa;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
}

/* text styling */
.speaker-text .name {
  color: #fff;
  font-weight: 600;
}

.speaker-text .role {
  color: red;
}

/* content */
.event-content h5 {
  color: #fff;
  font-weight: 600;
  font-size: 22px !important;
  font-family: "Ubuntu", sans-serif;
}

.event-head h5 {
  font-size: 26px !important;
  font-family: 'Barlow Condensed', sans-serif;
}

.event-speaker {
  font-size: 17px !important;
  color: #ccc;
  margin-bottom: 3px;
}

.event-meta-group {
  display: flex;
  flex-direction: column;
}

.event-speaker span {
  color: red;
}

.event-meta {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 8%;
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 0px;
}

/* ============================================================== */

/* newsletter section */

.newsletter-section {
  background-color: #f1f1f1;
}

/* heading */
.newsletter-title {
  font-size: 52px;
  font-weight: 550 !important;
  line-height: 50px !important;
  letter-spacing: 1px;
  font-family: 'Barlow Condensed', sans-serif;
}

.newsletter-title span {
  color: #7a0000;
  /* red */
}

/* input */
.newsletter-input {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px;
  opacity: 70%;
  max-width: 400px;
  font-family: 'Barlow Condensed', sans-serif;
  /* 🔥 main fix */
}

.newsletter-input::placeholder {
  color: #000 !important;
  opacity: 32% !important;
  font-size: 20px;
}

/* text */
.newsletter-text {
  color: #575757;
  font-size: 20px;
  font-family:
    Bebas Neue,
    sans-serif;
}

/* button */
.newsletter-btn {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 6px 35px;
  background: transparent;
  font-size: 14px;
}

.newsletter-btn:hover {
  background: #000;
  color: #fff;
}

.form-label,
.newsletter-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
}

/* ==================================================== */

/* card section */

.scroll-section {
  height: 300vh;
  position: relative;
}

/* HERO (STATIC) */
.hero-container {
  position: sticky;
  top: 15%;
  height: calc(50vh - var(--header-height));
  /* display: flex; */
  align-items: center;
  z-index: 1;
  margin-bottom: 65%;
}

:root {
  --header-height: 80px;
}

.display-1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 0.9;
}

.track-card p {
  font-size: 18px !important;
  font-family: 'Jakarta Sans', sans-serif;
}

.track-card span {
  color: #780000;
  font-weight: 500;
  font-size: 40px !important;
  font-family: 'Barlow Condensed', sans-serif;
}

/* STACK CONTAINER */
.stack-container {
  position: sticky;
  top: 220px !important;
  height: 600px;
  max-width: 920px;
  margin: auto;
  z-index: 5;
}

/* CARDS */
.track-card {
  position: absolute;
  width: 80%;
  background: #fff;
  border: 1px solid #333;
  border-radius: 0 20px 20px 20px;
  padding: 45px;
  min-height: 300px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

/* STACK ORDER */
.track-card:nth-child(1) {
  z-index: 3;
}

.track-card:nth-child(2) {
  z-index: 2;
}

.track-card:nth-child(3) {
  z-index: 1;
}

.track-card {
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
}

/* LABEL */
.track-card::before {
  content: attr(data-label);
  position: absolute;
  top: -42px;
  left: -1px;
  width: 280px;
  height: 42px;
  background: white;
  border: 1px solid #333;
  border-bottom: none;
  border-radius: 18px 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 24px;
  font-weight: 600;
  color: #780000;
  font-family: 'barlow condensed', sans-serif;
  padding-left: 3%;
}

.contact-btn {
  border: 2px solid #000;
  border-radius: 12px;
  padding: 6px 30px;
  background: transparent;
  font-weight: 700;
  margin-top: 20px;
}

/* ================================================================================ */

/* feature */

.incubator-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 20px;
  max-width: 850px;
  position: relative;
}

/* cards */

.card {
  background: #f3f3f3;
  border: 1px solid #aaa;
  border-radius: 20px;
  padding: 30px;
  font-family: "Kode Mono", monospace;
  position: relative;
}

/* top big card */

.card1 {
  grid-column: 1;
  grid-row: 1;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 70%, 90% 100%, 0 100%);
}

/* bottom left */

.card2 {
  grid-column: 1;
  grid-row: 2;
}

/* bottom right */

.card3 {
  grid-column: 2;
  grid-row: 2;
}

/* numbers */

.num {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 70px;
  color: #d6d6d6;
  font-weight: 700;
}

/* red corner */

.corner {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 50px;
  height: 50px;
  background: #8c0a02;
  border-top-left-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* know more card */

.know-more {
  grid-column: 2;
  grid-row: 1;
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Kode Mono", monospace;
}

.know-more h4 {
  font-size: 28px;
}

.arrow {
  font-size: 40px;
  text-align: right;
}

/* connector bar */

.connector {
  position: absolute;
  left: 40%;
  top: 48%;
  width: 120px;
  height: 30px;
  background: #000;
  border-radius: 20px;
}

/* ===================================================================== */

/* small section */

.zero-section {
  background: #6C0802;
  color: #fff;
  padding: 80px 0 !important;
}

/* main heading */
.zero-title {
  font-size: 70px;
  font-weight: 500 !important;
  line-height: 1.1;
  font-family: 'Barlow Condensed', sans-serif;
}

/* highlighted text */
.zero-title .highlight {
  color: #ffb3b3;

}

/* -------------------------------------------------------------------22222222222222222222222   partner pageeeee */

/* track section */

.track-wrapper {
  position: relative;
  background: #eee2d6;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  /* height: 600px; */
}

.track-small {
  font-size: 10px;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-family: ubuntu, sans-serif;
}

.track-title {
  color: #b20000;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: oswald, sans-serif;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.track-item {
  display: none;
}

.track-item.active {
  display: block;
}

.track-actions {
  margin-top: 40px;
  border-top: 1px solid #000;
  padding-top: 20px;
}

.track-item p {
  font-size: 16px;
  color: black;
  line-height: 1.6;
  font-family: ubuntu, sans-serif;
}

.btn-black {
  background: #000;
  color: #fff;
  border: none;
  padding: 7px 25px;
  margin-right: 10px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  font-family:
    kode mono,
    monospace;
}

.btn-outline {
  border: 1px solid #000;
  background: transparent;
  padding: 10px 20px;
  border-radius: 18px;
}

.track-steps {
  position: absolute;
  right: -50px;
  top: 70px;

  display: flex;
  flex-direction: column;
  gap: 50px;
  /* 👈 spacing control */

  height: auto;
  justify-content: space-between;
}

.step {
  background: #e0d5c6;
  height: 110px;
  width: 50px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #777;
  font-size: 20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.step span {
  transform: rotate(90deg);
}

/* active */
.step.active {
  background: #fff;
  color: #000;
}

.step.active {
  background: #eee2d6;
  color: #000;
}

.nav-btn {
  border: none;
  font-size: 40px;
  padding: 20px;
  margin: 20px;
}

.next-btn {
  color: red;
}

.next-btn.disabled {
  color: #888;
  pointer-events: none;
}

.nav-btn {
  /* remove default button style */
  background: none;
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;

  /* custom size */
  width: 130px;
  height: 130px;
  cursor: pointer;
  margin-left: -25px;
  display: inline-block;
}

.text-end {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  /* 👈 control gap from here */
  margin-top: 330px !important;
}

/* ▶ Right (Red) */
.next-btn {
  background: #c40000;
  /* red */
  clip-path: polygon(20% 10%, 90% 50%, 20% 90%);
  border-radius: 14px;
}

/* LEFT (prev) */
.prev-btn {
  background: #c40000;
  /* 👈 active pe red hi rahe */
  clip-path: polygon(80% 10%, 10% 50%, 80% 90%);
  border-radius: 14px;
}

/* DISABLED STATE (#575757) */
.nav-btn.disabled {
  background: #6b6b6b !important;
  pointer-events: none;
}

/* optional hover */
.nav-btn:hover {
  transform: scale(1.08);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .track-wrapper {
    position: relative;
    background: #eee2d6;
    border-radius: 20px;
    padding: 40px;
    max-width: 330px !important;
    /* height: 500px; */
  }

  .step {
    background: #e0d5c6;
    height: 90px;
    width: 35px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #777;
    font-size: 20px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .track-steps {
    position: absolute;
    right: -35px;
    top: 70px;
    height: 200px;
    gap: 20px !important;
  }

  .text-end {
    margin-top: 20px !important;
  }

  .track-row {
    flex-direction: column-reverse !important;
    /* 👈 sirf yaha apply hoga */
  }
}

.bg-partner {
  background-color: #edecea;
  padding: 80px 0;
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.track-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 16px;
}

/* icon box (green background) */

/* SVG / image */

/* text */
.track-list .text {
  font-size: 16px;
  color: black;
  line-height: 1.5;
}

/* ============================================================================================================ */

/* challenge section */

.challenge-section {
  background: #2c2f35;
  color: #fff;
  /* padding: 10px 0; */
  /* min-height: 100vh; */
}

/* Title */
.challenge-title {
  font-family: 'barlow condensed', sans-serif;
  font-size: 64px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: 1px;
}

.challenge-title span {
  color: #ff0000;
}

/* Subtitle */
.challenge-subtitle {
  font-size: 28px;
  margin: 20px 0;
  color: white;
  font-family: 'plus jakarta sans', sans-serif;
}

/* Description */
.challenge-desc {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: white;
  font-family: 'plus jakarta sans', sans-serif;
  line-height: 1.6;
  letter-spacing: 2%;
}

/* Tags */
.challenge-tags {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  /* margin-top: 110px !important; */
}

.tags.should {
  margin-top: 140px !important;
}

.challenge-tags span {
  border: 1px solid #777;
  padding: 8px 8px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ccc;
  display: inline-block;
  font-family: 'Kode Mono', monospace;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 6px;
}

/* 🔥 HOVER EFFECT */
.challenge-tags span:hover {
  color: #fff;
  background-color: rgba(255, 59, 59, 0.1);
}

/* ============================================================================================================ */

/* ready section */

.ready-section {
  background: #6C0802;
  color: #fff;
  padding: 100px 0;
  position: relative;
  min-height: 350px;
}

/* small text */
.ready-small {
  font-size: 10px;
  letter-spacing: 3px;
  color: #f5bcbc;
}

/* title */
.ready-title {
  font-family: 'barlow condensed', sans-serif;
  font-size: 54px;
  margin: 10px 0;
}

/* description */
.ready-desc {
  color: white;
  opacity: 85%;
  font-size: 16px;
  font-family: 'plus jakarta sans', sans-serif;
  line-height: 1.6;
}

/* -------------------------------------------------------------------3333333333333333333333333333333   founder pageeeee */

/* timeline section */
.founder-tab .live-btn{
  border: 1.33616px solid rgba(0, 0, 0, 0.65);
  border-radius: 6px;
  font-family: 'kode mono', monospace;
  color: #000 !important;
  font-size: 14px;
  padding: 10px 16px;
}

.timeline-section {
  padding: 80px 0;
  text-align: center;
}

.timeline-title {
  font-weight: 600 !important;
  font-size: 48px;
  font-family: 'Barlow Condensed', sans-serif;
}

.timeline-title span {
  color: #780000;
}

.timeline-wrapper {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

/* Line */
.timeline-line {
  position: absolute;
  top: 20%;
  left: 0;
  height: 2px;
  width: 100%;
  background: #c0392b;
  /* light #575757 base */
}

/* Animated Red Line */
.timeline-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #c0392b;
  transition: width 1.5s ease;
}

/* Hover Animation */
.timeline-wrapper:hover .timeline-line::after {
  width: 100%;
}

/* Steps */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.count {
  text-align: center;
  width: 14%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

/* Circle */
.circle {
  width: 70px;
  height: 70px;
  background: #a32020;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(163, 32, 32, 0.15);
}

/* Active */
.count.active {
  opacity: 1;
  transform: translateX(0);
}

/* Default only first visible */
.count:first-child {
  opacity: 1;
  transform: translateY(0);
}

/* Text */
.count small {
  display: block;
  color: #8B1A1A;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: 'Barlow Condensed', sans-serif;
}

.count h6 {
  font-weight: bold;
  margin-top: 5px;
  font-family: 'plus jakarta sans', sans-serif;
}

.count p {
  font-size: 12px;
  color: #6B6866;
  max-width: 140px;
  font-family: 'plus jakarta sans', sans-serif;
  margin: auto;
}

/* Hover Animation Trigger */
.timeline-wrapper:hover .timeline-line {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-line {
    display: none;
  }

  .count {
    width: 100%;
  }
}

/* ===================================================================== */

/* selection section */

.step-wrapper {
  border: 1px solid #ddd;
}

.step-box {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.step-box:nth-child(4) {
  border-right: none;
}

@media (max-width: 991px) {
  .step-box:nth-child(2n) {
    border-right: none;
  }
}

.step-inner {
  padding: 30px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -8px;
  right: 15px;
  font-size: 80px;
  color: rgba(0, 0, 0, 0.05);
  font-weight: bold;
  font-family: "Kode Mono", sans-serif;
}

.step-desc {
  font-size: 14px !important;
  font-family: 'plus jakarta sans', sans-serif;
  color: #6B6866;
  font-weight: 300;
}

.step-icon {
  width: 40px;
  height: 36px;
  background: #EDECEA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* SVG size control */
.step-icon img {
  width: 37px;
  height: 18px;
}

.step-label {
  font-size: 12px !important;
  letter-spacing: 2px;
  color: #8B1A1A;
  font-family: 'barlow condensed', sans-serif !important;
}

.step-label {
  margin-bottom: 4px;
  color: #6C0802;
  font-family: 'Space Mono', sans-serif !important;
}

.step-head {
  margin-top: 0;
  font-family: 'barlow condensed', sans-serif;
}

.step-head {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: black !important;
  font-family: 'barlow condensed', sans-serif !important;
}

.step-inner h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.step-inner:hover {
  background-color: white;
}

.step-inner p {
  font-size: 14px;

}

/* =========================================================================================== */

/* FAQ section */

.faq-section {
  color: #fff;
  padding-bottom: 100px;
  padding-top: 100px;
}

/* LEFT TEXT */
.faq-title h2 {
  font-size: 56px;
  font-weight: 500 !important;
  line-height: 1.2;
  font-family: 'Barlow Condensed', sans-serif;
}

.faq-title span {
  color: #ff3b3b;
}

/* ACCORDION STYLE */
.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-size: 24px;
  padding: 15px 0;
  font-weight: 600 !important;
  box-shadow: none;
  font-family: 'plus jakarta sans', sans-serif;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
  /* white arrow */
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #fff;
}

.faq-accordion .accordion-body {
  color: white;
  padding: 10px 0 20px;
  font-family: 'plus jakarta sans', sans-serif;
  font-size: 18px;
}

/* remove default bg */
.accordion-button:focus {
  box-shadow: none;
}

.grow-text {
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  opacity: 50%;
  font-size: 54px;
}

/* ================================================================================================== */

/* opportunity-section */

.info-list {
  width: 100%;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* left text */
.info-left {
  font-size: 16px;
  letter-spacing: 2px;
  color: #bbb;
  font-family: "Kode Mono", sans-serif;
}

/* right text */
.info-right {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* red highlight */
.red {
  color: #ff3b3b;
}

.business-small {
  font-size: 14px !important;
  font-family: "Kode Mono", sans-serif;
}

.step-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.step-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  color: black;
  opacity: 70%;
  font-family: 'plus jakarta sans', sans-serif;
}

/* dash (–) before text */
.step-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #999;
}

.step-card-layout .step-box {
  display: flex;
  border: 1px solid #D8D6D3 !important;
}

/* CARD DESIGN */
.step-inner {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 6px;
  width: 100%;
  height: 100%;

  /* shadow for card feel */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* remove old borders if any */
.no-border-card {
  border: none !important;
  display: flex;
}

.step-card-layout .step-inner {
  background: white;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ============================================================================ */

/* application-section */

.application-section {
  background: linear-gradient(90deg, #0f1115, #1a1d22);
}

/* main box */
.app-box {
  padding: 25px 0;
  position: relative;
}

/* left content */
.app-left {
  padding-left: 35px;
}

.app-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ff3b3b;
}

.app-tag {
  color: #ff3b3b;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-family: "Bebas Neue", sans-serif;
}

.app-title {
  color: #fff;
  font-weight: 500 !important;
  margin-bottom: 5px;
  font-family: 'barlow condensed', sans-serif;
}

.app-desc {
  color: #aaa;
  font-size: 14px;
}

/* SCROLL */
.event-scroll {
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.event-scroll::-webkit-scrollbar {
  height: 6px;
}

.event-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.live-btn.small {
  padding: 3px 5px;
  font-size: 10px;
  letter-spacing: 3%;
}

/* CARD */
.event-card {
  min-width: 320px;
  max-width: 340px;
  background: transparent;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 20px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}

/* TOP */
.brand {
  font-size: 12px;
  color: black;
}

.badge-type {
  border: 1px solid #ff3b3b;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #ff3b3b;
}

/* BODY */
.event-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 6px 0;
  font-size: 13px;
}

.event-row span {
  width: 40%;
  color: #999;
  font-size: 14px !important;
  font-family: 'plus jakarta sans', sans-serif;
}

.event-row strong {
  width: 60%;
  font-weight: 600;
  font-size: 14px;
  font-family: 'plus jakarta sans', sans-serif;
}

.event-row p {
  font-size: 14px;
  font-family: 'plus jakarta sans', sans-serif;
  color: #6B6866;
}

.event-img {
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  margin-top: 15px;
}

/* image */
.event-img img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* BUTTON */
.event-btn {
  border: 1px solid #000;
  padding: 6px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.event-btn:hover {
  background: #000;
  color: #fff;
}

/* founder-tab section */

.founder-section {
  background: #f5f5f5;
}

.tab-content.founder {
  position: relative;
  margin-top: -25px;
  min-height: 370px;
}

/* Tabs */
.founder-tabs .nav-link {
  border: 1px solid #ddd;
  border-radius: 12px 12px 0 0;
  margin-right: 10px;
  padding: 12px 40px;
  color: #000;
}

.founder-tabs .nav-link.active {
  background: #ddd;
  border-bottom: none;
}

/* Card */
.founder-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  transition: all 0.4s ease;
}

.founder-card h5 {
  font-weight: 500;
  font-size: 28px;
  font-family: "Ubuntu", sans-serif;
}

.founder-card span {
  font-family: "bebas neue", sans-serif;
  color: brown;
  font-size: 40px;
}

/* Tags */
.tags span {
  /* border: 1px solid #ccc; */
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 12px;
  margin-right: 8px;
  display: inline-block;
  margin-bottom: 8px;
  color: black;
  font-family: 'plus jakarta sans', sans-serif;
}

/* .tag-extra:hover {
  color: #fff !important;
} */

/* Responsive */
@media (max-width: 768px) {
  .founder-card {
    padding: 25px;
  }

  .founder-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .founder-tabs .nav-link {
    white-space: nowrap;
  }
}

/* -------------------------------------------------------------------444444444444444444444444   portfolio pageeeee */

/* venture-hero-banner section */

/* hero parent */
.hero-section.portfolio {
  position: relative;
}

/* background portfolio text */
.portfolio-bg-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

/* container */
.venture-count {
  color: #fff;
}

/* number */
.venture-count h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

/* label */
.venture-count p {
  font-size: 10px;
  letter-spacing: 2px;
  color: #ff3b3b;
  margin: 5px 0 0;
}

/* spacing */
.count-item {
  text-align: center;
}

.count-item h2 {
  font-size: 55px !important;
  font-family: "Kode Mono", sans-serif;
}

.count-item p {
  font-family: "Kode Mono", sans-serif;
}

/* portfolio tab section */

/* TABS */
.custom-badge-outline {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  background: transparent;
  color: #ccc;
  opacity: 90%;
  font-family: 'Kode Mono', monospace;
}

.nav-link.active.custom-badge-outline {
    background: #DB8E89;
    color: #780000;
    border-color: #780000;
}

/* CARD */
.portfolio-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  transition: 0.3s;
  background-color: white;
  cursor: pointer;
  position: relative;
}

.portfolio-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  /* 👈 angled */
  font-size: 18px;
  color: #999;
}

/* LEFT */
.portfolio-left {
  width: 150px;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.logo-box {
  width: 60px;
  height: 60px;
  background: #1e3d2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 10px auto;
  font-weight: bold;
}

.cohort {
  font-size: 11px;
  color: #999;
  font-family: "Kode Mono", sans-serif;
}

/* RIGHT */
.portfolio-right {
  padding-left: 40px;
}

.portfolio-new {
  background-color: white;
}

.portfolio-right h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: 'Bebas Neue', sans-serif;
  color: #0A0A0A;
}

.portfolio-right p {
  color: #575757;
  font-size: 14px;
  font-family: 'plus jakarta sans', sans-serif;
  font-size: 20px;
}

/* TAGS */
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.tag.green {
  border-color: #28a745;
  color: #28a745;
}

/* 🔥 HOVER EFFECT (IMPORTANT) */
.portfolio-card:hover {
  background: #000;
  color: #fff;
}

.portfolio-card:hover .portfolio-right h3 {
  color: #ccc;
}

.portfolio-card:hover .portfolio-right p {
  color: #ccc;
}

.portfolio-card:hover .portfolio-left {
  border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-card:hover .tag {
  border-color: #fff;
  color: #fff;
}

.tag-extra {
  font-family: "Kode Mono", sans-serif;
  font-size: 10px;
  margin-top: 5px;
}

.portfolio-card:hover .tag.green {
  border-color: #00ff88;
  color: #00ff88;
}

/* .venture-text {
  font-family: "Kode Mono", sans-serif;
} */

/* -------------------------------------------------------------------5555555555555555555555555   NEWSSSS pageeeee */

/* news tab section */

/* TABS */
.news-tab .nav-link {
  border: 1px solid #ccc;
  padding: 8px 18px;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-family: 'Kode Mono', monospace !important;
}

.news-tab .nav-link.active {
  background: #FFC6C6;
  border-color: #f2b6b6;
  color: black;
}

.news-content h2 span {
  color: #780000;
  /* apna color yaha change karo */
}

/* CONTENT */
.news-content h2 {
  color: #000;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 51px;
  line-height: 54.5px;
  font-family: "Barlow Condensed", sans-serif;
}

.news-content .desc {
  margin: 15px 0;
  color: black;
  font-size: 20px;
  font-family: "Ubuntu", sans-serif;
}

/* META */
.meta {
  font-size: 18px;
  color: black;
  font-family: "Ubuntu", sans-serif;
}

/* insight section */

/* CARD */
.insight-card {
  border: 1px solid #E0DEDD;
  /* background: #fff; */
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* CONTENT */
.insight-content {
  padding: 20px;
}

/* TAG */
.insight-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #6e0902;
  font-family: "Kode Mono", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insight-tag .line {
  width: 40px;
  height: 1px;
  background: #b30000;
}

/* TITLE */
.insight-title {
  font-weight: 600 !important;
  font-size: 40px;
  margin: 15px 0;
  line-height: 1;
  font-family: 'barlow condensed', sans-serif;
  color: #000;
}

/* DESC */
.insight-desc {
  color: black;
  font-family: 'plus jakarta sans', sans-serif;
  font-size: 18px;
}

/* FOOTER */
.insight-footer {
  margin-top: auto;
  border-top: 1px solid #E0DEDD;
  text-align: center;
  padding: 15px;
  font-family: "Ubuntu", sans-serif;
}

.insight-footer a {
  text-decoration: none;
  color: #000;
}

/* story section */

.story {
  max-width: 700px;
  margin: 0 auto;
}

/* SUB TEXT */
.story-sub {
  font-size: 13px;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-style: italic;
}

/* TITLE */
.story-title {
  font-size: 55px;
  font-weight: 600 !important;
  line-height: 1;
  margin-bottom: 15px;
  font-family: 'barlow condensed', sans-serif;
  /* color: #fff; */
}

.story-title span {
  color: #ff1e1e;
}

/* DESC */
.story-desc {
  font-size: 15px;
  color: white;
  font-family: 'plus jakarta sans', sans-serif;
  letter-spacing: 5%;
}

.story-section-head {
  background-color: #6C0802;
}

/* -------------------------------------------------------------------444444444444444444444444   portfolio pageeeee */

/* story header section */

.story-section {
  padding: 80px 0 !important;
}

.back-arrow {
  font-size: 70px;
  cursor: pointer;
}

.story-tag {
  border: 1px solid #ccc;
  padding: 5px 44px !important;
  font-size: 14px;
  border-radius: 4px;
  background: #fff;
  font-family: 'kode mono', monospace;
}

.story-text p {
  font-size: 18px;
  font-family: 'plus jakarta sans', sans-serif;
  color: #000;
}

.story-text p:first-child span {
  font-size: 40px;
  /* size increase */
  /* font-weight: bold; */
  line-height: 1;
  display: inline-block;
}

.story-text h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  color: #000;
  text-transform: uppercase;
}

.story-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.story-black p {
  font-style: italic;
  font-family: "ubuntu", sans-serif;
  letter-spacing: 8.4%;
}
.story-black {
  border-left: 5px solid #C01424;
}
/* -------------------------------------------------------------------666666666666666666666   innovation pageeeee */

/* 🔥 BOTTOM STRIP */
.calculation {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 35px 0;
  z-index: 2;
}

/* ITEMS */
.calc-item {
  padding: 10px 0;
}

/* NUMBERS */
.calc-item h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 6%;
  font-family: 'Kode Mono', monospace;
}

/* LABEL */
.calc-item p {
  font-size: 17px;
  letter-spacing: 3px;
  color: #E30A1E;
  margin: 0;
  font-family: 'barlow condensed', sans-serif;
  font-weight: 400;
  line-height: 20px;
}

/* SUP (+ and X styling) */
.calc-item sup {
  color: #ff2b2b;
  font-size: 28px;
  /* size control */
  font-weight: 700;
  top: -20px;
  /* upar shift */
  position: relative;
  margin-right: 4px;
}

/* X ke liye thoda spacing */
.calc-item h2 sup:last-child {
  margin-left: 4px;
  margin-right: 0;
}

.insight-img img {
  height: 296px;
  width: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-links a {
    font-size: 16px;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 45px;
    line-height: 100% !important;
  }

  .hero-desc {
    font-size: 14px;
  }

  .calc-item h2 {
    font-size: 24px;
  }

  .calc-item p {
    font-size: 10px;
  }

  .calc-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* mentor card section */

/* Tabs */
.mentor-tab {
  gap: 10px;
  border: none;
}

.mentor-tab .nav-link {
  border: 1px solid #ddd;
  background: transparent;
  color: #000 !important;
  font-size: 11px !important;
  padding: 6px 14px;
  text-transform: uppercase;
  font-family: 'Kode Mono', monospace !important;
}

.mentor-tab .nav-link.active {
  background: #db8e8975;
  color: #fff;
  border-color: #78000061;
}

/* Tabs Layout */
.mentor-tab {
  gap: 10px;
}

/* Default Tab */
.mentor-tab .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  letter-spacing: 8%;
  padding: 7px 12px;
  text-transform: uppercase;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #575757;
  border-radius: 10px;
  transition: 0.3s;
  font-family: "Bebas Neue", sans-serif;
}

/* Badge Default */
.tab-badge {
  background: #e5e5e5;
  color: #575757;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50px;
}

/* ACTIVE TAB */
/* .mentor-tab .nav-link.active {
  background: #780000;
  color: #fff;
  border-color: #780000;
} */

/* Active Badge */
.mentor-tab .nav-link.active .tab-badge {
    background: rgba(120, 0, 0, 0.59);
    color: #fff;
}

/* Cards */
.mentor-card {
  background: #f5f5f5;
  padding: 0;
  transition: 0.3s;
  min-height: 100px !important;
}

/* Image Placeholder */
.mentor-img {
  height: 350px;
  background: #ADADAD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.25);
}

/* Info */
.mentor-info {
  padding: 22px;
  background: white;
}

.mentor-info h5 {
  margin: 0;
  font-weight: 800 !important;
  font-family: 'plus jakarta sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.mentor-role {
  font-family: 'plus jakarta sans', sans-serif;
  font-size: 14px;
}

.mentor-desc {
  font-family: 'plus jakarta sans', sans-serif;
  opacity: 70%;
  font-size: 13px;
}

.mentor-info h5,
.mentor-info p {
  margin: 0;
}
.mentor-role {
    color: #780000;
}
/* give back section */

.give-back {
  position: relative;
  background-color: #780000;
  /* same red */
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

/* world map image overlay */
.give-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/give-back\ image.png") center no-repeat;
  opacity: 0.5;
  /* light effect */
}

/* content */
.give-back-content {
  position: relative;
  z-index: 2;
}

.give-back h1 {
  color: #fff;
  font-size: 74px;
  font-weight: 500 !important;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
}

/* -------------------------------------------------------------------77777777777777   inner pageeeee */

/* inner banner hero */

.status-box p {
  font-size: 24px;
  font-family: "Kode Mono", sans-serif;
}

.vidarbha-text p {
  font-family: 'plus jakarta sans', sans-serif;
  font-size: 18px;
  color: #6b6866;
}

.vidarsha-status {
  background: white;
  /* border-radius: 16px; */
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px 35px;
  position: relative;
  border-left: 4px solid #c0392b;
  /* 👈 red border */
  max-width: 800px;
}

/* Quote icon */
.quote-icon {
  font-size: 40px;
  color: #d6c6c6;
}

.quote-text {
  font-size: 20px;
  color: #0a0a0a !important;
  line-height: 1.6;
  font-family: "ubuntu", sans-serif;
  font-style: italic;
}

/* Author */
.quote-author {
  font-size: 12px !important;
  color: #999;
  letter-spacing: 1px;
  font-family: "Ubuntu", sans-serif;
  text-transform: uppercase;
}

/* certificate number section */

.cert-box h3 {
  font-family: "Kode Mono", sans-serif;
}

.cert-box p {
  font-size: 14px;
  font-family: 'plus jakarta sans', sans-serif;
}

.certificate-number {
  border: 1px solid #ddd;
  border-radius: 18px;
  overflow: hidden;
}

.cert-wrapper {
  background: #000;
}

/* row style */
.cert-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* remove last border */
.cert-row.last {
  border-bottom: none;
}

/* left text */
.cert-first {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Kode Mono", sans-serif;
}

/* right text */
.cert-second {
  font-size: 15px;
  font-weight: 500;
  font-family: "Kode Mono", sans-serif;
  color: #fff;
}

/* skycraft section */

.skycraft-wrapper {
  background: #000;
}

/* each row */
.skycraft-row {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* last row border remove */
.skycraft-row.last {
  border-bottom: none;
}

/* number */
.skycraft-number {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

/* title */
.skycraft-title {
  font-size: 20px;
  font-family: "ubuntu", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

/* description */
.skycraft-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-family: "ubuntu", sans-serif;
}

.skycraft-text {
  font-size: 50px;
  /* font-style: italic; */
  text-transform: uppercase;
  font-family: 'barlow condensed', sans-serif;
}

.skycraft-text span {
  color: maroon;
}

/* sirf is section ke liye */
.step-3 .step-box {
  width: 33.33%;
}

/* Facility Section */


.facility-simple-box {
  /* position: relative;
  height: 260px;
  border: 1px solid #dcdcdc;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; */
  position: relative;
  height: 260px;
  border: 1px solid #dcdcdc;
  padding: 20px;
  display: flex;
  align-items: flex-end;

}

/* big number */
.facility-simple-box .number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 78px;
  font-weight: 400;
  color: #d8d6d3;
  font-family: 'Kode Mono', monospace;

}

/* text */
.facility-simple-box h5 {
  /* font-size: 20px;
  font-weight: 600;
  font-family: 'Barlow  Condensed', sans-serif;
  margin: 0;
  color: #000; */
  font-size: 22px;
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  margin: 0;
  color: #000;
  line-height: 1.3;
  min-height: 48px;
}

/* hover effect (optional premium) */
.facility-simple-box:hover {
  background: #fff;
  transition: 0.3s;
}



.bento-container {
  max-width: 1100px;
}

.bento-wrapper {
  position: relative;
  width: 100%;
  min-height: 300px;
  cursor: pointer;
}

.bento-card {
  position: relative;
  z-index: 2;
  /* Sits above the SVG */
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
  /* Background is now handled by SVG */
  cursor: pointer;
}

.bento-svg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bento-svg-shape path {
  fill: var(--bg-default);
  stroke: #333;
  stroke-width: 1.5px;
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}

/* 3. Hover Effects */
.bento-wrapper:hover .bento-svg-shape path {
  fill: var(--bg-hover);
  stroke: var(--bg-hover);
  /* Optional: makes border blend in */
}

.bento-wrapper:hover .card-title {
  color: var(--text-hover);
}

.bento-wrapper:hover .card-number {
  /* Using -webkit-text-stroke to match the hollow look in your image */
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.bento-card-1 {
  background: var(--bento-bg);
  border: 1px solid var(--bento-border);
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: var(--bento-text);
}

.bento-card-2 {
  position: relative;
  background: #ffff;
  /* border: 1px solid #333; */
  min-height: 350px;
  border-radius: 30px;
  /* Flatten ONLY the top right to receive the tab */
  border-top-left-radius: 30px;
  border-top-right-radius: 0;
  margin-top: 50px;
  padding: 30px;
  /* Keeps the border visible on clipped elements */
  filter: drop-shadow(1px 0 0 #333) drop-shadow(-1px 0 0 #333) drop-shadow(0 1px 0 #333) drop-shadow(0 -1px 0 #333);
  cursor: pointer;
}

/* THE TAB (Now on Top Right) */
.bento-card-2::after {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  /* Attached to right */
  width: 55%;
  height: 51px;
  background: #ffff;
  z-index: 2;
  /* 1. Mirror the corner rounding: round top-right, flat top-left (for the cut) */
  border-radius: 12px 14px 0 0;
  /* 2. Inverse the mask angle: 225deg cuts the TOP-LEFT of this right-hand tab */
  -webkit-mask-image: linear-gradient(225deg, transparent 20px, black 20px);
  mask-image: linear-gradient(225deg, transparent 20px, black 20px);
}

/* THE SCOOP (The inward curve where the tab meets the card on the left side of the tab) */
.bento-card-2::before {
  content: "";
  position: absolute;
  top: -1px;
  /* Calculate position: Right side of card minus the tab width */
  right: calc(45% - 1px);
  width: 25px;
  height: 25px;
  background: transparent;
  z-index: 3;
}

.bento-card-2,
.bento-card-2::after,
.bento-card-2::before {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

/* 2. Main Card Hover */
.bento-card-2:hover {
  background-color: var(--bento-accent);
  /* Your desired hover color (e.g., Black) */
  color: #fff;
  /* Optional: change text color to white */
}

/* 3. Tab Hover (The top right part) */
.bento-card-2:hover::after {
  background-color: var(--bento-accent);
  /* Must match main card hover color */
}

/* 4. Scoop/Shoulder Hover (The inward curve) */
.bento-card-2:hover::before {
  /* We use box-shadow to fill the curve with the new hover color */
}

/* The Number 2 Styling */
.card-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px #ccc;
  opacity: 0.6;
}

.bento-card-3 {
  position: relative;
  background: #fff;
  /* Your background color */
  border-radius: 30px;
  /* Smooth rounded corners for the main body */
  /* Ensure the top-left corner of the main box is flat to meet the tab */
  border-top-left-radius: 0;
  min-height: 350px;
  padding: 40px;
  margin-top: 50px;
  /* Space for the tab */
  filter: drop-shadow(1px 0 0 #333) drop-shadow(-1px 0 0 #333) drop-shadow(0 1px 0 #333) drop-shadow(0 -1px 0 #333);
  cursor: pointer;
}

/* The Tab (The top-left part) */
.bento-card-3::before {
  content: "";
  position: absolute;
  top: -70px;
  /* Height of the tab */
  left: 0.5px;
  /* Align with main border */
  width: 260px;
  height: 71px;
  background: #fff;
  border-bottom: none;
  /* Hide border where it meets the card */
  border-radius: 16px 14px 0 0;
  /* Drawing the diagonal cut with a simple linear clip-path */
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
}

/* The "Shoulder" (The inward curve on the right of the tab) */
.bento-card-3::after {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 178px;
  /* Position right after the tab */
  width: 40px;
  height: 40px;
  border-top-left-radius: 30px;
  /* Create the inverted curve using box-shadow */
  pointer-events: none;
}

.bento-card-3,
.bento-card-3::before,
.bento-card-3::after {
  cursor: pointer;
}

/* 2. Main Card Hover */
.bento-card-3:hover {
  background-color: var(--bg-hover);
  /* Change to your desired hover color */
  color: #fff;
}

/* 3. Tab Hover (The top part) */
.bento-card-3:hover::before {
  background-color: var(--bg-hover);
  /* Must match main card hover color */
}

/* 4. Shoulder Hover (The inward curve) */
.bento-card-3:hover::after {
  /* Update the box-shadow to match the new background color */
  box-shadow: -15px -15px 0 0 var(--bg-hover);
}

.clip-black {
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%); */
  border-radius: 20px;
}

/* Numbers */
.card-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 80px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2px #ccc;
  /* Outlined look */
  font-family: sans-serif;
}

.n-1 {
  top: 10px;
  left: 40px;
}

.n-2 {
  top: 10px;
  right: 40px;
}

.n-3 {
  bottom: -10px;
  right: 20px;
}

/* Title */
.card-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: auto;
}

/* ✅ CURVED TRIANGLE (SVG) */
.triangle-accent {
  position: absolute;
  left: 9.5%;
  width: 110px;
  height: 110px;
  z-index: 5;
  transform: rotate(3deg);
  /* top: 33%; */
}

.triangle-accent svg {
  width: 100%;
  height: 100%;
}

.triangle-accent path {
  fill: var(--bento-accent);
}

/* Black card */
.card-black {
  background: #fff;
  color: #000;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid #333;
  border-radius: 30px 30px 30px 30px;
  /* Keeps the bottom-left sharp for the mask */
  cursor: pointer;
  transition:
    background 0.25s ease-in-out,
    color 0.25s ease-in-out;
}

/* Hover State */
.card-black:hover {
  background: #000;
  /* Light gray to match video */
  color: #fff;
}

/* --- THE ARROW ICON --- */
/* The L-shaped line */
.card-black::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 40px;
  width: 70px;
  height: 50px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  border-bottom-left-radius: 18px;
  transition: border-color 0.25s ease-in-out;
}

/* The Triangle tip */
.card-black::before {
  content: "";
  position: absolute;
  bottom: 43px;
  /* Aligned with bottom border of ::after */
  left: 108px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #000;
  transition: border-left-color 0.25s ease-in-out;
}

/* Match arrow color to text on hover */
.card-black:hover::after {
  border-color: #fff;
}

.card-black:hover::before {
  border-left-color: #fff;
}

/* Pill */
.pill-accent {
  position: absolute;
  background: #000;
  border-radius: 50px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -4.4%;
}

.pill-accent img {
  width: 240px;
}

.pill-inner {
  width: 80%;
  height: 2px;
  border-top: 2px dotted #fff;
}

/* responsive fix */
@media (max-width: 991px) {
  .step-3 .step-box {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .step-3 .step-box {
    width: 100%;
  }
}

.apply-black-btn {
  display: inline-block;
  padding: 6px 35px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #000;
}

/* hover */
.apply-black-btn:hover {
  background-color: #fff;
  color: #000;
}

.portfolio-new .col-lg-4 {
  border: 1px solid #80808085;
  padding: 0 !important;
}

.footer-logo {
  width: 200px;
  max-width: 100%;
}

.partner-scroll-wrapper .stack-container {
  position: unset;
  top: 220px !important;
  height: 600px;
  max-width: 75%;
  margin: auto;
  z-index: 5;
}

.partner-scroll-wrapper .track-card {
  position: relative;
  margin-top: 46px;
  background: white;
  border: 1px solid #333;
  border-radius: 0 45px 18px 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-width: 50%;
  justify-content: space-between;
  margin-right: 20px;
}

.partner-scroll-wrapper .track-card::before {
  content: attr(data-label);
  position: absolute;
  top: -42px;
  left: -1px;
  /* Align with the card's left border */
  width: 280px;
  height: 42px;
  background: white;
  border: 1px solid #333;
  border-bottom: none;
  /* Hide border where it meets the card */
  border-radius: 18px 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #780000;
  font-family: 'Barlow Condensed', sans-serif;
  z-index: 1;
  white-space: pre-line;
  padding-top: 20px;
  /* Ensures it stays on top */
}

.partner-scroll-wrapper .partner-row {
  border: none;
}

:root {
  --dark-bg: #1a1a1a;
  --slider-track: #1a1a1a;
  /* Match track to bg for seamless look */
  --slider-thumb: #888888;
}

/* 1. Container & Wrapper Styles */
.partner-scroll-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partner-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* 3. Custom Scroller Slider Styles - MATCHING IMAGE 2 */
.slider-controls-container {
  margin-top: 15px;
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  /* Reduced padding to make arrows feel closer to the track */
  padding: 6px 5px;
  border-radius: 4px;
  /* Sharper corners like the image */
  user-select: none;
  height: 22px;
  /* Explicit height for a chunky feel */
}

.scroll-arrow {
  color: #575757;
  /* Muted gray arrows */
  cursor: pointer;
  font-size: 10px;
  /* Smaller arrowheads */
  background: none;
  border: none;
  padding: 0 5px;
  transition: color 0.2s;
}

.scroll-arrow:hover {
  color: white;
}

.custom-slider-track {
  flex-grow: 1;
  height: 14px;
  /* Much thicker track for the pill look */
  background-color: #262626;
  /* Slightly lighter than bg to see depth */
  position: relative;
  margin: 0 10px;
  border-radius: 20px;
  /* Fully rounded track ends */
  overflow: hidden;
  /* Keeps thumb inside the roundness */
}

.custom-slider-thumb {
  position: absolute;
  height: 100%;
  width: 40%;
  /* Wider thumb as seen in Image 2 */
  background: linear-gradient(to bottom, #999, #777);
  /* Subtle gradient for depth */
  border-radius: 20px;
  /* Fully rounded pill shape */
  left: 0;
  transition: left 0.1s ease-out;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.checklist {
	list-style: none;
	padding: 0;
}

.checklist li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 17px;
	line-height: 17px;
	color: rgba(2, 2, 2, 0.77);
	font-weight: 400;
	font-family: 'Plus Jakarta Sans';
}

/* Custom checkbox */
.checkmark {
	width: 18px;
	height: 18px;
	border: 1.5px solid #cfcfcf;
	border-radius: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	box-sizing: border-box;
}

/* Check symbol */
.checkmark::after {
	content: "✔";
	font-size: 12px;
	color: #7ED957;
	/* light green like image */
	line-height: 1;
}
@media (max-width: 768px) {
  .partner-scroll-wrapper .track-card {
    min-width: 85%;
  }
}

/* --------------------------------------------------RESPONSIVE STYLESHEET---------------------------------------------------------- */

@media (min-width: 1366px) {
  /* .hero-section.innovation {
		height: calc(130vh - 96px);
	
	} */
	.challenge-title {
		font-size: 56px;
		line-height: 100%;
	}
	.story-title {
		font-size: 46px;	
	}
	.hero-title {
		font-size: 86px;
		line-height: 95px !important;
	}
}

@media (max-width: 768px) {
  .min-vh-100 {
    min-height: 50vh !important;
  }

  .insight-title {
    font-size: 38px;
  }

  .story-title {
    font-size: 38px;
  }

  /* .hero-section {
		min-height: 100vh;
	} */
  .hero-desc {
    font-size: 14px;
  }

  .partner-main-heading {
    font-size: 36px;
    line-height: 100%;
  }

  .domain-text {
    font-size: 32px;
  }

  .auto-marquee-content li {
    font-size: 36px;
  }

  .auto-marquee-content {
    gap: 130px;
    animation: autoScroll 4s linear infinite;
  }

  .event-content h5 {
    font-size: 20px !important;
  }

  .event-speaker {
    font-size: 14px;
  }

  .contact-btn {
    padding: 6px 10px;
  }

  .track-card span {
    font-size: 30px !important;
    line-height: 35px;
  }

  .track-card p {
    font-size: 14px !important;
  }

  .why-partner-box {
    padding: 20px;
  }

  .phase-box {
    padding: 3.5%;
  }

  .track-card {
    width: 100%;
  }

  .apply-btn {
    padding: 5px 14px;
  }

  .apply-black-btn {
    padding: 5px 14px;
  }

  .zero-title {
    font-size: 36px;
  }

  .track-row .text-end {
    justify-content: center !important;
    align-items: center;
  }

  .challenge-title {
    font-size: 32px;
    line-height: 100%;
  }

  .challenge-subtitle {
    font-size: 22px;
  }

  .track-title {
    font-size: 28px;
  }

  .portfolio-right h3 {
    font-size: 20px;
  }

  .portfolio-right p {
    font-size: 14px;
  }

  .logo-box {
    width: 40px;
    height: 40px;
    margin: 6px auto;
  }

  .portfolio-right {
    padding-left: 10px;
  }

  .news-content {
    text-align: center;
  }

  .meta {
    justify-content: center;
    gap: 10px;
    font-size: 14px;
  }

  .news-content h2 {
    font-size: 28px;
    line-height: 100%;
  }

  .news-content .desc {
    font-size: 14px;
  }

  .insight-title {
    font-size: 30px;
    line-height: 100%;
  }

  .insight-desc {
    font-size: 14px;
  }

  .story-title {
    font-size: 48px;
    line-height: 100%;
  }

  .story-desc {
    font-size: 14px;
  }

  .back-arrow {
    font-size: 40px;
  }

  .story-tag {
    padding: 5px 20px !important;
  }

  .story-text p {
    font-size: 14px;
  }

  .story-text h3 {
    font-size: 24px;
  }

  .calc-item sup {
    top: -8px;
  }

  .live-btn {
    padding: 6px 14px;
  }

  .give-back h1 {
    font-size: 36px;
    line-height: normal;
  }

  .give-back {
    padding: 60px 10px;
  }

  .mentor-img {
    height: 300px;
  }

  .mentor-tab .nav-link {
    padding: 1px 7px;
  }

  .founder-card {
    position: relative !important;
    left: 0 !important;
  }

  .founder-tabs .nav-link {
    padding: 6px 16px;
  }

  .inside-incubator-text p {
    font-size: 14px !important;
  }

  .bento-card {
    min-height: 250px;
  }

  .bento-card-1 {
    min-height: 250px;
  }

  .bento-card-2 {
    min-height: 250px;
  }

  .bento-card-3 {
    min-height: 250px;
  }

  .triangle-accent {
    position: absolute;
    left: 1.5%;
    width: 60px;
    height: 60px;
    z-index: 5;
    transform: rotate(-13deg);
    margin-top: 5%;
  }

  .newsletter-title {
    font-size: 32px;
    line-height: 100% !important;
  }

  .app-line {
    display: none;
  }

  .app-left {
    padding-left: initial;
  }

  .founder-card h5 {
    font-size: 20px;
  }

  .founder-card span {
    font-size: 26px;
  }

  .tags.should {
    margin-top: 10% !important;
  }

  .tags {
    gap: 10px;
  }

  .tab-content.founder {
    min-height: auto !important;
  }

  .timeline-title {
    font-size: 32px;
    line-height: 100% !important;
  }

  .faq-title h2 {
    font-size: 36px;
    line-height: 100% !important;
  }

  .faq-accordion .accordion-button {
    font-size: 18px;
  }

  .faq-accordion .accordion-body {
    font-size: 14px;
  }

  .grow-text {
    font-size: 26px;
  }

  .ready-title {
    font-size: 60px;
    line-height: 100% !important;
  }

  .challenge-desc {
    font-size: 14px;
  }

  .track-item p {
    font-size: 14px;
  }

  .track-list .text {
    font-size: 14px;
  }

  .nav-btn {
    width: 80px;
    height: 80px;
  }

  .info-left {
    font-size: 14px;
  }

  .info-right {
    font-size: 14px;
  }

  .tagline-footer {
    font-size: 22px;
  }

  .footer-logo {
    width: 100px;
  }

  .top-nav a {
    font-size: 18px;
    line-height: normal;
  }

  .vidarbha-text p {
    font-size: 15px;
  }

  /* .hero-section.innovation .hero-con {
    margin-bottom: 45%;
  } */

  .hero-section.opportunity .hero-con {
    margin-top: 10%;
  }

  .facility-simple-box h5 {
    font-size: 20px;
  }

  .facility-simple-box .number {
    font-size: 40px;
  }

  .facility-simple-box {
    height: 180px;
  }

  .phase-box p {
    font-size: 14px;
  }

  .jakarta-text {
    font-size: 14px;
  }

  .form-label,
  .newsletter-text {
    font-size: 15px;
  }

  .hero-section::after {

    bottom: 90px;
    width: 25%;
    height: 100%;

  }

  .hero-section.portfolio::after {
    /* display: none !important; */
    bottom: 250px !important;
  }

  .zero-section {
    padding: 30px 0 !important;
  }

  .news-content .desc {
    text-align: left !important;
    font-family: 'plus jakarta sans', sans-serif;
    font-size: 14px;
  }

  .news-content h2 {
    text-align: left !important;
    font-size: 40px;
    line-height: 45px;
  }

  .step-card-layout .step-inner {
    padding: 10px;
  }

  .step-list li {
    font-size: 12px !important;
  }

  .application-section {
    background: white;
  }

  .app-title {
    color: black;
    font-family: 'barlow condensed', sans-serif;
    letter-spacing: 2px;
    font-weight: 700 !important;
  }

  .application-box {
    position: relative;
  }

  .application-box .app-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0 !important;
  }

  .application-box .app-left {
    padding-right: 110px;
  }


}



/* =======================================================extra mobile version css */

/* founder page selection processs */

@media (max-width: 768px) {

  .selection-mob-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #8c8c8c;
  }

  .selection-mob-head {
    font-size: 34px;
    font-weight: 600;
    font-family: 'barlow condensed', sans-serif;
  }

  .selection-mob-head span {
    color: #780000;
  }

  .selection-mob-sub {
    color: #575757;
    font-size: 15px;
    font-family: 'plus jakarta sans', sans-serif;
    line-height: 1.6;
  }

  /* timeline */
  .selection-mob-item {
    position: relative;
    margin-bottom: 35px;
  }

  .selection-mob-circle {
    min-width: 45px;
    height: 45px;
    background: #780000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    font-family: 'Kode Mono', monospace;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
  }

  .selection-mob-content h5 {
    font-size: 20px;
    color: #780000;
    margin-bottom: 5px;
    font-family: 'plus jakarta sans', sans-serif;
  }

  .selection-mob-content p {
    font-size: 14px;
    color: #555;
    font-family: 'plus jakarta sans', sans-serif;
    line-height: 1.6;
  }

  /* vertical line */
  .selection-mob-item::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: #ccc;
  }

  .selection-mob-item:last-child::before {
    display: none;
  }
}


/* ========founder timeline section */



@media (max-width: 768px) {

  .timeline-mob-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #8c8c8c;
  }

  .timeline-mob-head {
    font-size: 30px;
    font-weight: 700;
  }

  .timeline-mob-head span {
    color: #780000;
  }

  /* wrapper */
  .timeline-mob-wrapper {
    position: relative;
    padding-left: 25px;
  }

  /* vertical line */
  .timeline-mob-wrapper::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #ccc;
  }

  /* item */
  .timeline-mob-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 14px;
  }

  /* dots */
  .timeline-mob-dot {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #780000;
    border-radius: 50%;
  }

  /* last empty dot */
  .timeline-mob-dot.empty {
    background: transparent;
    border: 2px solid #780000;
  }

  .timeline-mob-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #780000;
    margin-bottom: 5px;
  }

  .timeline-mob-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'plus jakarta sans', sans-serif;

  }

  .timeline-mob-item p {
    font-size: 14px;
    color: #555;
    font-family: 'Kode Mono', monospace;
    line-height: 1.6;
  }

  .timeline-mob-item .mob-text {
    font-family: 'plus jakarta sans', sans-serif;
    font-size: 14px;

  }

  /* last item spacing */
  .timeline-mob-item.last {
    margin-bottom: 0;
  }
}


/* =========mobile should tab section */


@media (max-width: 768px) {


  .mobile-should-tab-head span {
    color: #780000;
  }

  /* tabs */
  .mobile-should-tab-title {
    gap: 10px;
    flex-wrap: wrap;
  }

  .mobile-should-tab-title .nav-link {
    border: 1px solid #ccc;
    color: #555;
    font-size: 12px;
    padding: 6px 12px;
    font-family: 'Kode Mono', monospace;
    border-radius: 8px;
  }

  .mobile-should-tab-title .nav-link.active {
    border-color: #780000;
    color: #780000;
    background: rgba(139, 0, 0, 0.05);
  }

  /* cards */
  .mobile-should-tab-card {
    border: 1px solid #ddd;
    padding: 15px;
    background: #f9f9f9;
    height: 100%;
  }

  .mobile-should-tab-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    font-family: 'barlow condensed', sans-serif;
  }

  .mobile-should-tab-section {
    background-color: #f5f5f5;
  }

  .selection-mob-section {
    background-color: #f5f5f5;
  }

  .timeline-mob-section {
    background-color: #f5f5f5;
  }

  .mobile-should-tab-card p {
    font-size: 13px;
    color: #6f6f6f;
    font-family: 'plus jakarta sans', sans-serif;
  }

  .status-box p {
    font-size: 20px;
  }
}










































/* ===== TOGGLER ICON ===== */

.navbar-toggler {
  border: none;
  background: none;
}

/* hamburger */
.toggler-icon {
  width: 25px;
  height: 2px;
  /* background: #fff; */
  display: block;
  position: relative;
  transition: 0.3s;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon::before,
.toggler-icon::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.3s;
}

.toggler-icon::before {
  top: -8px;
}

.toggler-icon::after {
  top: 8px;
}

/* ACTIVE (CLOSE ICON) */
.navbar-toggler[aria-expanded="true"] .toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 991px) {

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 0 12px 15px;
    color: #ccc;
    position: relative;
  }

  /* LEFT LINE */
  .nav-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 14px;
    background: #888;
    transform: translateY(-50%);
  }

}

@media (max-width: 768px) {
  .track-card {
    opacity: 1 !important;
  }
}


/* SECTION BACKGROUND */
.custom-tab-section {
  background: #fff;
  padding: 120px 0 !important;
}

/* OUTER BOX */
.custom-tab-section .container {
  border: 1px solid #000;
  padding: 60px 40px 40px;
  position: relative;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  width: 85%;
  margin-left: 0;
}

.custom-tab-section #tabHeading {
  content: attr(data-label);
  position: absolute;
  top: -12.0%;
  left: -1px;
  width: 280px;
  height: 65px;
  background: white;
  border: 1px solid #333;
  border-bottom: none;
  border-radius: 18px 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #960000;
  font-family: 'Barlow Condensed', sans-serif;
  z-index: 1;
}

/* INNER #575757 BOX */
.custom-tab-section #tabHeading span {
  background: #e5e5e5;
  padding: 12px 50px;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 600;
  color: #960000;
  font-family: 'Barlow Condensed', sans-serif;
}

/* TOP HEADING BOX */
.custom-tab-display {
  /* position: absolute;
    top: -35px;
    left: 40px;
    background: #e9e9e9;
    padding: 20px 50px;
    border-radius: 20px; */
}

.custom-tab-display h2 {
  font-size: 60px;
  color: #780000;
  margin: 0;
}

/* ===== TABS ===== */
.custom-tab-buttons .nav-link {
  width: 180px;
  height: 70px;
  border: 1px solid #333;
  border-radius: 10px;
  background: transparent;
  margin-right: 20px;
  border-color: #A6A6A6;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  /* text fill remove */
  -webkit-text-stroke: 1px #A6A6A6;
  /* outline color */
  font-family: 'barlow condensed', sans-serif;

}

.custom-tab-content .tab-pane p {
  font-size: 22px;
  line-height: 1.6;
  color: #222;
  font-weight: 400;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.custom-tab-content .tab-pane p span {
  color: #780000;
  font-weight: 600;
  font-size: 42px;
  margin-right: 6px;
  font-family: 'barlow condensed', sans-serif;
}

.custom-tab-buttons .nav-link.active {
    background: #FFC6C6;
    border-color: #000;
    -webkit-text-stroke: 1px #000;
}

/* ===== TAB CONTENT WRAPPER ===== */
.tab-content.custom-tab-content {
  position: relative;
  min-height: 300px;
  margin-top: 40px;
}

/* ===== FLOATING CARD ===== */
.custom-tab-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  transition: 0.4s ease;
}

/* TEXT */
.custom-tab-card h5 {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 500;
}

.custom-tab-card span {
  color: #780000;
  font-size: 36px;
  font-family: "Bebas Neue", sans-serif;
}

/* TAGS */
.custom-tags {
  margin-top: 40px;
}

.custom-tags span {
  border: 1px solid #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.eligibility-section {
  padding: 50px 0;
}

.mobile-three-text p {
  font-size: 18px !important;
  font-family: 'plus jakarta sans', sans-serif;
  letter-spacing: 4%;
}


/* 🔥 Mobile Right Side Stats */
@media (max-width: 768px) {

  .hero-section.portfolio {
    position: relative;
  }

  .venture-count {
      position: absolute;
      right: 15px;
      bottom: 48%;
      flex-direction: column;
      gap: 25px !important;
      text-align: right;
      z-index: 2;
  }

  .venture-count .count-item h2 {
    font-size: 32px !important;
    font-weight: 700;
    color: #fff;
  }
  .business-small {
      font-size: 12px !important;
      font-family: "Kode Mono", sans-serif;
  }

  .venture-count .count-item p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #ccc;
    margin: 0;
  }


}


/* mobile event section */

.event-mobile-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ddd;
}

/* image */
.event-mobile-img {
  height: 160px;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.event-mobile-img span {
  display: block;
  width: 100%;
  height: 100%;
}

.event-mobile-section {
  background: #f5f5f5;
}

.event-mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* content */
.event-mobile-content {
  padding: 15px;
}

/* tags */
.event-mobile-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.tag-red {
  background: #f5dada;
  color: #b30000;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.tag-outline {
  border: 1px solid #ccc;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  color: #575757;
  font-family: 'Kode Mono', monospace;
}

/* title */
.event-mobile-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'barlow condensed', sans-serif;
}

/* desc */
.event-mobile-desc {
  font-size: 12px;
  color: #575757;
  margin-bottom: 12px;
  font-family: 'plus jakarta sans', sans-serif;
}

/* button */
.event-mobile-btn {
  display: block;
  text-align: center;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 8px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}


/* mobile second tracking section */

.mob-sec-track-section {
  background: #f5f5f5;
}

.mob-sec-track-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 18px;
}

/* title */
.mob-sec-track-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'barlow condensed', sans-serif;
}

/* tag */
.mob-sec-track-tag {
  display: inline-block;
  border: 1px solid #bbb;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: 'Kode Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* desc */
.mob-sec-track-desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
  font-family: 'plus jakarta sans', sans-serif;
}

/* button */
.mob-sec-track-btn {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 8px 18px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.mobile-badge {
  font-size: 10px;
  border: 1px solid #ccc;
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 768px) {

  .portfolio-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .tags span {
    padding: 4px 4px;
  }


  /* 🔥 LEFT SIDE CLEAN */
  .portfolio-left {
    text-align: left !important;
    flex: 0 0 50px;
  }

  .portfolio-left .badge {
    display: none;
    /* top badge remove */
  }

  .portfolio-left .cohort {
    display: none;
    /* cohort hide */
  }

  .logo-box {
    width: 45px;
    height: 45px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 🔥 RIGHT SIDE FULL WIDTH */
  .portfolio-right {
    flex: 1;
  }

  .portfolio-right h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  /* desc full width */
  .portfolio-right .col-md-9 {
    width: 100%;
  }

  .portfolio-right p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  /* tags */
  .tags {
    flex-wrap: wrap;
    gap: 6px;
    margin-left: -100px;
  }

  .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .title-row h3 {
    margin: 0;
    font-size: 18px;
  }

  .mobile-badge {
    font-size: 10px;
    border: 1px solid #ccc;
    padding: 2px 6px;
    border-radius: 6px;
  }

  /* 🔥 left side badge hide */
  .portfolio-left .badge {
    display: none;
  }

  .tag {
    font-size: 10px;
    padding: 3px 6px;
  }

  .tag-extra {
    font-size: 11px;
  }

  /* arrow adjust */
  .portfolio-arrow {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    display: none;
  }
}


@media (max-width: 768px) {

  /* 🔥 scope safe */
  .mobile-portfolio-card {
    /* border: none !important; */
  }

  .mobile-portfolio-card .p-4 {
    position: relative;
  }


  /* 🔥 logo adjust (optional clean look) */
  .mobile-portfolio-card .logo-box {
    width: 45px;
    height: 45px;
    font-size: 16px;
    margin-top: 0 !important;
  }

  /* 🔥 ONLY CHANGE: badge right side */
  .mobile-portfolio-card .badge.live-btn {
    float: right;
    margin-top: 14px;
    font-size: 10px;
    border: 1px solid #ccc;
    padding: 2px 6px;
    border-radius: 6px;
  }

  /* 🔥 desc */
  .mobile-portfolio-card .desc {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 18px;
  }

  /* 🔥 bottom tag */
  .mobile-portfolio-card .insight-tag {
    font-size: 11px;
  }

  .mobile-portfolio-card .d-flex {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-portfolio-card .fw-bold {
    position: absolute;
    left: 75px;
    top: 32px;
    margin: 0;
  }

}