/* General Reset */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: black;
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-weight: 400;
  cursor: url('/assets/Cursor/cursor.svg') 13 5, auto;
  max-height: 2530px;
  overflow-x: hidden;
  
}

.hero {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: -1;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  max-height: 2530px;
}

.herovector {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: -1;
  max-height: 2530px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header {
  padding: 30px;
}

/* Navbar Styling */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
  z-index: 5;
  position: relative;
}

.logo {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  letter-spacing: -0.01em;
  cursor: pointer;
  z-index: 10;
}

/* Navbar Links */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Geist', sans-serif;
  font-weight: 200;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover {
  color: #8d8d8d;
  transform: scale(1.0);
}

.get-started {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #B1B1B1 100%);
  border-radius: 10px;
  padding: 8px 14px;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.get-started a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  transition: color 0.3s ease-in-out;
}

.get-started a:hover {
  color: #4b4b4b;
}

/* Mobile Menu Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {

  /* Tablet styles */
  .nav-links {
    gap: 25px;
  }
}

@media (max-width: 768px) {

  /* Mobile styles */
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 5;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .get-started {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: none;
  }

  .get-started.active {
    display: flex;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

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


/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  margin-top: 10px;
}

h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.04em;
  width: 100%;
  font-size: 70px;
  line-height: 75px;
  background: linear-gradient(180deg, #FFFFFF 30%, #999999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.line-break {
  display: block;
}


/* .tricolor-border {
  position: absolute;
  inset: -30px;
  background: linear-gradient(90deg, 
   #FF9933 0%, 
   #FF9933 33%, 
   #FFFFFF 33%, 
   #FFFFFF 66%, 
   #138808 66%, 
   #138808 100%);
  border-radius: 100px;
  z-index: 1;
  animation: shine 3s linear infinite, rotate 8s linear infinite;
}

@keyframes shine {
  0% {
    opacity: 0.6;
    filter: brightness(1) blur(5px);
  }
  50% {
    opacity: 0.9;
    filter: brightness(1.2) blur(3px);
  }
  100% {
    opacity: 0.6;
    filter: brightness(1) blur(5px);
  }
  50% {
    opacity: 0.9;
    filter: brightness(1.2) blur(3px);
  }
  0% {
    opacity: 0.6;
    filter: brightness(1) blur(5px);
  }
}

@keyframes rotate {
  0% {
    background-position: -100% 100%;
  }
  100% {
    background-position: -100% 100%;
  }
} */
.card{
  margin: 0 auto;
  padding: 0.5em 0.8em;
  width: 270px;
  background: #0e0e0e;
  text-align: center;
  border-radius: 50px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
}
.card p{
  background: linear-gradient(180deg, #FFFFFF 30%, #999999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 15px;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.card::after, .card::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #FF671F, #929292,#046A38,#FF671F);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 2px;
  border-radius: 50px;
  animation: 3s spin linear infinite;
}
.card::before{
  filter: blur(1.5rem);
  opacity: 0.6;
}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}
@media (max-width: 480px) {
  .card {
    width: 50%;
    padding: 0.6em 0.2em;
  }

  .card p {
    font-size: 10px;
  }
}

.heroptag {
  text-align: center;
  font-family: 'Geist', sans-serif;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.438);
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-top: 5px;
  line-height: 1.5;
}

.staredbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.npmbtn {
  display: flex;
  align-items: center;
  background-color: #00000000;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.200);
  font-family: 'Monaco', monospace;
  letter-spacing: 1px;
  color: #fdfdfd;
  padding: 10px 20px;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.npmbtn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.npmbtn svg {
  color: #fff;
}

.getdocbtn {
  background: linear-gradient(180deg, #FFFFFF 0%, #B1B1B1 100%);
  border-radius: 10px;
  padding: 11px 18px;
  border: none;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.getdocbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {

  /* Tablet styles */
  h1 {
    font-size: 60px;
    line-height: 65px;
  }
}

@media (max-width: 768px) {

  /* Mobile styles */
  h1 {
    font-size: 42px;
    line-height: 48px;
    margin: 10px 0;
  }

  .heroptag {
    font-size: 13px;
    padding: 0 15px;
  }

  .staredbtn {
    gap: 15px;
    margin-top: 25px;
  }

  .npmbtn,
  .getdocbtn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .announcement {
    width: 220px;
    height: 26px;
  }

  .announcement-text {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .heroptag br {
    display: none;
  }

  .heroptag .line-break {
    display: inline;
  }

  .staredbtn {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .npmbtn,
  .getdocbtn {
    width: 100%;
    justify-content: center;
  }

  .announcement-container {
    margin-top: 40px;
  }
}

/* Marquee System Container */
.marquee-system {
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
  padding-top: 2rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Marquee Title */
.marquee-title {
  text-align: center;
  font-family: 'Geist', sans-serif;


  background: linear-gradient(180deg, #FFFFFF 14.2%, #535353 103.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  letter-spacing: -0.05em;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Marquee Track (Line) */
.marquee-line {
  width: 100%;
  overflow: visible; /* Changed to visible to prevent clipping */
  margin: 0;
  position: relative;
  padding: 5px 0; /* Creates space for hover animation */
   /* Compensates for hover space */
}

/* Marquee Items Container */
.marquee-items {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
  padding: 10px 0; /* Extra padding for hover space */
}

/* Right-to-left animation */
.rtl .marquee-items {
  animation-direction: reverse;
  animation-duration: 35s;
}

/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-card {
  flex: 0 0 auto;
  width: 280px;
  height: 180px;
  margin: 0 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease;
}

.marquee-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
}


/* Top border animation */
.marquee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.marquee-card:hover::before {
  transform: scaleX(1);
}

/* Icon Styles */
.marquee-icon {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  padding: 25px;
  transition: 
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
    box-shadow 0.4s ease;
}

.marquee-card:hover .marquee-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Color Variants */
.primary-icon { color: #90caf9; }
.success-icon { color: #81c784; }
.warning-icon { color: #ffcc80; }
.danger-icon { color: #ef9a9a; }
.info-icon { color: #b39ddb; }
.accent-icon { color: #f48fb1; }

/* Content Styles */
.marquee-content {
  text-align: center;
  z-index: 1;
}

.marquee-content h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  
}

.marquee-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Edge Fading Effect */
.marquee-line::before,
.marquee-line::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.marquee-line::before {
  left: 0;
  background: linear-gradient(90deg, #000000, transparent);
}

.marquee-line::after {
  right: 0;
  background: linear-gradient(-90deg, #000000, transparent);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .marquee-card {
    width: 240px;
    height: 170px;
    margin: 0 1rem;
    padding: 1.5rem;
  }
  
  .marquee-icon {
    font-size: 1.8rem;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .marquee-system {
    padding: 3rem 0;
  }
  
  .marquee-title {
    font-size: 2rem;
  }
  
  .marquee-card {
    width: 220px;
    height: 160px;
    padding: 1.2rem;
    margin: 0 0.8rem;
  }
  
  .marquee-line::before,
  .marquee-line::after {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .marquee-card {
    width: 180px;
    height: 150px;
    padding: 1rem;
    margin: 0 0.6rem;
  }
  
  .marquee-line::before,
  .marquee-line::after {
    width: 60px;
  }
}
#hero {
  font-family: 'Monaco', monospace;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  margin-top: 30px;
  gap: 40px;
  background: linear-gradient(to bottom, transparent, black, transparent);
}
.terminal-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.terminal {
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  height: 300px; /* Fixed height */
  display: flex;
  flex-direction: column;
  background: rgba(154, 154, 154, 0.15);
  backdrop-filter: blur(5px);
  box-sizing: border-box;
  overflow: hidden;
}

.terminal-header {
  padding: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #e0e0e0;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.terminal-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  z-index: 2;
  cursor: pointer;
  flex-shrink: 0;
}

.dot.green {
  background-color: #4CAF50;
}

.dot.yellow {
  background-color: #FFEB3B;
}

.dot.red {
  background-color: #F44336;
}

.terminal-output {
  flex: 1;
  overflow-y: auto;
  max-height: 100%; /* fill remaining space */
  font-size: 14px;
  margin-bottom: 10px;
  color: hsla(0, 0%, 88%, 0.800);
  line-height: 1.4;
  padding: 15px;
}

.terminal-output::-webkit-scrollbar {
  width: 6px;
}

.terminal-output::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.terminal-input {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #e0e0e0;
  font-size: 16px;
  outline: none;
  padding: 15px;
}

.terminal-input::placeholder {
  color: #7f7f7f;
  font-style: italic;
}

.terminal-input:focus,
.terminal-input:active,
.terminal-input:focus-visible,
.terminal-input:focus-within {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.left-content {
  flex: 1;
  background-color: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ff0000;
}

.left-content h4 {
  background: linear-gradient(180deg, #FFFFFF 14.2%, #535353 103.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 5px;
}


.left-content p {
  color: rgba(255, 255, 255, 0.438);
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive Styles */
@media (min-width: 768px) {
  #hero {
    flex-direction: row;
    padding: 60px;
    margin-top: 20px;
    gap: 40px;
  }

  .terminal-container {
    width: 45%;
    padding: 20px;
  }

  .left-content {
    padding: 20px;
  }

  .left-content h4 {
    font-size: 48px;
  }

  .terminal-header {
    font-size: 16px;
    gap: 10px;
  }

  .terminal-output {
    font-size: 16px;
  }

  .terminal-input {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .left-content h4 {
    font-size: 55px;
  }
}

/* Terminal dot animations */
.dot {
  transition: transform 0.2s ease;
}

.dot:hover {
  transform: scale(1.1);
}

.dot:active {
  transform: scale(0.9);
}

/* Terminal input focus effect */
.terminal-input:focus {
  background-color: rgba(255, 255, 255, 0.05);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.image-container:hover .flowray{
  opacity: 0.5;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 800/350; /* Maintain original aspect ratio */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.7s ease-in-out;
}

/* Wing image - starts hidden */
.image-wrapper img.wing {
  opacity: 0.3;
}

/* Main image always on top */
.image-wrapper img.base {
  z-index: 1;
}

/* Animate the wing image in on hover */
.image-wrapper:hover img.wing {
  opacity: 1;
  transform: scale(1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .image-wrapper {
      max-width: 100%;
  }
}



.middleray {
  position: absolute;
  right: 0px;
  top: 500px;
  width: 80%;
  height: auto;
  z-index: -6;
  transform: rotate(0deg);
  display: block;
  opacity: 0.6;
  pointer-events: none;

  @media (max-width: 1024px) {
    right: calc(300px * 0.7);
    top: calc(900px * 0.7);
  }

  @media (max-width: 768px) {
    right: calc(300px * -0.25);
    top: calc(900px * 1.45);
  }
}

.flowray {
  position: absolute;
  right: 450px;
  top: 2700px;
  width: 50%;
  height: auto;
  z-index: -10;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  filter: blur(1px);
  transition: 
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.6s ease-out;
  backface-visibility: hidden;
  will-change: opacity, transform;
  pointer-events: none;

  @media (max-width: 1024px) {
    right: calc(300px * 0.7);
    top: calc(900px * 0.7);
  }
  
  @media (max-width: 768px) {
    right: calc(300px * 0.24);
    top: calc(900px * 1.5);
  }
}


.ui-footer {
  background-color: #000000;
  color: #e0e0e0;
  padding: 60px 60px 0 60px;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.ui-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 20px;
  gap: 40px;
}

.ui-footer-left {
  min-width: 300px;
}

.ui-footer-right {
  flex: 2 1 400px;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.ui-footer-column {
  margin-bottom: 30px;
}

.ui-footer h3 {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}

.ui-footer p {
  line-height: 1.6;
  color: #bdbdbd;
  margin-bottom: 25px;
  font-weight: 200;
  max-width: 400px;
}

.ui-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ui-footer li {
  margin-bottom: 12px;
  font-weight: 200;
}

.ui-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.ui-footer a:hover {
  color: #747474;
}

.ui-footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.ui-footer-social a {
  background-color: rgba(51, 51, 51, 0.47);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.ui-footer-social a:hover {
  background-color: #555;
  transform: translateY(-3px);
}

.ui-footer-bottom {
  width: 100%;
  text-align: left;
  color: #888;
  font-size: 0.9rem;
}

.bharatfinal {
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.bharatfinal h5 {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 340px;
  line-height: 300px;
  background: linear-gradient(179.71deg, hsla(0, 0%, 100%, 0.48) -123.44%, #000000 77.24%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding: 0;
  z-index: 2;
  display: inline-block;
  position: relative;
  text-align: center;
}

.glow-cursor {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at center, #ff00ff, #00ffff, #ffff00);
  background-size: 200% 200%;
  animation: moveGradient 3s ease infinite;
  filter: blur(90px);
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 50;
  transition: opacity 0.2s ease;
}

.glow-cursor.glow {
  opacity: 1;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


@media (max-width: 768px) {
  .ui-footer {
    padding: 40px 20px 0;
  }
  .ui-footer p{
    max-width: none;
  }

  .ui-footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .ui-footer-right {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    flex: none;
  }

  .bharatfinal h5 {
    font-size: 82px;
    line-height: 70px;
  }

  .ui-footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .bharatfinal h5 {
    font-size: 160px;
    line-height: 150px;
  }

  .ui-footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .ui-footer-right {
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
  }

  .middleray {
    top: 920px;
    right: 20px;

  }
}
@media  (width:1440px) {
  .bharatfinal h5{
    font-size: 310px;
  }
  
}
@media (min-width: 1200px) {
  .ui-footer-container {
    padding: 0 30px;
  }
}

@media (width: 320px) {
  .bharatfinal h5 {
    font-size: 65px;
    margin-bottom: 10px;
  }
}

@media (width: 1024px) {
  .bharatfinal h5 {
    font-size: 220px;
    margin-bottom: 10px;
  }
}

#zoom-wrapper {
  max-width: 1689.78px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  border-radius: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  text-decoration: none;
  border: none;
  outline: none;
  min-width: 180px;
}

.hero-button .button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  position: relative;
}

.hero-button svg {
  transition: transform 0.3s ease;
}

.hero-button:hover svg {
  transform: translateY(-2px);
}

.hero-button.primary {
  background: linear-gradient(180deg, #FFFFFF 0%, #989898 100%);
  color: rgb(0, 0, 0);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.hero-button.primary:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.hero-button.primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-button.secondary:active {
  transform: translateY(0);
}

.button-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(112, 112, 112, 0.2),
      transparent);
  transition: left 0.7s ease;
}

.hero-button:hover .button-shine {
  left: 100%;
}

.button-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-button:hover .button-tooltip {
  opacity: 1;
  bottom: -30px;
  transform: translateX(-50%) scale(1);
}

.copy-button.copy-success {
  background: var(--sl-color-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-color: transparent;
}

.copy-button.copy-success .button-content svg {
  animation: checkmark 0.3s ease;
  color: white;
}

.copy-button.copy-success .npm-text {
  color: white;
}

.copy-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.copy-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.copy-button.secondary:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.1);
}

.npm-text {
  font-family: 'Courier New', monospace;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-buttons {
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-button {
    width: 100%;
  }
}

.announcement-container {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0 10px;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  /* padding: 12px 16px; */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 600px;
  width: 100%;
}

.announcement:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(79, 70, 229, 0.1) 0%,
      rgba(124, 58, 237, 0.1) 50%,
      rgba(236, 72, 153, 0.1) 100%);
  opacity: 0.5;
  z-index: 0;
}

.announcement:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.2);
}

.announcement-left {
  display: flex;
  align-items: center;
  z-index: 1;
}

.announcement-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 8px;
  margin-right: 14px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
}

.announcement-badge:after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent,
      transparent,
      transparent,
      rgba(255, 255, 255, 0.2));
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateY(0%);
  }

  20% {
    transform: rotate(45deg) translateY(0%);
  }

  40% {
    transform: rotate(45deg) translateY(100%);
  }

  100% {
    transform: rotate(45deg) translateY(100%);
  }
}

.announcement-badge svg {
  width: 16px;
  height: 16px;
  z-index: 1;
}

.announcement-content {
  display: flex;
  flex-direction: column;
}

.announcement-label {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.announcement-text {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

.announcement-action {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.announcement-action span {
  margin-right: 6px;
}

.announcement-action svg {
  transition: transform 0.2s ease;
}

.announcement-action:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.announcement-action:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .announcement {
    padding: 3px 1px;
  }

  .announcement-badge {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  .announcement-label {
    font-size: 10px;
  }

  .announcement-text {
    font-size: 13px;
  }

  .announcement-action {
    padding: 6px 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .announcement-container {
    margin-bottom: 20px;
  }

  .announcement {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    /* padding: 12px; */
  }

  .announcement-action {
    align-self: flex-start;
  }
}



.container {
  width: calc(288px + 583px + 24px);
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 288px 583px;
  grid-template-rows: 384px 384px;
  gap: 24px;
  width: 100%;
}

.bento-card {
  background-color: #1e1e1e00;
  border-radius: 25px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  will-change: transform;
  border: 1px solid rgba(92, 92, 92, 0.3);
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  will-change: transform;
}

.bento-card:hover .card-img {
  transform: scale(1.08);
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  box-sizing: border-box;
  pointer-events: none;
}

.bento-card:hover .img-overlay {
  opacity: 1;
}

.card-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
  will-change: transform;
}

.bento-card:hover .card-content {
  transform: translateY(0);
}

.card-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: white;
}

.card-content p {
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 0;
}

.card-1 {
  grid-column: 1;
  grid-row: 1;
  width: 288px;
  height: 384px;
}

.card-2 {
  grid-column: 2;
  grid-row: 1;
  width: 583px;
  height: 384px;
}

.card-3 {
  grid-column: 1 / span 2;
  grid-row: 2;
  width: 583px;
  height: 384px;
  justify-self: start;
}

.card-4 {
  grid-column: 2;
  grid-row: 2;
  width: 288px;
  height: 384px;
  justify-self: end;
}

/* Responsive Fix */
@media (max-width: 1024px) {
  .container {
    width: 90%;
    max-width: 600px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }

  .card-1, .card-2, .card-3, .card-4 {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
  }

  .card-1, .card-4 {
    aspect-ratio: 3 / 4;
  }

  .card-2, .card-3 {
    aspect-ratio: 583 / 384;
  }

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

  .img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .card-content {
    padding: 16px;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }
}

.marquee-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  background: #000;
}

.marquee-col {
  flex: 1;
  min-width: 300px;
  height: 80vh;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  backdrop-filter: blur(5px);
}

.tweet-track {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  animation: scrollUp linear infinite;
  will-change: transform;
}

.marquee-col:nth-child(1) .tweet-track {
  animation-duration: 40s;
}
.marquee-col:nth-child(2) .tweet-track {
  animation-duration: 55s;
}
.marquee-col:nth-child(3) .tweet-track {
  animation-duration: 45s;
}

.tweet {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.250);
}

.tweet:hover {
  transform: scale(1.02);
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .marquee-col {
    min-width: 250px;
  }
  
  .marquee-col:nth-child(1) .tweet-track {
    animation-duration: 35s;
  }
  .marquee-col:nth-child(2) .tweet-track {
    animation-duration: 50s;
  }
  .marquee-col:nth-child(3) .tweet-track {
    animation-duration: 40s;
  }
}

@media (max-width: 768px) {
  .marquee-container {
    display: none;
    flex-direction: column;
    gap: 15px;
  }
  
  .marquee-col {
    min-width: 100%;
    height: 90vh;
    margin-bottom: 15px;
  }
  
  .tweet-track {
    animation-duration: 30s !important;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .marquee-col {
    height: 85vh;
  }
  
  .tweet-track {
    gap: 15px;
  }
}

.social-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.social-link:hover {
  color: #898989; 
}


