@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #ffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}
/* ================= TOPBAR ================= */

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* Logo */
.logo-img {
  width: 60px;
  transition: 0.3s;
}

/* Title Text */
.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: #0d1a38;
  line-height: 1.2;
}

/* Search Box */
.search-box {
  background: #f8f9fa;
  padding: 6px 15px;
  border-radius: 50px;
  width: 280px;
  border: 1px solid #ececec;
}

.search-box input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.search-box i {
  font-size: 18px;
  color: green;
  cursor: pointer;
}

/* Buttons */
.btn-login-project {
  background: #000;
  color: #fff;
  padding: 8px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: 0.3s;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 576px) {
  .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Logo */
  .logo-img {
    width: 45px;
  }

  /* Brand Text */
  .brand-text {
    font-size: 12px;
    line-height: 1.1;
  }

  /* Search box smaller */
  .search-box {
    width: 100%;
    padding: 6px 12px;
  }

  /* Buttons should be smaller and stacked */
  .d-flex.gap-2 {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn-login-project,
  .btn.apply {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 30px;
    flex: 1;
    text-align: center;
  }
}

/* ================= MOBILE ================= */

/* Hide everything except logo */
@media (max-width: 767px) {
  /* hide text, search, buttons */
  .brand-text,
  .search-box,
  .btn-login-project,
  .apply {
  }

  /* center logo properly */
  .topbar {
    padding: 10px 0;
  }

  .topbar .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* smaller logo for mobile */
  .logo-img {
    width: 44px;
  }
}

/* 🔥 Ultra Small Screens (300px) */
@media (max-width: 360px) {
  .logo-img {
    width: 38px;
  }
}

/* Navbar section===================================================== */
/* header */
header {
  width: 100%;
}
.main-navbar {
  background: #000062;
  position: sticky;
  top: 0;
  z-index: 120;
}
/* semantic nav */
nav.navbar {
  max-width: 1014px;
  margin: 0 auto;
  /* padding: 14px 24px; */
  display: grid;
  grid-template-columns: auto 1fr auto; /* hamburger left */
  align-items: center;
  /* gap: 16px; */
}

/* HAMBURGER */
.hamburger {
  display: none; /* shown on mobile later */
  width: 48px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.hamburger:focus {
  outline: 2px solid rgba(0, 86, 214, 0.15);
  border-radius: 6px;
}

/* bars */
.bar {
  display: block;
  height: 3px;
  width: 26px;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  left: 10px;
  transition:
    transform 320ms cubic-bezier(0.2, 0.85, 0.32, 1),
    opacity 220ms,
    top 320ms;
}

/* left, center, right line positions */
.bar-left {
  top: 8px;
  transform-origin: left center;
}
.bar-center {
  top: 18px;
  transform-origin: center;
}
.bar-right {
  top: 28px;
  transform-origin: right center;
}

/* CENTERED NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center; /* center the whole list */
  gap: 34px;
  align-items: center;
}

/* each nav item link */
.nav-links .nav-item {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 4px;
  position: relative;
  display: block;
  transition: color 200ms ease;
}

/* RIGHT-ORIGIN UNDERLINE: start width 0, expand from right to left */
.nav-links .nav-item::after {
  content: "";
  position: absolute;
  right: 0; /* start from right */
  bottom: -8px;
  height: 3px;
  width: 0%;
  background: #ff8c32;
  border-radius: 8px;
  transition: width 280ms ease;
  transform-origin: right; /* animate from right side */
}

/* hover / active state: underline expands full width (right->left) */
.nav-links .nav-item:hover,
.nav-links .nav-item.active {
  color: #ff8c32;
}
.nav-links .nav-item:hover::after,
.nav-links .nav-item.active::after {
  width: 100%;
}

/* DROPDOWN basics (desktop) */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #00417e;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(13, 27, 61, 0.08);
  min-width: 320px;
  padding: 8px 0;
  z-index: 191;
}
.dropdown-menu li {
  padding: 8px 18px;
}
.dropdown-menu li a {
  color: #0d1b3d;
  text-decoration: none;
  font-weight: 500;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ACTION BUTTONS (right side) */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}
.btn {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}
.apply {
  background: #0057ff;
  color: #fff;
}
.enquiry {
  background: #fff;
  border: 2px solid #0057ff;
  color: #0057ff;
}

/* RESPONSIVE: mobile layout */
/* On small screens: hamburger visible, center links hidden (toggleable) */
@media (max-width: 1240px) {
  nav.navbar {
    grid-template-columns: 48px 1fr auto;
    padding: 12px 16px;
  }

  .hamburger {
    display: block;
  }

  /* hide right actions on small screens (or you can keep them) */
  .nav-actions {
    display: none;
  }

  /* nav links become a vertical full-width panel (hidden by default) */
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: 64px;
    flex-direction: column;
    gap: 0;
    background: #00417e;
    border-top: 1px solid #f0f0f0;
    padding: 10px 0;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 260ms cubic-bezier(0.2, 0.85, 0.32, 1);
    z-index: 50;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #f6f6f6;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }

  /* When menu is open */
  .nav-links.open {
    transform: scaleY(1);
  }

  /* Dropdowns become expandable on mobile (no hover) */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 0;
  }
  .dropdown.open > .dropdown-menu {
    display: block;
  }

  .announcement-bar {
    top: 63px !important;
  }
}

/* HAMBURGER -> CROSS animation when .is-active on button */
.hamburger.is-active .bar-left {
  transform: translateY(10px) rotate(45deg) scaleX(1.05);
  left: 6px;
}
.hamburger.is-active .bar-center {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .bar-right {
  transform: translateY(-10px) rotate(-45deg) scaleX(1.05);
  left: 6px;
}
/* parent position */
.dropdown-sub {
  position: relative;
}

/* hide by default */
.dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 320px; /* LEFT side open */
  margin-right: 12px;
  min-width: 240px;
  background: #00417e;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 999;
}

/* hover trigger */
.dropdown-sub:hover > .dropdown-submenu {
  display: block;
}

/* submenu item style */
.dropdown-submenu li {
  list-style: none;
  padding: 8px 18px;
}
/* =====================================================
   MOBILE NAVBAR FINAL FIX (300px–1240px)
===================================================== */

@media (max-width: 1240px) {
  /* FULL MENU PANEL */
  .nav-links {
    top: 56px;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    padding-bottom: 80px;
  }

  /* MENU ITEMS */
  .nav-links .nav-item {
    font-size: 14px;
    padding: 12px 10px;
    width: 100%;
    display: block;
  }

  /* ================= DROPDOWNS ================= */

  /* RESET DESKTOP POSITIONING */
  .dropdown-menu,
  .dropdown-submenu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    min-width: 100% !important;
    box-shadow: none !important;
    border-radius: 0;
    background: #003366;
  }

  /* DISABLE HOVER ON MOBILE */
  .dropdown:hover .dropdown-menu,
  .dropdown-sub:hover .dropdown-submenu {
    display: none;
  }

  /* OPEN VIA .open CLASS (JS) */
  .dropdown.open > .dropdown-menu,
  .dropdown-sub.open > .dropdown-submenu {
    display: block;
  }

  /* SPACING */
  .dropdown-menu li,
  .dropdown-submenu li {
    padding: 8px 0;
  }

  /* INDENT LEVELS */
  .dropdown-menu {
    padding-left: 0;
  }

  .dropdown-submenu {
    padding-left: 18px;
    background: #002b55;
  }

  /* TEXT ALIGN */
  .nav-links li {
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* CARET ALIGNMENT */
  .dropdown > a,
  .dropdown-sub > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* EXTRA SMALL DEVICES (≤360px) */
@media (max-width: 360px) {
  .nav-links .nav-item {
    font-size: 13px;
    padding: 10px 8px;
  }
}

/* Crousel part Is here  =================================================================================== */
/* General carousel height fix */
#carouselExampleCaptions {
  max-height: 100vh;
  overflow: hidden;
}
/* 
.carousel-inner .carousel-item img {
  object-fit: cover;
  height: 75vh;
} */
.container-fluid.crousel {
  /* height: 100vh;
  max-height: 100vh !important; */
  padding: 0 !important;
  position: relative !important;
}
.crousel_title_left {
  position: absolute;
  /* width: 30vw; */
  top: 5vw;
  z-index: 1;
  left: 4vw;
}
.crousel_title_right {
  position: absolute;
  /* width: 100vw; */
  top: 5vw;
  z-index: 1;
  right: 6vw;
}
.crousel_title_right > .logo_img > img {
  width: 10vw;
}
.crousel_title_left > div {
  padding: 1vw 1vw;
  border-radius: 2.5vw;
}
.crousel_title_left > div > .mac-header {
  background-color: #fff;
  text-align: center;
  padding: 1vw;
}

.crousel_title_left > div > .mac-header h1 {
  color: rgb(251 146 60);
  font-size: 4vw;
  font-weight: 900;

  /* letter-spacing: 0.4rem; */
  margin: 0;
}
.carousel-indicators.custom-indicators {
  position: absolute;
  bottom: 15px;
  left: 35%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5vw;
  z-index: 15;
}

/* Remove default dot styling */
.carousel-indicators.custom-indicators button {
  all: unset;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  border-radius: 0.4vw;
}

/* On hover or active, make it fully visible */
.carousel-indicators.custom-indicators button.active,
.carousel-indicators.custom-indicators button:hover {
  opacity: 1;
}

/* Thumbnail image style */
.carousel-indicators.custom-indicators button img {
  width: 8vw;
  height: 5vw;
  object-fit: cover;
  border: 2px solid white;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.mac-subheader {
  background-color: #fff;
  text-align: center;
  padding: 0.4rem 1rem;
  z-index: 900;
}

.mac-subheader p {
  color: #000;
  font-weight: 600;
  font-size: 1.1vw;
  margin: 0;
  letter-spacing: 0.05rem;
}

/* Title positioning inside carousel */
.title {
  position: absolute;
  width: 100%;
  top: 37%;
  left: 4%;
  animation: title 1.2s ease-in-out alternate-reverse;
  color: #fff;
  /* text-align: center; */
}

@keyframes title {
  0% {
    top: 37%;
    opacity: 1;
  }
  100% {
    top: 70%;
    opacity: 0;
  }
}

.title > .title_org {
  font-size: 2vw;
  font-weight: bold;
  color: #fff;
}
.title > .title_org_name {
  font-size: 2vw;
  text-shadow: 3px 3px 4px #000;
  font-weight: bold;
  color: #fff;
  width: 50%;
}
.title > .custom_title {
  color: #fff;
  /* background-color: #fff; */
  width: 35%;
  border-radius: 25px;
  padding: 10px;
}
.title .custom_title > i,
.title .custom_title > span > i {
  margin-top: 20px;
  /* border: 1px solid black; */
  padding: 1vw 1.2vw;
  color: #fff;
  border-radius: 2vw;
  background: rgb(251 146 60);
}
.zoom-out-img {
  animation: zoomOut 8s ease-in-out infinite;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.logo_img > picture > img {
  width: 8vw;
  margin-right: 10px;
}
.crousel_links {
  display: flex;
  gap: 20px;
}
.crousel_links > .crousel_apply {
  text-decoration: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: bold;
  color: #fff;
  background: #ff8c32;
  border: 1px solid transparent;
}
.crousel_links > .crousel_apply:hover {
  border: 1px solid #ff8c32;
  background: transparent;
}
/* ======================== */
/* ========================
   RESPONSIVE (Mobile / Tablet)
======================== */

/* Mobile: up to 576px */
@media (max-width: 576px) {
  /* Carousel height fix for small screens */
  #carouselExampleCaptions {
    max-height: 100vh;
  }

  /* Title box position */
  .crousel_title_left {
    top: 3vw;
    left: 3vw;
  }

  /* Logo on right hide for small screens (clean look) */
  .crousel_title_right {
    display: none;
  }

  /* Main heading size */
  .crousel_title_left > div > .mac-header h1 {
    font-size: 7vw; /* smaller on mobile */
  }

  /* Subtitle text size */
  .mac-subheader p {
    font-size: 3.5vw;
  }

  /* Title text position */
  .title {
    top: 45%;
    left: 4%;
  }

  /* Title text size */
  .title > .title_org,
  .title > .title_org_name {
    font-size: 4vw;
    width: 90%;
  }

  /* Custom title box */
  .title > .custom_title {
    width: 100%;
    font-size: 3.5vw;
    padding: 10px;
  }

  /* Icon inside custom title */
  .title .custom_title > i,
  .title .custom_title > span > i {
    padding: 10px;
    font-size: 3.5vw;
  }

  /* Thumbnail indicators hide on mobile */
  .carousel-indicators.custom-indicators {
    display: none;
  }
}

/* Tablet: up to 991px */
@media (max-width: 991px) {
  .crousel_title_left {
    top: 4vw;
    left: 3vw;
  }

  .crousel_title_right {
    right: 4vw;
  }

  .crousel_title_left > div > .mac-header h1 {
    font-size: 5vw;
  }

  .mac-subheader p {
    font-size: 1.8vw;
  }

  .title {
    top: 42%;
  }

  .title > .title_org_name {
    width: 70%;
    font-size: 2.2vw;
  }

  .carousel-indicators.custom-indicators button img {
    width: 7vw;
    height: 4.5vw;
  }
}
/* ===== BUTTON RESPONSIVE FIX ===== */
.crousel_links {
  display: flex;
  gap: 20px;
}

/* Mobile responsive buttons */
@media (max-width: 576px) {
  .crousel_links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 14px;
  }

  .crousel_links a {
    width: 40%;
    text-align: center;
    font-size: 10px;
    padding: 5px !important;
  }

  .crousel_links .btn {
    border-radius: 10px;
  }

  .crousel_links .crousel_apply {
    font-size: 10px;
  }
}

/* Tablet fix */
@media (max-width: 991px) {
  .crousel_links a {
    font-size: 14px;
    padding: 12px 14px;
  }
}
/* ====== Fix for right padding & responsiveness ====== */

/* Remove default body margin */

/* Fix right padding issue */
.container-fluid.crousel {
  padding: 0 !important;
  margin: 0 !important;
}

/* Make sure carousel doesn't exceed screen width */
.container-fluid.crousel,
#carouselExampleCaptions {
  width: 100vw;
  overflow: hidden;
}

/* ============================================ */
/* Keep your existing CSS below (unchanged)     */
/* ============================================ */

/* 

======================================================================= */

.stats-section {
  background: #fff;
}

.stat-number {
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-title {
  margin-top: 10px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}
/* Announcement ============================================================================== */
/* Announcement Bar */
.announcement-bar {
  width: 100%;
  background: #f4f0eb;
  color: rgba(0, 0, 0, 0.6);
  padding: 8px 0;
  position: sticky;
  overflow: hidden;
  top: 70px;
  z-index: 119;
  border-bottom: 1px solid #334155;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 15px;
}

/* Tag style */
.announcement-bar .tag {
  background: #f59e0b;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.85rem;
}

/* Ticker */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
.announcement-border {
  color: red;
  margin: 0px 5px;
}
.ticker-move {
  display: inline-flex;
  gap: 40px;
  animation: tickerMove 22s linear infinite;
  font-size: 0.95rem;
}
.ticker-category {
  font-weight: 700;
}
.ticker-link > a {
  text-decoration: none;
  color: red;
}
/* Pause on hover */
.ticker-move:hover {
  animation-play-state: paused;
}

.ticker-move span {
  display: inline-block;
}

/* Animation */
@keyframes tickerMove {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .announcement-bar .tag {
    display: none;
  }
  .ticker-move {
    font-size: 0.85rem;
  }
}

/* What we Offer ======================================================================================================================== */

.wwo-wrapper {
  background: #1e293b !important;
}
.wwo-section-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  /* margin-top: 50px; */
  padding-top: 30px;
  color: #fff;
}
.wwo-section-title > span {
  border-bottom: 4px solid rgb(251 146 60);
}
.wwo-section-sub-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  /* margin-top: 50px; */
  padding-top: 30px;
  color: #fff;
}
.wwo-offer-section {
  padding: 60px 0;
  /* background: #242f96; */
  /* border-top-left-radius: 40px;
  border-top-right-radius: 40px; */
  margin-top: 40px;
}

.wwo-offer-card {
  background: #ffffff;
  padding: 35px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
  border: 1px solid #e8e8e8;

  /* default (mobile first) */
  height: auto;
}

/* Laptop / Desktop only */
@media (min-width: 992px) {
  .wwo-offer-card {
    height: 300px;
  }
}
.wwo-offer-card a {
  text-decoration: none;
}

.wwo-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.12);
}

.wwo-icon-box {
  width: 90px;
  height: 90px;
  background: #000;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: white;
  font-size: 40px;
  transition: all 0.3s;
}
.wwo-offer-card:hover .wwo-icon-box {
  background: rgb(251 146 60);
}

.wwo-offer-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #151515;
  margin-bottom: 10px;
}
.wwo-offer-card:hover .wwo-offer-title {
  color: rgb(251 146 60);
}
.wwo-offer-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5rem;
}

/* --------------------------------------------------------------------------- */
/* Scroll left Part */

.scroll-wrapper {
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
}

.technical_co_sponsors {
  border-bottom: 4px solid rgb(251 146 60);
  line-height: 2;
}

.scroll-track {
  display: flex;
  width: fit-content;
  animation: scrollLeft 20s linear infinite;
  gap: 50px;
  align-items: center;
}

.scroll-track img {
  height: 140px;
  object-fit: contain;
  padding: 10px 20px;
  transition: transform 0.3s ease;
}

.scroll-track img:hover {
  transform: scale(1.1);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Footer */
footer {
  box-shadow: 3px 1px 20px 0px black;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgb(251 146 60);
  color: white;
  transform: scale(1.1);
}

/* Scroll Up Section */
.scroll_up {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 20;
  border: 1px solid rgb(251 146 60);
  padding: 5px 10px;
  background: rgb(251 146 60);
  transition: 0.3s all ease;
}

.scroll_up > a {
  text-decoration: none;
  color: #fff;
}

.scroll_up:hover {
  border: 1px solid rgb(251 146 60);
  background: transparent;
}

.scroll_up > a:hover {
  color: rgb(251 146 60);
}

/* =========================== Startup  Community ==================================================================== */

.sc-wrapper {
  /* background: #f7fbff; */
}
.sc-number {
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sc-title {
  font-size: 34px;
  font-weight: 700;
  position: relative;
}

.sc-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin: 10px auto 0;
  background: rgb(251 146 60);
  border-radius: 20px;
}

.sc-subtitle {
  color: #444;
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}

.sc-card {
  /* background: #ffffff; */
  padding: 22px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.sc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.sc-number {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.sc-label {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

/* ==============================  Startup Cards =================================================== */

.startup-section {
  /* background: #f6f9ff; */
}

.startup-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  height: 100%;
  border: 1px solid #eef1f7;
}

.startup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.startup-title {
  font-size: 19px;
  font-weight: 700;
  color: #003d80;
  margin-bottom: 18px;
  min-height: 48px;
}

.startup-logo-box {
  background: #f2f6ff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid #e6ecf5;
  min-height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.startup-logo-box img {
  max-width: 85%;
  max-height: 80px;
  object-fit: contain;
}

.startup-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin-bottom: 25px;
  min-height: 140px;
}

.startup-btn {
  display: inline-block;
  background: #014a8f;
  color: #fff;
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s;
}

.startup-btn:hover {
  background: #003766;
}

/* Statup Card left to right side automatic=================================================================== */
/* WRAPPER */
.event-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
}

/* SLIDER */
.event-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.45s ease;
}

/* CARD */
.event-card {
  min-width: 340px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}
.event-body > a {
  text-decoration: none;
}
.event-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.event-img {
  position: relative;
  text-align: center;
}

.event-img img {
  /* width: 100%; */
  height: 300px;
  object-fit: cover;
  transition: all 0.35s ease;
}

.event-card:hover img {
  transform: scale(1.06);
}

/* DATE TAG */
.event-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 16px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

/* BODY */
.event-body {
  padding: 20px 22px;
}

.event-title {
  font-size: 19px;
  font-weight: 700;
  color: #0b2e4e;
  margin: 0;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  color: #0d6efd;
  margin-top: 4px;
  font-weight: 600;
}

.event-text {
  color: #4c4c4c;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
}

/* VIEW MORE */
.event-more {
  color: #ff6f00;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: 0.3s;
}

.event-more:hover {
  color: #d65a00;
  transform: translateX(4px);
}

/* BUTTONS */
.event-btn {
  background: #003c7b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.event-btn:hover {
  background: #012b56;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .event-card {
    min-width: 280px;
  }
  .event-img img {
    height: 180px;
  }
}

/* ===================Contact Area Part ========================================================================= */

.cta-section {
  /* background: linear-gradient(135deg, #0f172a, #1e293b); */
}

.cta-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #000;
}

.cta-title {
  font-weight: 700;
  color: #fff;
}

.cta-desc {
  color: #cbd5e1;
}

.cta-btn {
  background: linear-gradient(135deg, #4cc9f0, #4361ee);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #4895ef, #3a0ca3);
  transform: translateY(-3px);
}

/* Right Box */
.cta-contact-box {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #e2e8f0;
}

.cta-contact-box i {
  color: #4cc9f0;
  font-size: 1.2rem;
}

/* ====================== Footer Section Part ================================================================================= */

.footer-modern {
  background: #0b0f19;
  color: #ddd;
  position: relative;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.footer-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #cdd3e1;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4cc9f0;
}

.footer-input {
  border-radius: 10px 0 0 10px !important;
  border: none;
  padding: 10px;
}

.btn-subscribe {
  background: #4cc9f0;
  border-radius: 0 10px 10px 0;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 0 14px;
}

.btn-subscribe:hover {
  background: #30a0cb;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #cdd3e1;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #4cc9f0;
}

.map-thumb iframe {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #1b2234;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

/* ---------------- Sidebar ---------------- */
.sidebar {
  position: fixed;
  top: 0;
  height: 100%;
  left: 0;
  width: 260px;
  background: #0d0b1a;
  z-index: 100;
  transition: all 0.4s ease;
  box-shadow: 2px 0 18px rgba(0, 0, 0, 0.2);
}

.sidebar.close {
  width: 78px;
}

.sidebar .logo-details {
  height: 65px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar .logo-details i {
  font-size: 32px;
  color: #fff;
  min-width: 78px;
  text-align: center;
}

.sidebar .logo-details .logo_name {
  font-size: 21px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.sidebar.close .logo-details .logo_name {
  opacity: 0;
  pointer-events: none;
}

/* ---------------- Links ---------------- */
.sidebar .nav-links {
  padding: 18px 0 120px 0;
  overflow-y: auto;
}

.sidebar .nav-links::-webkit-scrollbar {
  width: 3px;
}

.sidebar .nav-links::-webkit-scrollbar-thumb {
  background: #302d52;
  border-radius: 10px;
}

.sidebar .nav-links li {
  list-style: none;
  transition: 0.3s ease;
}

.sidebar .nav-links li:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
}

.sidebar .nav-links li i {
  min-width: 78px;
  text-align: center;
  color: #d6d6ff;
  font-size: 21px;
  transition: 0.2s ease;
}

.sidebar .nav-links li a .link_name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease;
}

.sidebar.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}

/* ---------------- Dropdown Arrow ---------------- */
.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}

.sidebar .nav-links li .icon-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar.close .nav-links i.arrow {
  display: none;
}

/* ---------------- Submenu ---------------- */
.sidebar .nav-links li .sub-menu {
  background: #1a182d;
  padding: 8px 15px 10px 78px;
  border-left: 2px solid #4f46e5;
  display: none;
  transition: all 0.3s ease;
}

.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}

.sidebar .nav-links li .sub-menu a {
  font-size: 14px;
  padding: 6px 0;
  color: #cfcfff;
  opacity: 0.7;
  transition: 0.3s;
}

.sidebar .nav-links li .sub-menu a:hover {
  opacity: 1;
  padding-left: 6px;
}

.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  width: 180px;
  background: #1a182d;
  opacity: 0;
  pointer-events: none;
  border-radius: 6px;
}

.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

/* ---------------- Profile ---------------- */
.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  padding: 12px;
  background: #181726;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar.close .profile-details {
  width: 78px;
  justify-content: center;
}

.sidebar .profile-details img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.sidebar .profile-details .profile_name {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.sidebar .profile-details .job {
  color: #9f9fff;
  font-size: 12px;
}

.sidebar.close .profile-details .name-job {
  display: none;
}

/* ---------------- Home Section ---------------- */
.home-section {
  background: #f4f5ff;
  min-height: 100vh;
  position: relative;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.4s ease;
}

.sidebar.close ~ .home-section {
  left: 78px;
  width: calc(100% - 78px);
}

.home-section .home-content {
  display: flex;
  align-items: center;
  height: 65px;
  padding: 0 20px;
}

.home-section .home-content .bx-menu {
  font-size: 32px;
  color: #2f2d53;
  cursor: pointer;
  margin-right: 15px;
}

.home-section .home-content .text {
  font-size: 24px;
  font-weight: 600;
  color: #252441;
}

/* Event Page Part Section =============================================================================================================================================================================== */

/* PAGE WRAPPER */
.page-wrapper {
  padding: 28px;
  /* max-width: 1400px;
  margin: -40px auto 70px; */
  position: relative;
}

/* FILTER CARD */
.filters-card {
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(34, 40, 49, 0.06);
  box-shadow: 0 12px 32px rgba(38, 57, 77, 0.08);
}

.filters-card input,
.filters-card select {
  border-radius: 10px !important;
}

/* FILTERS STICKY */
.filters-sticky {
  position: sticky;
  top: 20px;
}

/* ACTIVE FILTER CHIPS */
.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.chip {
  background: #fff;
  border: 1px solid rgba(33, 37, 41, 0.06);
  padding: 6px 12px;
  border-radius: 1000px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(36, 48, 64, 0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* GRID — FULLY RESPONSIVE */
.events-grid {
  display: grid;
  gap: 26px;
}

/* Desktop WIDE */
@media (min-width: 1400px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptops */
@media (min-width: 992px) and (max-width: 1399px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .event_nearby {
    display: none !important;
  }
}

/* EVENT CARD */
.event-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(33, 37, 41, 0.04);
  box-shadow: 0 14px 40px rgba(36, 48, 64, 0.07);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 48px rgba(36, 48, 64, 0.12);
}

.event-media {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #eee;
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Date Tag */
.date-ribbon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 14px;
  border-radius: 10px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* CARD BODY */
.event-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-title {
  font-size: 19px;
  font-weight: 700;
  color: #12324f;
  text-decoration: none;
}

.event-desc {
  color: #4a5968;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-offline {
  color: var(--accent-dark);
  font-weight: 700;
}

/* FOOTER */
.card-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
}

.view-btn {
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 767px) {
  .filters-card {
    padding: 16px;
  }

  .event-media {
    height: 180px;
  }

  .event-body {
    padding: 16px;
  }

  .event-card {
    border-radius: 14px;
  }

  .date-ribbon {
    padding: 6px 12px;
  }
}
.apply-filters {
  border-radius: 25px;
  padding: 10px 0px;
  border: 1px solid transparent;
  background-color: rgb(251 146 60);
  color: #fff;
  transition: 0.3s all;
}
.apply-filters:hover {
  border-radius: 25px;
  padding: 10px 0px;
  border: 1px solid rgb(251 146 60);
  background-color: transparent;
  color: rgb(251 146 60);
}
/* FILTER TOGGLE ON MOBILE */
.filter-toggle {
  display: none;
}

@media (max-width: 767px) {
  .filter-toggle {
    display: inline-flex;
    padding: 6px 12px;
    font-size: 14px;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.logo-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  border-radius: 8px;
}

/* Contact Page  Part Here =================================================================================================================================== */
/* FULL WIDTH LAYOUT */
.contact-main-wrapper {
  width: 100%;
  display: flex;
  min-height: 100vh;
}

/* LEFT IMAGE PANEL */
.contact-left-img-panel {
  width: 38%;
  background: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
}

/* RIGHT FORM PANEL */
.contact-form-wrapper {
  width: 62%;
  padding: 40px 60px;
  background: #ffffff;
}

/* ICON INSIDE INPUT */
.contact-input-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 18px;
  color: #6b7280;
}

/* FLOATING INPUT AREA */
.form-floating {
  position: relative;
}

/* INPUT + SELECT */
.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: 12px;
  border: 1.5px solid #cfd6e1;
  height: 58px;
  background: #f9fafb;
  transition: all 0.3s ease;
  box-shadow: none !important;

  /* icon ke liye required padding */
  padding: 14px 16px 14px 52px !important;
}

/* LABEL DEFAULT POSITION */
.form-floating > label {
  padding-left: 52px !important;
  color: #777;
  font-weight: 500;
  transition: 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
}

/* FLOATED LABEL */
.form-floating > .form-control:not(:placeholder-shown) + label,
.form-floating > .form-control:focus + label,
.form-floating > .form-select:not(:placeholder-shown) + label,
.form-floating > .form-select:focus + label,
.form-floating > textarea:not(:placeholder-shown) + label,
.form-floating > textarea:focus + label {
  transform: translateY(-12px) scale(0.85) !important;
  padding-left: 52px !important;
  opacity: 1 !important;
  color: #2563eb !important;
}

/* BLUE FOCUS EFFECT */
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: #2563eb !important;
  background: #fff !important;
}

/* TEXTAREA */
.contact-textarea {
  border-radius: 12px !important;
  border: 1.5px solid #cfd6e1;
  background: #f9fafb !important;
  padding-left: 52px !important;
  padding-top: 14px !important;
  height: 120px;
  transition: 0.3s;
  box-shadow: none !important;
}

.contact-textarea:focus {
  border-color: #2563eb !important;
  background: #fff !important;
}

/* SUBMIT BUTTON */
.contact-btn-submit {
  margin-top: 10px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s ease;
}

.contact-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-main-wrapper {
    flex-direction: column;
  }

  .contact-left-img-panel {
    width: 100%;
    height: 250px;
  }

  .contact-form-wrapper {
    width: 100%;
    padding: 30px 30px;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 20px;
  }

  .contact-left-img-panel {
    display: none;
  }
}

/* About US Page in this section============================================================================== */

:root {
  --bg: #fbfdff;
  --muted: #6b7280;
  --glass: rgba(255, 255, 255, 0.65);
  --accent-1: #6366f1;
  /* indigo */
  --accent-2: #06b6d4;
  /* cyan */
  --accent-3: #f59e0b;
  /* amber */
  --card-radius: 16px;
}

/* NAV */
.site-nav {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--accent-1);
}

/* HERO */
.hero {
  padding: 64px 0;
}

.hero-card {
  border-radius: var(--card-radius);
  background: #fff;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-visual {
  flex: 0 0 260px;
  min-height: 160px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.16),
    rgba(99, 102, 241, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-copy h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  margin-bottom: 10px;
  color: #0b1220;
  font-weight: 800;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.kpis {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.kpi {
  background: var(--glass);
  padding: 10px 14px;
  border-radius: 12px;
  min-width: 90px;
  text-align: center;
}

.kpi h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #0b1220;
  font-weight: 700;
}

.kpi p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* MISSION / VISION */
.mv-section {
  padding: 56px 0;
}

.mv-card {
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  font-size: 1.35rem;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.12);
}

/* TIMELINE */
.timeline-section {
  position: relative;
  padding: 56px 0 96px;
}

.timeline {
  position: relative;
  padding: 36px 0;
}

/* center line for desktop */
@media (min-width: 992px) {
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
    border-radius: 4px;
  }

  .timeline-item {
    width: 50%;
    padding: 18px 36px;
    box-sizing: border-box;
    position: relative;
  }

  .timeline-item.left {
    margin-left: 0;
    text-align: right;
    left: 0;
  }

  .timeline-item.right {
    margin-left: 50%;
    left: 0;
    text-align: left;
  }

  .timeline-item .content {
    display: inline-block;
    max-width: 420px;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  /*--------------------------------------
   PREMIUM FLOATING SHAPES
---------------------------------------*/
  .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    /* behind content */
  }

  /* Base Style */
  .shape {
    position: absolute;
    opacity: 0.25;
    animation: float 6s ease-in-out infinite alternate;
  }

  /* Circle */
  .shape.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent-1);
    top: 40px;
    left: 30px;
    animation-duration: 7s;
  }

  /* Rectangle */
  .shape.rectangle {
    width: 160px;
    height: 50px;
    background: var(--accent-2);
    border-radius: 14px;
    top: 80px;
    right: 40px;
    animation-duration: 6s;
  }

  /* Triangle */
  .shape.triangle {
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 90px solid var(--accent-3);
    top: 180px;
    left: 120px;
    animation-duration: 8s;
  }

  /* Hexagon */
  .shape.hexagon {
    width: 100px;
    height: 55px;
    background: var(--accent-1);
    position: absolute;
    top: 260px;
    right: 120px;
    animation-duration: 9s;
  }

  .shape.hexagon:before,
  .shape.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
  }

  .shape.hexagon:before {
    bottom: 100%;
    border-bottom: 30px solid var(--accent-1);
  }

  .shape.hexagon:after {
    top: 100%;
    border-top: 30px solid var(--accent-1);
  }

  /* Diamond */
  .shape.diamond {
    width: 70px;
    height: 70px;
    background: var(--accent-2);
    transform: rotate(45deg);
    top: 350px;
    left: 40px;
    animation-duration: 5.8s;
    border-radius: 8px;
  }

  /* Cross */
  .shape.cross {
    width: 100px;
    height: 100px;
    top: 420px;
    right: 70px;
    animation-duration: 10s;
  }

  .shape.cross:before,
  .shape.cross:after {
    content: "";
    position: absolute;
    background: var(--accent-3);
  }

  .shape.cross:before {
    width: 25px;
    height: 100px;
    left: 37px;
  }

  .shape.cross:after {
    width: 100px;
    height: 25px;
    top: 37px;
  }

  /* Blob */
  .shape.blob {
    width: 140px;
    height: 110px;
    background: var(--accent-1);
    top: 500px;
    left: 220px;
    border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
    animation: blobMove 9s ease-in-out infinite;
    opacity: 0.2;
  }

  /* Float Animation */
  @keyframes float {
    0% {
      transform: translateY(0) rotate(0deg);
    }

    100% {
      transform: translateY(-25px) rotate(12deg);
    }
  }

  /* Blob movement */
  @keyframes blobMove {
    0% {
      transform: scale(1) translateY(0);
    }

    50% {
      transform: scale(1.04) translateY(-20px);
    }

    100% {
      transform: scale(1) translateY(0);
    }
  }

  .timeline-item .content:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  .timeline-item .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 991px) {
    .timeline-item .dot {
      margin-bottom: 12px;
      left: 0 !important;
    }
  }

  .timeline-item .content {
    display: inline-block;
    max-width: 420px;
  }

  .timeline-item .dot {
    position: absolute;
    top: 22px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 5px solid var(--accent-1);
    left: calc(50% - 10px);
    transform: translateX(-50%);
  }

  .timeline-item.left .dot {
    left: calc(100% + 2px);
    transform: none;
  }

  .timeline-item.right .dot {
    left: -26px;
  }
}

/* mobile: simple vertical */
@media (max-width: 991px) {
  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding: 12px 0;
  }

  .timeline-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-1);
    display: inline-block;
    margin-right: 12px;
  }

  .timeline-item .content {
    display: block;
  }
}

.timeline-item h5 {
  margin: 0 0 6px;
  font-weight: 700;
  color: #fff;
}

.timeline-item small {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.timeline-item p {
  margin: 0;
  color: #fff;
}

/* utility */
.badge-soft {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.12),
    rgba(6, 182, 212, 0.08)
  );
  color: var(--accent-1);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Facilities Page Here ================================================================================================================================================ */
/* SECTION TITLE */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: rgb(251 146 60);
}
/* FACILITIES GRID */
.facility-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 40, 0.05);
  transition: 0.3s;
  border: 1px solid #e2e7f1;
}

.facility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.facility-card:hover img {
  transform: scale(1.07);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 60, 0.1);
}

.facility-card h5 {
  padding: 15px;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #1d2635;
}

/* ANNUAL REPORT CARDS */
.report-card {
  background: white;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e1e8f3;
  box-shadow: 0 4px 15px rgba(0, 0, 50, 0.06);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 18px;
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 60, 0.12);
  border-color: #cdd9ff;
}

.report-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: #eef3ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #0d47a1;
}

.report-card h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.report-card a {
  margin-left: auto;
  text-decoration: none;
  color: #0d47a1;
  font-weight: 600;
}

.report-card a:hover {
  text-decoration: underline;
}

/* Startup Page Part Here =================================================================================== */

/* STARTUP CARDS */
.startup-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.startup-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.startup-img {
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.startup-card h5 {
  font-weight: 700;
  color: #2c3e50;
}

.tag {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 50px;
  margin-right: 5px;
  font-weight: 600;
}

.tag-sector {
  background: #e5f6ff;
  color: #0277bd;
}

.tag-stage {
  background: #fff3e0;
  color: #ef6c00;
}

.tag-status {
  background: #fce4ec;
  color: #c2185b;
}

/* BUTTON */
.apply-btn {
  width: 100%;
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(45deg, #4158d0, #c850c0);
  border: none;
  font-weight: 600;
  color: white;
  box-shadow: 0 8px 18px rgba(100, 0, 200, 0.25);
}

.apply-btn:hover {
  opacity: 0.9;
}

.floating-input {
  position: relative;
  margin-bottom: 22px;
}

.floating-input input,
.floating-input select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #d0d7e6;
  background: #f8fafc;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.floating-input input:focus,
.floating-input select:focus {
  border-color: #6366f1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.floating-input label {
  position: absolute;
  left: 14px;
  top: 12px;
  color: #6b7280;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
  padding: 0 4px;
}

/* When typing or focused */
.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input select:focus + label,
.floating-input select:not([value=""]) + label {
  top: -9px;
  left: 10px;
  font-size: 12px;
  color: #4f46e5;
  background: #f8fafc;
}
/* R& D partnership Pages ==================================================================================== */

/* HEADER */
.hero {
  background: linear-gradient(135deg, #ffb000, #ff8c00);
  padding: 90px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.9;
}

.hero h1 {
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

/* CARD */
.content-card {
  background: rgba(255, 255, 255, 0.75);
  padding: 50px;
  border-radius: 22px;
  margin-top: -50px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

h3.section-title {
  margin-top: 40px;
  font-weight: 800;
  color: #222;
  border-left: 6px solid #ff9000;
  padding-left: 15px;
}

ul.premium-list li {
  margin-bottom: 12px;
  padding-left: 5px;
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.5rem;
}

ul.premium-list li::before {
  content: "⦿";
  margin-right: 10px;
  color: #ff8a00;
  font-size: 1.2rem;
}

/* DOWNLOAD BOX */
.download-box {
  background: linear-gradient(135deg, #fff8e5, #ffe9c5);
  border-left: 6px solid #ffa000;
  padding: 22px;
  border-radius: 14px;
  margin-top: 45px;
  box-shadow: 0 5px 20px rgba(255, 160, 0, 0.25);
}

a.download-link {
  font-weight: 700;
  color: #c65b00;
  text-decoration: none;
  font-size: 1.05rem;
}

a.download-link:hover {
  text-decoration: underline;
}

/* Wrapper */
.membership-table-wrapper {
  margin-top: 25px;
}

/* Premium Table */
.premium-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.premium-table thead {
  background: #fff4df;
}

.premium-table th {
  font-weight: 600;
  padding: 14px;
  font-size: 15px;
}

.premium-table td {
  padding: 14px;
  font-size: 14px;
}

.premium-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* ========= Responsive Stack (Mobile) ========= */
@media (max-width: 768px) {
  .premium-table thead {
    display: none;
  }

  .premium-table,
  .premium-table tbody,
  .premium-table tr,
  .premium-table td {
    display: block;
    width: 100%;
  }

  .premium-table tr {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 12px;
  }

  .premium-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    border: none;
    border-bottom: 1px dashed #ddd;
  }

  .premium-table td:last-child {
    border-bottom: none;
  }

  .premium-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #444;
  }
}

table {
  border-collapse: collapse !important;
}

table th,
table td {
  padding: 12px 14px !important;
  vertical-align: middle;
}
.content-card p {
  line-height: 1.55rem;
  margin-bottom: 14px;
}

.section-title + p {
  margin-top: 10px;
}
.ip-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.ip-stats > a {
  text-decoration: none;
}

.ip-stats__item {
  background: #fff;
  padding: 25px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.ip-stats__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ip-stats__number {
  font-size: 32px;
  font-weight: 700;
  color: #0057e7;
}

.ip-stats__label {
  font-size: 15px;
  margin-top: 8px;
  font-weight: 500;
  color: #444;
}

/* ===== VERTICAL CENTERED STEP LINE ===== */
.stepline {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 0;
}

/* Vertical center line */
.stepline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
  border-radius: 4px;
}

/* STEP ITEM */
.stepline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.stepline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.stepline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* DOT */
.stepline-dot {
  position: absolute;
  top: 20px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ff9f00, #ff5f6d);
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 28px rgba(255, 95, 109, 0.45);
  animation: pulse 2.4s infinite;
}

.stepline-item:nth-child(odd) .stepline-dot {
  right: -26px;
}

.stepline-item:nth-child(even) .stepline-dot {
  left: -26px;
}

/* Content box */
.stepline-content {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f6f8ff);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stepline-content h5 {
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #ff9f00, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stepline-content p {
  font-size: 14px;
  margin: 0;
  color: #444;
  line-height: 1.5rem;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 95, 109, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 95, 109, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 95, 109, 0);
  }
}

/* Last step green */
.stepline-item:last-child .stepline-dot {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.55);
}

.stepline-item:last-child .stepline-content {
  background: linear-gradient(135deg, #e8f8ef, #d4f3e3);
}

/* Animation */
.animate {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* MOBILE */
@media (max-width: 768px) {
  .stepline::before {
    left: 22px;
  }

  .stepline-item,
  .stepline-item:nth-child(odd),
  .stepline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 60px;
    margin-bottom: 40px;
  }

  .stepline-dot {
    left: -26px !important;
  }
}

/* ================= PRELOADER ================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader img {
  width: 160px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* LOGO ANIMATION */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* ================= MAIN CONTENT ================= */
.content {
  padding: 50px;
  text-align: center;
}

/* p {
  text-align: justify;
} */

/* ===== Hiring Banner ===== */
.hiring-banner {
  text-align: center;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  padding: 20px;
  font-size: 28px;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* ===== Job Cards ===== */
.job-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.view-btn {
  background: #0d6efd;
  color: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  text-decoration: none;
  font-weight: 600;
}

.view-btn:hover {
  background: #084298;
  color: #fff;
}

.apply-btn {
  background: #ffc107;
  color: #000;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
}

.apply-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
/* ===== Premium Last Date Alert ===== */
.last-date-warning {
  background: #fff5f5;
  border: 2px solid #dc3545;
  padding: 14px 25px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 22px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* DATE STYLE */
.last-date-warning .date-highlight {
  color: #b30000;   /* Dark strong red */
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  animation: dateBlink 1s infinite;
}

/* Blink animation only on date */
@keyframes dateBlink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}