@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "CustomFont";
  src: url("../fonts/greatvibes-regular.ttf") format("truetype");
  /* url("../fonts/Tempting.ttf") format("truetype"); */
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", serif;
  transition: all 0.6s;
  /*scroll-behavior: smooth;*/
}
.deco-font {
  font-family: "CustomFont";
}
.bg-starts {
  background-image: url("../images/bg-stars.jpg");
  background-position: center;
  background-size: cover;
}
.main-width {
  max-width: 1600px;
  width: 90%;
  margin: auto;
}
.header-gold-grid {
  background: var(
    --gold-line,
    linear-gradient(349deg, #c39052 -44.49%, #f9df7b 91.44%)
  );
  box-shadow: 0px 4px 6px 0px #000;
}
.gold-grid {
  background: var(
    --gold-line,
    linear-gradient(349deg, #c39052 -44.49%, #f9df7b 91.44%)
  );
}
.banner {
  background-image: url("../images/banner.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s, transform 1.6s;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.register-button {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.41) inset;
}

.slider-container {
  position: relative;
  /* width: 80%; */
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: none;
  /* text-align: center; */
}

.slide.active {
  display: block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  padding: 10px;
}

.timeline {
  margin-top: 20px;
  text-align: center;
}

.timeline ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}

.timeline li {
  margin: 0 10px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
  font-size:15px;
  /* background-color: #ddd; */
  /* font-weight: bold; */
}

.timeline li.active {
  background-color: #ffc107;
  padding: 5px 10px;
  color: #000;
}


   .faq-content {
    transition: max-height 0.5s ease, opacity 0.5s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
     padding:10px 10px;
   
}
.faq-content.active {
    opacity: 1;
    padding:10px 10px;
}
    
                  .dropdown {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    perspective: 1000px;
                    z-index: 100;
                  }

                  .dropdown:hover {
                    cursor: pointer;
                  }

                  .dropdown:hover .dropdown_menu li {
                    display: block;
                  }

                  .dropdown_menu {
                    position: absolute;
                    top: 100%;
                    left: 0%;
                    width: 100%;
                    perspective: 1000px;
                    width: 250px;
                    overflow: hidden;
                    z-index: -1;
                  }

                  .dropdown_menu li {
                    display: none;
                    color: #fff;
                    background-color: #D72124;
                    padding: 12px 14px;
                    border-top:1px solid #fff;
                    width: 100%;
                    font-size: 14px;
                    opacity: 0;
                  }

.dropdown_item-1,.dropdown_item-2
{                    border-bottom:1px solid #e2e2e2;
    }
    .dropdown_menu-2 .dropdown_item-1 {
                    transform-origin: top center;
                    
                    animation: rotateX 300ms 60ms ease-in-out forwards;
                  }

                  .dropdown_menu-2 .dropdown_item-2 {
                    transform-origin: top center;
                    animation: rotateX 300ms 120ms ease-in-out forwards;
                  }

                  .dropdown_menu-2 .dropdown_item-3 {
                    transform-origin: top center;
                    animation: rotateX 300ms 180ms ease-in-out forwards;
                  }

                  .dropdown_menu-2 .dropdown_item-4 {
                    transform-origin: top center;
                    animation: rotateX 300ms 240ms ease-in-out forwards;
                  }

                  .dropdown_menu-2 .dropdown_item-5 {
                    transform-origin: top center;
                    animation: rotateX 300ms 300ms ease-in-out forwards;
                  }

                  @keyframes rotateX {
                    0% {
                      opacity: 0;
                      transform: rotateX(-90deg);
                    }
                    50% {
                      transform: rotateX(-20deg);
                    }
                    100% {
                      opacity: 1;
                      transform: rotateX(0deg);
                    }
                  }

    .dropdownd {
        list-style: none;
        padding: 0;
        margin: 0;
        overflow: hidden;
        opacity: 0;
        height: 0;
        display: none; /* Hidden by default */
        transition: opacity 0.5s ease, height 0.5s ease;
    }

    .dropdown-toggle:hover {
        cursor: pointer;
    }

    .dropdownd.showing {
        display: block; /* Make it visible for animation */
    }

    .dropdownd.visible {
        opacity: 1;
    }
    .hamburger,
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}

.hamburger .line,
.close-hamburger .line {
  width: 80%;
  height: 2px;
  background-color: #B88D36;
  transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1),
.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2),
.close-hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3),
.close-hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation styling */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #D72124;
  color: white;
  transition: left 0.3s ease;
  z-index: 15;
  padding-top: 20px;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  /*color: #fff;*/
  text-decoration: none;
}

/* Style for the close hamburger as a cross (X) */
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;

  border-radius: 50%;
  background-color: #fff;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 20;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  left: 25%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

/* Transform lines into an X */
.close-hamburger .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent page scroll when nav is open */
/* Ensure the mobile navigation is scrollable */
.mobile-nav {
  overflow-y: auto;
}

/* Prevent the body from scrolling when nav is open */
body.nav-open {
  overflow: hidden;
}

.scroll-to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 9999;
    bottom: 20px;
    right: 20px;
    background-color: #D72124;
    color: white;
    border: none;

    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}


.scroll-to-top:hover {
    background-color: #223035;
}

.icon-bar {
    position: fixed;
    top: 50%;
    z-index:9;
    transform: translateY(-50%);
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.icon-bar a:hover {
    background-color: #000;
}

.facebook {
    background: #3B5998;
    color: white;
}

.twitter {
    background: #55ACEE;
    color: white;
}

.google {
    background: #dd4b39;
    color: white;
}

  
.accordion {
    max-height: 400px;
    min-height: auto;
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #ccc #f5f5f5; /* Customize scrollbar */
}

.accordion::-webkit-scrollbar {
    width: 6px; /* Adjust scrollbar width */
}

.accordion::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Color of the scrollbar */
    border-radius: 4px;
}

      .accordion-item {
        border-bottom: 1px solid #fff;
      }

      .accordion-header {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        padding: 15px;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .accordion-header i {
        transition: transform 0.3s ease-in-out;
      }

      .accordion-header.active {
        background: #ffc107;
        color: #000;
      }
      .accordion-header.active i {
        transform: rotate(180deg);
      }

      .accordion-content {
        max-height: 0;
        color: #2f2f2f;
        overflow: hidden;
        /* background: #f9f9f9; */
        padding: 0px 30px;
        transition: max-height 0.5s ease-in-out;
      }
  
