:root {
  --gold: #d4af37;
  --gold-light: #f7d774;

  --red: #c1121f;

  --black: #080808;

  --white: #ffffff;

  --gray: #c7c7c7;

  --glass: rgba(255, 255, 255, 0.06);

  --border: rgba(212, 175, 55, 0.18);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

  --gold-gradient: linear-gradient(135deg, #d4af37, #f7d774);
}

body {
  background: #080808;
  overflow-x: hidden;
}

/* NAVBAR */

.fusion-navbar {
  background: rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.4s;
}

.fusion-navbar .nav-link {
  color: #fff !important;

  margin-left: 25px;

  font-weight: 500;

  position: relative;
}

.fusion-navbar .nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;

  height: 2px;

  background: var(--gold);

  transition: 0.3s;
}

.fusion-navbar .nav-link:hover::after {
  width: 100%;
}

.nav-register-btn {
  margin-left: 30px;

  text-decoration: none;

  padding: 12px 28px;

  border-radius: 20px;

  color: #000;

  font-weight: 700;

  background: var(--gold-gradient);
}

/* HERO */

.fusion-hero {
  min-height: 100vh;

  position: relative;

  overflow: hidden;
}

/* .hero-video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;
} */

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Default */
.desktop-video{
    display:block;
}

.mobile-video{
    display:none;
}

/* Mobile */
@media (max-width: 991px){

    .desktop-video{
        display:none;
    }

    .mobile-video{
        display:block;
    }
}

.video-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.75) 35%,
    rgba(0, 0, 0, 0.55) 100%
  );

  z-index: 2;
}

.hero-content {
  position: relative;

  z-index: 3;
}

.hero-pill {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  border-radius: 100px;

  background: rgba(212, 175, 55, 0.1);

  border: 1px solid rgba(212, 175, 55, 0.18);

  color: var(--gold);

  font-weight: 600;

  backdrop-filter: blur(20px);
}
.hero-row{
    min-height:100vh;
    padding-top:100px;
}

@media(max-width:991px){
    .hero-row{
        padding-top:106px;
    }
    
.hero-content h4 {
  color: #fff;
line-height: 1.3 !important;
  font-size: 22px !important;

}
}
.hero-pill i {
  color: var(--gold);
}

.hero-content h4 {
  color: #fff;

  font-size: 36px;

  font-weight: 900;

  line-height: 1.1;

  margin: 25px 0;
}

.hero-content h4 span {
  background: var(--gold-gradient);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: #ddd;

  max-width: 700px;

  line-height: 1.9;

  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 40px;
}
.hero-register-btn,
.hero-register-btn-ot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 24px;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 700;

    transition: all .4s ease;

    white-space: nowrap;
}

/* Primary Button */
.hero-register-btn {
    background: var(--gold-gradient);
    color: #000;
}

/* Outline Button */
.hero-register-btn-ot {
    color: var(--gold);
    border: 2px solid var(--gold);
    background: transparent;
}

.hero-register-btn-ot i,
.hero-register-btn i {
    transition: transform .4s ease;
}

.hero-register-btn:hover,
.hero-register-btn-ot:hover {
    transform: translateY(-3px);
}

.hero-register-btn-ot:hover {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, .25);
}

.hero-register-btn:hover i,
.hero-register-btn-ot:hover i {
    transform: translateX(4px);
}

/* Button Group */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

/* Mobile */
@media (max-width: 576px) {

    .hero-actions {
        gap: 8px;
        justify-content: center;
    }

    .hero-register-btn,
    .hero-register-btn-ot {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }
}
.hero-register-btn-ot:hover i {
    transform: translateX(5px);
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.hero-actions a {
    flex: 1;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}
.hero-register-btn:hover {
  transform: translateY(-5px) scale(1.02);

  color: #000;
}

/* FEATURE MARQUEE */

.hero-features {
  margin-top: 55px;

  overflow: hidden;
}

.feature-track {
  display: flex;

  gap: 18px;

  width: max-content;

  animation: featureScroll 20s linear infinite;
}

.feature-chip {
  white-space: nowrap;

  padding: 14px 22px;

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(212, 175, 55, 0.15);

  color: #fff;

  transition: 0.4s;
}

.feature-chip:hover {
  border-color: var(--gold);

  transform: translateY(-5px);
}

.feature-chip i {
  color: var(--gold);

  margin-right: 8px;
}

@keyframes featureScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav-register-btn {
    margin: 20px 0 0;
    display: inline-flex;
  }
}



/* ABOUT SECTION */

.fusion-about {
    background: #080808;
    position: relative;
    overflow: hidden;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-weight: 600;
    backdrop-filter: blur(20px);
}

.about-title {
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
}

.about-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    color: #cfcfcf;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: justify;
}

/* STATS */

.about-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    min-width: 140px;
    padding: 20px;
    text-align: center;
    border-radius: 18px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.stat-box h3 {
    color: var(--gold);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box p {
    color: #ddd;
    margin: 0;
}

/* AWARDS */

.award-card {
    display: flex;
    align-items: center;
    gap: 22px;

    padding: 28px;

    border-radius: 24px;

    background: var(--glass);

    border: 1px solid var(--border);

    backdrop-filter: blur(20px);

    transition: all .4s ease;

    height: 100%;
}

.award-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212,175,55,.12);
}

.award-icon {
    width: 75px;
    height: 75px;

    min-width: 75px;

    border-radius: 20px;

    background: rgba(212,175,55,.12);

    border: 1px solid rgba(212,175,55,.15);

    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon i {
    color: var(--gold);
    font-size: 30px;
}

.award-label {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-card h4 {
    color: #fff;
    margin: 8px 0;
    font-size: 22px;
    font-weight: 700;
}

.award-card p {
    color: #bfbfbf;
    margin: 0;
    line-height: 1.6;
}

/* MOBILE */

@media (max-width: 991px) {

    .about-title {
        font-size: 38px;
        text-align: center;
    }

    .about-tag {
        margin: auto;
        display: flex;
        width: fit-content;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .award-card {
        flex-direction: column;
        text-align: center;
    }
}




/* PROCESS SECTION */

.fusion-process {
    background: #0b0b0b;
    position: relative;
}

.process-title {
    color: #fff;
    font-size: 52px;
    font-weight: 900;
}

.process-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-description {
    color: #cfcfcf;
    max-width: 750px;
    line-height: 1.9;
}

/* FEATURE CARDS */

.feature-card {
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    text-align: center;
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212,175,55,.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212,175,55,.08);
    border: 1px solid rgba(212,175,55,.15);
}

.feature-icon i {
    font-size: 32px;
    color: var(--gold);
}

.feature-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #c7c7c7;
    line-height: 1.8;
}

/* STEPS */

.step-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    text-align: center;
    transition: .4s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--gold-gradient);

    color: #000;
    font-weight: 900;
    font-size: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: #c7c7c7;
    line-height: 1.8;
}

/* MOBILE */

@media(max-width:991px){

    .process-title{
        font-size:38px;
    }

    .feature-card,
    .step-card{
        padding:25px;
    }

}


.fusion-contact {
    background: #080808;
    position: relative;
}

/* CONTACT CARD */
.contact-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;

    padding: 22px;
    margin-bottom: 20px;

    border-radius: 18px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);

    transition: 0.4s;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
}

.contact-icon i {
    color: var(--gold);
    font-size: 20px;
}

.contact-card h5 {
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-card p {
    color: #c7c7c7;
    margin: 0;
    line-height: 1.6;
}

/* FORM */
.contact-form-box {
    padding: 30px;
    border-radius: 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.contact-form-box h4 {
    color: #fff;
    font-weight: 800;
}

.fusion-input {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
}
.fusion-input::placeholder
{
  color: #999;
}
.fusion-input:focus {
    border-color: var(--gold);
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* BUTTON */
.fusion-btn {
    padding: 16px 25px;
    border: none;
    border-radius: 100px;

    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;

    transition: 0.4s;
}

.fusion-btn:hover {
    transform: translateY(-5px);
}

/* MAP */
.contact-map {
    height: 100%;
    min-height: 420px;

    border-radius: 24px;
    overflow: hidden;

    border: 1px solid var(--border);
    background: var(--glass);
}

/* MOBILE */
@media(max-width:991px){

    .contact-map{
        min-height: 300px;
    }

    .contact-form-box{
        padding: 20px;
    }
}



.fusion-footer {
    background: #070707;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* BRAND */
.footer-brand-box p {
    color: #c7c7c7;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-logo {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
}

.footer-logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SOCIAL */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--glass);
    border: 1px solid var(--border);

    color: var(--gold);

    transition: 0.4s;
}

.footer-social a:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* TITLES */
.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c7c7c7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

/* CONTACT */
.footer-contact {
    display: flex;
    gap: 12px;
    align-items: flex-start;

    color: #c7c7c7;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

/* BOTTOM */
.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #999;
}

.footer-bottom span {
    color: var(--gold);
    font-weight: 700;
}

/* MOBILE */
@media(max-width:991px){

    .footer-brand-box,
    .footer-title{
        text-align: center;
    }

    .footer-social{
        justify-content: center;
    }

    .footer-contact{
        justify-content: center;
        text-align: center;
    }

}


.navbar-nav .nav-link {
  color: #fff;
  position: relative;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold, #d4af37);
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ACTIVE STATE */
.navbar-nav .nav-link.active {
  color: var(--gold, #d4af37) !important;
  font-weight: 700;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}


.fusion-faq {
    background: #080808;
}

/* ACCORDION WRAPPER */
.fusion-accordion .accordion-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 18px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* BUTTON */
.fusion-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 18px 20px;
    box-shadow: none;
}

.fusion-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: rgba(212,175,55,0.08);
}

/* REMOVE DEFAULT BOOTSTRAP ICON STYLE */
.fusion-accordion .accordion-button::after {
    filter: invert(1);
}

/* BODY */
.fusion-accordion .accordion-body {
    color: #c7c7c7;
    line-height: 1.8;
    padding: 20px;
}

/* HOVER */
.fusion-accordion .accordion-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

/* ACTIVE BORDER */
.fusion-accordion .accordion-button:not(.collapsed) {
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* MOBILE */
@media(max-width:991px){
    .fusion-accordion .accordion-button{
        font-size: 15px;
    }
}