@import url("https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
body {
  position: relative;
  background-color: #000;
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  color: white;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  z-index: 1;
}

/* Enhanced glowing layer with multiple orbs */
body::before,
body::after {
  content: "";
  position: absolute;
  top: -75%;
  left: -75%;
  width: 250%;
  height: 250%;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 93, 13, 0.12),
      transparent 70%
    ),
    radial-gradient(circle at 70% 40%, rgba(255, 153, 0, 0.08), transparent 60%),
    radial-gradient(circle at 50% 70%, rgba(255, 93, 13, 0.1), transparent 60%);
  animation: orangeGlow 40s ease-in-out infinite;
  animation-delay: 10s;
  opacity: 0.6;
  filter: blur(60px);
}

/* Animations */
@keyframes orangeGlow {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(2%, -2%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes rain {
  0% {
    background-position: 0 -20px;
  }
  100% {
    background-position: 0 100%;
  }
}

:root {
  --orange-main: #ff6a00;
  --orange-dark: #b34700;
  --orange-glow: #ff6a0066;

  --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
  --item1-filter: blur(30px);
  --item1-zIndex: 11;
  --item1-opacity: 0;

  --item2-transform: translateX(0);
  --item2-filter: blur(0px);
  --item2-zIndex: 10;
  --item2-opacity: 1;

  --item3-transform: translate(50%, 10%) scale(0.8);
  --item3-filter: blur(10px);
  --item3-zIndex: 9;
  --item3-opacity: 1;

  --item4-transform: translate(90%, 20%) scale(0.5);
  --item4-filter: blur(30px);
  --item4-zIndex: 8;
  --item4-opacity: 1;

  --item5-transform: translate(120%, 30%) scale(0.3);
  --item5-filter: blur(40px);
  --item5-zIndex: 7;
  --item5-opacity: 0;
}

/*----------------------------------------- Navigation Bar ----------------------------------------------------*/
nav {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 900000000000000000;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: rgba(0, 0, 0, 0.7);
  padding: 18px 2%;
  transition: all 0.5s ease;
  backdrop-filter: none;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative; /* Add this to enable 'left' property */
  left: 2%; /* Adjust as needed to move the logo more to the left */
}

.logo img {
  margin-right: 3px;
  width: 120px;
  opacity: 1; /* Ensure the logo image is fully opaque */
}

.logo span {
  font-weight: 600;
  font-size: 1.7rem;
  color: white;
}

.navbar {
  display: flex;
  list-style: none;
  background-color: transparent;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.navbar a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 25px;
  margin: 0;
  color: white;
  text-decoration: none;
  transition: all 0.5s ease;
}
.navbar a:hover {
  color: #ff5d0d;
  /* Vivid orange text */
  background-color: rgba(255, 93, 13, 0.1);
  /* Subtle orange highlight background */
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.nav-right a {
  margin-right: 25px;
  margin-left: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.5s ease;
  color: white;
  padding: 4px;
  text-decoration: none;
}

#menu-icon {
  /* cursor: pointer; */
  z-index: 1001;
  font-size: 35px;
  color: white;
  display: none;
}

/* Add hover underline animation */
.navbar a {
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  /* background-color: #b30000; */
  transition: width 0.3s ease-in-out;
}
.navbar a:hover::after {
  width: 100%;
}

/* Logo hover effect */
.logo:hover {
  opacity: 0.85;
}

/* Right logos hover */
.nav-right img {
  height: 65px;
  width: 65px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.nav-right img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Responsive navbar toggle */
@media (width< 992px) {
  nav {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 900000000000000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black; /* Ensure solid black background for mobile nav */
    padding: 18px 2%;
    transition: all 0.5s ease;
    backdrop-filter: none;
    /* background-color: transparent; */
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    border-radius: 0 0 10px 10px;
    display: none;
    padding: 1rem 0;
  }
  .navbar.active {
    display: flex;
  }

  #menu-icon {
    display: block;
  }

  .navbar a {
    margin: 10px 0;
    font-size: 1.2rem;
  }
}

/*-------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Header ----------------------------------------------------*/
/* === Landing Page Quotes Styling === */
/* General Section Layout */
.landing-section {
  min-height: 100vh; /* Ensures it takes at least the full viewport height */
  display: flex;
  flex-direction: column; /* Stacks children vertically */
  align-items: center; /* Centers items horizontally within the container */
  justify-content: center; /* Centers items vertically within the container */
  padding: 130px 20px; /* Base padding, adjust further as needed */
  padding-bottom: 0px;
  text-align: center;
  position: relative; /* Needed for z-index and pseudo-elements */
  z-index: 10; /* Ensure this section is above the very base background elements */
  max-width: 100%; /* Ensure it spans full width */
  margin: 0 auto; /* Keep it centered horizontally */
  box-sizing: border-box;
  color: white; /* Default text color for this section */
}

/* Background Overlay for Better Text Contrast */
/* This creates a semi-transparent layer over your background image, making text pop */
.landing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient: darker at top/bottom, transparent in the middle where main text is */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    /* Starts dark */ transparent 30%,
    /* Fades to transparent around the main title */ transparent 70%,
    rgba(0, 0, 0, 0.7) 100% /* Ends darker to frame the bottom content */
  );
  z-index: 0; /* Ensures this overlay is behind the text content but above the background image */
  pointer-events: none; /* Allows all mouse events to pass through to elements beneath */
}

/* Heading Styles */
.heading-container {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.heading-container h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  margin-bottom: 0px;
  line-height: 1.1;
  font-family: "Bebas Neue", sans-serif;

  text-shadow: -2px 0px 2px rgba(255, 93, 13, 0.5),
    -4px 0px 8px rgba(255, 93, 13, 0.3), 2px 0px 2px rgba(255, 93, 13, 0.5),
    4px 0px 8px rgba(255, 93, 13, 0.3), 0 0 12px rgba(255, 255, 255, 0.7),
    0 0 24px rgba(255, 255, 255, 0.4), 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.heading-container .startup {
  color: white;
  display: block;
  margin-top: 40px;
}

.heading-container .expo {
  color: white;
  display: block;
  margin-top: -80px;
}

.heading-container .tagline {
  font-size: clamp(16px, 2.5vw, 20px); /* Responsive font size */
  color: #e0e0e0; /* Softer white for tagline */
  margin-top: 15px; /* Space from "Expo" */
  margin-bottom: 80px; /* CRITICAL: Increased margin-bottom to push quotes down */
  max-width: 600px; /* Optional: limit tagline width */
  margin-left: auto;
  margin-right: auto;
  font-family: "Poppins", sans-serif; /* Ensure consistent font */
}

/* Quotes Grid */
.quote-grid {
  position: relative; /* Needed for z-index */
  z-index: 1; /* Ensure quotes are above the overlay */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 10px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 100px auto; /* Keep existing margins for vertical spacing below grid */
  box-sizing: border-box;
  margin-top: -50px;
}

.quote-grid p {
  font-style: italic;
  color: #dddddd; /* Slightly lighter gray for quotes for contrast */
  font-size: clamp(16px, 2.2vw, 18px); /* Responsive font size for quotes */
  line-height: 1.8; /* Good line height for readability */
  padding: 10px; /* Padded background for each quote */
  word-break: break-word;
  font-weight: bold; /* Make the main quote text bold */
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background */
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  backdrop-filter: blur(5px); /* Optional: slight blur effect */
}

.quote-grid p span {
  display: block;
  margin-top: 5px;
  font-weight: 800; /* Extra bold for author */
  font-size: 14px;
  text-align: right;
  color: #ffb347; /* Orange tint for author names */
  text-align: center;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .heading-container h1 {
    font-size: 40px;
  }
  .heading-container .expo {
    margin-top: -5px; /* Adjust for smaller screens */
  }
  .heading-container .tagline {
    margin-bottom: 60px; /* Keep separation on mobile */
  }

  .quote-grid {
    grid-template-columns: 1fr; /* Single column on small screens */
    gap: 30px;
    margin-bottom: 60px;
  }

  .quote-grid p span {
    text-align: center; /* Center author on mobile */
  }
}

/* Additional Media Query for very small screens if needed */
@media (max-width: 480px) {
  .heading-container h1 {
    font-size: 32px;
  }
  .heading-container .tagline {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .quote-grid p {
    font-size: 15px;
    padding: 15px;
  }
}

#heroBg {
  opacity: 0.5;
  filter: blur(2px);
}

.heroSection {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heroSection::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #000000, transparent);
  z-index: 10000000;
}
.heroSection::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, transparent, #000000);
  z-index: 1000000;
}
#rightCurtain {
  position: absolute;
  left: 45%;
  width: 55%;
}

#leftCurtain {
  position: absolute;
  left: 30;
  width: 50%;
}

.Bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.5;
  background-color: #000;
}

#heroText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;
  font-size: clamp(3rem, 10vw, 10rem);
  font-family: "Display", "Bebas Neue", sans-serif;
  font-weight: 400;
  overflow: hidden;
  text-align: center;

  text-shadow:
    /* Orange glow */ -2px 0px 2px rgba(255, 93, 13, 0.5),
    -4px 0px 8px rgba(255, 93, 13, 0.3), 2px 0px 2px rgba(255, 93, 13, 0.5),
    4px 0px 8px rgba(255, 93, 13, 0.3),
    /* White glow */ 0 0 12px rgba(255, 255, 255, 0.7),
    0 0 24px rgba(255, 255, 255, 0.4),
    /* Shadow */ 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.press-start-2p-regular {
  font-family: "Press Start 2P";
  src: url("/font/PressStart2P-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

.heroSection h3 {
  position: relative;
  z-index: 2;

  margin-top: 15.2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1.5px;

  text-shadow: 0 0 8px rgba(255, 93, 13, 0.3), 0 0 12px rgba(255, 93, 13, 0.2);

  animation: glowText 2.5s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 8px rgba(255, 93, 13, 0.3), 0 0 12px rgba(255, 93, 13, 0.2);
  }

  to {
    text-shadow: 0 0 12px rgba(255, 93, 13, 0.6),
      0 0 18px rgba(255, 93, 13, 0.4);
  }
}

.countdownSection {
  margin-top: 1rem;
  padding: 2rem 4vw;
  text-align: center;
  background: linear-gradient(
    180deg,
    #1a1a1a,
    #2a1200
  ); /* clean dark-orange gradient */
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 106, 0, 0.15);
  border-bottom: 1px solid rgba(255, 106, 0, 0.15);
  color: #f5f5f5;
  z-index: 3;
  position: relative;
}

.countdownSection h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #ff6a00;
  text-shadow: 0 0 12px #ff6a00, 0 0 18px rgba(255, 106, 0, 0.4); /* stronger glow */
  animation: glowText 2.5s ease-in-out infinite alternate;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-family: "Segoe UI", sans-serif;
  flex-wrap: wrap;
}

.countdown div {
  background: rgba(255, 106, 0, 0.08); /* soft orange tint */
  border: 1.5px solid rgba(255, 106, 0, 0.35);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  min-width: 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.25);
}

.countdown div:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
}

.countdown span {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.countdown p {
  font-size: 0.9rem;
  margin-top: 0.3rem;
  color: #ffae62;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 8px #ff6a00, 0 0 12px rgba(255, 106, 0, 0.3);
  }
  to {
    text-shadow: 0 0 16px #ff6a00, 0 0 24px rgba(255, 106, 0, 0.5);
  }
}

@media (max-width: 768px) {
  .countdownSection {
    padding: 1.5rem 2vw;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown div {
    padding: 0.8rem;
    min-width: 60px;
    max-width: 80px;
  }

  .countdown span {
    font-size: 1.3rem;
  }

  .countdown p {
    font-size: 0.75rem;
  }
}

.eventInfoContainer {
  max-width: 100%;
  margin: 3rem auto;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.eventDateLocation {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: #ff6a00;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  animation: fadeSlideIn 2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typingText {
  color: #ffffff;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.95;
  text-align: center;
  word-break: break-word;
  display: inline-block;
  white-space: normal;
  width: 100%;
}

.blinkingCursor {
  display: inline;
  color: #ff6a00;
  font-weight: bold;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.highlightText {
  color: #ff6a00;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 1px;
  text-shadow: 0 0 10px #ff5d0d;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px #ff5d0daa, 0 0 20px #ff5d0daa;
  }

  to {
    text-shadow: 0 0 20px #ff5d0d, 0 0 30px #ff5d0d;
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .eventInfoContainer {
    padding: 0 1rem;
  }

  .typingText {
    padding: 5;
  }

  .typingWrapper {
    font-size: 1rem;
  }

  .highlightText {
    font-size: 1rem;
  }

  .eventDateLocation {
    font-size: 0.95rem;
  }
}

#vantaBgContainer {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#aboutSection {
  background: linear-gradient(to right, #1a0d00, #331a00);
  color: white;
  padding: 80px 5%;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-box {
  flex: 1 1 48%;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 93, 13, 0.3),
    /* stronger outer glow */ 4px 4px 12px rgba(255, 153, 0, 0.2);
  /* subtle soft layer */
  border-right: 1px solid rgba(255, 93, 13, 0.25);
  /* vivid orange border */
  border-bottom: 1px solid rgba(255, 93, 13, 0.25);
}

.about-box h2 {
  color: #ff5d0d;
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0d0d0;
}

/* Image Box */
.image-box {
  padding: 0;
  background: none;
  box-shadow: none;
}

.image-box img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: block;
  margin: 25px auto 0 auto;
}

.image-box img:hover {
  transform: scale(1.03);
}

.image-box2 {
  padding: 0;
  background: none;
  box-shadow: none;
}

.image-box2 img {
  width: 100%;
  max-width: 800px;
  height: 250px;
  border-radius: 12px;
  background: black;
  transition: transform 0.3s ease;
  display: block;
  margin-top: 35px;
}

.image-box2 img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
  }

  .about-box {
    flex: 1 1 100%;
  }

  .image-box img {
    max-height: 300px;
    object-fit: cover;
  }
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(255, 93, 13, 0.4),
    /* stronger outer orange glow */ 4px 4px 12px rgba(255, 153, 0, 0.2);
  /* soft fill shadow */
  border-right: 1px solid rgba(255, 93, 13, 0.3);
  /* brighter orange border */
  border-bottom: 1px solid rgba(255, 93, 13, 0.3);
}

.about-box h2 {
  color: #ff5d0d;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.about-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-box {
    flex: 1 1 100%;
  }
}

/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate class */
.animate-fade-up {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.15s;
}

/* Scroll trigger using IntersectionObserver */
.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

/* Optional delay customization */
.animate-fade-up:nth-child(2) {
  animation-delay: 0.4s;
}

/*--------------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Event hIghlights Corousel ----------------------------------------------------*/
/* Highlights Section */

/* Highlights Section */
.highlightsSection {
  padding: 80px 5%;

  margin: 0 auto;
  background: linear-gradient(to right, #1a0d00, #331a00);
  position: relative;
  z-index: 1;
}

h2 {
  font-family: "aktiv-grotesk", sans-serif; /* Sets the font to 'aktiv-grotesk', which you've linked via Typekit. If this fails, it falls back to a generic sans-serif. */
  font-weight: 700; /* Makes the text bold. */
  font-size: 3.5 rem; /* Sets the text size. '3em' means 3 times the base font size (usually 16px, so around 48px). */
  text-align: center; /* Centers the text horizontally within its container. */
  color: #ff5d0d; /* Sets the text color to a very light grey, which contrasts well with your dark background. */
  margin-bottom: 60px; /* Adds 60 pixels of space below the heading, separating it from the content below. */
  position: relative; /* Essential for positioning the '::after' pseudo-element relative to this heading. */
  padding-bottom: 15px; /* Adds space between the text and the bottom border/underline. */
}

#event-heading {
  font-family: "aktiv-grotesk", sans-serif; /* Sets the font to 'aktiv-grotesk', which you've linked via Typekit. If this fails, it falls back to a generic sans-serif. */
  font-weight: 700; /* Makes the text bold. */
  font-size: 3.5rem; /* Sets the text size. '3em' means 3 times the base font size (usually 16px, so around 48px). */
  text-align: center; /* Centers the text horizontally within its container. */
  color: #ff5d0d; /* Sets the text color to a very light grey, which contrasts well with your dark background. */
  margin-bottom: 60px; /* Adds 60 pixels of space below the heading, separating it from the content below. */
  position: relative; /* Essential for positioning the '::after' pseudo-element relative to this heading. */
  padding-bottom: 15px; /* Adds space between the text and the bottom border/underline. */
}

h2::after {
  content: "";
  position: absolute;
  left: 65%; /* Moved left from 70% */
  bottom: 0;
  transform: translateX(-0%);
  width: 250px;
  height: 4px;
  /* background-color: #ff5722; */
  border-radius: 2px;
}

/* Responsive adjustment for h2 */
@media (max-width: 767px) {
  h2 {
    font-size: 2em; /* On smaller screens (max-width 767px), the font size is reduced to '2em' (around 32px) for better mobile readability. */
    margin-bottom: 40px; /* The bottom margin is also slightly reduced on mobile. */
  }
}

.highlightGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.highlightCard {
  background-color: #2b2b2b; /* Dark background for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* More prominent shadow for dark theme */
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease, border-color 0.3s ease; /* Added border-color to transition */
  overflow: hidden;
  position: relative;
  border: 2px solid transparent; /* Default transparent border */

  /* Animation properties for initial load */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInSlideUp 0.8s ease-out forwards;
}

.highlightCard:hover {
  transform: translateY(-10px) scale(1.02);
  /* Enhanced box-shadow with orange glow on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 87, 34, 0.6); /* Orange outer glow */
  background-color: #3a3a3a; /* Slightly lighter background on hover */
  border-color: #ff5722; /* Subtle orange border on hover */
}

/* Delay animation for each card for a staggered effect */
.highlightGrid .highlightCard:nth-child(1) {
  animation-delay: 0.1s;
}
.highlightGrid .highlightCard:nth-child(2) {
  animation-delay: 0.2s;
}
.highlightGrid .highlightCard:nth-child(3) {
  animation-delay: 0.3s;
}
.highlightGrid .highlightCard:nth-child(4) {
  animation-delay: 0.4s;
}
.highlightGrid .highlightCard:nth-child(5) {
  animation-delay: 0.5s;
}
.highlightGrid .highlightCard:nth-child(6) {
  animation-delay: 0.6s;
}
.highlightGrid .highlightCard:nth-child(7) {
  animation-delay: 0.7s;
}

/* Keyframe for fade in and slide up animation */
@keyframes fadeInSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .highlightGrid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .highlight-span-2 {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .highlightGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlight-span-2 {
    grid-column: span 2;
  }

  .highlightGrid:has(.highlight-span-2:last-child) {
    justify-items: center;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  .highlightsSection {
    padding: 50px 5%;
  }

  .highlightCard {
    padding: 25px;
    /* No fixed orange border here if we want the hover effect instead */
    border: 2px solid rgba(255, 87, 34, 0.3); /* A very subtle orange border on mobile by default */
  }

  .highlightCard h3 {
    /* Target h3 inside highlightCard on mobile */
    color: #ff5722; /* Orange color for h3 on mobile */
  }

  .highlight-span-2 {
    grid-column: span 1;
  }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Offer Section ----------------------------------------------------*/
#featured {
  padding: 2vh 12vw;
  display: flex;
  flex-direction: column;
  gap: 4vh;
  background: linear-gradient(to right, #1a0d00, #331a00);
  color: white;
}

.fsub-heading {
  line-height: 1;
  font-size: 3vh;
  font-weight: 400;
  text-align: center;
  margin-top: 5vh;
  margin-bottom: 6vh;
}

.student-cards-container {
  width: 100vw;
  max-width: 100%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 4vw;
  box-sizing: border-box;
}

.student-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1.5rem;
  flex: 1 1 300px;
  max-width: 300px;
  height: 250px;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url("./img/cardImg3.jpg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 136, 255, 0.1);
  backdrop-filter: blur(10px);

  color: #fff;
}

.student-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 93, 13, 0.15),
    0 0 15px rgba(255, 93, 13, 0.2);
}

.student-card h3 {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.student-card p {
  font-size: 0.95rem;
  color: #dddddd;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .student-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

#fImages {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
}

#fleft {
  overflow: hidden;
  width: 40%;
  height: inherit;
}

.fleft-elem {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.5vh 0;
  height: inherit;
}

.fleft-elem h1 {
  line-height: 1;
  font-size: 2vw;
  font-weight: 600;
  text-transform: capitalize;
  margin: 2vh 0;
}

.fleft-elem h1 span {
  color: #ff5d0d;
  font-variant: small-caps;
}

.fleft-elem h3 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 1.3vw;
}

.fleft-elem h4 {
  margin-top: 40px;
  opacity: 0.5;
}

.last h4 {
  color: #ff5d0d;
  opacity: 1;
}

#fright {
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 6vh;
}

#fright .images {
  width: 95%;
  height: 99%;
  overflow: hidden;
}

#fright .images img {
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Speakers ------------------------------------------------------------*/

#speakerSection {
  background: linear-gradient(to right, #1a0d00, #331a00);
  padding: 80px 5%;
  text-align: center;
}

.dayGalleryTitle {
  font-size: 2.5rem;
  color: #ff5d0d;
  margin-bottom: 30px;
}

.day-buttons {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
  gap: 10px; /* Added gap for spacing between buttons */
}

.tab-button {
  padding: 10px 22px;
  background: transparent;
  border: 2px solid #ff5d0d;
  border-radius: 25px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
  background-color: #ff5d0d;
  color: black;
}

.day-content-wrapper {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.day-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.day-content.active {
  max-height: 5000px; /* Increased max-height significantly to prevent content cutoff */
  opacity: 1;
  margin-top: 30px;
}

/* Speaker Cards */
.speakerContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.flip-card {
  background: transparent;
  width: 300px; /* Default width for desktop */
  height: 400px; /* Default height for desktop */
  perspective: 1000px;
  flex-shrink: 0; /* Prevents cards from shrinking */
  margin-bottom: 20px; /* Added margin-bottom for better spacing between rows on all screen sizes */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Card Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  background: linear-gradient(145deg, #ffae00, #ff6a00);
  color: #fff;
  box-shadow: 0 0 25px var(--orange-glow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  word-wrap: break-word; /* Prevents long words from overflowing */
  box-sizing: border-box; /* Ensures padding is included in width/height calculation */
}

/* Front face */
.flip-card-front img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid white;
}

.flip-card-front h2 {
  font-size: 1.5em; /* Increased font size for better readability */
  color: #fff;
  margin: 0;
  white-space: normal; /* Allows name to wrap */
}

.flip-card-front h3 {
  font-size: 1em;
  color: #f7f7f7;
  margin: 5px 0 0 0;
  white-space: normal; /* Allows title to wrap */
}

/* Back face */
.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #ff6a00, #ffae00);
}

.flip-card-back h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #fff;
  white-space: normal;
}

.flip-card-back h3 {
  font-size: 0.9em;
  color: #f7f7f7;
  text-align: center;
  white-space: normal;
  overflow-y: auto; /* Allows scrolling for longer bios */
  height: 100%; /* Take up remaining space */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile responsiveness for speaker section */
@media (max-width: 768px) {
  #speakerSection {
    padding: 50px 2%; /* Adjusted padding for smaller screens */
  }

  .dayGalleryTitle {
    font-size: 2rem; /* Smaller heading font size */
  }

  .day-buttons {
    flex-direction: row; /* Ensure buttons stay in a row */
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-button {
    font-size: 0.9rem;
    padding: 8px 16px;
    margin: 5px;
  }

  .speakerContainer {
    padding: 10px;
    gap: 20px; /* Smaller gap between cards */
  }

  .flip-card {
    width: 90vw; /* Use viewport width for better scaling on mobile */
    max-width: 300px; /* Limit max width to prevent them from becoming too large on tablets */
    height: 350px; /* Adjusted height for mobile, can be tweaked further */
  }

  .flip-card-front img {
    width: 120px;
    height: 120px;
  }

  .flip-card-front h2 {
    font-size: 1.2em;
  }

  .flip-card-front h3 {
    font-size: 0.9em;
  }

  .flip-card-back h2 {
    font-size: 1.2em;
  }

  .flip-card-back h3 {
    font-size: 0.8em;
  }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
  .flip-card {
    width: 95vw; /* Even wider on very small screens */
    height: 320px; /* Slightly shorter for very small screens */
  }

  .flip-card-front img {
    width: 100px;
    height: 100px;
  }

  .flip-card-front h2 {
    font-size: 1.1em;
  }

  .flip-card-front h3 {
    font-size: 0.8em;
  }

  .flip-card-back h2 {
    font-size: 1.1em;
  }

  .flip-card-back h3 {
    font-size: 0.75em;
  }
}

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Investors ----------------------------------------------------*/

.investor-section {
  padding: 20px 20px;
  text-align: center;
  background: linear-gradient(to right, #1a0d00, #331a00);
}

.investor-section h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Swiper container */
.swiper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 20px;
}

/* Swiper slides */

.swiper-wrapper .swiper-slide {
  width: 400px;
  display: block;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 25;
  text-decoration: none;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 136, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease-in-out;
}

.swiper-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 93, 13, 0.15),
    0 0 15px rgba(255, 93, 13, 0.2);
}

/* Image style */
.swiper-wrapper .swiper-slide .investor-image {
  margin: 0 auto;
}

.swiper-wrapper .swiper-slide .investor-image img {
  width: 100%;
  height: 100%;

  aspect-ratio: 16/9;
  border-radius: 10px;
  object-fit: cover;
}

/* Info box */
.investor-info {
  max-width: 500px;
  color: #fff;
  text-align: left;
}

.investor-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.investor-info p {
  font-size: 0.8rem;
}

.investor-info .role {
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 10px;
}

/* Swiper buttons */

.swiper-nav-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 40px;
  margin-top: -12px;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid #ffd700;
  color: #ffd700;
  width: 40px; /* Increased size for better visibility */
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  position: static; /* Reset position from default absolute */
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ffd700;
  color: #1a0d00;
  box-shadow: 0 0 15px #ffcc00;
}

/* Swiper pagination */
.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #ffd700;
}

/* Responsive design */
@media (max-width: 768px) {
  .swiper-slide {
    flex-direction: column;
    text-align: center;
  }

  .investor-info {
    text-align: center;
  }

  .investor-image {
    width: 200px;
    height: 200px;
  }
}

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Sponsor Section ----------------------------------------------------*/
.sponsor-section {
  padding: 60px 5%;
  background: linear-gradient(to right, #1a0d00, #331a00);
  text-align: center;
}

.section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 700;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-content: center;
}

.sponsor-card {
  background: #000;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.sponsor-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.sponsor-card h3 {
  font-size: 1em;
  color: #777;
  margin-bottom: 5px;
}

.sponsor-card h2 {
  font-size: 1.4em;
  margin: 8px 0;
}

.sponsor-info {
  font-size: 0.95em;
  color: #555;
  margin-top: 10px;
}

/*------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Previous Partners ----------------------------------------------------*/
.partners {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #1a0d00, #331a00);
  color: white;
}

#moving-div {
  position: relative;
  margin: 0 auto;
  padding: 1.2vw;
  white-space: nowrap;
  overflow: hidden;
  width: 100%; /* Changed to 100% to fill the section width */
  display: flex; /* Changed to flex for continuous scrolling effect */
}

#moving-div .move {
  display: inline-flex; /* Use inline-flex for children of flex container */
  animation: slide 20s linear infinite; /* Use the `slide` animation */
  flex-shrink: 0; /* Prevent items from shrinking */
  white-space: nowrap; /* Ensure content stays in one line */
}

#moving-div .move img {
  height: 80px; /* Consistent height */
  margin: 0 20px; /* Consistent margin */
}

/* Moved @keyframes slide here for clarity and consistency */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#blurleft {
  height: 100%;
  width: 13%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #000000, transparent);
  z-index: 2;
}

#blurright {
  height: 100%;
  width: 13%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(
    to right,
    transparent,
    #000000
  ); /* Corrected gradient direction */
  z-index: 2;
}

/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- Video ----------------------------------------------------*/
#videoSection {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#videoSection video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
}

.videoSection-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media (max-width: 768px) {
  #videoSection {
    width: 100%;
    height: 100%;
  }

  #videoSection video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Center overlay stays in place */
}

/*----------------------------------- FAQ Section ----------------------------------*/
#FAQ {
  width: 100%;
  min-height: 100vh;
  padding: 2vh 8vw;
  background: linear-gradient(to right, #1a0d00, #331a00);
  color: white;
  font-family: "Poppins", sans-serif;
}

/* Global transition */
* {
  transition: all 0.3s ease;
}

/* FAQ Section */
#FAQ > h1 {
  text-align: center;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 5vh;
  background: linear-gradient(90deg, #ff5d0d, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#FAQ > div:not(:last-child) {
  margin-bottom: 6vh;
}

summary {
  position: relative;
  border: 1px solid #3a3a3f;
  padding: 20px 18px;
  background: linear-gradient(145deg, #1b1b1e, #212124);
  border-radius: 20px;
  cursor: pointer; /* Added cursor pointer */
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.1);
}

summary:hover {
  box-shadow: 0 0 25px rgba(255, 153, 0, 0.3);
}

summary::marker {
  content: "";
}

summary h1 {
  font-size: 22px;
  font-weight: 600;
  color: #f1f1f1;
}

/* Renamed #show to .icon for consistency with JS */
summary .icon {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  color: #aaa;
  transition: transform 0.5s ease;
}

details[open] .icon {
  transform: rotate(180deg);
}

.FAQ-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  position: relative;
  margin-top: 10px;
  padding: 0 20px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.08);
  background: linear-gradient(
    145deg,
    rgba(255, 153, 0, 0.07),
    rgba(255, 204, 112, 0.07)
  );
}

.FAQ-answer p {
  font-weight: 500;
  z-index: 2;
  padding-left: 10px;
  width: 100%;
  font-size: 16px;
  line-height: 1.8;
  color: #f0f0f0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Optional text fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.FAQ_hoverEffect {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 153, 0, 0.3),
    transparent 70%
  );
  transition: all 0.6s ease;
  z-index: 1;
}

.FAQ-answer:hover .FAQ_hoverEffect {
  transform: translateY(0);
  opacity: 0.3;
}

/* Show animation when <details> is open */
details[open] .FAQ-answer {
  max-height: 500px;
  padding: 25px 20px 30px 20px;
  opacity: 1;
}

/* More Questions CTA */
.moreQuestions {
  color: #fff;
  background: linear-gradient(247deg, #3a2203, #1b1b1b);
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  font-size: 1.2em;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

.moreQuestions:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 153, 0, 0.5);
}

/* Form Section */
.form-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 8%;
  background: linear-gradient(to right, #1a0d00, #331a00);
  color: white;
}

.form-container .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.1);
}

.form-row .leftForm {
  flex-basis: 35%;
  min-width: 320px;
}

.form-row .rightForm {
  flex-basis: 60%;
  min-width: 300px;
}

.leftForm .contactTitle h2 {
  position: relative;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 25px;
}

.leftForm .contactTitle h2::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #888;
  top: 120%;
  left: 0;
}

.leftForm .contactTitle h2::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #ff9900;
  top: calc(120% - 1px);
  left: 0;
}

.leftForm .contactTitle p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-top: 20px;
}

/* Inputs */
.messageForm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.messageForm .halfWidth {
  flex-basis: 48%;
  min-width: 220px;
}

.messageForm .fullWidth {
  flex-basis: 100%;
}

.messageForm input,
.messageForm textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #666;
  color: #f1f1f1;
  font-size: 17px;
  padding: 10px 0;
  outline: none;
}

.messageForm input:focus,
.messageForm textarea:focus {
  border-bottom: 2px solid #ff9900;
  box-shadow: 0 2px 15px rgba(255, 153, 0, 0.2);
}

.messageForm textarea {
  resize: none;
  height: 150px;
}

/* Scrollbar */
textarea::-webkit-scrollbar {
  width: 5px;
}

textarea::-webkit-scrollbar-track {
  background-color: #eee3e3;
  border-radius: 15px;
}

textarea::-webkit-scrollbar-thumb {
  background-color: #ff9900;
  border-radius: 15px;
}

/* Floating Labels */
.inputGroup {
  position: relative;
  width: 100%;
}

.inputGroup label {
  position: absolute;
  left: 0;
  bottom: 10px;
  color: #aaa;
  font-size: 16px;
  pointer-events: none;
}

.inputGroup input:focus ~ label,
.inputGroup input:valid ~ label,
.inputGroup textarea:focus ~ label,
.inputGroup textarea:valid ~ label {
  transform: translateY(-24px);
  font-size: 14px;
  color: #ff9900;
}

.inputGroup textarea:focus ~ label,
.inputGroup textarea:valid ~ label {
  transform: translateY(-145px);
}

/* Submit Button */
.inputGroup button {
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  /* background: linear-gradient(135deg, #ff9900, #ffa600); */
  background: linear-gradient(145deg, #ffae00, #ff6a00);
  color: white;
  border: none;
  border-radius: 30px;
  margin-top: 10px;
  box-shadow: 0px 10px 25px rgba(255, 153, 0, 0.25);
  cursor: pointer; /* Added cursor pointer */
}

.inputGroup button:hover {
  background: #111;
  color: #ff9900;
  box-shadow: 0px 0px 12px #ff9900;
  border: 1px solid #ff9900;
}

/* Footer */
.footer-upper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3vw 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
}

.footer-upper img {
  height: 180px;
  width: 160px;
  object-fit: contain;
  filter: drop-shadow(0px 0px 8px rgba(255, 153, 0, 0.2));
}

.footer-part h3,
.footer-part4 h3 {
  width: fit-content;
  font-size: 20px;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 600;
}

footer .underline {
  width: 100%;
  height: 4px;
  background: #ff9900;
  border-radius: 3px;
  position: relative;
  top: 4px;
  left: 0;
}

footer .underline span {
  width: 15px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }

  100% {
    left: 100%;
  }
}

.footer-part p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
}

.footer-part p a {
  text-decoration: none;
  color: #ccc;
}

.footer-part p a:hover {
  color: #ff9900;
  text-shadow: 0px 0px 5px rgba(255, 153, 0, 0.5);
}

/* Social Media Icons */
.socialMedia {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  background: #ff9900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 10px rgba(255, 153, 0, 0.3);
}

.fab:hover {
  transform: scale(1.1);
  background: #ff9900;
  box-shadow: 0px 0px 15px rgba(255, 153, 0, 0.5);
}

.socialMedia a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
}

.socialMedia a:hover {
  color: #ff9900;
}

footer > p {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #999;
}

.cursor,
.circle-cursor {
  display: none !important;
}

/* Intro Animation */
#introAnimation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1.5s ease-out;
}

#surpriseBox {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.5);
  background-image: url("https://placehold.co/150x150/ff6a00/ffffff?text=Future of India");
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease-out;
  position: relative;
}

#surpriseBox.burst {
  transform: scale(0) rotate(720deg);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  box-shadow: none;
}

#surpriseBox.burst::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(236, 72, 153, 0.7) 30%,
    rgba(139, 92, 246, 0.5) 60%,
    transparent 100%
  );
  animation: box-burst-flash 0.8s forwards;
  transform: translate(-50%, -50%);
}

@keyframes box-burst-flash {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    width: 300px;
    height: 300px;
    opacity: 0.8;
  }
  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
  }
}

#cosmicCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 1s ease-in;
}

#cosmicCanvas.active {
  display: block;
  opacity: 1;
}

#mainContent {
  transition: opacity 1.5s ease-in, visibility 0s linear 1.5s;
}

/* landing css */

.gradient-text {
  background: linear-gradient(90deg, #ff6a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.section-animation.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pulse-button {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

/* Wadhwani Foundation */

/* Section styling */
.Wadhwani {
  padding: 60px 10px;
  background: linear-gradient(to right, #1a0d00, #331a00);
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Swiper container */
.new-swiper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Title */
.wadhwani-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Layout for image + text */
.wadhwani-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.imagew-box {
  width: 100%;
  flex: 1 1 400px;
  padding: 0;
  background: none;
  box-shadow: none;
}

.imagew-box img {
  width: 100%;
  max-width: 400px;
  /* height: auto; */
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

.wadhwani-box {
  flex: 1;
}
.wadhwani-box h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}
.wadhwani-box p {
  line-height: 1.6;
  font-size: 1rem;
}

.new-swiper-nav-buttons {
  display: flex;
  justify-content: space-between;

  margin-top: 40px;
}

/* Navigation buttons */
.new-swiper-button-next,
.new-swiper-button-prev {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #ffd700;
  color: #ffd700;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  transition: all 0.3s ease;
}

/* Hover effect */
.new-swiper-button-next:hover,
.new-swiper-button-prev:hover {
  background: #ffd700;
  color: #1a0d00;
  box-shadow: 0 0 20px rgba(255, 215, 0, 1);
}

/* Position arrows closer to center vertically */
.new-swiper-button-prev {
  left: 15px;
}
.new-swiper-button-next {
  right: 15px;
}

/* On smaller screens - make them smaller */
@media (max-width: 768px) {
  .imagew-box {
    flex: 1 1 200px;
  }
  .new-swiper-button-next,
  .new-swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}
/* Pagination styling */
.new-swiper-pagination .swiper-pagination-bullet {
  background: #ffd700;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.new-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wadhwani-row {
    flex-direction: column;
    text-align: center;
  }
  .wadhwani-box h2 {
    font-size: 1.5em;
  }
  .wadhwani-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
}
