/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  
  color: white;
  overflow-x: hidden;
}

/* Navbar */
/* Navbar */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  transition: 0.4s ease-in-out;
  background: rgba(15, 15, 15, 0.05);
  backdrop-filter: blur(8px);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled a,
.navbar.scrolled h2,
.navbar.scrolled button,
.navbar.scrolled .menu-btn {
  color: #992828;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 80px;
}
.logo p {
  color: #f7c600;
  font-size: 12px;
}

/* Nav Links */
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}
.navbar a:hover {
  color: #f7c600;
}

/* Button */
.btn-yellow {
  background: #f7c600;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/*********** Responsive ***********/
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Mobile View */
@media(max-width: 900px) {

  .navbar {
    padding: 14px 20px;
  }

  /* Keep logo at left always */
  .logo {
    position: relative;
    z-index: 200;
  }

  /* Hide desktop nav & button */
  nav,
  .btn-yellow {
    display: none;
  }

  /* Hamburger menu fixed to the right */
  .menu-btn {
    display: block;
    margin-left: auto;
  }

  /* Mobile Dropdown Menu */
  .nav-links {
    position: absolute;
    top: 90px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 20px 0;
    text-align: center;
    display: none;
    z-index: 150;
  }

  .nav-links.open {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
  }

  /* Menu icon turns black after scroll */
  .navbar.scrolled .menu-btn {
    color: #000;
  }
}


/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease-in-out, transform 2s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  animation: fadeInZoom 1.5s ease;
}
.hero-content p {
  color: #f7c600;
  margin-top: 15px;
  font-size: 1.2rem;
}
.buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Floating icons */
.floating-icons {
  position: absolute;
  right: 25px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3;
}
.icon1 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.icon1.whatsapp { background: #25d366; }
.icon1.call { background: #e63946; }
.icon1.add { background: #f7c600; }
.icon1:hover { transform: scale(1.2) rotate(10deg); }

/* Dots */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: #f7c600;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInZoom {
  0% { opacity: 0; transform: scale(1.2) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
   
    padding: 15px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .buttons {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .navbar ul {
 
    gap: 15px;
  }
  .floating-icons {
    right: 15px;
    bottom: 15px;
  }
}

/* Import modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@600;800&display=swap');

/* About Section */
.about-section {
    max-width: 1100px;
    margin: 50px auto 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 32px;
    font-family: 'Poppins', sans-serif;
}

.about-text {
    flex: 2 1 400px;
    min-width: 370px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.about-card {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 28px 10px 32px 12px;
    box-shadow: 0 15px 50px 0 var(--shadow);
    padding: 38px 34px 32px 34px;
    position: relative;
    margin-top: 20px;
    text-align: center;
    min-width: 280px;
    border: 4px solid;
    border-image: linear-gradient(120deg, var(--accent-gold), var(--accent-yellow), var(--accent-gold)) 1;
    transform: scale(0.97);
}

.animated-card {
    animation: floatIn 1.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

/* Animations */
@keyframes floatIn {
    from { 
        opacity: 0; 
        transform: translateY(60px) scale(0.95) rotate(-6deg); 
    }
    to {
        opacity: 1; 
        transform: translateY(0) scale(1) rotate(0);
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to   { opacity: 1; transform: translateY(0);}
}
/* ==== Animation Base ==== */
.fade-in-left, .fade-in-right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease-out;
}

/* Left-side animation */
.fade-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Right-side animation */
.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Initial hidden states */
.fade-in-left {
  transform: translateX(-80px);
}

.fade-in-right {
  transform: translateX(80px);
}


.about-text h1 {
    font-size: 2.55rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: red;
    position: relative;
}

.about-text h1 span {
    background: linear-gradient(90deg, #ff4c00, #ffd600, #ff4c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowText 2.5s ease-in-out infinite alternate;
}

@keyframes glowText {
    100% { text-shadow: 0 0 0 #ff4c00, 0 0 0 #ffd600; }
}

.intro {
    font-size: 1.09rem;
    margin-bottom: 1rem;
    color: var(--secondary-text);
    font-weight: 500;
}

.motto-card {
    background: #FFF9C4;
    border-left: 5px solid var(--accent-gold);
    padding: 18px 20px;
    margin: 22px 0;
    font-size: 1.15rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px var(--shadow);
    transition: background 0.3s;
    animation: fadeInUp 1.6s 0.2s backwards;
}

.motto {
    font-style: italic;
    color: red;
    font-weight: 700;
    font-size: 1.15rem;
}

.motto-desc {
    font-size: 1rem;
    color: #b1860c;
}

.about-text p {
    font-size: 1.04rem;
    color: black;
    margin: 16px 0;
    line-height: 1.7;
}

/* Stats */
.about-stats {
    color: gold;
    display: flex;
    gap: 32px;
    margin-top: 22px;
}

.stat {
    background: #de0b0b;
    border-radius: 15px;
    padding: 20px 26px;
    text-align: center;
    box-shadow: 0 4px 14px var(--shadow);
    animation: fadeInUp 1s 0.5s both;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-in-out;
}

.stat:hover {
    box-shadow: 0 0 20px #ffd600, 0 0 40px #ff4c00, 0 0 60px #ffcf00;
    transform: scale(1.05);
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat small {
    font-size: 1rem;
    color: var(--secondary-text);
}

.icon svg {
    margin-bottom: 18px;
}

.about-card .since {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.about-card h2 {
    margin-top: 0;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.32rem;
}

.address, .phone {
    font-size: 1.07rem;
    margin-top: 10px;
    color: var(--secondary-text);
    font-weight: 500;
}

.loc-icon, .phone-icon {
    color: var(--accent-gold);
    font-size: 1.18rem;
    margin-right: 7px;
}

/* Hero Card */
.hero-bg {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #FFFDF7;
}

.card-gradient-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 16px 32px rgba(212,73,13,0.13));
    transform: translateY(0px);
    transition: transform 0.4s ease-out;
}

.card-gradient-wrap::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0; left: 0; bottom: 0; right: 0;
    border-radius: 24px 9px 32px 13px;
    background: linear-gradient(116deg, #ffcf00 3%, #ff4601 98%);
    transform: rotate(-4deg);
    box-shadow: 0 8px 32px rgba(255,74,1,0.09);
    width: 440px;
    height: 370px;
    pointer-events: none;
}

.card-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 42px 28px 36px 28px;
    min-width: 400px;
    min-height: 420px;
    box-shadow: 0 6px 24px 0 rgba(49, 50, 51, 0.06);
    z-index: 2;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}

.card-content:hover {
    box-shadow: 0 16px 36px 0 rgba(255, 96, 0, 0.12), 0 6px 24px 0 rgba(49, 50, 51, 0.10);
}

.icon-wrap { margin-bottom: 16px; }

.card-title { color: #B21D1D; font-size: 2rem; margin: 0 0 0.3em 0; font-weight: 700; letter-spacing: 0.01em; }

.since { color: #e3a809; font-size: 1.18rem; font-weight: 700; margin-bottom: 18px; margin-top: -5px; letter-spacing: 0.04em; }

.info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.13rem;
    color: #585b70;
    margin-bottom: 10px;
    margin-top: 0;
    gap: 7px;
}

.icon { color: #ff9303; font-size: 1.18rem; margin-right: 5px; display: inline-block; }

.scale-in {
    opacity: 0;
    transform: scale(0.96) translateY(40px);
    animation: scaleInCard 1.3s cubic-bezier(.18,.68,.42,1.19) 0.1s forwards;
}

@keyframes scaleInCard {
    0% { opacity:0; transform: scale(0.90) translateY(55px);}
    40%{ opacity:.5; }
    100%{ opacity:1; transform: scale(1) translateY(0);}
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .about-section { flex-direction: column; align-items: stretch; padding: 18px; }
    .about-text, .about-card { min-width: unset; max-width: 100%; }
    .about-card { margin: 25px 0 0 0; }
    .about-stats { flex-direction: column; gap: 18px; }
}

@media (max-width: 520px) {
    .card-gradient-wrap::before,
    .card-content {
        min-width: unset;
        width: 97vw;
        box-sizing: border-box;
    }
    .card-gradient-wrap::before {
        height: 95vw;
        width: 97vw;
    }
}

/* Animating each stat box */
.stat:nth-child(1) { animation-delay: 0.5s;}
.stat:nth-child(2) { animation-delay: 0.7s;}
.stat:nth-child(3) { animation-delay: 0.9s;}

/* About 7x7 Section */
/* About 7x7 Section */
.about-7x7 {
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(135deg, #fff7e6, #ffe4c2);
  animation: bgFade 6s infinite alternate;
  font-family: 'Poppins', sans-serif;
}

@keyframes bgFade {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  color: #c74a00;
  text-shadow: 0 0 10px rgba(199, 74, 0, 0.3);
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.about-title.glow {
  text-shadow: 0 0 15px #ffcf00, 0 0 25px #ff6f00;
}

.about-subtitle {
  color: #5b5757;
  font-size: 18px;
  margin-bottom: 50px;
}

/* Content Layout */
.about-content {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Event Card */
.event-card {
  background: #ffff;
  border-radius: 20px;
  padding: 30px;
  max-width: 450px;
  flex: 1 1 400px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.event-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 65, 5, 0.941);
}

.event-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #f7c600, #ff6f00);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover .event-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 20px #ffcf00, 0 0 30px #ff6f00;
}

.event-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffcf00;
  margin-bottom: 15px;
}

.event-card p {
  font-size: 1rem;
  color: #B21D1D;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Prize List */
.prize-list h4 {
  color: #ffcf00;
  margin-bottom: 10px;
  font-weight: 600;
}

.prize-list ul {
  list-style: none;
  padding-left: 0;
}

.prize-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #de0b0b;
  font-weight: 500;
  transition: color 0.3s;
}

.prize-list ul li span.icon-about-7x7 {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #f7c600, #ff6f00);
  border-radius: 50%;
}

.prize-list ul li:hover {
  color: #ffcf00;
}

.note {
  font-style: italic;
  font-size: 0.9rem;
  color: #ffd84d;
}

/* Prize Grid */
.prize-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.prize-box {
  background: #ffff;
  flex: 1 1 180px;
  max-width: 200px;
  text-align: center;
  padding: 25px 15px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.prize-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 17, 0, 0.96);
}

.prize-box span.icon-about-7x7 {
  font-size: 2rem;
  margin-bottom: 10px;
  display: inline-block;
}

.prize-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffcf00;
  margin-bottom: 5px;
}

.prize-box p {
  font-size: 0.95rem;
  color: #de0b0b;
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 50px 0;
}

.info-box {
  background: #ffff;
  flex: 1 1 150px;
  max-width: 180px;
  text-align: center;
  padding: 20px 15px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 47, 0, 0.967);
}

.info-box span.icon-about-7x7 {
  font-size: 2rem;
  margin-bottom: 10px;
  display: inline-block;
}

.info-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffcf00;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 0.9rem;
  color: #de0b0b;
}

/* Brochure Button */
.brochure-btn {
  display: block;
  margin: 30px auto 0 auto;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f0f0f;
  background: linear-gradient(135deg, #f7c600, #ff6f00);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.brochure-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 13, 0, 0.962);
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .prize-grid, .info-grid {
    flex-direction: column;
    align-items: center;
  }

  .event-card, .prize-box, .info-box {
    max-width: 90%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 520px) {
  .about-7x7 {
    padding: 60px 10px;
  }

  .event-card, .prize-box, .info-box {
    padding: 20px 12px;
  }

  .event-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .prize-box h4, .info-box h4 {
    font-size: 1rem;
  }

  .prize-box p, .info-box p, .event-card p {
    font-size: 0.85rem;
  }

  .brochure-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}
/* Prize & Info Grid - Mobile 3x3 layout */
@media (max-width: 900px) {
  .prize-grid,
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .event-card, .prize-box, .info-box {
    max-width: 100%;
    width: 100%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 520px) {
  .prize-grid,
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .event-card, .prize-box, .info-box {
    padding: 15px 10px;
  }

  .event-icon {
    width: 55px;
    height: 55px;
    font-size: 2rem;
  }

  .prize-box h4, .info-box h4 {
    font-size: 0.95rem;
  }

  .prize-box p, .info-box p, .event-card p {
    font-size: 0.8rem;
  }

  .brochure-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Prize Stages Section */
.prize-stages-section {
    padding: 80px 0;
    background:  #faf7f7;
    overflow: hidden;
}

.prize-stages-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #171717;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffd700, #ff6b6b, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    color: #3a3939;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.stage-card {
    background: rgba(202, 23, 23, 0.966);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: cardFloat 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 107, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 20px;
}

.stage-card:hover::before {
    opacity: 1;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stage-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.stage-card:hover .stage-number {
    animation: pulse 1.5s infinite;
}

.stage-header h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.stage-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.stage-icons span {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.stage-card:hover .stage-icons span {
    animation: iconBounce 0.5s ease forwards;
    opacity: 1;
}

.stage-icons span:nth-child(2) { animation-delay: 0.1s; }
.stage-icons span:nth-child(3) { animation-delay: 0.2s; }
.stage-icons span:nth-child(4) { animation-delay: 0.3s; }
.stage-icons span:nth-child(5) { animation-delay: 0.4s; }

.view-prizes {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: 100%;
}

.view-prizes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Prize Details Styles */
.prize-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prize-details.show {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.prize-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.prize-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.prize-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.hide-details {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.hide-details:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-card.expanded {
    height: auto;
    transform: scale(1.02);
}

.register-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background:rgba(202, 23, 23, 0.966);
    border-radius: 20px;
    position: relative;
}

.register-cta h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.register-cta p {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.register-btn {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

@keyframes cardFloat {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 10px;
    }
    
    .stage-card {
        padding: 20px;
    }
    
    .register-cta h3 {
        font-size: 1.5rem;
    }
    
    .register-cta p {
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

/* Animation Delays for Cards */
.stage-card:nth-child(1) { animation-delay: 0.1s; }
.stage-card:nth-child(2) { animation-delay: 0.2s; }
.stage-card:nth-child(3) { animation-delay: 0.3s; }
.stage-card:nth-child(4) { animation-delay: 0.4s; }
.stage-card:nth-child(5) { animation-delay: 0.5s; }
.stage-card:nth-child(6) { animation-delay: 0.6s; }
.stage-card:nth-child(7) { animation-delay: 0.7s; }
.stage-card:nth-child(8) { animation-delay: 0.8s; }
.stage-card:nth-child(9) { animation-delay: 0.9s; }

/* Modal / Payment demo styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  font-family: 'Poppins', sans-serif;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  max-width: 96%;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fffdf9);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.modal-inner { padding: 28px; }
.modal-icon { font-size: 34px; margin-bottom: 8px; }
.modal-step h2, .modal-step h3 { margin: 6px 0 8px 0; color: #c43b1a; }
.modal-step .muted { color: #666; margin-bottom: 12px; }
.modal-step label { display:block; font-weight:600; margin-top:12px; margin-bottom:6px; color:#333; }
.modal-step input[type="text"], .modal-step input[type="tel"], .modal-step input[type="email"] {
  width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid #e6e6e6; box-sizing: border-box; margin-bottom:6px;
}
.amount-box { margin: 14px 0; padding: 12px; border-radius:8px; background:#fff6d8; color:#c43b1a; font-weight:700; text-align:center; }
.primary { background: linear-gradient(90deg,#ffb703,#ff4d4d); color:#fff; border:none; padding:12px 18px; border-radius:10px; cursor:pointer; font-weight:700; }
.secondary { background: #f3f3f3; color:#333; border:1px solid #e6e6e6; padding:10px 14px; border-radius:10px; cursor:pointer; }
.payment-options { display:flex; gap:10px; margin:14px 0; }
.pay-opt { flex:1; padding:10px; border-radius:8px; border:1px solid #ddd; background:#fff; cursor:pointer; }
.pay-opt.active { box-shadow:0 6px 18px rgba(255,183,3,0.12); border-color:#ffb703; }
.upi-box { background:#fff; border-radius:8px; padding:10px; border:1px dashed #e6e6e6; }
.qr-placeholder { margin-top:8px; width:120px; height:120px; background:linear-gradient(180deg,#f0f0f0,#dcdcdc); display:flex; align-items:center; justify-content:center; border-radius:8px; color:#777; font-weight:700; }
.payment-actions { display:flex; gap:10px; justify-content:flex-end; margin-top:16px; }
.receipt { white-space:pre-wrap; background:#fff; padding:12px; border-radius:8px; border:1px solid #eee; color:#111; max-height:240px; overflow:auto; }
.success-actions { display:flex; gap:10px; margin-top:12px; }

@media (max-width:520px) {
  .modal-panel { width: 94%; }
}

 /* ===== Get in Touch Section (added) =====-*/
       
        /* Scoped styles for the get-in-touch section */
        .get-in-touch{font-family: 'Poppins', sans-serif;max-width:1100px;margin:40px auto;padding:30px;display:flex;gap:30px;align-items:flex-start}
        .get-in-touch .card-list{width:320px;display:flex;flex-direction:column;gap:18px}
        .get-in-touch .card{background:#fff;border-radius:12px;padding:16px 18px;box-shadow:0 8px 30px rgba(0,0,0,0.08);position:relative;overflow:hidden}
        .get-in-touch .card::after{content:'';position:absolute;inset:0;pointer-events:none;mix-blend-mode:overlay;opacity:0.08;background:linear-gradient(135deg, #ff7a18, #af002d)}
        .get-in-touch h2{font-size:22px;margin:0 0 8px;color:#c80303}
        .get-in-touch p.small{margin:0;color:#666;font-size:13px}

        /* Specific cards (class names requested) */
        .get-in-touch-address .label{color:#d33;font-weight:700;margin-bottom:6px;display:inline-block}
        .get-in-touch-phone .label{color:#0a8a3f;font-weight:700;margin-bottom:6px;display:inline-block}
        .get-in-touch-businness-houre .label{color:#0a66ff;font-weight:700;margin-bottom:6px;display:inline-block}
        .get-in-touch-whatsapp .label{color:#25D366;font-weight:700;margin-bottom:6px;display:inline-block}

        /* Right column */
        .get-in-touch .right{flex:1;background:linear-gradient(180deg,#ffffff,#fffaf6);padding:20px;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,0.06)}
        .get-in-touch .contact-head{display:flex;justify-content:space-between;align-items:center}
        .get-in-touch .contact-head h3{margin:0;color:#c80303}
        .get-in-touch form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
        .get-in-touch input,.get-in-touch textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6e6e6;font-size:14px;font-family:inherit}
        .get-in-touch textarea{grid-column:1/ -1;min-height:100px;resize:vertical}
        .get-in-touch .actions{display:flex;gap:12px;margin-top:12px}

        /* Gradient button with glow */
        .btn-gradient{background:linear-gradient(90deg,#ffb400,#ff3b3b);color:#fff;padding:12px 18px;border-radius:10px;border:none;cursor:pointer;box-shadow:0 6px 18px rgba(255,75,75,0.22);font-weight:700}
        .btn-gradient.glow{animation:glow 2.5s infinite}

        @keyframes glow{0%{box-shadow:0 6px 18px rgba(255,75,75,0.12)}50%{box-shadow:0 12px 34px rgba(255,75,75,0.26)}100%{box-shadow:0 6px 18px rgba(255,75,75,0.12)}}

        /* Floating / modern animations */
        .modern-animate{transform:translateY(8px);animation:floatUp 3.2s ease-in-out infinite}
        @keyframes floatUp{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

        /* Neon heading */
        .neon{color:#b30000;text-shadow:0 0 6px rgba(179,0,0,0.6),0 0 18px rgba(255,130,130,0.12)}

        /* small map */
        .map-wrap{margin-top:14px;border-radius:10px;overflow:hidden;border:1px solid #eee}
        .map-wrap iframe{width:100%;height:220px;border:0;display:block}

        /* responsive */
        @media (max-width:900px){.get-in-touch{flex-direction:column;padding:18px}.get-in-touch .card-list{width:100%;overflow:auto}.get-in-touch .card{min-width:220px}}
      
 /* icons for get-in-touch cards (scoped) */
        .get-in-touch .card{position:relative}
        .get-in-touch .card .icon-wrap{position:absolute;left:14px;top:14px;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:8px}
        .get-in-touch-address-icon .icon-wrap{background:linear-gradient(135deg,#ffdede,#fff0e6)}
        .get-in-touch-phone-icon .icon-wrap{background:linear-gradient(135deg,#e6fff0,#e6fff7)}
        .get-in-touch-businness-houre-icon .icon-wrap{background:linear-gradient(135deg,#e6f0ff,#f0f6ff)}
        .get-in-touch-whatsapp-icon .icon-wrap{background:linear-gradient(135deg,#eaffef,#f0fff5)}
        .get-in-touch .card h2{margin-left:56px}
        .get-in-touch .card .label{margin-left:56px}
        .get-in-touch .card p.small{margin-left:56px}
        .get-in-touch .card .svg-icon{width:22px;height:22px;display:block}
        @media (max-width:900px){.get-in-touch .card h2,.get-in-touch .card .label,.get-in-touch .card p.small{margin-left:68px}}
       
        /*footer */
           /* Scoped footer styles (modern animated footer) */
                .site-footer{font-family:'Poppins',sans-serif;background:linear-gradient(180deg,#7a0b0b,#8d0f0f);color:#ffd86b;padding:48px 24px;border-top:6px solid rgba(0,0,0,0.06)}
                .site-footer .container-footer{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr 1fr;gap:28px;align-items:start}
                .footer-brand h3{margin:0;font-size:20px;color:#ffd86b;font-weight:800;letter-spacing:0.3px}
                .footer-brand p.lead{color:#ffd;opacity:0.95;line-height:1.6;margin:12px 0}
                .footer-contact{margin-top:12px;color:#ffd;display:flex;flex-direction:column;gap:8px}
                .footer-contact .line{display:flex;align-items:center;gap:10px;color:#ffd9b3}
                .footer-quick-links ul,.footer-services ul{list-style:none;padding:0;margin:10px 0}
                .footer-quick-links li,.footer-services li{margin:8px 0;color:#ffd9b3}
                .footer-quick-links a,.footer-services a{color:#ffd9b3;text-decoration:none;opacity:0.95}

                .footer-hours{background:linear-gradient(90deg,rgba(255,255,255,0.03),rgba(0,0,0,0.02));padding:12px;border-radius:8px;color:#fff;max-width:280px}
                .footer-hours small{display:block;color:#ffd9b3}

                /* Social icons */
                .footer-social{display:flex;gap:10px;margin-top:12px}
                .social-circle{width:36px;height:36px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.06);color:#fff;box-shadow:0 6px 18px rgba(0,0,0,0.2);transition:transform .28s ease,box-shadow .28s ease}
                .social-circle:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(255,200,100,0.12)}

                /* Register button with glow */
                .footer-register-btn{display:inline-block;margin-top:12px;padding:10px 16px;border-radius:8px;background:linear-gradient(90deg,#ffd400,#c80303);color:#6b0000;font-weight:800;box-shadow:0 8px 30px rgba(200,50,50,0.25);text-decoration:none}
                .footer-register-btn.glow{animation:footerGlow 3s infinite}
                @keyframes footerGlow{0%{box-shadow:0 6px 18px rgba(255,150,0,0.12)}50%{box-shadow:0 16px 40px rgba(255,120,80,0.22)}100%{box-shadow:0 6px 18px rgba(255,150,0,0.12)}}

                /* subtle entrance animations */
                .animate-up{opacity:0;transform:translateY(12px);animation:up .9s forwards ease-out}
                .animate-up.delay{animation-delay:.12s}
                .animate-up.delay2{animation-delay:.22s}
                @keyframes up{to{opacity:1;transform:none}}

                /* footer bottom */
                .footer-bottom{text-align:center;color:rgba(255,230,180,0.9);margin-top:20px;font-size:13px}

                @media (max-width:900px){.site-footer .container-footer{grid-template-columns:1fr;gap:18px}.footer-hours{max-width:100%}}
               

/* ================= Explore Prizes Section ================ */
.prizes-section {
  padding: 80px 8%;
  background: #f6f8fb;
  color: #1f2937;
}

.prizes-title {
  font-size: 40px;
  font-weight: 800;
  color: #c51616;
  text-align: center;
  margin-bottom: 6px;
}

.prizes-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 28px;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 22px;
}

.prize-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.prize-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  color: #fff;
}

.pc-left { display: flex; align-items: center; gap: 14px; }
.pc-icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.25); font-size: 20px; }
.pc-header h3 { font-size: 1.15rem; font-weight: 700; }
.pc-stage { text-align: right; line-height: 1; opacity: .95; }
.pc-stage span { font-size: 32px; font-weight: 800; display: block; }
.pc-stage small { font-size: 12px; opacity: .9; }

.pc-icons { display:flex; gap: 16px; justify-content: space-between; padding: 16px 18px; background: #fff; color:#4b5563; font-size: 24px; border-top: 1px solid #f0f2f6; border-bottom: 1px solid #f0f2f6; }

.pc-body { padding: 18px 18px 22px; }

.pc-toggle {
  width: 100%;
  background: #f0b90b;
  color: #1f2937;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.1);
  transition: background .2s ease, transform .1s ease;
}
.pc-toggle:hover { background: #ffc52e; }
.pc-toggle:active { transform: translateY(1px); }

/* Secondary hide button inside details */
.pc-hide {
  width: 100%;
  margin-top: 10px;
  background: #e5e7eb;
  color: #1f2937;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}
.pc-hide:hover { background: #d1d5db; }
.pc-hide:active { transform: translateY(1px); }

.pc-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
}
.pc-details ul { list-style: none; padding: 12px 6px 0 6px; }
.pc-details li { color: #374151; margin: 8px 0; display: flex; align-items: center; gap: 10px; }

.prize-card.open .pc-details { max-height: 320px; opacity: 1; margin-top: 10px; }

/* Themed gradients and borders */
.prize-card[data-theme="sun"] { border-color: #ffd36b; }
.prize-card[data-theme="sun"] .pc-header { background: linear-gradient(135deg,#ffb400,#ff6a00); }

.prize-card[data-theme="violet"] { border-color: #c9c6ff; }
.prize-card[data-theme="violet"] .pc-header { background: linear-gradient(135deg,#7b8cff,#a46bff); }

.prize-card[data-theme="emerald"] { border-color: #9ae6b4; }
.prize-card[data-theme="emerald"] .pc-header { background: linear-gradient(135deg,#12c27d,#00b894); }

.prize-card[data-theme="coral"] { border-color: #ffb3b3; }
.prize-card[data-theme="coral"] .pc-header { background: linear-gradient(135deg,#ff8a65,#ff5252); }

/* Responsive tweaks */
@media (max-width: 520px) {
  .prizes-title { font-size: 28px; }
  .prizes-grid { gap: 14px; }
}

/* ------- Extra Animations for Prize Cards ------- */
.prize-card { transform-style: preserve-3d; backface-visibility: hidden; }
.prize-card:hover { transform: translateY(-8px) rotateX(1.5deg); }
.prize-card.open { box-shadow: 0 18px 36px rgba(0,0,0,.16); }

/* Themed hover glow */
.prize-card[data-theme="sun"]:hover { box-shadow: 0 14px 34px rgba(255,140,0,.35), 0 0 0 2px rgba(255,196,46,.55) inset; }
.prize-card[data-theme="violet"]:hover { box-shadow: 0 14px 34px rgba(132,94,247,.35), 0 0 0 2px rgba(164,107,255,.55) inset; }
.prize-card[data-theme="emerald"]:hover { box-shadow: 0 14px 34px rgba(16,185,129,.35), 0 0 0 2px rgba(0,184,148,.55) inset; }
.prize-card[data-theme="coral"]:hover { box-shadow: 0 14px 34px rgba(255,82,82,.35), 0 0 0 2px rgba(255,138,101,.55) inset; }

/* Header shimmer */
.pc-header { position: relative; overflow: hidden; }
.pc-header::after {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 120%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shimmerSlide 5s linear infinite;
}
@keyframes shimmerSlide { 0% { left: -150%; } 100% { left: 150%; } }

/* Button ripple */
.pc-toggle { position: relative; overflow: hidden; isolation: isolate; }
.pc-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx,50%) var(--ry,50%), rgba(255,255,255,.6), transparent 45%);
  opacity: 0; transform: scale(0.6);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.pc-toggle:active::after { opacity: 1; transform: scale(1); }

/* Open details subtle slide */
.prize-card.open .pc-details { animation: detailsIn .35s ease both; }
@keyframes detailsIn { from { opacity: 0; transform: translateY(-6px);} to { opacity: 1; transform: translateY(0);} }

/* Ensure major sections occupy full row even inside parent grid/flex */
.terms-section,
.register-section,
.contact-section,
.cta-banner,
.site-footer {
  grid-column: 1 / -1;
  flex: 0 0 100%;
  width: 100%;
}

/* Terms and Conditions */
.terms-section {
  padding: 60px 0;
  background: #f6f8fb;
  color: #1f2937;
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.terms-section .container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8%;
}
.terms-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #c51616;
  text-align: center !important;
  margin: 0 auto 16px auto;
}
.terms-section ul {
  list-style: disc;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  margin: 0 auto;
  list-style-position: inside;
}
.terms-section li {
  margin: 10px 0;
  line-height: 1.6;
  break-inside: avoid;
}
@media (max-width: 600px) {
  .terms-section { padding: 40px 16px; }
  .terms-section h2 { font-size: 24px; }
  .terms-section ul { padding: 16px 18px; }
}

/* Terms Card modern styles */
.terms-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  overflow: hidden;
  border: 1px solid #f0f2f6;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.terms-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  background: linear-gradient(135deg,#ffb400,#ff6a00);
  color: #ffffff;
}
.terms-header h2 {
  color: #ffffff !important;
  margin: 0;
  font-size: 28px;
  text-align: center;
}
.terms-icon { font-size: 28px; }
.terms-body { padding: 18px 22px; }
.terms-body ul { box-shadow: none; border: none; padding: 0; background: transparent; list-style-position: inside; }
.terms-body li { color: #374151; }
@media (max-width: 600px) {
  .terms-header h2 { font-size: 22px; }
  .terms-icon { font-size: 22px; }
}

/* ================= CTA Banner ================= */
.cta-banner { padding: 80px 8%; background: #faf7ea; }
.cta-banner .container { max-width: 1200px; margin: 0 auto; }
.cta-card {
  background: linear-gradient(90deg,#ffbf00,#ff7300,#ff3b2f);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(255,120,20,.25);
  padding: 34px 34px;
  text-align: center;
}
.cta-card h2 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.cta-card p { opacity: .95; margin-bottom: 16px; }
.btn-cta {
  background: #fff;
  color: #c51616;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
  cursor: pointer;
}

/* ================= Register Section ================= */
.register-section { padding: 100px 8%; background: linear-gradient(135deg,#cc0f0f,#e3680a); color:#fff; display:block; clear: both; margin-top: 30px; position: relative; z-index: 0; }
.reg-wrap { max-width: 1200px; margin:0 auto; display:grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.reg-left h2 { font-size: 44px; font-weight: 800; line-height: 1.1; margin-bottom: 10px; }
.reg-left p { opacity:.95; margin-bottom: 20px; }
.reg-points { list-style:none; padding:0; margin: 16px 0 22px 0; }
.reg-points li { margin:10px 0; }
.reg-actions { display:flex; gap:12px; }
.call-btn, .wa-btn { text-decoration:none; color:#fff; padding:10px 14px; border-radius:10px; display:inline-flex; align-items:center; gap:6px; box-shadow:0 10px 20px rgba(0,0,0,.2); }
.call-btn { background:#d86a2b; }
.wa-btn { background:#1fae4b; }

.register-card { background:#fff; color:#1f2937; border-radius:18px; box-shadow:0 20px 40px rgba(0,0,0,.25); padding:26px 26px 28px; text-align:left; position:relative; }
.reg-badge { width:58px; height:58px; border-radius:50%; display:grid; place-items:center; margin:-42px auto 8px; background:linear-gradient(135deg,#ffbf00,#ff6a00); color:#fff; box-shadow:0 10px 20px rgba(0,0,0,.18); }
.register-card h3 { text-align:center; font-size:22px; font-weight:800; color:#c51616; }
.reg-sub { text-align:center; color:#6b7280; margin-bottom:12px; }
.reg-form { display:flex; flex-direction:column; gap:10px; }
.reg-form label { font-size:12px; font-weight:700; color:#374151; }
.reg-form input, .reg-form textarea { width:100%; padding:12px 12px; border:1px solid #e5e7eb; border-radius:10px; outline:none; }
.fee-box { background:#fff9db; border:1px solid #f2e4a3; border-radius:10px; padding:12px; text-align:center; }
.fee { font-size:24px; font-weight:900; color:#c51616; }
.pay-btn { background:linear-gradient(135deg,#ffbf00,#ff3b2f); color:#fff; border:none; padding:14px 18px; border-radius:12px; font-weight:800; box-shadow:0 12px 20px rgba(255,59,47,.25); cursor:pointer; }
.secure-note { display:block; text-align:center; color:#9ca3af; margin-top:6px; }

@media(max-width: 1024px){ .reg-wrap { grid-template-columns: 1fr; gap: 28px; } .register-card{ max-width: 680px; margin: 0 auto; } }
@media(max-width: 900px){ .reg-left h2 { font-size: 32px; } .register-card{ margin-top: 8px; } }

 /* ===== Get in Touch Section (added) =====-*/
       
        /* Scoped styles for the get-in-touch section */
        .get-in-touch{font-family: 'Poppins', sans-serif;max-width:1100px;margin:40px auto;padding:30px;display:flex;gap:30px;align-items:flex-start}
        .get-in-touch .card-list{width:320px;display:flex;flex-direction:column;gap:18px}
        .get-in-touch .card{background:#fff;border-radius:12px;padding:16px 18px;box-shadow:0 8px 30px rgba(0,0,0,0.08);position:relative;overflow:hidden}
        .get-in-touch .card::after{content:'';position:absolute;inset:0;pointer-events:none;mix-blend-mode:overlay;opacity:0.08;background:linear-gradient(135deg, #ff7a18, #af002d)}
        .get-in-touch h2{font-size:22px;margin:0 0 8px;color:#c80303}
        .get-in-touch p.small{margin:0;color:#666;font-size:13px}

        /* Specific cards (class names requested) */
        .get-in-touch-address .label{color:#d33;font-weight:700;margin-bottom:6px;display:inline-block}
        .get-in-touch-phone .label{color:#0a8a3f;font-weight:700;margin-bottom:6px;display:inline-block}
        .get-in-touch-businness-houre .label{color:#0a66ff;font-weight:700;margin-bottom:6px;display:inline-block}
        .get-in-touch-whatsapp .label{color:#25D366;font-weight:700;margin-bottom:6px;display:inline-block}

        /* Right column */
        .get-in-touch .right{flex:1;background:linear-gradient(180deg,#ffffff,#fffaf6);padding:20px;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,0.06)}
        .get-in-touch .contact-head{display:flex;justify-content:space-between;align-items:center}
        .get-in-touch .contact-head h3{margin:0;color:#c80303}
        .get-in-touch form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
        .get-in-touch input,.get-in-touch textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6e6e6;font-size:14px;font-family:inherit}
        .get-in-touch textarea{grid-column:1/ -1;min-height:100px;resize:vertical}
        .get-in-touch .actions{display:flex;gap:12px;margin-top:12px}

        /* Gradient button with glow */
        .btn-gradient{background:linear-gradient(90deg,#ffb400,#ff3b3b);color:#fff;padding:12px 18px;border-radius:10px;border:none;cursor:pointer;box-shadow:0 6px 18px rgba(255,75,75,0.22);font-weight:700}
        .btn-gradient.glow{animation:glow 2.5s infinite}

        @keyframes glow{0%{box-shadow:0 6px 18px rgba(255,75,75,0.12)}50%{box-shadow:0 12px 34px rgba(255,75,75,0.26)}100%{box-shadow:0 6px 18px rgba(255,75,75,0.12)}}

        /* Floating / modern animations */
        .modern-animate{transform:translateY(8px);animation:floatUp 3.2s ease-in-out infinite}
        @keyframes floatUp{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

        /* Neon heading */
        .neon{color:#b30000;text-shadow:0 0 6px rgba(179,0,0,0.6),0 0 18px rgba(255,130,130,0.12)}

        /* small map */
        .map-wrap{margin-top:14px;border-radius:10px;overflow:hidden;border:1px solid #eee}
        .map-wrap iframe{width:100%;height:220px;border:0;display:block}

        /* responsive */
        @media (max-width:900px){.get-in-touch{flex-direction:column;padding:18px}.get-in-touch .card-list{width:100%;overflow:auto}.get-in-touch .card{min-width:220px}}
      
 /* icons for get-in-touch cards (scoped) */
        .get-in-touch .card{position:relative}
        .get-in-touch .card .icon-wrap{position:absolute;left:14px;top:14px;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:8px}
        .get-in-touch-address-icon .icon-wrap{background:linear-gradient(135deg,#ffdede,#fff0e6)}
        .get-in-touch-phone-icon .icon-wrap{background:linear-gradient(135deg,#e6fff0,#e6fff7)}
        .get-in-touch-businness-houre-icon .icon-wrap{background:linear-gradient(135deg,#e6f0ff,#f0f6ff)}
        .get-in-touch-whatsapp-icon .icon-wrap{background:linear-gradient(135deg,#eaffef,#f0fff5)}
        .get-in-touch .card h2{margin-left:56px}
        .get-in-touch .card .label{margin-left:56px}
        .get-in-touch .card p.small{margin-left:56px}
        .get-in-touch .card .svg-icon{width:22px;height:22px;display:block}
        @media (max-width:900px){.get-in-touch .card h2,.get-in-touch .card .label,.get-in-touch .card p.small{margin-left:68px}}

       /* Modern Glowing Achievement Slider */
.achievements-slider {
   padding: 70px 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 0 80px rgba(255, 0, 0, 0.05) inset;
  position: relative;
}

/* Gradient fade edges */
.achievements-slider::before,
.achievements-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.achievements-slider::before {
  left: 0;
  background: linear-gradient(90deg, );
}
.achievements-slider::after {
  right: 0;
  background: linear-gradient(-90deg,);
}

/* Title Styling */
.achievements-title {
  text-align: center;
  margin-bottom: 50px;
}
.achievements-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ff3131, #ff6b6b, #ff3131);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 4s infinite linear;
  text-shadow: 0 0 25px rgba(255, 50, 50, 0.3);
}

@keyframes gradientText {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Track Animation */
.achievements-track {
  display: flex;
  gap: 30px;
  padding: 10px 0;
  width: fit-content;
}

/* Left to Right Animation */
.achievements-track.left-to-right {
  animation: scrollLeftToRight 25s linear infinite;
}

/* Right to Left Animation */
.achievements-track.right-to-left {
  animation: scrollRightToLeft 15s linear infinite;
}

.achievements-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeftToRight {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(50%); }
}

@keyframes scrollRightToLeft {
  0% { transform: translateX(20%); }
  100% { transform: translateX(-20%); }
}

/* Clone each item for seamless scrolling */
.achievement-card {
  animation: fadeInOut 15s linear infinite;
}

/* Card Design */
.achievement-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.05),
              0 0 40px rgba(255, 0, 0, 0.08),
              inset 0 0 15px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 0, 0, 0.08);
  transition: all 1s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Glow Hover Animation */
.achievement-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.15),
              0 0 60px rgba(255, 80, 80, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.4);
}
.achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,0,0,0.08), rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 1s ease;
}
.achievement-card:hover::before {
  opacity: 1;
}

/* Image with Floating Animation */
.achievement-image {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
  animation: float 1s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.08);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 1; }
  45%, 55% { opacity: 0.9; }
}

/* Glowing Highlight Tag */
.achievement-highlight {
  display: inline-block;
  padding: 6px 14px;
  margin-top: 12px;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff9a9e, #fad0c4);
  color: #b30000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255, 100, 100, 0.4);
  animation: glowPulse 1s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 100, 100, 0.3),
                0 0 20px rgba(255, 50, 50, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.5),
                0 0 30px rgba(255, 50, 50, 0.3);
  }
}

/* QR Section */
.qr-section {
  display: flex;
  justify-content: center;
  align-items: stretch; /* makes all boxes equal height */
  gap: 20px;
  margin-top: 30px;
}

.qr-box {
  flex: 1 1 300px; /* ensures equal column widths */
  max-width: 320px;
  text-align: center;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qr-box h3 {
  font-family: 'Poppins', sans-serif;
  color: #222;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.qr-image {
  width: 180px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
}

.qr-box p {
  font-size: 15px;
  color: #333;
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .qr-section {
    flex-direction: column;
    align-items: center;
  }

  .qr-box {
    width: 90%;
    max-width: 350px;
  }
}

/* Second Month Slider */
/* 🌟 Second Month - Left-to-Right Glowing Slider */
.second-month-achievements-slider {
 
  padding: 70px 0;
  overflow: hidden;

  border-radius: 30px;
  box-shadow: 0 0 80px rgba(255, 0, 0, 0.05) inset;
}

/* Gradient fade edges */
.second-month-achievements-slider::before,
.second-month-achievements-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.second-month-achievements-slider::before {
  left: 0;
  background: linear-gradient(90deg);
}
.second-month-achievements-slider::after {
  right: 0;
  background: linear-gradient(-90deg);
}

/* Title */
.second-month-achievements-title {
  text-align: center;
  margin-bottom: 50px;
}
.second-month-achievements-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff3131, #ff6b6b, #ff3131);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 1s infinite linear;
  text-shadow: 0 0 25px rgba(255, 50, 50, 0.3);
}

/* Shared text glow animation */
@keyframes gradientText {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Left-to-right scroll animation */
.second-month-achievements-track {
  display: flex;
  gap: 30px;
  animation: scrollReverse 1s linear infinite;
  padding: 10px 0;
}

/* Reverse scroll direction */
@keyframes scrollReverse {
  0% { transform: translateX(calc(-320px * 13)); }
  100% { transform: translateX(0); }
}

/* Achievement Card */
.second-month-achievement-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.05),
              0 0 40px rgba(255, 0, 0, 0.08),
              inset 0 0 15px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Hover glow animation */
.second-month-achievement-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.15),
              0 0 60px rgba(255, 80, 80, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.4);
}
.second-month-achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,0,0,0.08), rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.second-month-achievement-card:hover::before {
  opacity: 1;
}

/* Image floating animation */
.achievement-image {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.08);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Highlight badge glow */
.achievement-highlight {
  display: inline-block;
  padding: 6px 14px;
  margin-top: 12px;
  border-radius: 30px;
  background: linear-gradient(90deg, #f2070e, #fad0c44a);
  color: #b30000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 100, 100, 0.4);
  animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 100, 100, 0.3),
                0 0 20px rgba(255, 50, 50, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.5),
                0 0 30px rgba(255, 50, 50, 0.3);
  }
}

