* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  padding-top: 80px;
  background: #0b0b0b;
  color: #ffffff;
}

/* ======================
   NAVBAR
====================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999999;
  background: rgba(0,0,0,0.9);
  pointer-events: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-left {
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo {
  height: 55px;
  margin-right: 2px;
}

.site-title {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ffffff;
}


.nav-links a {
  text-decoration: none;
  color: #ffd200;
  font-size: 15px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f6c600; /* GOLD */
}

/* ======================
   HERO SLIDER
====================== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  pointer-events: auto;
}

/* Slide background */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

/* ======================
   SLIDE CONTENT POSITION
====================== */
.slide-content {
  position: absolute;
  top: 32%;        /* 🔥 below logo */
  left: 8%;        /* 🔥 aligned like image */
  max-width: 650px;
  color: #fff;
  z-index: 2;

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  pointer-events: none;
}

.slide-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* BIG HEADING */
.slide-content h1 {
  font-size: 60px;       /* 🔥 BIG TEXT */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Highlight word */
.slide-content .highlight {
  color: #f5c400;
}

/* Subtitle */
.slide-content h6 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #ddd;
}

/* ======================
   SQUARE DOTS (BOTTOM LEFT)
====================== */
.dots.square {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dots.square .dot {
  width: 14px;
  height: 14px;
  background: #777;
  cursor: pointer;
  transition: all 0.3s;
}

.dots.square .dot.active {
  background: #f5c400;
}

/* ======================
   RESPONSIVE
====================== */
.slide-content h1,
.slide-content h6 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slide-content.show h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.slide-content.show h6 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.dots.square .dot {
  width: 14px;
  height: 14px;
  background: #555;
  position: relative;
  overflow: hidden;
}

.dots.square .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5c400;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 4s linear;
}

.dots.square .dot.active::after {
  transform: scaleX(1);
}

/* ======================
   ABOUT / EVENTS
====================== */
.about,
.events,
.participate {
  padding: 90px 10%;
  background: #0b0b0b;
  text-align: center;
}

.about h2,
.events h2,
.participate h2 {
  font-size: 38px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.about p {
  max-width: 900px;
  margin: auto;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.8;
}

/* ======================
   EVENT CARDS
====================== */
.event-cards {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.event-card {
  background: #111;
  padding: 30px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 1px;
  font-size: 18px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: #f6c600;
}

/* ======================
   COUNTDOWN
====================== */
.countdown {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.countdown h2 {
  font-size: 36px;
  margin-bottom: 35px;
  letter-spacing: 2px;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.time-box {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px 25px;
  min-width: 110px;
}

.time-box span {
  font-size: 40px;
  color: #f6c600;
  display: block;
}

.time-box p {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ccc;
}

/* ======================
   FOOTER
====================== */
footer {
  background: #000;
  padding: 35px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-icons i {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-icons i:hover {
  color: #f7f6f5;
}

/* ======================
   BACK TO TOP
====================== */
#backToTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #f6f6f5;
  color: #000;
  border: none;
  padding: 12px 14px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 900px) {
  .slide-content h1 {
    font-size: 42px;
  }
  .slide-content h6 {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .slide-content h1 {
    font-size: 32px;
  }
}
/* Diagonal premium overlay */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.75) 40%,
    rgba(0,0,0,0.3) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 40%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2000;
}

.floating-buttons a {
  width: 46px;
  height: 46px;
  background: rgba(0,0,0,0.8);
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefdfb;
  font-size: 22px;
  transition: all 0.3s ease;
}

.floating-buttons a:hover {
  background: #f9f9f7;
  color: #000;
  transform: translateX(-6px);
}

.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

#changing-word {
  color: #f5c400;
  font-weight: 700;
  transition: opacity 0.4s ease;
}
.about, .events, .participate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}
.hero-video {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ======================
   EVENTS – PREMIUM STYLE
====================== */

.events {
  background: #fff;
  padding: 80px 60px;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #b30000;
  letter-spacing: 1px;
}

.section-subtitle {
  margin-top: 10px;
  color: #555;
  font-size: 16px;
}

.events-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: 0.4s;
}

.event-card:hover::before {
  background: rgba(0,0,0,0.75);
}

.event-overlay {
  position: absolute;
  inset: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.4s;
}

.event-card:hover .event-overlay {
  opacity: 1;
  transform: translateY(0);
}

.event-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  border: 2px solid #ffc400;
  padding: 10px 20px;
  margin-bottom: 15px;
}

.event-overlay p {
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.event-btn {
  text-decoration: none;
  padding: 10px 22px;
  background: #fff;
  color: #b30000;
  font-weight: 600;
  border-radius: 3px;
  transition: 0.3s;
}

.event-btn:hover {
  background: #ffc400;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-card {
    height: 380px;
  }
}
/* =========================
   ABOUT – EXPERIENCE SECTION
========================= */

.about-experience {
  position: relative;
  height: 520px;
  background: url("photo6.jpeg") center/cover no-repeat;
}

.about-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.about-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}

.about-title {
  font-size: 46px;
  font-weight: 800;
  color: #ffc400;
  letter-spacing: 1px;
}

.about-subtitle {
  margin-top: 10px;
  font-size: 17px;
  color: #ddd;
}

.about-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 700;
}

.stat-box p {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  border-top: 2px solid #ffc400;
  display: inline-block;
  padding-top: 8px;
}

.about-actions {
  margin-top: 50px;
}

.about-btn {
  text-decoration: none;
  padding: 12px 26px;
  background: #ffc400;
  color: #000;
  font-weight: 600;
  margin: 0 10px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #fff;
}

.about-btn.outline {
  background: transparent;
  border: 2px solid #ffc400;
  color: #ffc400;
}

.about-btn.outline:hover {
  background: #ffc400;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
.tig-highlights {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  color: #b30000;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin: 10px 0 50px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tig-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
}

.yellow-shape {
  position: absolute;
  bottom: -40px;
  left: -10px;
  width: 120%;
  height: 120px;
  background: #f5c400;
  transform: rotate(-8deg);
  z-index: 1;
}

.card-footer {
  padding: 30px;
  text-align: center;
}

.btn-red {
  background: #b30000;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.tig-highlights {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  color: #b30000;
  font-size: 34px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin: 10px 0 50px;
  color: #666;
}

/* Grid container */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 10px;           /* space between cards */
  justify-content: start; /* align cards to the left */
  padding: 0 150px;      /* space from edges of container */
  column-gap: 10px;
}

/* Card styling */
.tig-card {
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform .4s ease;
  width: 380px;      /* slightly smaller width for tighter layout */
  margin: 0 auto;    /* center card in its column */
}

/* Hover effect */
.tig-card:hover {
  transform: translateY(-10px);
}

/* Card image */
.card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card title */
.card-image h3 {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
  font-size: 22px;
}

/* Yellow decoration shape */
.yellow-shape {
  position: absolute;
  bottom: -30px; /* adjusted to fit tighter cards */
  left: -5px;
  width: 115%;   /* slightly smaller to match card width */
  height: 120px;
  background: #f5c400;
  transform: rotate(-8deg);
}

/* Card footer */
.card-footer {
  text-align: center;
  padding: 20px; /* reduced padding to make cards more compact */
}


.btn-red {
  background: #b30000;
  color: #fff;
  padding: 12px 15px;
  font-weight: 500;
  display: inline-block;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: #fff;
  width: 600px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.modal-box img {
  width: 100%;
  margin: 20px 0;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}
/* ======================
   COUNTDOWN SECTION
====================== */
.premium-countdown {
  background: radial-gradient(circle at top, #141e30, #0a0f1c);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.premium-countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("noise.png");
  opacity: 0.03;
}

.countdown-title {
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #fff;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px 20px;
  width: 140px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.time-box:hover {
  transform: translateY(-8px) scale(1.03);
}

.time-box span {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  display: block;
}

.time-box p {
  margin-top: 8px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #ddd;
}

/* Highlight seconds */
.seconds-box span {
  color: #ff4d4d;
  animation: pulse 1s infinite;
}

/* ======================
   FOOTER
====================== */
.site-footer {
  background: #05070d;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 15px;
}

.site-footer span {
  color: #ffd700;
  font-weight: 600;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-icons a {
  color: #aaa;
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.footer-icons a:hover {
  color: #ffd700;
  transform: translateY(-4px);
}

/* ===============================
   HALF CIRCLE SCROLL UI
================================ */

.half-circle-wrapper {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

/* Base circle */
.circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OUTER RING */
.outer-circle {
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 212, 0, 0.25);
  animation: rotateSlow 40s linear infinite;
}

/* MIDDLE RING */
.middle-circle {
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 212, 0, 0.18);
  animation: rotateReverse 30s linear infinite;
}

/* INNER SCROLL RING */
.inner-circle {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 212, 0, 0.15);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.inner-circle::-webkit-scrollbar {
  display: none;
}

/* SCROLL ITEMS */
.circle-item {
  height: 360px;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s ease;
}

/* Hover effect */
.circle-item:hover {
  color: #f5c400;
  transform: scale(1.08);
  text-shadow: 0 0 15px rgba(245,196,0,0.7);
  cursor: pointer;
}

/* Glow pulse */
.inner-circle {
  box-shadow: 0 0 25px rgba(245,196,0,0.15);
  animation: glowPulse 4s ease-in-out infinite;
}

/* ===============================
   ANIMATIONS
================================ */

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 15px rgba(245,196,0,0.15); }
  50%  { box-shadow: 0 0 30px rgba(245,196,0,0.35); }
  100% { box-shadow: 0 0 15px rgba(245,196,0,0.15); }
}

/* ===============================
   MOBILE: HIDE CIRCLE
================================ */
@media (max-width: 900px) {
  .half-circle-wrapper {
    display: none;
  }
}
/* ======================
   TECH MODALS (ALL)
====================== */

.tech-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.tech-modal-box {
  background: #0f0f0f;
  width: 420px;
  padding: 30px;
  border: 1px solid rgba(255,212,0,0.3);
  box-shadow: 0 0 30px rgba(245,196,0,0.3);
  animation: scaleIn 0.4s ease;
}

.tech-modal-box h2 {
  color: #f5c400;
  margin-bottom: 20px;
  text-align: center;
}

.tech-modal-box input,
.tech-modal-box textarea {
  width: 100%;
  background: #000;
  border: 1px solid #333;
  padding: 12px;
  margin-bottom: 14px;
  color: #fff;
}

.tech-modal-box textarea {
  resize: none;
  height: 100px;
}

.modal-btn {
  width: 100%;
  padding: 12px;
  background: #f5c400;
  color: #000;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Close */
.tech-modal .close {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Chat */
.chat-window {
  background: #000;
  height: 140px;
  padding: 10px;
  overflow-y: auto;
  margin-bottom: 10px;
  font-size: 14px;
}

.bot-msg {
  color: #f5c400;
}

/* Feedback stars */
.stars {
  text-align: center;
  font-size: 26px;
  margin-bottom: 15px;
  color: #f5c400;
  letter-spacing: 4px;
}

/* Animation */
@keyframes scaleIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ACTIVE HALF-CIRCLE ITEM */
.circle-item.active {
  color: #f5c400;
  transform: scale(1.15);
  text-shadow: 0 0 18px rgba(245,196,0,0.9);
}
.inner-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  scroll-behavior: smooth;
  height: 360px; /* adjust to your design */
}

.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  cursor: pointer;
}

.circle-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.circle-label {
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
/* =========================
   OUTER CURVED ARC LABELS
========================= */

.outer-circle {
  position: relative;
}

/* Label container */
.arc-labels {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

/* Individual label */
.arc-item {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: 0 0;

  /* OUTERMOST CURVE RADIUS */
  --radius: 210px;

  /* Curve distribution */
  --angle: calc(-70deg + (var(--i) * 32deg));

  transform:
    rotate(var(--angle))
    translateX(var(--radius))
    rotate(calc(-1 * var(--angle)));

  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s ease;
}

.arc-item:hover {
  color: #f5c400;
  transform:
    rotate(var(--angle))
    translateX(calc(var(--radius) + 6px))
    rotate(calc(-1 * var(--angle)));
}

:root {
  --dark-triangle-width: 100%;  
  --dark-triangle-height: 40%; 
}

/* Scroll Container */
.scroll-slider{
  width:100%;
  overflow-x:hidden;
  padding:40px 20px;
  white-space: nowrap;
}

/* Image Row */
.scroll-track{
  display:flex;
  gap:20px;
}

/* Image Card */
.scroll-item{
  flex:0 0 28%;
  position: relative;
  overflow:hidden;
}

/* Square Image */
.scroll-item img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

/* LEFT dark triangle at bottom-left */
.scroll-item::before{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width: var(--dark-triangle-width);
  height: var(--dark-triangle-height);
  background: rgba(255, 193, 7, 0.9);
  clip-path: polygon(0% 100%, 100% 100%, 0% 0%);
  pointer-events:none;
}

/* RIGHT light triangle */
.scroll-item::after{
  content:''; 
  position:absolute;
  bottom:0;
  right:0;
  width:100%;
  height:100%;
  background: rgba(255, 215, 0, 0.6);
  clip-path: polygon(45% 100%, 100% 70%, 100% 100%);
  pointer-events:none;
}

/* Scroll Button */
.scroll-button-container{
  text-align:center;
  margin:70px 0 100px 0; /* move button lower */
}

.scroll-button{
  background: #ffd400;
  color: #000;
  font-size:18px;
  font-weight:bold;
  padding:12px 30px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition: all 0.3s;
}

.scroll-button:hover{
  background:#ffbf00;
  transform:scale(1.05);
}

/* Responsive */
@media(max-width:900px){
  .scroll-item{
    flex:0 0 75%;
  }
}

/* ======================
   NAVBAR DROPDOWN
====================== */
.nav-links li {
  position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  min-width: 180px;
  display: none;
  flex-direction: column;
  border-radius: 6px;
  padding: 8px 0;
  z-index: 1000;
}

/* Dropdown links */
.dropdown-menu li a {
  padding: 10px 16px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background-color: #f5c400;
  color: #000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Caret spacing */
.dropdown-toggle i {
  margin-left: 6px;
  font-size: 12px;
}

.nav-links li a {
  text-decoration: none;
  color: #ffd200;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #f6c600;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 150px;
  display: none;
  flex-direction: column;
  border-radius: 6px;
  padding: 5px 0;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 16px;
  display: block;
  color: #fff;
}

.dropdown-menu li a:hover {
  background: #f5c400;
  color: #000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* =================================
   DESKTOP NAVBAR FIX ONLY
   (Laptop / PC screens)
================================= */
@media (min-width: 901px){

  .nav-container{
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .nav-left{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
  }

  .nav-links li{
    margin:0;
  }

  .menu-toggle{
    display:none; /* hide hamburger on laptop */
  }
}

