/* custom----------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif, Arial;
  box-sizing: border-box;
  font-size: 16px;
}

html {
  height: 100%;
}

body {
  background-color: #121212;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
  margin-top: 110px;
}

.hero-interactive-section {
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  perspective: 1000px;
}



.liquid-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.liquid-svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}


.liquid-blob {
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}

.blob-1 { animation-delay: 0s; }
.blob-2 { animation-delay: -1s; }
.blob-3 { animation-delay: -2s; }
.blob-4 { animation-delay: -3s; }
.blob-5 { animation-delay: -4s; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;


  max-width: 1400px;
  padding: 0 2rem;
}

.text-layers {
  position: relative;
  margin-bottom: 4rem;
}

.text-layer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.layer-1 {
  color: transparent;
  -webkit-text-stroke: 2px rgba(230, 43, 30, 0.8);
  z-index: 3;
  animation: layer1Move 8s ease-in-out infinite;
}

.layer-2 {
  color: rgba(230, 43, 30, 0.6);
  z-index: 2;
  filter: blur(2px);
  animation: layer2Move 8s ease-in-out infinite reverse;
}

.layer-3 {
  color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  filter: blur(4px);
  transform: translateX(-50%) scale(1.1);
  animation: layer3Move 8s ease-in-out infinite;
}

.word-cloud {
  position: relative;
  height: 300px;
  margin: 4rem 0;
}

.cloud-word {
  position: absolute;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: wordFloat 3s ease-out forwards;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cloud-word:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cloud-word:nth-child(2) {
  top: 10%;
  right: 20%;
  animation-delay: 0.2s;
}

.cloud-word:nth-child(3) {
  top: 40%;
  left: 5%;
  animation-delay: 0.4s;
}

.cloud-word:nth-child(4) {
  top: 30%;
  right: 10%;
  animation-delay: 0.6s;
}

.cloud-word:nth-child(5) {
  bottom: 30%;
  left: 15%;
  animation-delay: 0.8s;
}

.cloud-word:nth-child(6) {
  bottom: 20%;
  right: 25%;
  animation-delay: 1s;
}

.cloud-word:nth-child(7) {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.2s;
}

.cloud-word:nth-child(8) {
  top: 50%;
  right: 5%;
  animation-delay: 1.4s;
}

.cloud-word:hover {
  color: #e62b1e;
  transform: scale(1.3) rotate(5deg);
  text-shadow: 0 0 20px rgba(230, 43, 30, 0.5);
  filter: drop-shadow(0 0 10px rgba(230, 43, 30, 0.3));
}

.interactive-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, transparent, rgba(230, 43, 30, 0.1), transparent);
  border-radius: 50%;
  animation: waveMove 6s ease-in-out infinite;
}

.wave-1 {
  animation-delay: 0s;
  opacity: 0.6;
}

.wave-2 {
  animation-delay: -2s;
  opacity: 0.4;
  height: 80px;
}

.wave-3 {
  animation-delay: -4s;
  opacity: 0.2;
  height: 60px;
}

.magnetic-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #e62b1e;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(230, 43, 30, 0.5);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.1);
  }
  50% {
    transform: translateY(-10px) translateX(-15px) scale(0.9);
  }
  75% {
    transform: translateY(-30px) translateX(5px) scale(1.05);
  }
}

@keyframes layer1Move {
  0%, 100% {
    transform: translateX(-50%) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateX(-50%) rotateX(5deg) rotateY(2deg);
  }
  50% {
    transform: translateX(-50%) rotateX(0deg) rotateY(-3deg);
  }
  75% {
    transform: translateX(-50%) rotateX(-3deg) rotateY(1deg);
  }
}

@keyframes layer2Move {
  0%, 100% {
    transform: translateX(-50%) translateY(0px) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) scale(1.02);
  }
}

@keyframes layer3Move {
  0%, 100% {
    transform: translateX(-50%) scale(1.1) translateY(0px);
  }
  50% {
    transform: translateX(-50%) scale(1.15) translateY(5px);
  }
}

@keyframes wordFloat {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes waveMove {
  0%, 100% {
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    transform: translateX(-60%) scaleY(1.2);
  }
}

/* Hover states */
.text-layer:hover {
  animation-play-state: paused;
}

.cloud-word.magnetic {
  transform: scale(1.2);
  color: #ff6b6b;
}

.cursor-ring.expanded {
  width: 80px;
  height: 80px;
  border-color: #e62b1e;
}




@media (max-width: 480px) {
  
  .text-layers {
    margin-bottom: 2rem;
  }
  
}

/* Reveal Text */
.reveal-text-container {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  height: 120px;
}

.hidden-layer {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: #333;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
}

.revealed-layer {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: #e62b1e;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: circle(0px at 50% 50%);
  transition: clip-path 0.5s ease;
  text-shadow: 0 0 20px rgba(230, 43, 30, 0.5);
}

.hidden-word {
  margin: 0 1rem;
  position: relative;
  cursor: crosshair;
}

/* Interactive Elements */
.interactive-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Scratch Card */
.scratch-card {
  position: relative;
  width: 300px;
  height: 150px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scratch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
  z-index: 2;
}

.scratch-canvas:active {
  cursor: grabbing;
}

.scratch-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e62b1e, #ff6b6b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.scratch-instruction {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.scratch-icon {
  font-size: 1.2rem;
}

/* Puzzle Container */
.puzzle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.puzzle-piece {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4a90e2, #357abd);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  position: relative;
  transition: all 0.3s ease;
  margin: 0.5rem;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.puzzle-piece:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.5);
}

.puzzle-piece.dragging {
  transform: scale(1.2) rotate(10deg);
  z-index: 1000;
  cursor: grabbing;
}

.piece-letter {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  z-index: 1;
}

.piece-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 20px;
  opacity: 0;
  animation: glow 3s ease-in-out infinite;
}

.puzzle-drop-zone {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.puzzle-drop-zone.drag-over {
  border-color: #e62b1e;
  background: rgba(230, 43, 30, 0.1);
  transform: scale(1.05);
}

.drop-hint {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.drop-slots {
  display: flex;
  gap: 1rem;
}

.drop-slot {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.drop-slot.filled {
  border-color: #4a90e2;
  background: rgba(74, 144, 226, 0.2);
}

/* Breathing CTA */
.breathing-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}

.pulse-button {
  background: linear-gradient(45deg, #e62b1e, #ff4757);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: breathe 3s ease-in-out infinite;
}

.pulse-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(230, 43, 30, 0.4);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.pulse-button:active .btn-ripple {
  width: 300px;
  height: 300px;
}

.cta-hint {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  opacity: 0;
  animation: fadeInDelay 1s ease-out 3s forwards;
}

.hint-arrow {
  display: inline-block;
  animation: pointUp 2s ease-in-out infinite;
}

/* Progress Indicator */
.progress-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.progress-step.completed {
  opacity: 1;
  transform: scale(1.1);
}

.progress-step.active {
  opacity: 1;
  animation: stepPulse 2s ease-in-out infinite;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.progress-step.completed .step-icon {
  background: #e62b1e;
}


/* Navbar------------------------------------------------------- */

.navbar {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
 
}

:root{
  --navbar-height: 110px;
}

.navbar-custom a {
  color: #ffffff !important;
  font-size: 0.9rem;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #ffffff;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e62b1e;

  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.hover-underline-animation:hover {
  color: #ffffff;
}

.navbar-custom button {
  border: 1px solid #e62b1e;
  box-sizing: border-box;

  font-size: 0.9rem;
  padding: 10px 30px;
}

.navbar-custom .Participate-btn-nav:hover {
  background-color: #ffffff;
  transition: 0.3s;
}

.btn {
  background-color: transparent;
  /* border: 0.3px solid #000000; */
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-weight: 300;
  border-radius: 0%;
  color: #ffffff;
  
}

/* .btn::after,
.btn::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: 0.35s ease-out;
  background-color: #ffffff;
} */

.btn::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.btn:hover {
  color: white;
  background-color: red;
}

.btn:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

/* illustration01 */

.illustration-left-homepage {
  position: absolute;
  bottom: -15%;
  opacity: 1;
}







/* Nav */
  





/* _______________________________________________________________________________________________________________ */
/* ---------------------------------------------------Homepage---------------------------------------------------- */
/* _______________________________________________________________________________________________________________ */
.homepage {
  margin-top: var(--navbar-height);
  position: relative;
  background-color: #d40000;
/* background image overlay */
background-image: url("/Resources/Images/afro pattern3.svg");
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: multiply;
  
}

.home-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.homepage p {
  display: inline-block;
  line-height: 120%;
}

.illustration-left-homepage {
  position: absolute;
  left: 0%;
  top: -10%;
  opacity: 1;
  width: 100%;
  z-index: -3;
}

.homepage .btn {

  position: relative;
  font-size: 0.9rem;
  color: #ffffff;
  padding-left: 16px;
  padding-right: 16px;
  padding: 10px 30px;
}

.homepage .btn-participate {
  background-color: #000000;
  color: #ffffff;
  font-size: 0.9rem;



}

/* Done by divyansh */
.brdrgrp {
  display: none;
  position: absolute;

  background-color: rgba(230, 43, 30, 0.2);
  width: max-content;
  margin-top: 5px;
  margin-left: 3rem;
  
  top: 100%;
}
.brdrgrp .btn-attandee {

  font-size: 0.9rem;
  border: none;
  background-color: #121212;
  border: #e62b1e 1px solid;
  color: #ffffff;
  padding: 10px 30px;
}
.brdrgrp .btn-participate2 {

  border: none;
  background-color:#121212;
  color: white;
  border: 1px solid #e62b1e;
  font-size: 0.9em;
  padding: 10px 30px;
}
.brdrgrp:after {
  position: absolute;
  content: "";
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid rgba(230, 43, 30, 0.2);
  border-right: 7px solid transparent;
  right: 24%;
  bottom: 95%;
}
.btn-participate:hover + .brdrgrp,
.brdrgrp:hover {
  display: block;
  animation: cubic-bezier(1, 0, 0, 1) 0.3s;
}


/* **************************************************************************************************************************************** */
/*---------------------------------------------------- SPEAKERS SECTION==================================================================== */
/* ************************************************************************************************************************************** */
.speakers{
  background-color: rgb(255, 255, 255);
  color: black;
  height:auto;
 padding-bottom: 10rem;
 background-image: url("/Resources/Images/afro pattern2.svg");
background-repeat: no-repeat;
background-size: cover;
background-blend-mode:;

}
.speakers-heading-container{
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 3px;
  padding-top: 3px;
  background-color: #ff0000;
  width: fit-content;
  
}
.speakers-heading{
  margin-top:5% ;
  margin-bottom: 3%;
}

.speakers-heading h1{
  font-weight: 700;
  font-size: 3rem;

}


.containers{
  display: grid;
  height: 350px;
  margin: auto;
  position: relative;
  width: 95%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.text-box{
font-size: 16px;
}



.single-team{
  margin-left:15px;
  margin-right:15px;
  width: 262px;
  height: 382px;
  background: black;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.6s ease-out;
  box-shadow: 0 10px 10px rgba(0,0,0,0.5);
}


.single-team:hover{
  transform:translateY(5px);

}


.single-team:hover:before{
  opacity: 1;
}

.single-team:hover .team-text{
  opacity: 1;
  transform: translateY(0);
}


.single-team:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(239, 43, 30, 1), transparent);
  z-index: 2;
  transition: 0.6s;
  opacity: 0;
}

.single-team img{
  height: 382px;
  width: 262px;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}



.single-team .team-text{
  position: relative;
  z-index: 3;
  color: #fff;
  opacity: 0;
 
  transform: translateY(60px);

}

.team-text h2{
  margin: 0;
  padding-bottom: 20%;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  padding-left: 10%;
  

}


.Aditi-text{
padding-right: 10%;
padding-left: 5%;
width: 100%;
}

.ArchieSingh-text{
  padding-right: 8%;
  width: 100%;
  
}


.Kaushik-text{
padding-right: 5%;
}

.PavanDuggal-text{
  width: 100%;
  padding-right: 8%;
}

.Chopra-text{
  width: 100%;
  padding-right: 5%;
}


.Bharat-text{
width: 100%;
padding-right: 5%;
}

.Aman-text{
  padding-right: 5%;
}
.team-text p{

  margin-top: 8px;
}


.team-text a{
  padding: 2%;
  display: inline-block;
  border: 1px solid #fff;

  margin:0 5px;
  text-decoration: none;
}


.team-text a i{
  color: #fff;
 padding: 6px 8px; 
}

.slider-container{
  display: flex;
  width: calc(277px * 16); /* 8 images * 2 for seamless loop */
  animation: scroll 20s linear infinite;
}

@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(calc(-277px * 8)); /* Move by exactly 8 image widths */
  }
}

.slider-container:hover{
  animation-play-state: paused;
}







/* -----------------------------------Speaker-overlay effecst---------------- */



/* ***************************************************************************************** */
/*___________________________________________________ CAROSUEL_____________________________________________ */
/* ************************************************************************************************ */


/* ___________________________________%%   About-section %%__________________________________________ */
/* __________________________________________________________________________________________________________ */

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* .about-section {
  background-image: url("Resources/Images/HomePage/About-bg.png");
  background-position: 10%;
  padding-bottom: 5%;
} */

.about-logo {
  width: 35%;
}

.about-section {
  /* margin-top: 5%; */
  margin-bottom: 10%;
  position: relative;
}

.about-section .about-heading p {
  margin-bottom: 4px;
}

.about-section-content p {
  font-size: 0.9rem;
  line-height: 150%;
  color: #ffffff;
  opacity: 0.6;
}


.about-illustration{
  position: absolute;
top: -40%;  
z-index: -1;
}




/*  */
/*________________________________________ Sponser________________________________________________________________ */
/* _____________________________________________________%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

.sponsers-section {
  margin-top: 10%;
}


.line {
  font-size: 22px;
  font-weight: 400;
  position: relative;
  text-align: center;
}
.line:after {
  content: "";
  border-bottom: 1px solid #e62b1e;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}
.line span {

  padding: 0 20px;
  background-color: #121212;
  position: relative;
}


/*________________________________________ MAP&REGISTRATion________________________________________________________________ */
/* _____________________________________________________%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
.map-registration {
  padding-top: 5%;
  padding-bottom: 10%;
  
  
}


.head-1, .head-2{
  font-weight: 700;

}



.map-registration button {
  color: #ffffff;

  width: 70%;
  font-weight: 200;
  font-size: 1rem;
  padding: 10px 30px;
  margin-top: 2%;

  
}

.map-registration .btn-custom2 {
  outline: #e62b1e; 
  padding: 10px 30px;
}

.square {
  background: #121212;
  border:1px #e62b1e solid;


}

.square p {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 100;
  opacity: 1;
}



.square h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

#map {
  height: 200px;
  width: 300px;


}

.map-sm-screen{
  display: none;
}


.illustration-footer {
  opacity: 1;
  position: absolute;
  z-index: -1;
}

.footer-section {
  color: #ffffff;
  padding-bottom: 8%;
  background: #000000;
}

.footer-section h1 {
  font-size: 2.2rem;
}

.footer-section .nav-link {
  color: #ffffff;
  opacity: 0.6;
  font-size: 1rem;
}

.footer-section .box-2 .nav-link {
  display: block;
}


.footer-section .box-2 .youtube-icon-footer:hover {
  color: #ff0000;
}

.footer-section .box-2 .twitter-icon-footer:hover {
  color: #4267b2;
}

.footer-section .box-2 .instagram-icon-footer:hover {
  color: #bc1888;
}

.input-footer input {
  opacity: 0.4;
  border: 1px solid #ffffff;
  box-sizing: border-box;

  background: transparent;
  color: white;
}

.box-3 p{
  opacity: 0.7;
}



@media only screen and (max-width: 991px) {
  /* HOMEPAGE
  --------------------------------------------------------------------------- */
  body{
    margin-top: 106px;
  }

   .sponsers-logo > div {
    flex: 0 1 calc(33.333% - 1rem);
  }

  .homepage {
   margin-top: var(--navbar-height);    
  }

  .home-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
  .hero-pg-text {
    position: relative;
    /* left: 10%; */
    padding-bottom: 1%;
    /* box shadow */
    /* text-shadow: 20px 4px 4px rgba(0, 0, 0, 0.541); */
  }

  .homepage .btn-group {
    position: relative;
    top: 10%;
    /* left: 5%; */
  }

  .homepage .btn {
    color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Speakers section */
  .speakers-section {
    min-height: 100%;
    text-align: center;
    /* background-color: white; */

  }

} */

  .about-section-content p {
    text-align: center;
  }



  .about-section .paragraphs {
    margin-left: 15%;
    margin-right: 15%;
  }

  /* MAP SECTION */

  #map {
    height: 300px;
    width: 300px;
  }

  /* .map-registration p {
    position: relative;
    left: 5%;
  } */
.flex-item {
  flex-grow: 1; /* Takes up available space */
  flex-grow: 2; /* Takes twice as much space as flex-grow: 1 items */
  flex-grow: 0; /* Won't grow (default) */
}
.sponsers-logo {
  display: flex;
  flex-wrap: wrap; 
  gap: 1rem;
}

.sponsers-logo > div {
  flex: 0 1 calc(20% - 1rem);
  min-width: 150px;
}




.sponsers-logo .col-lg-3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}
.hero-interactive-section {
  height: 100vh;
  background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
}

.morphing-text {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(45deg, #e62b1e, #ff6b6b, #e62b1e, #ff4757);
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 20px rgba(230, 43, 30, 0.3));
}

.morphing-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(230, 43, 30, 0.1), transparent);
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 2s linear infinite;
}

.subtitle-text {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.grid-item {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(230, 43, 30, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, transparent, rgba(230, 43, 30, 0.3), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item:hover::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

.grid-letter {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  transition: all 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.1) translateY(-10px);
  border-color: #e62b1e;
  box-shadow: 0 10px 30px rgba(230, 43, 30, 0.3);
}

.grid-item:hover .grid-letter {
  color: #e62b1e;
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(230, 43, 30, 0.5);
}

.grid-item::after {
  content: attr(data-word);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.grid-item:hover::after {
  opacity: 1;
  bottom: -30px;
}

.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #e62b1e;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
  box-shadow: 0 0 10px #e62b1e;
}

.cursor-trail::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(230, 43, 30, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

/* Text morphing effect */
.morphing-text.morph {
  animation: textMorph 0.5s ease-in-out;
}

@keyframes textMorph {
  0%, 100% {
    transform: scale(1) rotateX(0deg);
    filter: blur(0px);
  }
  50% {
    transform: scale(1.05) rotateX(5deg);
    filter: blur(1px);
  }
}


.text-wheel-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-text-wheel {
  width: 100%;
  height: 100%;
  animation: rotateWheel 20s linear infinite;
  filter: drop-shadow(0 0 20px rgba(230, 43, 30, 0.3));
}

.wheel-text {
  font-family: Helvetica, sans-serif, Arial;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.outer-text {
  font-size: 14px;
  fill: #ffffff;
  opacity: 0.9;
  animation: counterRotate 25s linear infinite;
}

.middle-text {
  font-size: 12px;
  fill: #e62b1e;
  opacity: 0.8;
  animation: counterRotate 30s linear infinite reverse;
}

.inner-text {
  font-size: 10px;
  fill: #ffffff;
  opacity: 0.7;
  animation: counterRotate 35s linear infinite;
}

.center-text {
  font-family: Helvetica, sans-serif, Arial;
  font-weight: 700;
  letter-spacing: 1px;
}

.center-subtext {
    font-family: Helvetica, sans-serif, Arial;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Scroll-triggered rotation */
@keyframes rotateWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Responsive design */
@media (max-width: 767px) {

  body{
    margin-top: 140px;
  }
  .text-wheel-container {
    width: 300px;
    height: 300px;
  }
  
  .outer-text {
    font-size: 12px;
  }
  
  .middle-text {
    font-size: 10px;
  }
  
  .inner-text {
    font-size: 8px;
  }
  
  .center-text {
    font-size: 14px;
  }
  
  .center-subtext {
    font-size: 10px;
  }
}

/* Scroll-based rotation effect */
.scroll-rotate {
  transition: transform 0.1s ease-out;
}