* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
:root {
  --font-family: 'Inter', Arial, sans-serif;
}
body {
  color: #fff;
}
p{
  font-size: 16px;
}
/* NAVBAR */
/* NAVBAR BASE */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo img{
width: 25rem;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.nav-links a {
    text-decoration: none;
    position: relative;
}

.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--primary);
}


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* SIDEBAR */
/* SIDEBAR FULL SCREEN */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;              /* FULL WIDTH */
  height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  padding: 60px 30px;
  gap: 25px;
  transition: 0.4s ease;
  z-index: 1100;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ACTIVE SIDEBAR */
.sidebar.active {
  right: 0;
}
.sidebar a{
  color: white !important;
  text-decoration: none !important;
}
/* OVERLAY */
.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay-bg.active {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
/* HERO */
.hero {
  width: 100%;
  margin-top: 4rem;
  background: #000;
  overflow: hidden;
  position: relative;
}

.slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7; 
  overflow: hidden;
}
/* SLIDES */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%); 
  transition: transform 0.8s ease;
}

.slide.active {
  transform: translateX(0);
  z-index: 2;
}

.slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

.slide img {
  width: 100%;
  display: block;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, gold, #ffd700);
}
/* hero ends */
/* hero thumbnail */
.showcase-section {
  padding: 30px 20px;
}

.showcase-wrapper {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.showcase-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* IMAGES */
.showcase-track img {
  width: 90px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.showcase-track img:hover {
  transform: scale(1.05);
}

/* -------- DESKTOP (STATIC GRID) -------- */
@media (min-width: 1024px) {
  .showcase-track {
    width: 100%;
    justify-content: space-between;
    animation: none;
  }

  .showcase-track img {
    width: calc(100% / 8 - 18px);
  }
}

/* -------- MOBILE / TABLET (LOOP) -------- */
@media (max-width: 1023px) {
  .showcase-track {
    animation: scrollLoop 25s linear infinite;
  }
}

/* LOOP ANIMATION */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* GRID */
.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}
/* CARD BASE */
.card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  transition: all 0.3s ease;
border: 1.5px solid transparent;
  /* PREMIUM SHADOW */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* LOGO */
.card-content{
  position: relative;
  height: 155px;
}
.card-logo {
  width: 155px;
  height: 155px;
  border-radius: 10px;
  object-fit: cover;
}

/* TEXT */
.card-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
  color: black;
}

.card-content p {
  color: #555;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* TAG */
.tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}

.card-content small {
  font-size: 14px;
  color: #777;
  position: absolute;
  bottom: 0;
}

/* FEATURED CARD (FIRST ONE) */
.card:hover {
  border: 1.5px solid gold;

  /* STRONGER PREMIUM SHADOW */
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* FEATURED HOVER */
.card.featured:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 18px;
  }

  .card-content h3 {
    font-size: 17px;
  }
}

.past-pageants {
  padding: 70px 40px;
  background: #f5f6f8;
  position: relative;
  overflow: hidden;
}


/* pageants  */
        .image-motion-section {
    width:100%;
    overflow:hidden;
    padding:40px 0;
}

.image-motion-track-wrapper {
    width:100%;
    overflow:hidden;
    margin-bottom:50px;
}

.image-motion-track {
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;
    white-space: nowrap;
}
.past-p-title{
  margin-bottom: 40px !important;
  padding: 0px 20px;
}
/* ITEMS */
.image-motion-item {
    width: clamp(82px, 133vw, 44px);
    aspect-ratio:1/1;
    flex-shrink:0;
}

.image-motion-item img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    border-radius:20px;
}

/* 🔥 PERFECT LOOP ANIMATIONS */

.motion-direction-left {
    animation: scrollLeft 35s linear infinite;
}

.motion-direction-right {
    animation: scrollRight 35s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}


/* LEFT MOVEMENT */
.motion-direction-left {
    animation: scrollLeft 35s linear infinite;
}

/* RIGHT MOVEMENT */
.motion-direction-right {
    animation: scrollRight 35s linear infinite;
}

/* KEYFRAMES */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.motion-direction-left {
    animation: scrollLeft 35s linear infinite;
}

.motion-direction-right {
    animation: scrollRight 35s linear infinite;
}
/* strip section */
.features-accordion {
  padding: 60px 20px;
  background: #f8fafc;
    background: radial-gradient(circle at top, rgba(0,188,212,0.08), transparent 60%), #f8f6f6;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}
.current-pageants{
  padding: 0 20px;
}
.features-accordion .container{
  max-width: 1100px;
}

.extra-feature img{
  width: 50%;
}
  .extra-feature{
  display: flex;
  align-items: start;
  gap: 10px;
}
.accordion-item.active .accordion-content.extra-feature-wrap {
    max-height: 100%;
}
@media (max-width: 992px) {
  .extra-feature{
  display: block;
  align-items: start;
}
.extra-feature img{
  width: 100%;
  margin-top: 10px;
}

}
/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  cursor: pointer;
}
/* Header */
.accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Accent bar */
.bar {
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: 3px;
  transition: 0.3s; 
}

.accordion-item.active .bar {
  height: 40px;
}

/* Title */
.accordion-header h3 {
  font-size: 20px;
  color: var(--text-color);
  margin: 0;
  transition: 0.3s;
}

/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding-left: 20px;
}

.accordion-content p {
  margin-top: 10px;
  color: #425466;
  line-height: 1.7;
  font-size: 16px !important;
}

/* Active */
.accordion-item.active .accordion-content {
  max-height: 300px;
}

/* Hover feel */
.accordion-item:hover h3 {
  color: var(--primary);
}


/* --------payment section  */
.payment-section {
  padding: 60px 20px;
  text-align: center;
}

.payment-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* Title */
.payment-title {
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

/* Subtitle */
.payment-subtitle {
  color: var(--text-color);
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Logo Grid */
.payment-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 28px;
  align-items: center;
  justify-items: center;
}

/* Logo Style */
.payment-logos img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

/* Hover Effect */
.payment-logos img:hover {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0%);
}
/* world map */
.world-section {
  background: #000; /* adjust if needed */
  text-align: center;
}

.map-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  opacity: 0.9;
  filter: brightness(0.9) contrast(1.1);
}

/* Stats Layout */
.stats {
  position: absolute;
  bottom: 66px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
}

/* Individual Item */
.stat-item {
  flex: 1;
}

/* Numbers */
.stat-item h2 {
  color: var(--primary); /* your theme color */
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Labels */
.stat-item p {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.stat-item h2 {
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
}

.map-image {
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.2));
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}
/* CTA */
.cta-premium {
  padding: 60px 20px;
  background: #ffffff;
}

/* Main card */
.cta-box {
  max-width: 1100px;
  margin: auto;
  padding: 70px;
  border-radius: 24px;

  background: #ffffff;

  /* soft premium border + depth */
  border: 1px solid #e5e7eb;
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.05),
    0 5px 15px rgba(0,0,0,0.03);

  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,0.08), transparent);
  top: -120px;
  right: -120px;
}

/* soft gold accent */
.cta-box::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(250,204,21,0.08), transparent);
  bottom: -120px;
  left: -120px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Badge */
.cta-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #334155;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

/* Heading */
.cta-content h2 {
  line-height: 1.3;
  margin-bottom: 20px;
  color: #0f172a;
}

.cta-content h2 span {
  color: var(--primary);
}

/* Paragraph */
.cta-content p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Primary */
.btn-primary {
background: linear-gradient(135deg, #f2d06b 0%, #bf9931 50%, #8c6a14 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250,204,21,0.25);
}

/* Secondary */
.btn-secondary {
  border: 1px solid #e5e7eb;
  padding: 14px 28px;
  border-radius: 10px;
  color: #0f172a;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f9fafb;
}

/* footer  */
.footer {
background: linear-gradient(
  135deg,
  #BF9931 0%,
  #1a1405 45%,
  #0a0a0a 70%,
  #000000 100%
);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5f5;
  margin: 0 12px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 13px;
  color: #94a3b8;
}
/* social icon */
.social-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.social-icons img, .main-btn img{
    width: 121px;
    height: 58px;
    object-fit: contain;
}
/* Icons stack */
.social-icons {
  position: absolute;
     bottom: 39px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 29px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
}


/* Main button */
.main-btn {
  position: relative;
right: 41px;
}

/* ACTIVE STATE */

/* Show icons */
.social-widget.active .social-icons {
  opacity: 1;
  transform: translateY(12); /* pushes icons upward */
  pointer-events: auto;
}

/* Move button ABOVE icons */
.social-widget.active .main-btn
 {
    transform: translateY(-276px);
}
.main-btn {
    position: relative;
    right: -1px;
}
@media (max-width: 992px) {
  .main-btn {
    right: 1px;
}
.social-widget.active .main-btn {
    transform: translateY(-288px);
}

}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: #0f172a; /* deep premium dark */
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

p {
  font-family: var(--font-family);
  color: #475569; /* soft readable gray */
  line-height: 1.7;
  margin: 0;
}
h1 { font-size: 56px; letter-spacing: -1px; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
p  { font-size: 16px; }
small { font-size: 14px; }

h2 {
  margin-bottom: 25px;
}

/* responsiveness */

@media (min-width: 1430px ) {
      .image-motion-track {
        gap: 105px;
    }
}
@media (min-width: 1630px ) {
      .image-motion-track {
        gap: 175px;
    }
    .image-motion-item {
    width: clamp(139px, 133vw, 44px);
    }
}
@media (min-width: 2530px ){
    .image-motion-item {
        width: clamp(214px, 133vw, 44px);
    }
  }
@media (max-width: 768px) {
  h1 { font-size: 44px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; }
p  { font-size: 15px !important; }
  .stat-item h2 {
    font-size: 16px;
}
.logo img {
    width: 12rem;
}
.social-icons img, .main-btn img {
    width: 31px;
    height: auto;
}
.main-btn {
    right: 2px;
}
.social-icons {
  gap: 6px;
}
    .social-widget.active .main-btn {
        transform: translateY(-297px);
    }
        .social-icons img, .main-btn img {
        width: 80px;
        height: auto;
    }
    .card-content {
    position: relative;
    height: 90px;
}
.card-logo {
    width: 95px;
    height: 95px;
}
.hero {
    margin-top: 3rem;
}
.cta-box {
    padding: 25px;
}
.cta-box {
    padding: 25px;
}
    .image-motion-track {
        gap: 25px;
    }
         .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 420px){
  .stat-item p {
    font-size: 10px !important;
  }
  .stat-item h2 {
        font-size: 12px;
    }
    h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
p  , .accordion-content p{ font-size: 14px !important; }
.payment-logos {
    grid-template-columns: repeat(auto-fit, minmax(101px, 1fr));
        gap: 5px;
}
    .image-motion-track {
        gap: 24px;
    }
    .image-motion-track-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}
    .stats {
    bottom: 20px;
    }
    .cta-box {
        padding: 20px;
    }
        .card-content p {
        font-size: 12px !important;
    }
        .card {
        padding: 10px;
    }
        .card {
        padding: 10px;
    }
}
@media (max-width: 375px){

.card-content p {
    font-size: 12px;
}
    .card-content h3 {
        font-size: 14px;
    }
        .card-content {
        height: 147px;
    }
    .card-logo {
    width: 121px;
    height: 121px;
    }
        .card-content {
        height: 120px;
    }
    .nav-links a {
    font-size: 14px;
}
  }
:root {
  --heading-color: #0f172a;   /* strong contrast */
  --text-color: #475569;      /* secondary */
  --muted-text: #94a3b8;      /* light text */
  --primary: #BF9931;         /* your gold tone */
  --bg-light: #ffffff;
}
h1, h2, h3 {
  color: var(--heading-color);
}

p {
  color: var(--text-color);
}