/* New Css */
/* ================Scroller ===============*/

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.7);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}
/* ==================Scroller===================== */

/*==================NAVBAR Starts================ */
header {
  padding-bottom: 0px !important;
}

.cc-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;

    padding: 14px 40px;

    /* Glassmorphism */
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);


    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}



.cc-nav.scrolled {
  position: fixed;
  background-color: #fa9220;

  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cc-nav-container {
  position: relative;
  min-height: 65px;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.cc-logo img {
  position: absolute;
  height: 56px;
  bottom: 14px;
}

.cc-menu {
  margin-left: auto;
  margin-right: 20px;
}

.cc-menu ul {
  display: flex;
  list-style: none;
  gap: 38px;
}

.cc-menu a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase !important;
  font-family: "Rubik", sans-serif !important;
}

/* subtle hover */
.cc-menu a:hover {
  color: #fa9220;
}

.cc-nav.scrolled .cc-menu a:hover {
  color: #ffffff; /* or whatever you want */
}

.cc-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.cc-toggle span {
  width: 24px;
  height: 3px;
  background: white;
}

/* MOBILE */

@media (max-width: 1200px) {
  .cc-logo {
    height: 50px;
    position: absolute;
    top: 8px;
    left: 15px;
  }

  .cc-logo img {
    height: 45px;
  }

  .cc-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .cc-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .cc-menu ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    position: absolute;
    top: 90px;
  }

  .cc-menu a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
  }

  .cc-menu a:hover {
    color: #ffffff;
  }

  .cc-nav {
    position: fixed;
    z-index: 1001;
  }

  .cc-toggle {
    display: flex !important;
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 9999;
  }
}

@media (max-width: 560px) {
     .cc-logo {
        top: 15%;
    }
    .cc-logo img {
        height: 33px!important;
    }
}

/*================== NAVBAR END=================== */

/*================ Banner Starts=================  */

/* Banner Contents */

.cc-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.cc-banner-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.cc-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.6)
  );
}

/* ===== Content ===== */

.cc-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.cc-banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: end;
}

.cc-side-icons {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  display: flex;
  flex-direction: column;
  gap: 35px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px 11px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cc-side-icons a {
  color: #fff !important;
  font-size: 18px;
  transition: 0.3s;
}

.cc-side-icons a:hover {
  color: #fff !important;
  transform: translateX(4px);
}

svg {
  /* color:#fff !important; */
  font-size: 25px !important;
}

.linees2 {
  border: 1px solid rgba(250, 146, 32, 0.3);
}

.cc-banner-inner {
  max-width: 500px;
  margin-bottom: 180px;
}

/* ===== Heading ===== */
.cc-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 30px;
}

.cc-ban-logo {
    width: auto;
    height: 310px;
    display: block;
}

/* ===== BUTTONS ===== */

.cc-btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cc-btn {
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
}

.cc-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: #ffffff !important;
}

.cc-btn-outline:hover {
  background: rgba(250, 146, 32, 0.1);
  border-color: #fa9220;
  color: #fa9220 !important;
  transform: translateY(-2px);
}

.cc-btn-primary {
  background: linear-gradient(135deg, #fa9220, #ff7a00);
  color: #fff !important;
}

.cc-btn-primary:hover {
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .cc-banner {
    height: 90vh;
  }

  .cc-side-icons {
    position: absolute;
    left: 0px;
    top: 43%;
    gap: 30px;
    padding: 20px 9px;
  }

  .cc-heading {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .cc-banner-inner {
    margin-left: 0;
    margin-right: 0;
  }

  .cc-ban-logo{
    height: 155px;
  }

  .cc-btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cc-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cc-heading {
    font-size: 21px;
  }
}

/* Banner Contents */

.new-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.new-banner .row {
  width: 100%;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.6) 100%
    );
}

.new-banner .container-fluid {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .new-banner-right-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .new-banner-right {
    width: 100%;
  }

  .box-btn {
    justify-content: center;
  }
}

/* ================Banner Ends================= */

/* Event Sect Starts */
.events {
  position: relative;
  background: #fff7f0; /* base color */
  padding: 80px 0;
  overflow: hidden; /* 🔥 required for cropping */
}

.events .container {
  position: relative;
  z-index: 2;
}

/*.event-row {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*}*/

.event-card-lay {
  display: flex;
}

.event-card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.event-number {
  position: absolute;
  top: 5px;
  left: 16px;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  pointer-events: none;
  font-family: sans-serif;
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-content h3 {
  font-family: "Rubik", sans-serif !important;
  font-size: 28px;
  font-weight: 1000;
  color: #fa9220;
  margin-bottom: 10px;
}

.event-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}

.event-footer {
  margin-top: auto;
     display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 14px;
}

.register-btn {
  text-transform: uppercase;
  background-color: var(--green);
  color: #fff;
  border: none;
  font-size: 13px;
  border-radius: 6px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif !important;
}

.btn.register-btn {
       background-color: var(--green);
    color: #fff;
    padding: 6px 15px;
    font-size: 16px;
    width:100%;
}

.btn.register-btn:hover {
      background-color: transparent;
    color:  var(--green);
    border:1px solid  var(--green);
}

.event-meta {
  text-align: right;
  font-size: 12px;
  color: #fa9220;
}

.event-meta span {
  display: block;
  font-weight: 600;
  font-size: 13px;
}

.events::after {
  content: "";
  position: absolute;
  bottom: -245px;
  left: -235px;
  width: 70%;
  max-width: 670px;
  aspect-ratio: 1 / 1;
  background: url("/assets-front/image/sledge.png") no-repeat;
  background-size: auto;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.events::before {
  content: "";
  position: absolute;
  top: -25px;
  right: -132px;
  width: 70%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  background: url("/assets-front/image/wom.png") no-repeat;
  background-size: auto;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.decor-top-left {
  position: absolute;
  top: -105px;
  left: -330px;

  width: 70%;
  max-width: 400px;
  aspect-ratio: 1 / 1;

  background: url("/assets-front/image/basket.png") no-repeat;
  background-size: contain;

  opacity: 0.08;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .events {
    padding: 0px;
  }

  .decor-top-left {
    top: -15px;
    left: -157px;
    width: 70%;
    max-width: 225px;
  }

  .events::before {
    top: -8px;
    right: -69px;
    width: 50%;
    max-width: 300px;
  }
  .events::after {
    width: 70%;
    bottom: -92px;
    left: -104px;
    max-width: 265px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .decor-top-left {
    top: -15px;
    left: -120px;
    width: 70%;
    max-width: 220px;
  }
  .events::before {
    top: -11px;
    right: -31px;
    width: 50%;
    max-width: 600px;
  }
  .events::after {
    bottom: -74px;
    left: -101px;
    width: 70%;
    opacity: 0.09;
    max-width: 220px;
  }
}

/*Events Modal box Strts*/
.modal-content {
  border-radius: 6px;
  border: none;
  padding: 10px 5px;
}

.modal-header {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
}

.modal-sub {
  text-transform: none;
  font-size: 1.5rem;
}

.modal-header .close {
  font-size: 22px;
  opacity: 0.6;
}

.modal-body {
  padding: 20px;
}

.modal-body label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.modal-body .form-control {
  height: 25px;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: none;
  font-size: 14px;
}

.modal-body .form-control:focus {
  border-color: var(--green);
  box-shadow: none;
}

.form-group {
  margin-bottom: 18px;
}

.submit-btn {
  background-color: var(--green);
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 5px;
}

.submit-btn:hover {
  background-color: var(--yollow);
}

/*Events Modal box Ends*/

/* Event Sect Ends*/

/* NEW OBJECTIVE SECTION OVERRIDE */

#objective .attend-card-wrapper{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 30px;
    padding-top: 40px;
    max-width: 1400px;
}

/* Card Design */
#objective .attend-card{
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
    min-height: 140px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease; 
    will-change: transform;
    cursor: default;
    background: #fff7f0;
}

/* Last Card Center */
#objective .attend-card:last-child{
    grid-column: 1 / -1;
    max-width: 48%;
    justify-self: center;
}

/* Icon */
#objective .attend-card img{
    width: 75px;
    min-width: 75px;
}

/* Text */
#objective .attend-card h5{
    margin: 0;
    line-height: 1.4;
    font-size : 16px;
}

#objective .attend-card:hover{
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.10),
        0 4px 12px rgba(0,0,0,0.06);
}

.home-about .home-about-card-inner img {
    margin : 0!important;
}

@media (max-width: 768px){

    #objective .attend-card-wrapper{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #objective .attend-card{
        max-width: 100%;
        min-height: auto;
        padding: 22px 20px;
    }

    /* Reset last card special centering */
    #objective .attend-card:last-child{
        grid-column: auto;
        max-width: 100%;
        justify-self: stretch;
    }

    #objective .attend-card img{
        width: 65px;
        min-width: 65px;
    }

    #objective .attend-card h5{
        font-size: 12px;
        line-height: 1.35;
    }
}

/* NEW OBJECTIVE SECTION OVERRIDE ENDS*/

/*  OUTCOME SECTION OVERRIDE STARTS */

.outcomes{
    position: relative;
    background: #fff7f0;
    padding: 55px 0;
    overflow: hidden;
}

#outcome .attend-card-wrapper{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 30px;
    padding-top: 40px;
    max-width: 1400px;
}

/* Card Design */
#outcome .attend-card{
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
    min-height: 140px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 2rem;
    background: #ffffff;
 
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
    will-change: transform;
    cursor: default;
}

/* Icon */
#outcome .attend-card img{
    width: 75px;
    min-width: 75px;
}

/* Text */
#outcome .attend-card h5{
    margin: 0;
    line-height: 1.4;
    font-size: 16px;
}

/* Hover Effect */
#outcome .attend-card:hover{
    transform: translateY(-6px) scale(1.02);

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.10),
        0 4px 12px rgba(0,0,0,0.06);
}

/* Line Arts */
.outcome-decor-left{
   position: absolute;
  top: -75px;
  left: -60px;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  background: url("/assets-front/image/comp.png") no-repeat;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}

.outcome-decor-right{
  position: absolute;
  bottom: -282px;
  right: -141px;
  width: 100%;
  max-width: 435px;
  aspect-ratio: 1 / 1;
  background: url("/assets-front/image/foot-player.png") no-repeat;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}
/* Line Arts */

/* RESPONSIVE */

@media (max-width: 768px){

    #outcome .attend-card-wrapper{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #outcome .attend-card{
        max-width: 100%;
        min-height: auto;
        padding: 22px 20px;
    }

    #outcome .attend-card img{
        width: 65px;
        min-width: 65px;
    }

    #outcome .attend-card h5{
        font-size: 1.1rem;
        line-height: 1.35;
    }
}

@media (max-width: 1200px) {
  .outcomes {
    padding: 0px;
  }

   .outcome-decor-left {
    top: -11px;
    left: -26px;
    width: 100%;
    max-width: 160px;
  }

  .outcome-decor-right {
    bottom: -98px;
    right: -59px;
    width: 100%;
    max-width: 151px;
    opacity: 0.17;
  }
}

@media (max-width: 480px) { 
  .outcome-decor-left{
    top: -20px;
    left: -80px;
    width: 100%;
    max-width: 200px;
  }

  .outcome-decor-right{
    bottom: -82px;
    right: -50px;
    width: 100%;
    max-width: 153px;
    opacity: 0.15;
  }
}

/* OUTCOME SECTION OVERRIDE ENDS */

/* Partners Section Starts */

.part {
  position: relative;
  background: linear-gradient(to bottom, #fff7f0, #ffffff);
}

.home-partner-card-inner {
  margin-bottom: 35px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== CARD ===== */
.partner-card {
  min-height: 110px;
  border-radius: 10px;
  /* background: rgba(250, 146, 32, 0.05);
  border: 1px solid rgba(250, 146, 32, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
  background: #ffffff;
  border: 1px solid #e5e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.partner-card img {
  max-height: 50px;
  max-width: 80%;
  object-fit: contain;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    min-height: 90px;
  }

  .partner-card img {
    max-height: 40px;
  }
}
/* Partners Section Ends */

/* Gallery Section Starts*/

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item.small {
  aspect-ratio: 6 / 6;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 6 / 2.9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .gallery-grid {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    gap: 6px;
  }

  .gallery-item.small {
    aspect-ratio: 4 / 6;
  }

  .gallery-item.wide {
    aspect-ratio: 6 / 4.4;
  }
}

/* Gallery Section Ends*/

/* New Contact Section */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 40px;
}

.contact-info h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Rubik", sans-serif !important;
}

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.contact-block {
  margin-bottom: 20px;
}

.contact-block strong {
  display: block;
  color: var(--green);
  margin-bottom: 5px;
}

.contact-block span {
  color: #333;
  font-size: 14px;
}

.contact-form {
  background: #fff;
  padding: 20px 22px 29px 21px;
  border-radius: 14px;
  border: 1px solid rgba(250, 146, 32, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.contact-form p {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.contact-form .form-control {
  border: none;
  border-bottom: 2px solid rgba(250, 146, 32, 0.4);
  border-radius: 0;
  background: transparent;
  height: 42px;
  font-size: 16px;
  box-shadow: none;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif !important;
  color: #555;
  font-size: 13px;
}
.contact-form textarea.form-control {
  height: 90px;
  resize: none;
}

.contact-form textarea::placeholder {
  color: #2b2b2b;
  opacity: 1;
}

.contact-form .form-control:focus {
  border-bottom-color: var(--green);
  box-shadow: none;
}

.contact-form textarea.form-control {
  height: 90px;
  resize: none;
  padding-top: 10px;
  text-align: left;
}

.submit-btn {
  margin-top: 15px;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 13px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #fa9220;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    gap: 30px;
  }

  .contact-info h3 {
    font-size: 25px;
  }
}

/* New Contact Section Ends*/


/* Footer Changes */

/* =========================
   EVENT TAGS STYLING
========================= */

.event-tags {
    display: flex;
    flex-wrap: wrap;
    /*gap: 10px;*/
    gap:4px;
    margin: 0px 0 0px;
}

.event-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /*padding: 4px 16px;*/
        padding: 4px 8px;
    border-radius: 50px;

    background: linear-gradient(135deg, #ffffff, #f3f6ff);
    border: 1px solid rgba(13, 110, 253, 0.15);

    color: #0d3b66;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;

    box-shadow:
        0 4px 10px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.7);

    transition: all 0.3s ease;
    overflow: hidden;
    cursor: default;
}

/* subtle glow */
.event-tag::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -30px;
    width: 40px;
    height: 120%;
    background: rgba(255,255,255,0.5);
    transform: rotate(25deg);
    transition: 0.5s;
}

/* hover effect */
.event-tag:hover {
    transform: translateY(-3px);
background: linear-gradient(135deg, #fa9220, #fa9220bd);
    color: #fff;
    border-color: transparent;

    box-shadow:
        0 10px 20px rgba(13, 110, 253, 0.25);
}

.event-tag:hover::before {
    left: 120%;
}

/* move dot/icon to START */
/*.event-tag::after {*/
/*    content: "";*/
/*    width: 6px;*/
/*    height: 6px;*/
/*    min-width: 6px;*/
/*    border-radius: 50%;*/
/*    background: currentColor;*/
/*    margin-right: 8px;*/
/*    opacity: 0.7;*/
/*    order: -1;*/
/*}*/

/* MOBILE */
@media(max-width:768px){
.event-card{
    height:auto;
}
    .event-tags{
        gap:8px;
    }

    .event-tag{
        font-size:11px;
        padding:7px 14px;
    }
}

.category-grid{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
}

.category-option{
    padding:0px 14px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
}

.category-option input{
    margin:0;
}