:root {
  --primary-purple: #5c0f8b;
  --primary-purple-dark: #2e0846;
  --primary-purple-rgb: 92, 15, 139;
  --primary-purple-dark-rgb: 46, 8, 70;
  --primary-gold: #c0966b;
  --primary-gold-hover: #b4824e;
  --primary-gold-hover-border: #ae7d4a;
  --primary-gold-rgb: 192, 150, 107;
  --secondary-purple: #a389ba;
  --secondary-purple-rgb: 163, 137, 186;
  --secondary-gold: #dcc4aa;
  --tertiary-purple: #d4c9e24d;
  --tertiary-gold: #efe6d9;
  --text-dark: #2b2130;
  --text-body: #3f3b42;
  --text-soft: #6b6070;
  --text-on-dark: #fff;
  --text-on-dark-muted: #e4d7ee;
  --text-on-dark-soft: #f1e9f7;
  --surface: #fff;
  --surface-tint: #faf7fb; }

html,
body {
  font-family: 'Lato', sans-serif;
  overflow-x: hidden; }

header.fixed-top .navbar {
  background: #5c0f8b;
  padding: 14px 0; }

header.fixed-top .navbar .navbar-brand {
  margin-left: 0 !important;
  padding: 0 !important; }

.navbar-head {
  display: flex;
  align-items: center;
  gap: 14px; }

header.fixed-top .navbar .navbar-toggler {
  position: static !important;
  width: 42px;
  height: 42px;
  line-height: 40px;
  text-align: center;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 8px !important;
  box-shadow: none !important; }
  header.fixed-top .navbar .navbar-toggler span {
    color: #fff !important;
    font-size: 18px; }
  header.fixed-top .navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(192, 150, 107, 0.35) !important; }

@supports (padding-top: env(safe-area-inset-top)) {
  header.fixed-top .navbar {
    padding-top: calc(14px + env(safe-area-inset-top)); } }
@media (max-width: 767.98px) {
  header.fixed-top .navbar .navbar-brand img {
    width: 110px; }

  header.fixed-top .navbar .main-navbar {
    top: calc(100% + 8px) !important;
    width: calc(100% - 24px) !important;
    left: 12px !important;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(46, 8, 70, 0.35);
    overflow: hidden;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 20; }

  header.fixed-top .navbar .main-navbar .nav-item a {
    margin: 0 !important;
    padding: 14px 18px !important;
    border-bottom: 1px solid #d4c9e24d !important;
    font-size: 15px; }

  header.fixed-top .navbar .main-navbar .nav-item:last-child a {
    border-bottom: 0 !important; }

  header.fixed-top .navbar .main-navbar .nav-item a.btn-gold {
    display: flex !important;
    justify-content: center;
    margin: 12px !important;
    padding: 13px !important;
    border-bottom: 0 !important;
    border-radius: 8px !important;
    color: #fff !important; } }
@media (max-width: 399.98px) {
  header.fixed-top .navbar .navbar-brand img {
    width: 96px; }

  header.fixed-top .navbar .main-navbar {
    width: calc(100% - 16px) !important;
    left: 8px !important; } }
.hack-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #5c0f8b;
  box-shadow: 0 2px 12px rgba(51, 51, 51, 0.1); }
  .hack-header .navbar {
    min-height: 82px;
    padding: 10px 0; }
  .hack-header .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0; }
    .hack-header .navbar-brand img {
      display: block;
      width: 190px;
      height: auto; }
  .hack-header .navbar-nav {
    gap: 5px; }
    .hack-header .navbar-nav .nav-item {
      display: flex;
      align-items: center; }
    .hack-header .navbar-nav .nav-link {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 12px;
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.2;
      color: #FFF;
      transition: .3s ease; }
      .hack-header .navbar-nav .nav-link:hover, .hack-header .navbar-nav .nav-link:focus {
        color: #c0966b; }
      .hack-header .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 3px;
        height: 2px;
        background: #c0966b;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .3s ease; }
      .hack-header .navbar-nav .nav-link:hover::after, .hack-header .navbar-nav .nav-link:focus::after {
        transform: scaleX(1); }
    .hack-header .navbar-nav .register-link {
      margin-left: 8px;
      padding: 11px 20px;
      color: #fff !important;
      background: #c0966b;
      border: 2px solid #5c0f8b;
      border-radius: 8px; }
      .hack-header .navbar-nav .register-link:hover, .hack-header .navbar-nav .register-link:focus {
        color: #fff !important;
        background: #2e0846;
        border-color: #2e0846; }
      .hack-header .navbar-nav .register-link::after {
        display: none; }
  .hack-header .navbar-toggler {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: none !important;
    outline: none !important;
    transition: .3s ease; }
    .hack-header .navbar-toggler i {
      font-size: 20px; }
    .hack-header .navbar-toggler:hover, .hack-header .navbar-toggler:focus {
      color: #5c0f8b;
      background: #ffffff; }

@media screen and (min-width: 1200px) {
  .hack-header .navbar {
    min-height: 88px; }
  .hack-header .navbar-brand img {
    width: 200px; }
  .hack-header .navbar-nav {
    gap: 7px; }
    .hack-header .navbar-nav .nav-link {
      padding: 11px 13px;
      font-size: 16px; }
    .hack-header .navbar-nav .register-link {
      margin-left: 10px;
      padding: 12px 21px; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .hack-header .navbar {
    min-height: 76px;
    padding: 8px 0; }
  .hack-header .navbar-brand {
    flex-shrink: 0; }
    .hack-header .navbar-brand img {
      width: 165px; }
  .hack-header .navbar-nav {
    gap: 0; }
    .hack-header .navbar-nav .nav-link {
      padding: 9px 7px;
      font-size: 14px; }
    .hack-header .navbar-nav .register-link {
      margin-left: 4px;
      padding: 10px 12px; } }
@media screen and (max-width: 991.98px) {
  .hack-header .navbar {
    min-height: 68px;
    padding: 9px 0; }
  .hack-header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .hack-header .navbar-brand {
    min-width: 0;
    margin-right: 12px; }
    .hack-header .navbar-brand img {
      width: 145px;
      height: auto; }
  .hack-header .navbar-toggler {
    display: flex;
    flex-shrink: 0; }
  .hack-header .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(260px, calc(100% - 24px));
    padding: 8px;
    margin-top: 0;
    background: #2e0846;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(46, 8, 70, 0.35);
    overflow: hidden;
    z-index: 20; }
  .hack-header .navbar-nav {
    width: 100%;
    gap: 2px;
    align-items: stretch !important; }
    .hack-header .navbar-nav .nav-item {
      width: 100%;
      display: block; }
    .hack-header .navbar-nav .nav-link {
      width: 100%;
      justify-content: flex-start;
      padding: 12px 14px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 6px; }
      .hack-header .navbar-nav .nav-link:hover, .hack-header .navbar-nav .nav-link:focus {
        color: #c0966b;
        background: rgba(255, 255, 255, 0.08); }
      .hack-header .navbar-nav .nav-link::after {
        display: none; }
    .hack-header .navbar-nav .register-link {
      width: 100%;
      margin: 7px 0 4px;
      padding: 12px 14px;
      justify-content: center;
      color: #fff !important;
      background: #c0966b; }
      .hack-header .navbar-nav .register-link:hover {
        background: #c0966b; } }
@media screen and (max-width: 575px) {
  .hack-header .navbar {
    min-height: 64px;
    padding: 8px 0; }
  .hack-header .navbar-brand {
    margin-right: 8px; }
    .hack-header .navbar-brand img {
      width: 130px; }
  .hack-header .navbar-toggler {
    width: 42px;
    height: 42px; }
    .hack-header .navbar-toggler i {
      font-size: 19px; } }
@media screen and (max-width: 380px) {
  .hack-header .navbar-brand img {
    width: 118px; }
  .hack-header .navbar-toggler {
    width: 40px;
    height: 40px; } }
html {
  scroll-behavior: smooth; }

section[id] {
  scroll-margin-top: 90px; }

p {
  font-size: clamp(14px, 1vw, 18px); }

.hack-section {
  padding: 70px 0;
  background: #fff; }

.section-heading {
  text-align: center;
  margin-bottom: 35px; }
  .section-heading .section-label {
    margin-bottom: 8px; }
  .section-heading h2 {
    color: #5c0f8b;
    font-size: clamp(24px, 2.5vw, 44px);
    font-weight: 700;
    margin: 0; }
    .section-heading h2 span {
      color: #c0966b; }

.section-label {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  background: #d4c9e24d;
  color: #5c0f8b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px; }

.btn-gold,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease; }

.btn-gold {
  background: #c0966b;
  color: #fff;
  border: 1px solid #c0966b; }
  .btn-gold:hover {
    background: #b4824e;
    border-color: #ae7d4a;
    color: #fff; }

.hack-hero {
  position: relative;
  padding: 125px 0 110px;
  overflow: hidden;
  background: linear-gradient(120deg, #000000b5 0%, #0000009c 55%, #c0966b 100%), url("../images/ghru-pune.png") center/cover no-repeat;
  background-blend-mode: multiply; }
  .hack-hero::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 60px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(rgba(192, 150, 107, 0.4) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: .6;
    pointer-events: none; }

.hack-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px; }
  .hack-hero-content h1 {
    margin: 14px 0 8px;
    font-size: clamp(34px, 5vw, 82px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff; }
    .hack-hero-content h1 span {
      color: #c0966b; }
  .hack-hero-content .hero-tagline {
    color: #fff;
    font-size: clamp(23px, 2vw, 36px);
    margin-bottom: 6px; }
    .hack-hero-content .hero-tagline span {
      color: #c0966b; }
  .hack-hero-content .hero-organized {
    color: #e4d7ee;
    font-size: clamp(20px, 1.15vw, 22px);
    line-height: 1.6; }

.hack-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(220, 196, 170, 0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px; }
  .hack-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c0966b; }

.hero-buttons {
  gap: 12px;
  margin: 20px 0 45px; }

.btn-outline-dark {
  background: #fff;
  color: #2b2130;
  border: 1px solid #e1cee7; }
  .btn-outline-dark:hover {
    background: #faf7fb;
    border-color: #e1cee7;
    color: #2b2130; }

.hero-stats {
  margin: auto;
  margin-top: -80px !important;
  width: 75% !important;
  background: #020101 !important;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(46, 8, 70, 0.12);
  overflow: hidden; }

.hero-stat {
  padding: 24px 10px;
  text-align: center;
  border-right: 1px solid rgba(92, 15, 139, 0.15); }
  .hero-stat:last-child {
    border-right: 0; }
  .hero-stat strong {
    display: block;
    color: #c0966b;
    font-size: 22px;
    margin-bottom: 8px; }
  .hero-stat b {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff; }
  .hero-stat small {
    display: block;
    margin-top: 5px;
    color: #e5e5e5;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .4px; }

.hero-partners {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  text-align: center; }

.hero-partners-label {
  display: block;
  margin-bottom: 14px;
  color: #e4d7ee;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase; }

.hero-partners-logos img {
  height: 64px;
  width: 140px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 4px 14px rgba(46, 8, 70, 0.18); }

.about-hack-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 40px;
  align-items: stretch; }

.about-image {
  height: 100%;
  min-height: 330px; }
  .about-image img {
    width: 100%;
    height: 97%;
    object-fit: cover;
    border-radius: 8px; }

.about-content h2,
.info-card h2 {
  margin: 10px 0 15px;
  color: #5c0f8b;
  font-size: clamp(27px, 2.5vw, 44px);
  font-weight: 700; }
  .about-content h2 span,
  .info-card h2 span {
    color: #c0966b; }

.about-content p {
  color: #3f3b42;
  line-height: 1.8;
  margin: 0 0 14px; }
  .about-content p:last-of-type {
    margin-bottom: 0; }

.skill-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 25px; }
  .skill-list div {
    padding: 25px 12px;
    text-align: center;
    background: #fff;
    border: 1px solid #d4c9e24d;
    border-radius: 10px;
    color: #5c0f8b;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(92, 15, 139, 0.07); }
    .skill-list div span {
      display: block;
      margin-top: 10px;
      color: #3f3b42;
      font-size: 17px;
      font-weight: 600; }

.info-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  padding: 47px;
  border-radius: 0;
  background: #fff;
  border: 1px solid #d4c9e24d;
  box-shadow: 0 6px 18px rgba(92, 15, 139, 0.06); }
  .info-card p {
    margin: 0 0 14px;
    color: #3f3b42;
    line-height: 1.8; }
    .info-card p:last-of-type {
      margin-bottom: 0; }

.card-icon {
  min-width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid #dcc4aa;
  border-radius: 50%;
  background: #efe6d9;
  font-size: 25px; }

.domains-section {
  background: #faf7fb; }

.domain-card {
  height: 100%;
  padding: 22px 15px;
  text-align: center;
  background: #fff;
  border: 1px solid #dcc4aa;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(92, 15, 139, 0.08);
  transition: .3s ease; }
  .domain-card:hover {
    transform: translateY(-4px);
    border-color: #a389ba;
    box-shadow: 0 10px 25px rgba(92, 15, 139, 0.08); }
  .domain-card .domain-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 50%;
    background: #c0966b;
    color: #fff;
    font-size: 14px; }
  .domain-card h4 {
    margin: 17px 0 5px;
    color: #000000;
    font-size: clamp(18px, 1vw, 19px);
    font-weight: 600; }
  .domain-card p {
    margin: 0;
    color: #6b6070;
    line-height: 1.6; }

.highlight-section {
  position: relative;
  overflow: hidden;
  padding: 45px 0;
  color: #fff; }

.highlight-section::before {
  content: "";
  position: absolute;
  inset: -15px;
  background-image: url("../images/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 0; }

.highlight-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 8, 70, 0.72), rgba(92, 15, 139, 0.6));
  z-index: 1; }

.highlight-section .container {
  position: relative;
  z-index: 2; }

.highlight-section .section-heading h2 {
  color: #fff; }
  .highlight-section .section-heading h2 span {
    color: #c0966b; }

.highlight-section .section-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(163, 137, 186, 0.5); }

.highlight-item {
  height: 100%;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px;
  border: 1px solid rgba(163, 137, 186, 0.6);
  border-radius: 7px;
  background: rgba(46, 8, 70, 0.25);
  backdrop-filter: blur(3px); }
  .highlight-item strong {
    color: #c0966b;
    font-size: 20px; }
  .highlight-item span {
    text-align: center;
    color: #f1e9f7;
    font-size: 16px; }

.schedule-section {
  padding: 65px 0 90px;
  background: #fff; }

.schedule-section .section-heading {
  text-align: center;
  margin-bottom: 55px; }
  .schedule-section .section-heading .section-label {
    margin-bottom: 12px;
    padding: 7px 16px;
    font-size: 14px; }

.timeline {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start; }
  .timeline::before {
    content: "";
    position: absolute;
    top: 160px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: #c0966b;
    z-index: 0; }

.timeline-item {
  position: relative;
  z-index: 1;
  padding: 0 15px; }
  .timeline-item::after {
    content: "";
    position: absolute;
    top: 152px;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translateX(-50%);
    background: #fff;
    border: 3px solid #c0966b;
    border-radius: 50%;
    z-index: 2; }
  .timeline-item:nth-child(even) {
    padding-top: 200px; }

.timeline-card {
  width: 100%;
  min-height: 105px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e5d9eb;
  border-radius: 10px;
  box-shadow: 0 7px 22px rgba(92, 15, 139, 0.09); }
  .timeline-card h4 {
    margin: 0 0 9px;
    color: #5c0f8b;
    font-size: clamp(17px, 1.3vw, 23px);
    font-weight: 700;
    line-height: 1.4; }
  .timeline-card span {
    display: block;
    color: #0f0f0e;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.4;
    font-weight: bold; }

@media (max-width: 991px) {
  .timeline {
    display: block;
    position: relative; }
    .timeline::before {
      display: block;
      top: 0;
      bottom: 0;
      left: 9px;
      right: auto;
      width: 2px;
      height: auto;
      background: #c0966b; }

  .timeline-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 0 32px !important; }
    .timeline-item:last-child {
      margin-bottom: 0; }
    .timeline-item::after {
      display: block;
      top: 50%;
      left: 9px;
      transform: translate(-50%, -50%); }

  .timeline-card {
    min-height: 0;
    align-items: flex-start;
    text-align: left; }
    .timeline-card span {
      font-size: 15px; } }
@media (max-width: 767px) {
  .schedule-section {
    padding: 45px 0 55px; }

  .schedule-section .section-heading {
    margin-bottom: 30px; }

  .timeline-item {
    margin-bottom: 16px; }

  .timeline-card {
    padding: 16px 18px; }
    .timeline-card span {
      font-size: 14px; } }
.rules-section {
  padding: 60px 0;
  background: rgba(212, 201, 226, 0.25); }

.rules-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 35px;
  border-radius: 12px; }

.shortlisting {
  padding-right: 30px;
  border-right: 1px solid #dcc4aa; }
  .shortlisting h3 {
    color: #5c0f8b;
    font-size: clamp(22px, 1.2vw, 26px);
    font-weight: bold; }
  .shortlisting ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none; }
    .shortlisting ul li {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 22px 0;
      border-bottom: 1px solid #d4c9e24d;
      color: #3f3b42;
      font-size: 15px;
      font-weight: bold; }
      .shortlisting ul li:last-child {
        border-bottom: 0; }

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #5c0f8b;
  color: #fff;
  font-size: 10px; }

.rules h3 {
  color: #5c0f8b;
  font-size: clamp(22px, 1.2vw, 26px);
  font-weight: bold; }

.rules-grid .rule-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #dcc4aa;
  border-radius: 10px;
  background: #fff;
  color: #3f3b42;
  font-size: 15px;
  height: 100%; }

.rule-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #5c0f8b;
  color: #fff;
  font-size: 13px; }

.rulebook-wrap {
  margin-top: 45px;
  padding-top: 40px;
  border-top: 1px solid #dcc4aa; }

.rulebook-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px; }
  .rulebook-heading h3 {
    margin: 0;
    color: #5c0f8b;
    font-size: clamp(20px, 1.3vw, 25px);
    font-weight: bold; }

.rulebook-query {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #dcc4aa;
  color: #5c0f8b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease; }
  .rulebook-query:hover {
    background: #c0966b;
    border-color: #c0966b;
    color: #fff; }

.rulebook-item {
  background: #fff;
  border: 1px solid #d4c9e24d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(92, 15, 139, 0.06); }

.rulebook-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 8px 22px;
  background: #fff;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background .3s ease; }
  .rulebook-item-header[aria-expanded="true"] {
    background: rgba(192, 150, 107, 0.89); }
    .rulebook-item-header[aria-expanded="true"] .rulebook-chevron i {
      transform: rotate(180deg); }

.rulebook-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #5c0f8b;
  color: #fff;
  font-weight: 800;
  font-size: 14px; }

.rulebook-title {
  flex: 1;
  color: #000000;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700; }

.rulebook-chevron {
  flex-shrink: 0;
  color: #c0966b;
  font-size: 14px; }
  .rulebook-chevron i {
    display: block;
    transition: transform .3s ease; }

.rulebook-item-body {
  padding: 0 22px 22px 76px; }
  .rulebook-item-body ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .rulebook-item-body li {
    position: relative;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid #d4c9e24d;
    color: #3f3b42;
    line-height: 1.6; }
    .rulebook-item-body li:last-child {
      border-bottom: 0;
      padding-bottom: 0; }
    .rulebook-item-body li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 18px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #c0966b; }

.rulebook-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(212, 201, 226, 0.6);
  color: #5c0f8b;
  font-weight: 600; }
  .rulebook-note i {
    color: #c0966b;
    font-size: 16px; }

@media (max-width: 575px) {
  .rulebook-heading {
    flex-direction: column;
    align-items: flex-start; }

  .rulebook-item-header {
    padding: 14px 16px;
    gap: 10px; }

  .rulebook-number,
  .rulebook-icon {
    width: 30px;
    height: 30px;
    font-size: 12px; }

  .rulebook-item-body {
    padding: 0 16px 16px 16px; } }
.patron-tier {
  margin-top: 40px; }
  .patron-tier:first-of-type {
    margin-top: 0; }
  .patron-tier h3 {
    margin-bottom: 18px;
    color: #5c0f8b;
    font-size: clamp(20px, 1.3vw, 25px);
    font-weight: bold;
    text-align: center; }

.patron-card {
  height: 100%;
  padding: 22px 15px;
  text-align: center;
  background: #fff;
  border: 1px solid #dcc4aa;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(92, 15, 139, 0.08);
  transition: .3s ease; }
  .patron-card:hover {
    transform: translateY(-4px);
    border-color: #a389ba;
    box-shadow: 0 10px 25px rgba(92, 15, 139, 0.08); }
  .patron-card .patron-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #c0966b;
    color: #fff;
    font-size: 18px; }
  .patron-card .patron-photo {
    width: 84px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 3px solid #c0966b;
    object-fit: cover;
    display: block; }
  .patron-card h4 {
    margin: 0;
    color: #000000;
    font-size: clamp(14px, 0.95vw, 18px);
    font-weight: 700; }
  .patron-card p {
    margin: 4px 0 0;
    color: #6b6070;
    line-height: 1.5; }
    .patron-card p a {
      color: #5c0f8b;
      font-weight: 600;
      text-decoration: none; }
      .patron-card p a:hover {
        color: #c0966b;
        text-decoration: underline; }
      .patron-card p a.phone-link {
        display: inline-flex;
        align-items: center;
        gap: 8px; }
  .patron-card.has-photo {
    padding: 35px 20px;
    border-radius: 16px; }
    .patron-card.has-photo .patron-photo {
      width: 140px;
      max-width: 100%;
      margin: 0 auto 20px;
      border-width: 4px; }
    .patron-card.has-photo h4 {
      color: #2b2130;
      font-size: clamp(16px, 0.95vw, 18px); }
    .patron-card.has-photo p {
      margin: 8px 0 0; }

.patron-grid .patron-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.team-section {
  background: #fff; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px; }

.team-block h3 {
  color: #5c0f8b;
  font-size: clamp(16px, 1.04vw, 20px);
  margin: 8px 0 15px; }

.person-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px;
  padding: 12px;
  border: 1px solid #d4c9e24d;
  border-radius: 8px;
  background: #fff; }
  .person-card .person-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d4c9e24d; }
  .person-card strong,
  .person-card small {
    display: block; }
  .person-card strong {
    color: #2b2130;
    font-size: 10px; }
  .person-card small {
    color: #6b6070;
    font-size: 8px;
    margin-top: 3px; }

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .partner-list span {
    padding: 15px;
    background: #faf7fb;
    border: 1px solid #d4c9e24d;
    border-radius: 7px;
    color: #5c0f8b;
    font-size: 10px; }

.cta-section {
  padding: 35px 0;
  background: #faf7fb; }

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px;
  border-radius: 12px;
  background: linear-gradient(110deg, #efe6d9, #fff); }
  .cta-box h2 {
    color: #5c0f8b;
    margin: 0 0 8px;
    font-size: clamp(32px, 1.98vw, 38px);
    font-weight: 700; }
  .cta-box p {
    color: #3f3b42;
    font-weight: 600; }

.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; }
  .qr-wrap small {
    font-size: 16px;
    color: #5c0f8b; }

.qr-box {
  width: 188px;
  height: 188px;
  display: grid;
  place-items: center;
  border: 1px dashed #a389ba;
  border-radius: 8px;
  color: #5c0f8b; }
  .qr-box span {
    display: block;
    font-size: 35px; }
  .qr-box img {
    width: 173px;
    height: 162px;
    object-fit: contain; }

.hack-footer {
  color: #fff; }

.footer-top {
  padding: 45px 0;
  text-align: center;
  background: #2e0846; }
  .footer-top h2 {
    margin-bottom: 30px;
    font-size: 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  .contact-grid div {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .contact-grid strong {
    color: #c0966b; }
  .contact-grid span {
    color: #e4d7ee;
    font-size: 11px; }

.footer-bottom {
  padding: 45px 0 25px;
  background: #5c0f8b; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 35px; }

.footer-brand h3 {
  margin: 0;
  font-size: 20px; }
.footer-brand span {
  color: #c0966b;
  font-size: 12px; }

.footer-grid h4 {
  margin-bottom: 15px;
  color: #c0966b;
  font-size: 11px; }

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: #e4d7ee;
  font-size: 10px;
  text-decoration: none; }

.footer-grid p {
  display: block;
  margin-bottom: 8px;
  color: #e4d7ee; }

@media (max-width: 991px) {
  .hack-hero-content {
    max-width: 100%; }

  .about-hack-grid,
  .rules-wrapper,
  .team-grid {
    grid-template-columns: 1fr; }

  .shortlisting {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #dcc4aa;
    padding-bottom: 25px; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .hack-section {
    padding: 45px 0; }

  .hack-hero {
    padding-top: 110px;
    padding-bottom: 100px; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 25px; }

  .hero-partners {
    margin-top: 22px; }

  .hero-partners-logos img {
    height: 48px;
    width: 100px;
    padding: 8px 12px; }

  .hero-stat {
    padding: 18px 8px;
    border-bottom: 1px solid rgba(92, 15, 139, 0.15); }
    .hero-stat:nth-child(2) {
      border-right: 0; }
    .hero-stat:nth-last-child(-n+2) {
      border-bottom: 0; }
    .hero-stat strong {
      font-size: 18px; }
    .hero-stat b {
      font-size: 18px; }
    .hero-stat small {
      font-size: 11px; }

  .about-hack-grid {
    gap: 25px; }

  .about-image img {
    height: 250px; }

  .card-icon {
    display: none !important; }

  .skill-list {
    grid-template-columns: repeat(2, 1fr); }

  .cta-box {
    flex-direction: column;
    align-items: center;
    text-align: center; }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .hero-buttons {
    flex-wrap: nowrap; }
    .hero-buttons .col-auto {
      width: 50%; }

  .btn-gold,
  .btn-outline-dark {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px; }

  .hero-stat {
    padding: 14px 6px; }
    .hero-stat strong {
      font-size: 15px; }
    .hero-stat b {
      font-size: 15px; }
    .hero-stat small {
      font-size: 9.5px; } }
.footer-responsive {
  width: 100%;
  padding: 35px 0 20px;
  color: #fff;
  background: #5c0f8b; }
  .footer-responsive a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease; }
    .footer-responsive a:hover {
      color: #c0966b; }
  .footer-responsive .footer-top {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(220, 196, 170, 0.35); }
  .footer-responsive .footer-logo {
    display: inline-block; }
    .footer-responsive .footer-logo img {
      width: 190px;
      max-width: 100%;
      height: auto;
      display: block; }
  .footer-responsive .footer-contact h5 {
    margin: 0 0 12px;
    color: #c0966b;
    font-size: clamp(16px, 1.09vw, 21px);
    font-weight: 800;
    letter-spacing: .5px; }
  .footer-responsive .footer-contact p {
    margin: 5px 0;
    color: #e4d7ee;
    line-height: 1.6; }
    .footer-responsive .footer-contact p strong {
      color: #c0966b;
      font-weight: 700; }
  .footer-responsive .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 7px;
    border: 1px solid rgba(220, 196, 170, 0.55);
    border-radius: 50%;
    color: #fff;
    font-size: 15px; }
    .footer-responsive .social-links a:last-child {
      margin-right: 0; }
    .footer-responsive .social-links a:hover {
      background: #c0966b;
      border-color: #c0966b;
      color: #fff;
      transform: translateY(-2px); }
  .footer-responsive .privacy {
    color: #e4d7ee;
    font-size: 14px;
    line-height: 1.6; }
    .footer-responsive .privacy a {
      color: #e4d7ee; }
      .footer-responsive .privacy a:hover {
        color: #c0966b; }
  .footer-responsive .row:last-child p {
    margin-bottom: 0;
    color: #e4d7ee;
    line-height: 1.6; }
    .footer-responsive .row:last-child p a {
      color: #c0966b; }
      .footer-responsive .row:last-child p a:hover {
        color: #dcc4aa; }
  @media (max-width: 991.98px) {
    .footer-responsive {
      padding: 30px 0 18px; }
      .footer-responsive .footer-top {
        padding-bottom: 22px; }
      .footer-responsive .footer-logo img {
        width: 180px;
        margin: 0 auto; }
      .footer-responsive .footer-contact {
        margin-top: 12px; }
      .footer-responsive .social-links {
        padding-left: 0 !important; } }
  @media (max-width: 767.98px) {
    .footer-responsive {
      padding: 25px 15px 18px; }
      .footer-responsive .footer-top {
        padding-bottom: 20px; }
      .footer-responsive .footer-logo img {
        width: 165px; }
      .footer-responsive .footer-contact {
        margin-top: 10px; }
        .footer-responsive .footer-contact h5 {
          margin-bottom: 10px; }
        .footer-responsive .footer-contact p {
          margin: 4px 0; }
      .footer-responsive .social-links {
        padding: 0 !important; }
        .footer-responsive .social-links a {
          width: 32px;
          height: 32px;
          margin-right: 5px;
          font-size: 14px; }
      .footer-responsive .privacy {
        font-size: 12px;
        line-height: 1.9; }
        .footer-responsive .privacy a {
          margin: 0 2px; }
      .footer-responsive .row:last-child p {
        text-align: center; } }
  @media (max-width: 575.98px) {
    .footer-responsive .footer-logo img {
      width: 150px; }
    .footer-responsive .privacy {
      font-size: 11.5px; } }

@media (min-width: 1920px) {
  body {
    font-size: 18px; }

  .hack-section {
    padding: 90px 0; }

  .section-heading {
    margin-bottom: 45px; }
    .section-heading .section-label {
      font-size: 17px;
      padding: 7px 16px; }

  .hack-hero {
    padding: 180px 0 160px; }

  .hack-hero-content {
    max-width: 780px; }

  .hack-badge {
    font-size: 17px;
    padding: 9px 20px; }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-dark {
    font-size: 19px;
    padding: 14px 30px; }

  .hero-stat {
    padding: 30px 15px; }
    .hero-stat strong {
      font-size: 27px; }
    .hero-stat b {
      font-size: 33px; }
    .hero-stat small {
      font-size: 17px; }

  .hero-partners-label {
    font-size: 17px; }

  .hero-partners-logos img {
    height: 72px;
    width: 160px; }

  .skill-list div {
    font-size: 32px;
    padding: 30px 15px; }
    .skill-list div span {
      font-size: 19px; }

  .domain-card {
    padding: 28px 20px; }
    .domain-card .domain-icon {
      width: 53px;
      height: 53px;
      font-size: 23px; }

  .highlight-section {
    padding: 60px 0; }

  .highlight-item {
    padding: 29px; }
    .highlight-item strong {
      font-size: 35px; }
    .highlight-item span {
      font-size: 15px; }

  .schedule-section {
    padding: 80px 0 110px; }

  .schedule-section .section-heading {
    margin-bottom: 65px; }
    .schedule-section .section-heading .section-label {
      font-size: 17px; }

  .timeline {
    max-width: 1500px; }
    .timeline::before {
      top: 190px; }

  .timeline-item::after {
    top: 182px; }
  .timeline-item:nth-child(even) {
    padding-top: 230px; }

  .timeline-card {
    padding: 15px 22px;
    min-height: 120px; }
    .timeline-card span {
      font-size: 16px; }

  .rules-section {
    padding: 80px 0; }

  .rules-wrapper {
    gap: 40px;
    padding: 45px; }

  .shortlisting ul li {
    font-size: 20px;
    padding: 25px 0;
    gap: 18px; }

  .rules-grid .rule-item {
    font-size: 18px;
    padding: 17px 20px;
    gap: 18px; }

  .check-icon {
    width: 26px;
    height: 26px;
    font-size: 12px; }

  .rule-icon {
    width: 40px;
    height: 40px;
    font-size: 15px; }

  .patron-card {
    padding: 28px 20px; }
    .patron-card .patron-icon {
      width: 50px;
      height: 50px;
      font-size: 20px; }
    .patron-card .patron-photo {
      width: 155px; }
    .patron-card.has-photo {
      padding: 40px 25px; }
      .patron-card.has-photo .patron-photo {
        width: 155px; }

  .person-card {
    padding: 14px;
    gap: 12px; }
    .person-card .person-icon {
      width: 40px;
      height: 40px; }
    .person-card strong {
      font-size: 13px; }
    .person-card small {
      font-size: 11px; }

  .partner-list {
    gap: 10px; }
    .partner-list span {
      padding: 16px;
      font-size: 12px; }

  .cta-section {
    padding: 50px 0; }

  .cta-box {
    padding: 45px;
    gap: 40px; }

  .qr-box {
    width: 210px;
    height: 210px; }
    .qr-box span {
      font-size: 40px; }
    .qr-box img {
      width: 190px;
      height: 180px; }

  .qr-wrap small {
    font-size: 17px; }

  .footer-responsive .footer-logo img {
    width: 210px; }
  .footer-responsive .social-links a {
    width: 40px;
    height: 40px;
    font-size: 17px; }
  .footer-responsive .privacy {
    font-size: 16px; }

  .prize-card .prize-rank {
    font-size: 16px; } }
.prize-section {
  background: #faf7fb; }

.prize-podium {
  padding-top: 70px; }

.prize-card {
  position: relative;
  height: 100%;
  padding: 45px 25px 35px;
  text-align: center;
  background: #fff;
  border: 1px solid #dcc4aa;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(92, 15, 139, 0.08);
  transition: .3s ease; }
  .prize-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(92, 15, 139, 0.12); }
  .prize-card .prize-rank-no {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d4c9e24d;
    color: #5c0f8b;
    font-size: 12px;
    font-weight: 800; }
  .prize-card .prize-icon {
    width: 50px;
    height: 50px;
    margin: -78px auto 18px;
    background: #efe6d9;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.15);
    color: #c0966b;
    font-size: 19px; }
  .prize-card .prize-rank {
    display: block;
    margin-bottom: 8px;
    color: #6b6070;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 14px; }
  .prize-card .prize-amount {
    margin: 0;
    color: #5c0f8b;
    font-weight: 700;
    font-size: clamp(24px, 2vw, 30px); }
  .prize-card.gold {
    border-color: #5c0f8b;
    background: linear-gradient(165deg, #fff 55%, rgba(92, 15, 139, 0.07)); }
    .prize-card.gold .prize-crown {
      position: absolute;
      top: -52px;
      left: 50%;
      transform: translateX(-50%);
      color: #c0966b;
      font-size: 22px; }
    .prize-card.gold .prize-rank-no {
      background: #5c0f8b;
      color: #fff; }
    .prize-card.gold .prize-icon {
      background: #5c0f8b;
      border-color: #fff;
      color: #fff; }
  .prize-card.silver .prize-rank-no {
    background: rgba(176, 176, 184, 0.18);
    color: #7a7a82; }
  .prize-card.silver .prize-icon {
    background: #5c0f8b;
    color: #fff; }
  .prize-card.bronze .prize-rank-no {
    background: rgba(169, 112, 47, 0.15);
    color: #a9702f; }
  .prize-card.bronze .prize-icon {
    background: #5c0f8b;
    color: #fff; }

@media (min-width: 992px) {
  .prize-card.gold {
    transform: translateY(-24px);
    box-shadow: 0 20px 45px rgba(92, 15, 139, 0.18); }
    .prize-card.gold:hover {
      transform: translateY(-30px); } }

/*# sourceMappingURL=style.css.map */
