
/* Add font files for Raleway */
@font-face {
  font-family: 'Raleway';
  src: url('fonts/raleway.woff2') format('woff2'),
       url('fonts/raleway.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Add font files for Nunito */
@font-face {
  font-family: 'Nunito';
  src: url('fonts/nunito.woff2') format('woff2'),
       url('fonts/nunito.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
 :root{
      --max-width:1200px;
      --accent:#d5ff3f;
      --hero-pad-x:clamp(16px, 5vw, 40px);
      --hero-pad-top:clamp(80px, 20vw, 150px);
      --hero-pad-bottom:clamp(28px, 6vw, 60px);
      --font-main: 'Raleway', sans-serif;
      --grey:#777;
    }
 main {
  position: relative;
  min-height: 100vh;     /* full viewport height */
  padding-bottom: 160px; /* space for footer height */
  box-sizing: border-box;
}

*,*::before,*::after{box-sizing:border-box}
    html,body{
      margin:0;
      background:#000000;
      color:#fff;
        font-family: var(--font-main);
      overflow-x: hidden; /* prevent horizontal scroll */
      height: 100%;
      margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
    }
         
    img,video{max-width:100%;height:auto;display:block}
    .section-container{max-width:var(--max-width);margin:0 auto;padding:0 16px}
    section{margin:80px auto}
    html{scroll-behavior:smooth}

    /* HERO */

    .hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--hero-pad-top) var(--hero-pad-x) var(--hero-pad-bottom);
  border-radius: 24px;
  overflow: hidden;
}
    .hero::after{
      content:"";
      position:absolute; inset:0;
      background:url("./assets/images/Borderline.png") no-repeat center top / contain;
      z-index:0;
      margin-top: 1.5px;
      clip-path:inset(0 100% 0 0);
      will-change:clip-path;
      animation: lineCycle 30s ease-in-out infinite both;
    }
    @keyframes lineCycle{
      0%   {clip-path:inset(0 100% 0 0);}
      15%  {clip-path:inset(0 0 0 0);}
      65%  {clip-path:inset(0 0 0 0);}
      80%  {clip-path:inset(0 100% 0 0);}
      100% {clip-path:inset(0 100% 0 0);}
    }

    /* HUD / Header */
    .hero-header{
      position:absolute;
      top:20px; left:var(--hero-pad-x); right:var(--hero-pad-x);
      display:flex; justify-content:space-between; align-items:center;
      z-index:2;
       /* position: relative; */
      z-index: 10000; /* ✅ above backdrop */
    }
    /* Horizontal line below the HUD */
.hero-header::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  top: 90px;
  background-color: var(--accent);
}
    .logo-group {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  margin-top: 0;          /* no overlap or offset */
  transform: scale(1);    /* natural size */
  right: 0;               /* reset horizontal shift */
}

.logo-group a img {
  height: 50px;           /* matches skillup_styles.css */
}
   
    .school-container{display:flex; align-items:center; gap:8px}
    .school-name{font-weight:700; font-size:18px; text-transform:uppercase; line-height:1.2}
    .school-dots{display:flex; gap:6px; margin-left:-10px;margin-top: 50px;}
    .school-dot{width:10px; height:10px; border-radius:50%; background:var(--accent)}

   
     /* ------------------- HAMBURGER ICON ------------------- */
   .hamburger {
  width: 32px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  top: 0;                 /* aligned with logo group */
  margin-top: 0;
  z-index: 10001;         /* above black background */
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
    /* Animation when active */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ------------------- NAV MENU ------------------- */
   .nav-backdrop {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100vw;
  height: 700vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 9998; /* ✅ below nav-menu and hamburger */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: all;
}
/* Disable scrolling when menu active */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none; /* ✅ disables mobile scroll gestures */
}

    .nav-menu {
      position: absolute;
       top: 100px;
      right: 400px;
      background: rgba(17, 17, 17, 0.85);
      border: 2px solid var(--accent);
      border-radius: 8px;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 9998; /* ✅ higher than .nav-backdrop */
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
        position: fixed;

 
    }

    .nav-menu.show {
      opacity: 1;
      visibility: visible;
    }

    .nav-menu a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 6px;
    }

    .nav-menu a:hover {
      background: var(--accent);
      color: #000;
    }

    .nav-close {
      display: none;
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      color: var(--accent);
      font-size: 32px;
      font-weight: bold;
      cursor: pointer;
      line-height: 1;
      z-index: 1103;
    }
    /* Hero overlay */
    .hero-overlay{position:relative; z-index:1; max-width:900px; margin:0 auto; text-align:center}
    .acharya{font-weight:800; text-transform:uppercase; font-size:clamp(28px, 6vw, 90px);margin-top: 0px;margin-left:-480px;}
    .D-dots{display:flex; gap:6px; justify-content:center; margin:10px 0;}
    .Da-dot{width:10px; height:10px; border-radius:50%; background:var(--accent);margin-top:-50px;}
        
 .headline-row {
  position: relative;
  top: -50px; /* 👈 moves upward */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
/* The text block */
.stagger {
  flex: 1;                    /* allows flexible width */
  text-align: left;
  line-height: 1;
  margin: 0;
  transform: none;            /* reset any previous offset */
  position: relative;
  top: -80px; /* move text up slightly */
}

/* Each headline line */
.headline {
  font-weight: 900;
  font-size: clamp(24px, 6vw, 70px);
  text-transform: uppercase;
  margin: 8px 0;
}

/* The abstract video */
.abstract {
  flex: 0 0 360px;            /* fixed width for balance */
  max-width: 40%;
  border-radius: 12px;
  margin: 0;
  display: block;
   position: relative;
  top: -60px; /* move video up slightly more */
}

/* Make tagline appear below the row, slightly closer */
.tagline {
  position: relative;
  top: -120px; /* 👈 moves tagline upward */
  font-size: clamp(16px, 2.4vw, 24px);
}

       /* DESCRIPTION */
    .hd.section-container{display:flex; gap:40px; flex-wrap:wrap; align-items:flex-start; padding:48px 16px}
    .hero-description{flex:1; min-width:260px; font-size:clamp(30px, 1.6vw, 22px); line-height:1.6;text-align: justify;}
    .qr-wrapper{display:flex; flex-direction:column; align-items:center; gap:24px}
    .qr-code{width:260px}
    .section-header{text-align:center; padding:24px 0; margin-bottom:24px}
    .section-title{display:inline-flex; align-items:center; gap:8px; padding:8px 32px; background:#141313; color:var(--accent); border-radius:8px; font-size:clamp(20px, 2.6vw, 38px); margin:0}
    
    /* Heading strap inside grid width */
    .events-header {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
    .events-header h2 {
      background: #1f1f1f;
      padding: 20px 420px;
      color: #d8ff3d; /* lime green */
      font-size: 2.5rem;
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 3px;
      display: inline-block;
    }
    .events-section {
      position: relative;
      padding: 60px 20px;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Watermark ACHARYA */
    .watermark {
      position: absolute;
      top: 40%;
      left: -100%;
      font-size: 8rem;
      font-weight: bold;
      font-family: Arial, sans-serif;
      color: rgba(255, 255, 255, 0.05); /* very faint */
      white-space: nowrap;
      animation: slideText 20s linear infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes slideText {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    /* Event grid layout */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      justify-items: center;
      position: relative;
      z-index: 2;
    }

    .row-2 {
      grid-column: 1 / span 3; /* span all 3 columns */
      display: flex;
      justify-content: center;
      gap: 80px;
      margin-top: 40px;
    }

    .event-card {
      text-align: center;
    }

    .event-image {
      width: 400px;
      height:400px;
      border: 4px solid transparent;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
      margin: 0 auto;
      position: relative;
    }

    .event-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease, margin-left 0.4s ease;
    }

    /* Hover effect - zoom in + shift right */
    .event-card:hover .event-image img {
      transform: scale(1.1);
      margin-left: 8px; /* slight right shift for border gap */
    }
     .event-card:hover {
      transform: translateY(-6px);
      
    }

    /* Border colors for the image container */
    .red .event-image { border-color: #e74c3c; }
    .green .event-image { border-color: #2ecc71; }
    .yellow .event-image { border-color: #f1c40f; }
    .blue .event-image { border-color: #3498db; }
    .purple .event-image { border-color: #9b59b6; }

    /* Event titles with underline effect */
    .event-card p {
      margin-top: 10px;
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
    }

    .event-card p::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0%;
      height: 2px;
      background: #d8ff3d;
      transition: width 0.4s ease;
    }

    .event-card:hover p::after {
      width: 100%;
    }

    /* Show all events button (PDF style + underline animation) */
    .show-all {
      text-align: center;
      margin-top: 40px;
    }

    .show-all a {
      display: inline-block;
      padding: 5px 30px;
      border: 2px solid #d8ff3d;
      color: #d8ff3d;
      background: transparent;
      text-decoration: none;
      font-weight: bold;
      font-size: 2rem;
      border-radius: 6px;
      text-transform: uppercase;
      transition: background 0.3s ease, color 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    /* underline effect */
    .show-all a::after {
      content: "";
      position: absolute;
      bottom: 6px;
      left: 0;
      width: 0%;
      height: 2px;
      background: #d8ff3d;
      transition: width 0.4s ease;
    }

    .show-all a:hover {
      background: #d8ff3d;
      color: #111;
    }

    .show-all a:hover::after {
      width: 100%; /* underline slides across */
    }


   /* Gallery Section starts from here  */
   .gallery-header {
    text-align: center;
    margin-top: 40px;
  }

  .gallery-header h2 {
    display: inline-block;
    background: #1f1f1f;
    padding: 20px 610px;  /* 👈 this controls overall width */
    color: #d8ff3d;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
  }

  .gallery-stage {
    perspective: 2000px;
    margin: 5px auto;
    height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.5s ease;
  }

    .carousel {
      position: absolute;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      animation: rotateBelt 45s linear infinite;
      }

    .gallery-stage:hover .carousel {
      animation-play-state: paused;
    }

    .item {
  position: absolute;
  width: 220px;
  height: 320px;
  top: 50%;
  left: 50%;
  margin: -160px 0 0 -110px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  cursor: pointer;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

/* The colored animated underline */
.color-line {
   position: absolute;
  bottom: 6px;               /* sits inside the border */
  left: 20%;
  width: 60%;
  height: 2px;
  border-radius: 2px;
  background-color: transparent;
  transform-origin: center;
  animation: lineFlow 2.5s ease-in-out infinite;
  opacity: 0.8;
  pointer-events: none;
}

/* Keyframes for continuous animation */
@keyframes lineFlow {
  0% {
    transform: scaleX(0.3);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.3);
    opacity: 0.4;
  }
}

    .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    /* Neon glow highlight */
    .item.highlight {
      border-color: #d8ff3d;
      box-shadow: 
        0 0 25px rgba(216,255,61,0.6), 
        0 12px 30px rgba(0,0,0,0.6);
      z-index: 999;
    }

    @keyframes rotateBelt {
      from { transform: rotateY(0deg); }
      to { transform: rotateY(-360deg); }
    }

    .item:hover {
  transform:translateY(-6px);  /* zoom in slightly */
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); /* stronger glow */
  opacity: .6;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}
    /* Popup Lightbox */
    .popup {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
    }

    .popup img {
      max-width: 80%;
      max-height: 80%;
      border-radius: 10px;
      border: 4px solid #d8ff3d;
      box-shadow: 0 6px 30px rgba(0,0,0,0.8);
    }

    .popup .close {
      position: absolute;
      top: 20px;
      right: 40px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
    }
    
    /* Decorative rings  */
   /* === Position the floating pattern below row-2 === */
.row-2-decor {
  position: relative;
  top: 0;                        /* starts at top of second row */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -10px;             /* adjust if needed to tuck it closer */
}

/* === The decorative pattern group === */
.decorative-pattern {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: floatTogether 4s ease-in-out infinite; /* all rings oscillate together */
}

/* === Pattern layout === */
.pattern-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* === Individual ring style === */
.pattern-icon {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              filter 0.5s ease, 
              opacity 0.4s ease;
  animation: glowPulse 3s ease-in-out infinite;
}

/* === Smooth unified float motion === */
@keyframes floatTogether {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(150px); }
  100% { transform: translateY(0); }
}
/* Hover scale effect on icons */
.pattern-icon:hover {
  transform: scale(1.25);  /* zoom in slightly */
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); /* stronger glow */
  opacity: 1;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

.gallery-responsive {
  display: none;
}


/* our sponsors section */
.our-sponsors {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.our-sponsors h2 {
  background: #1f1f1f;
  padding: 20px 420px;
  color: #d8ff3d;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
}

.sponsor-section {
  text-align: center;
  padding: 20px 20px 30px; /* smaller top/bottom gap */
  margin: 0 auto;
  max-width: 1400px;
}

/* CENTER SPONSOR LOGO */
.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.sponsor-image {
  width: 80%;               /* fill 80% of screen width */
  max-width: 1000px;        /* limit for large screens */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  margin: 0 auto;
}

.sponsor-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

/* .sponsor-image:hover img {
  transform: scale(1.05);
} */

/* === FOOTER === */
.footer {
  margin-top: auto; /* ensures footer sits at the end */
  width: 100%;
  background: var(--accent, #d8ff3d);
  color: #110e0e;
  padding: 30px 80px 20px;
  display: flex;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  bottom: 0;
}

/* Footer content layout */
.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Buttons */
.footer-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-buttons button {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-buttons button:hover {
  background: #000;
  color: #d8ff3d;
}

/* Right side text */
.footer-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  max-width: 600px;
}

.footer-text {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}
/* ----------------- RESPONSIVE ----------------- */
/* =====================================================
   📱 RESPONSIVE: Max Width 425px
===================================================== */


  /* HEADER & NAV */
  @media (max-width: 425px) {

  /* HEADER & NAV */
  .hero-header {
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    position: fixed;
    z-index: 99999; /* ✅ ensures header is always on top */
    background: linear-gradient(to bottom, #000 0%, #000 100%);
    backdrop-filter: none;
  }

  .hero-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--grey);
  }

  .logo-group {
    transform: scale(1.2);
    left: 30px;
    top: 20px;
    gap: 16px;
    background-color: #000;
    padding: 14px 16px;
  }

  .logo-group a img {
    height: 40px;
  }

  .hamburger {
    width: 28px;
    height: 20px;
    gap: 5px;
    z-index: 100000; /* ✅ ensures hamburger stays clickable */
    right: 20px;
    top: 20px;
    position: absolute;
  }

  .hamburger span {
    height: 3px;
    background: var(--accent);
  }

  /* NAV MENU */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 120px;
    width: 60vw;
    height: auto;
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-top: 1px solid var(--grey);
    border-bottom: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    z-index: 99998;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu a:hover {
    background: rgba(216, 255, 61, 0.1);
  }

  /* BACKDROP */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-backdrop.show {
    opacity: 1;
    pointer-events: all;
  }

  /* HERO AREA */
  .hero {
    margin-top: 100px; /* ✅ pushes hero below fixed HUD */
    position: relative;
    z-index: 1; /* ✅ hero sits beneath HUD */
    padding: 80px 20px 40px;
  }

  section,
  .events-section,
  .events-grid,
  .gallery-section,
  .sponsor-section,
  .hd.section-container {
    position: relative;
    z-index: 1; /* ✅ all scrollable content passes behind HUD */
  }

  .acharya {
    font-size: 2rem;
    text-align: left;
    margin: -10px 20px;
    right: 30px;
  }

  .headline-row {
    flex-direction: column;
    gap: 8px;
    top: 0;
    margin-bottom: -350px;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-overlay {
    margin-bottom: -20px;
  }

  .stagger {
    text-align: justify;
    top: -20px;
    transform: scale(0.85);
    right: 80px;
    margin-bottom: 0;
    line-height: 1.1;
  }

  .stagger .headline {
    font-size: 1.8rem;
  }

  .abstract {
    width: clamp(140px, 50vw, 100px);
    margin: 0 auto;
    top: -280px;
    left: 100px;
  }

  .tagline {
    top: -16px;
    font-size: 1rem;
    text-align: center;
    margin-top: 4px;
  }

  /* EVENTS */
  .events-grid {
    grid-template-columns: 2fr;
    gap: 40px;
  }

  .event-image {
    width: 100px;
    height: 100px;
  }

  .events-header h2 {
    padding: 8px 10vw;
    font-size: 1.3rem;
  }

  .event-card p {
    font-size: 0.85rem;
  }

  /* GALLERY */
  .gallery-stage {
    display: none;
  }

  .gallery-responsive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    overflow: hidden;
  }

  .gallery-header h2 {
    padding: 10px 14vw;
    font-size: 1.4rem;
  }

  /* SPONSORS */
  .our-sponsors h2 {
    font-size: 1.5rem;
    padding: 8px 40px;
  }

  .sponsor-image {
    width: 180px;
    transform: scale(1.4);
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-buttons {
    justify-content: center;
  }

  .footer-text-block {
    align-items: center;
    text-align: center;
  }

  /* DESCRIPTION & QR */
  .hd.section-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: -20px;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 300px;
    top: -300px;
  }

  .qr-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .qr-code {
    width: 140px;
  }
}


/* =====================================================
   📱 SMALL MOBILE: Max Width 375px
===================================================== */
@media (max-width: 375px) {

  /* HEADER */
  .hero-header {
    padding: 8px 10px;
  }

  .logo-group a img {
    height: 30px;
  }

  .hamburger {
    width: 24px;
    height: 18px;
  }

  .hamburger span {
    height: 2.5px;
  }

  .nav-menu {
    padding: 16px;
  }

  /* HERO */
  .hero {
    padding: 60px 16px 30px;
  }

  .acharya {
    font-size: 1.6rem;
  }

  .stagger .headline {
    font-size: 1.5rem;
  }

  .abstract {
    width: 120px;
  }

  .tagline {
    top: -20px;
    font-size: 0.9rem;
  }

  /* EVENTS */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-image {
    width: 150px;
    height: 150px;
  }

  .events-header h2 {
    font-size: 1.2rem;
    padding: 8px 8vw;
  }

  .event-card p {
    font-size: 1rem;
  }

  /* GALLERY */
  .gallery-header h2 {
    font-size: 1.3rem;
    padding: 8px 12vw;
  }

  .gallery-item {
    width: 110px;
    height: 140px;
  }

  /* SPONSORS */
  .our-sponsors h2 {
    font-size: 1.3rem;
    padding: 6px 30px;
  }

  .sponsor-image {
    width: 140px;
    transform: scale(1.3);
  }

  /* FOOTER */
  .footer {
    padding: 16px;
  }

  .footer-buttons button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .footer-text-block {
    font-size: 0.85rem;
  }

  /* DESCRIPTION */
  .hero-description {
    font-size: 0.9rem;
    max-width: 260px;
  }

  .qr-code {
    width: 120px;
  }

  /* DECORATIVE ICONS */
  .pattern-icon {
    width: 14px;
    height: 14px;
  }

  .watermark {
    font-size: 2rem;
  }
}
