:root {
  --purple: #5b2db0;
  --purple-dark: #3d1a80;
  --purple-deep: #2a0e60;
  --gold: #f5c518;
  --gold-light: #ffd94a;
  --white: #ffffff;
  --gray-100: #f7f7fb;
  --gray-200: #ececf4;
  --gray-500: #888;
  --text: #1a1a2e;
  --text-muted: #666;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 01section */

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(252, 175, 38, 0.22),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgb(14, 42, 70) 0%,
      rgb(24, 56, 131) 58%,
      rgb(17, 38, 92) 100%
    );
  padding: 40px 8%;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 80px;
  z-index: 5;
}

.hero-left {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffd54a;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  backdrop-filter: blur(20px);
  margin-bottom: 30px;
}

.hero-badge i {
  font-size: 15px;
}

.hero-title {
  font-size: 50px;
  line-height: 0.95;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-buttons button {
  padding: 16px 35px;
  border: none;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.hero-buttons button:first-child {
  background: #e15517;
  color: white;
}

.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-buttons button:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  width: 200px;
  padding: 30px;
  border-radius: 30px 0px 30px 0px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  text-align: center;
  color: white;
  transition: 0.5s;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.04);
  background: rgba(255, 255, 255, 0.12);
}

.stat-card i {
  font-size: 42px;
  color: #fcaf26;
  margin-bottom: 18px;
}

.stat-card h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 8px;
}

.stat-card p {
  color: #cfcfcf;
  font-size: 16px;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.one {
  height: 400px;
  width: 400px;
  background: #4a6cf7;
  top: -100px;
  left: -100px;
  opacity: 0.4;
}

.two {
  height: 300px;
  width: 300px;
  background: #fcaf26;
  right: -50px;
  bottom: -100px;
  opacity: 0.2;
}

@media (max-width: 1000px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-right {
    grid-template-columns: 1fr 1fr;
  }
}

/* 02 section */
.slider {
  display: flex;
  background: #eaedff;
  align-items: center;
  position: relative;
  padding: 20px;
}

.cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-top: 40px;
  padding-bottom: 50px;
  scroll-behavior: auto;
  object-fit: cover;
  gap: 160px;
  margin: 0px 35px 0px 35px;
}
.cards::-webkit-scrollbar {
  display: none;
}

@keyframes spark {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.record-section {
  position: relative;
  overflow: hidden;
  background: #e15517;
  padding: 120px 50px 20px 50px;
  text-align: center;
  background-size: 400% 400%;
  animation: bgMove 8s ease infinite;
}

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

.record-tag p {
  width: 500px;
  margin: auto;
  color: rgb(12, 12, 165) !important;
  padding: 5px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  letter-spacing: 5px;
  font-size: 13px;
  font-weight: 900;
  border-radius: 10px;
  margin-bottom: 20px;
  animation: fadeDown 1s;
}

.record-heading {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  animation: slideUp 1s;
}

.record-text {
  width: 800px;
  max-width: 90%;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  animation: fade 2s;
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: 1px 1px 1px 1px rgb(136, 133, 133);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 32px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.btn:hover {
  box-shadow: 1px 1px #ffc83d;
}
.bt-rt {
  right: 5px;
}
.bt-lt {
  left: 5px;
}

.floating-icon {
  position: absolute;
  font-size: 55px;
  animation: float 6s infinite ease-in-out;
}

.cap {
  top: 20%;
  right: 8%;
  animation-delay: 1s;
}

.trophy {
  bottom: 35%;
  left: 12%;
  animation-delay: 3s;
}

.star {
  top: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: white;
  height: 600px;
  width: 500px;
  flex-shrink: 0;
  margin: 10px;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-12px) scale(1.06);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 0 20px 0;
}

.bottom-box {
  margin: 80px auto 0;
  max-width: 900px;
  padding: 25px;
  text-align: center;
  color: white;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

@media (max-width: 768px) {
  .top-text h1 {
    font-size: 38px;
  }
  .card {
    min-height: auto;
  }
}

/* ===== Responsive Fix ===== */

@media (max-width: 992px) {
  .hero {
    padding: 80px 5%;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .hero-left {
    max-width: 100%;
  }
  .hero-title {
    font-size: 60px;
  }
  .hero-desc {
    max-width: 100%;
    margin: auto;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-right {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    justify-items: center;
  }
  .stat-card {
    width: 180px;
  }
  .record-tag {
    width: 90%;
  }
  .record-text {
    width: 100%;
  }
  .cards {
    justify-content: center;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 20px;
  }
  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons button {
    width: 100%;
    max-width: 300px;
  }
  .hero-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-card {
    width: 100%;
    max-width: 280px;
  }
  .record-heading {
    font-size: 36px;
  }
  .record-tag {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 10px;
  }
  .floating-icon {
    font-size: 35px;
  }
  .card {
    width: 220px;
    height: 300px;
  }
  .bottom-box {
    margin: 50px 20px;
    padding: 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
  .record-heading {
    font-size: 30px;
  }
  .record-text {
    font-size: 15px;
  }
  .card {
    width: 350px;
    height: 470px;
  }
  .cap,
  .trophy,
  .star {
    display: none;
  }
}

.card {
  position: relative;
  overflow: hidden;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 14px;
  text-align: center;
  z-index: 2;
}

.card-content h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.card-record-badge {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #f5a623;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 1.4;
  text-transform: uppercase;
}

.card-record-badge i {
  margin-right: 4px;
  font-size: 10px;
}

/* ============================================================
   NEW: Grid layout for record-holder pages (replaces the
   horizontal slider look). Uses brand purple/gold variables
   instead of orange, same card shape/hover as above.
   ============================================================ */

.records-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  font-family: Georgia, serif;
  padding-top: 60px;
  margin-bottom: 10px;
}

.records-subtext {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 10px auto;
}

.cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  margin: 0 auto !important;
  max-width: 1100px;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 60px;
}

.cards-grid .card {
  width: 100% !important;
  height: 320px !important;
  border-radius: 20px 0 20px 0;
  margin: 0 !important;
}

.cards-grid .card:hover {
  box-shadow: 0 20px 40px rgba(42, 14, 96, 0.35);
}

/* gold badge instead of orange, ties back to logo */
.cards-grid .card-record-badge {
  color: var(--gold);
}

.records-footer-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  text-align: center;
  padding: 18px 20px 22px 20px;
}

.records-footer-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .records-heading {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid .card {
    height: 260px !important;
  }
}

/* ============================================================
   NEW: Exact screenshot-style showcase — plain image grid,
   no name overlay, gray-to-brand-color split background,
   credit line at the bottom. Matches the reference screenshot
   layout 1:1, only orange swapped for purple/gold.
   ============================================================ */

.records-showcase {
  position: relative;
  padding: 60px 8% 0;
  background: linear-gradient(
    to bottom,
    var(--gray-100) 0%,
    var(--gray-100) 45%,
    var(--purple-deep) 45%,
    var(--purple-deep) 100%
  );
}

.records-showcase-heading {
  text-align: center;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--text);
  margin-bottom: 50px;
}

.records-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.records-showcase-grid .item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.records-showcase-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.records-showcase-grid .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 5%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.records-showcase-grid .item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 10px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  z-index: 2;
}

.records-showcase-grid .item .showcase-badge {
  display: block;
  position: static;
  padding: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.records-showcase-grid .item .showcase-badge i {
  margin-right: 4px;
  font-size: 9px;
}

.records-showcase-credit {
  text-align: center;
  padding: 18px 20px 24px;
}

.records-showcase-credit p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

@media (max-width: 1024px) {
  .records-showcase {
    padding: 50px 6% 0;
  }
  .records-showcase-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .records-showcase {
    padding: 40px 5% 0;
  }
  .records-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-bottom: 45px;
  }
  .records-showcase-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .records-showcase-grid .item span {
    font-size: 13px;
    padding: 10px 8px;
  }
  .records-showcase-grid .item .showcase-badge {
    font-size: 10px;
  }
  .records-showcase-credit p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .records-showcase {
    padding: 30px 4% 0;
  }
  .records-showcase-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 320px;
    padding-bottom: 35px;
  }
  .records-showcase-heading {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .records-showcase-grid .item span {
    font-size: 14px;
    padding: 10px;
  }
  .records-showcase-credit {
    padding: 14px 15px 20px;
  }
  .records-showcase-credit p {
    font-size: 11px;
  }
}