
:root{
  --stage-floor:#0a0026;
  --stage-ramp:#4b0082;
  --beam-yellow:#fffa3c;
  --beam-cyan:#00ffff;
  --beam-magenta:#ff33cc;
}
*{margin:0;padding:0;box-sizing:border-box;}
html,body{height:100%;overflow-x:hidden;font-family:sans-serif;background:#000;color:#fff;}
body{position:relative;}

/* Hero Stage */
.hero {
  height:100vh;
  width:100%;
  position:relative;
  perspective:1200px;
  overflow:hidden;
}

/* Stage floor */
.stage-floor {
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%) rotateX(10deg);
  width:120%;
  height:50%;
  background: linear-gradient(to top, var(--stage-floor), var(--stage-ramp));
  border-top-left-radius:30% 10%;
  border-top-right-radius:30% 10%;
  box-shadow: 0 0 60px rgba(255,255,255,0.1) inset;
  z-index:1;
}

/* Haze layers */
.haze {
  position:absolute;
  bottom:0;
  width:100%;
  height:70%;
  background: radial-gradient(ellipse at bottom, rgba(163,102,255,0.15), transparent 80%);
  filter: blur(120px);
  z-index:2;
  animation:hazeMove 12s ease-in-out infinite alternate;
}
@keyframes hazeMove{
  0%{transform:translateX(-40px);}
  50%{transform:translateX(40px);}
  100%{transform:translateX(-40px);}
}
.haze.extra1 {background: radial-gradient(ellipse at bottom, rgba(255,255,0,0.1), transparent 80%); animation-delay:0s;}
.haze.extra2 {background: radial-gradient(ellipse at bottom, rgba(0,255,255,0.1), transparent 80%); animation-delay:2s;}
.haze.extra3 {background: radial-gradient(ellipse at bottom, rgba(255,0,255,0.1), transparent 80%); animation-delay:4s;}
.haze.extra-left {position:absolute; bottom:0; width:50%; height:70%; background: radial-gradient(ellipse at bottom left, rgba(255,255,255,0.1), transparent 80%); filter:blur(140px); animation:hazeMove 15s ease-in-out infinite alternate; z-index:2;}

/* Light beams */
.light-beam {
  position:absolute;
  top:-30%;
  width:20vw;
  height:130%;
  transform-origin:top center;
  filter:blur(30px);
  mix-blend-mode:screen;
  opacity:0.6;
  animation:beamMove 6s ease-in-out infinite alternate, beamPulse 2s ease-in-out infinite alternate;
  z-index:3;
}
.light-beam:nth-child(1){left:10%; background:linear-gradient(to bottom, var(--beam-yellow), transparent); animation-delay:0s;}
.light-beam:nth-child(2){left:35%; background:linear-gradient(to bottom, var(--beam-cyan), transparent); animation-delay:1s;}
.light-beam:nth-child(3){left:60%; background:linear-gradient(to bottom, var(--beam-magenta), transparent); animation-delay:0.5s;}
.light-beam:nth-child(4){left:85%; background:linear-gradient(to bottom, #ff9900, transparent); animation-delay:1.5s;}
.light-beam:nth-child(5){left:5%; background:linear-gradient(to bottom, #ff33aa, transparent); animation-delay:0.3s;}
.light-beam:nth-child(6){left:20%; background:linear-gradient(to bottom, #33ffcc, transparent); animation-delay:0.7s;}
.light-beam:nth-child(7){left:30%; background:linear-gradient(to bottom, #ffcc00, transparent); animation-delay:1.1s;}
.light-beam:nth-child(8){left:50%; background:linear-gradient(to bottom, #00ffff, transparent); animation-delay:1.5s;}
.light-beam:nth-child(9){left:65%; background:linear-gradient(to bottom, #ff0066, transparent); animation-delay:0.9s;}
.light-beam:nth-child(10){left:80%; background:linear-gradient(to bottom, #ff9900, transparent); animation-delay:1.3s;}
.light-beam:nth-child(11){left:90%; background:linear-gradient(to bottom, #33ccff, transparent); animation-delay:0.5s;}
.light-beam.left1 {left:0%; width:15vw; background:linear-gradient(to bottom, #ff66ff, transparent); animation-delay:0.2s;}
.light-beam.left2 {left:12%; width:15vw; background:linear-gradient(to bottom, #66ffcc, transparent); animation-delay:0.5s;}
@keyframes beamMove{
  0%{transform:rotate(-25deg) scaleX(0.9);}
  25%{transform:rotate(10deg) scaleX(1.1);}
  50%{transform:rotate(-15deg) scaleX(0.95);}
  75%{transform:rotate(20deg) scaleX(1.05);}
  100%{transform:rotate(-10deg) scaleX(1);}
}
@keyframes beamPulse {
  0%{opacity:0.4; transform:scaleX(0.95);}
  50%{opacity:0.7; transform:scaleX(1.05);}
  100%{opacity:0.5; transform:scaleX(1);}
}

/* Spotlights */
.spotlight {
  position:absolute;
  bottom:0;
  width:200px;
  height:500px;
  background:radial-gradient(ellipse at top, rgba(255,255,255,0.2), transparent 70%);
  transform-origin:top center;
  filter:blur(60px);
  mix-blend-mode:screen;
  animation:spinLight 12s linear infinite;
  z-index:2;
}
@keyframes spinLight{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}



/* Wrap QATAR and #NammaSouth2 in a container */
.stage-text-container {
  position: absolute;
  bottom: 55%;  /* default position for desktop */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

/* Background QATAR text - desktop/laptop */
.stage-text {
  position: absolute;
  bottom: 55%; /* desktop placement */
  left: 50%;
  transform: translateX(-50%);
  font-size: 15vw; /* large for desktop */
  font-weight: 900;
  font-family: 'Arial Black', Gadget, sans-serif;
  color: rgba(255,255,255,0.08); /* faded */
  letter-spacing: 2vw;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  filter: blur(2px); /* blurry/faded look */
}

/* Background #NammaSouth2 text - desktop/laptop */
.stage-text-small {
  position: absolute;
  bottom: 78%; /* just above QATAR */
  left: 50%;
  transform: translateX(-50%);
  font-size: 5vw;
  font-weight: 900;
  font-family: 'Arial Black', Gadget, sans-serif;
  color: rgba(255,255,255,0.05);
  letter-spacing: 0.5vw;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  filter: blur(1px);
}



@media (max-width:768px) {
  .stage-text-container {
    bottom: 70%; /* move both texts up */
  }

  .stage-text {
    font-size: 22vw;           /* large QATAR text */
    color: rgba(255,255,255,0.08); /* subtle fade */
    letter-spacing: 0.8vw;
    filter: blur(1px);         /* blurry as before */
  }

  .stage-text-small {
    font-size: 4.5vw;          /* #NammaSouth2 text */
    color: rgba(255,255,255,0.05); /* subtle behind main text */
    letter-spacing: 0.2vw;
    filter: blur(0.5px);
  }
}








.newsletter-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  color: var(--beam-yellow);
  font-family: 'Arial Black', Gadget, sans-serif;
  z-index: 2;
}

/* Spinning background */
.newsletter-bg-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  z-index: 0;
  animation: rotateBG 120s linear infinite;
}
.newsletter-bg-spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text like hero tiles */
.newsletter-title {
  font-size: 3rem;
  color: var(--beam-yellow);
  text-shadow: 2px 2px 6px var(--beam-magenta), -2px -2px 6px var(--beam-cyan);
  margin-bottom: 15px;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 1px 4px #00000066;
  margin-bottom: 40px;
}

/* Form */
.newsletter-form {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 12px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-family: 'Arial Black', Gadget, sans-serif;
  font-size: 1rem;
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.newsletter-btn {
  font-size: 1rem;
  font-weight: 700;
  background: var(--beam-yellow);
  color: #000;
  padding: 12px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Arial Black', Gadget, sans-serif;
  text-shadow: 1px 1px 2px #000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--beam-magenta), 0 0 10px var(--beam-cyan);
}


  @keyframes spinBG {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
  }




/* Artist placeholders */
.artist-container { 
  position:absolute; 
  text-align:center; 
  z-index:5; 
  animation: artistWave 6s ease-in-out infinite; 
}
.artist-container img { width:100%; height:auto; transition:width 0.3s; }
.artist-name {
  margin-top:10px;
  font-family: 'Arial Black', Gadget, sans-serif;
  font-size:1.5rem;
  color:#fffa3c;
  text-shadow: 2px 2px 6px #ff00ff, -2px -2px 6px #00ffff;
  letter-spacing:1px;
    z-index: 1; /* make sure it is above the others */

}
@keyframes artistWave { 
  0% { transform: translateX(-50%) translateY(0px) rotate(0deg); } 
  25% { transform: translateX(-50%) translateY(-5px) rotate(1deg); } 
  50% { transform: translateX(-50%) translateY(3px) rotate(-1deg); } 
  75% { transform: translateX(-50%) translateY(-2px) rotate(1deg); } 
  100% { transform: translateX(-50%) translateY(0px) rotate(0deg); } 
}

/* Different vertical offset for each title */
#artist1-container .artist-name { transform: translateY(-75px); }
#artist2-container .artist-name { transform: translateY(-45px); }
#artist3-container .artist-name { transform: translateY(-70px); }

/* Position artist 2 higher */
#artist2-container { 
  width: 450px; 
  left:49%; 
  bottom: 18%; /* increased from 18% to 28% to move it up */
  transform: translateX(-50%); 
  animation-delay: 1s; 
  z-index: 10; /* make sure it is above the others */
}

/* Ensure artist 1 and 3 are below */
#artist1-container { 
  width: 290px; 
  left: 40%; 
  bottom: 18%; 
  transform: translateX(-50%); 
  animation-delay: 0s;
  z-index: 5;
}
#artist3-container { 
  width: 310px; 
  left: 60%; 
  bottom: 18%; 
  transform: translateX(-50%); 
  animation-delay: 2s; 
  z-index: 5;
}


/* Autoriksha background behind artists */
.autoriksha-bg {
  position: absolute;
  bottom:12%; 
  left:50%;
  transform: translateX(-50%);
  z-index:3; /* below artists */
  pointer-events:none;
}
.autoriksha-bg img {
  width:500px; 
  height:auto;
  opacity:0.5; 
  filter: drop-shadow(0 0 15px #fff);
}



.stage-text-small {
  position: absolute;
  bottom: 78%; /* just above QATAR */
  left: 50%;
  transform: translateX(-50%);
  font-size: 5vw; /* smaller */
  font-weight: 900;
  font-family: 'Arial Black', Gadget, sans-serif;
  color: rgba(255,255,255,0.05); /* subtle behind main text */
  letter-spacing: 0.5vw;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  filter: blur(1px);
}




/* Stage flash */
.stage-flash {
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background:white;
  opacity:0;
  pointer-events:none;
  z-index:10;
}

/* Top strip light */
.stage-top-strip {
  position: absolute;
  bottom:50%; 
  left: 50%;
  transform: translateX(-50%) translateY(-1px);
  width: 120%;
  height: 6px;
  background: linear-gradient(90deg, #ff3c3c, #fffa3c, #3cfffa, #ff33cc, #ff3c3c);
  background-size: 400% 100%;
  border-radius: 3px;
  filter: blur(8px);
  animation: stripLightMove 4s linear infinite;
  z-index: 1;
}
@keyframes stripLightMove {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

/* Logo */
.logo-area {
  position: absolute;
  top: 5px;
  left: 20px;
  z-index:20;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.logo-area img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* Countdown */
.countdown {
  position: absolute;
  bottom:10%;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:15px;
  padding:20px 25px;
  font-family:'Arial Black', sans-serif;
  font-size:1.8rem;
  color:#fff;
  box-shadow:0 0 40px rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  z-index:6;
}
.countdown span {
  min-width:50px;
  text-align:center;
  padding:8px 10px;
  border-radius:10px;
  background: rgba(255,255,255,0.05);
}

/* Mobile adjustments */
@media (max-width:768px) {
  .stage-text {
    font-size: 25vw; /* bigger relative to small screen width */
    bottom: 63%; /* bring it lower so visible */
    letter-spacing: 1vw;
    filter: blur(1px); /* reduce blur */
  }

  .artist-container { width:200px; bottom:15%; } 
  #artist1-container { left:25%; }
  #artist2-container { left:50%; }
  #artist3-container { left:75%; }

  .artist-name { font-size:1.2rem; }

  .countdown {
    flex-direction:row;
    font-size:1.5rem;
    padding:15px 20px;
    gap:8px;
  }
  .countdown span { min-width:40px; padding:6px 8px; }

  .autoricksha-curve { bottom: 36%; width: 70px; offset-path: path("M 100% 0 Q 50% -5% 0 0"); offset-rotate: 180deg; }
}

/* Laptop/Desktop artist image increase */
@media (min-width:1025px) {
  .artist-container img {
    width: 120%;
    height: auto;
  }
}



/* Burger menu */
.burger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 50;
}
.burger-menu .bar {
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* Mobile nav with subtle lavender top + gold yellow bottom */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(180deg, rgba(75,0,130,0.85), rgba(255,215,0,0.95)); /* subtle lavender/dark purple to gold yellow */
  backdrop-filter: blur(20px);
  transition: right 0.4s ease;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: #0a0026; /* dark for contrast */
  font-size: 1.5rem;
  font-weight: 700;
}

/* General menu styling */
.menu a {
  font-size: 1rem; /* default desktop size */
}

/* Mobile screens */
@media only screen and (max-width: 768px) {
  .menu a {
    font-size: 0.6rem; /* smaller for mobiles */
  }
}





.mobile-nav ul li {
  margin: 20px 0;
}
.mobile-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Open menu class */
.mobile-nav.open {
  right: 0;
}


/* Autoricksha following top stage curve */
.autoricksha-curve {
  position: absolute;
  bottom: 41%; 
  width: 110px;
  z-index: 3;
  animation: rideCurve 10s linear infinite;
  offset-path: path("M 1300 0 Q 650 -60 0 0");
  offset-rotate: 180deg;
}
.autoricksha-curve img {
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}
@keyframes rideCurve {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}


/* Sponsor logo floating above QATAR */
.sponsor-logo {
  position: absolute;
  bottom: 85%; /* adjust vertical placement above QATAR */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  animation: floatWave 3s ease-in-out infinite;
}

.sponsor-logo img {
  width: 120px; /* adjust size */
  height: auto;
}

/* Subtle wave up/down animation */
@keyframes floatWave {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
  100% { transform: translateX(-50%) translateY(0); }
}

/* Mobile adjustments */
@media (max-width:768px) {
  .sponsor-logo img {
    width: 80px; /* smaller on mobile */
  }
  .sponsor-logo {
    bottom: 78%; /* move up slightly for smaller screen */
  }
}





.tiles-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: #FFD700; /* golden yellow base */
}

.tiles-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://eventer.live/nammasouth2/img/5.png') center/cover no-repeat;
  opacity: 0.15; /* adjust how visible the image is */
  z-index: 0;
  transform-origin: center center;
  animation: rotateBG 120s linear infinite;
}


@keyframes rotateBG {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Make sure tiles content is above the pseudo-element */
.tiles-section .wrap {
  position: relative;
  z-index: 1;
}



/* Creative Cracked Tiles Section */
.tiles-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;

  /* Gradient gold + yellow + orange for a lively look */
  background: linear-gradient(135deg, 
              #FFD700 0%,   /* Gold */
              #FFEA00 50%,  /* Bright Yellow */
              #FFA500 100%); /* Orange */

  /* Optional: subtle moving shimmer effect */
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

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

.tiles-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://eventer.live/nammasouth2/img/5.png') center/cover no-repeat;
  opacity: 0.08; /* subtle cracked tile texture overlay */
  z-index: 0;
  transform-origin: center center;
  animation: rotateBG 120s linear infinite;
}

.tiles-section .wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.tiles-section h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: #FFD700;
  text-shadow: 0 0 12px #ff6f00, 0 0 20px #ff9e3f;
  margin-bottom: 40px;
}

/* Tiles Grid */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Cracked tile style */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 18px;
  aspect-ratio: 16/9;
  background: #111; /* Tile base color */
  transition: transform 0.5s ease, box-shadow 0.5s ease;

  /* Cracked/rough edges */
  clip-path: polygon(
    2% 0%, 50% 5%, 98% 0%, 100% 5%, 97% 100%, 50% 95%, 3% 100%, 0% 95%
  );

  box-shadow: inset 0 0 20px rgba(255,255,255,0.05),
              0 0 10px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}

.tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.5s ease;
  clip-path: inherit; /* match cracked edges */
}

.tile-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0) 50%);
  clip-path: inherit; /* match cracked edges */
}

.tile h3 {
  position: relative;
  z-index: 1;
  color: #FFD700;
  font-weight: 700;
  text-align: center;
  font-size: 1.2rem;
  text-shadow: 0 0 8px #ff6f00, 0 0 12px #ff9e3f;
  margin-top: 10px;
}

/* Hover effect: pop + glow */
.tile:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 15px 35px rgba(255,255,0,0.3),
              0 0 30px rgba(255,215,0,0.2) inset;
}

.tile:hover .tile-bg {
  transform: scale(1.1) rotate(0.5deg);
}

/* Mobile */
@media(max-width:620px){
  .tiles {
    grid-template-columns: 1fr;
  }
  .tile {
    justify-content: center;
    padding:16px;
  }
}






.partner-modern {
  background: linear-gradient(135deg, #2b0035 0%, #4b006e 40%, #c69300 100%);
  padding: 100px 10%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.partner-modern::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150%;
  height: 150%;
 content: '';
  position: absolute;
  inset: 0;
  background: url('https://eventer.live/nammasouth2/img/5.png') center/cover no-repeat;
  opacity: 0.08; /* subtle cracked tile texture overlay */
  z-index: 0;
  transform-origin: center center;
  animation: rotateBG 120s linear infinite;
  z-index: 0;
}

.partner-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.partner-image {
  flex: 1 1 450px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 1.2s ease, filter 1s ease;
}

.partner-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.partner-info {
  flex: 1 1 450px;
}

.partner-info h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.8rem;
  margin-bottom: 25px;
  line-height: 1.1;
  background: linear-gradient(90deg, #fff 20%, #ffd700 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-info h2 span {
  font-family: "Poppins ", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #ffecb3;
  display: block;
  margin-bottom: 8px;
}

.partner-info p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}


.partner-info .highlight {
  color: #ffea9e;
    font-family: "Poppins", sans-serif;

  font-weight: 600;
  font-size: 1.2rem;
}

.contact-box {
  background: rgba(255,255,255,0.1);
    font-family: "Poppins", sans-serif;

  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px 30px;
  margin-top: 25px;
  display: inline-block;
  backdrop-filter: blur(8px);
  transition: background 0.5s ease;
}

.contact-box:hover {
  background: rgba(255,255,255,0.2);
}

.contact-box p {
      font-family: "Poppins", sans-serif;

  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
}

@media (max-width: 768px) {
  .partner-modern {
    padding: 70px 6%;
    text-align: center;
  }
  .partner-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .partner-info h2 {
    font-size: 2.1rem;
  }
}







.timeline-section {
  background: #FF3B3F; /* same red as in your HTML */
  padding: 60px 0;
}

.timeline-section h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 2rem;
}

/* Vertical Timeline Container */
.timeline-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 60px;  /* left gap for desktop */
  padding-right: 60px; /* right gap for desktop */
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .timeline-vertical {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 620px) {
  .timeline-vertical {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Vertical Line */
.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 30px;  /* adjusted for padding */
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  border: 3px solid #000;
  transition: background 0.3s, box-shadow 0.3s;
}

/* Active Highlight */
.timeline-item.active::before {
  background: #fff;
  box-shadow: 0 0 12px #fff;
}

.timeline-item.active {
  transform: translateX(5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

/* Text Inside Timeline */
.timeline-item .time {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.timeline-item .what {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}

.timeline-item .where {
  font-size: 13px;
  opacity: 0.8;
  color: #fff;
}


.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  border-top: 2px solid rgba(255,45,111,0.5);
  position: relative;
  z-index: 2;
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  width: 160px;
  max-width: 80%;
}

.footer-left p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}



.footer p {
  text-align: center; /* default for desktop/tablet */
}

@media (max-width: 768px) {
  .footer p {
    text-align: left; /* align left on mobile */
  }

  .footer-left {
    text-align: left;
  }
}



.footer-right h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ff2d6f;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px #ff2d6f) drop-shadow(0 0 24px #ff6fbf);
}

/* Mobile responsive */
@media(max-width:768px){
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
  .footer-right h4 {
    margin-top: 15px;
  }
}


.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



/* Smaller font for mobile nav on small screens */
@media (max-width: 480px) {
  .mobile-nav ul li a {
    font-size: 1.2rem; /* smaller than 1.5rem */
  }
}


.mobile-nav ul {
  list-style: none; /* removes bullets */
  padding: 0;       /* remove default padding */
  margin: 0;        /* remove default margin */
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* light line */
  padding: 12px 0; /* space above/below the text */
}



/* Footer mobile adjustments */
@media (max-width: 768px) {
  .footer .footer-wrap {
    flex-direction: column; /* stack left and right sections */
    align-items: flex-start; /* left align all content */
    gap: 10px; /* spacing between sections */
  }

  .footer .footer-right {
    width: 100%; /* full width on mobile */
    display: flex;
    justify-content: flex-start; /* left align icons */
  }

  .footer .social-icons a img {
    width: 30px; /* adjust icon size */
    height: auto;
  }

  .footer-left p {
    margin-top: 8px;
    font-size: 0.9rem; /* smaller text on mobile */
  }
}







