@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 4px !important;
  height: 8px !important;
  border-radius: 1px !important;
  background-color: #f26ea0 !important;
}

::-webkit-scrollbar-thumb {
  width: 2px !important;
  height: 8px !important;
  border-radius: 20px !important;
  background-color: #f26ea0 !important;
}

::-webkit-scrollbar-track {
  width: 8px !important;
  height: 8px !important;
  border-radius: 1px !important;
  background-color: #ffffff !important;
}

body {
  background-color: #eeeeee;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #310542;
  font-size: 16px;
}

.loading {
  overflow: hidden;
  max-height: 100vh;
}

.d-center, .about-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.heading-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #623275;
  position: relative;
  width: fit-content;
  padding-bottom: 14px;
  margin-bottom: 2.5rem;
  z-index: 500;
}
.heading-text::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #7a0431, transparent 70%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.heading-text::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e03677;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.heading-text-white {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  position: relative;
  width: fit-content;
  padding-bottom: 14px;
  margin-bottom: 2.5rem;
  z-index: 500;
}
.heading-text-white::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #ffffff, transparent 70%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.heading-text-white::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #623275;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.text-justify {
  text-align: justify;
}

.btn-main, .btn-main-light {
  all: unset;
  font-size: 14px;
  background: transparent;
  border: none;
  position: relative;
  color: #ffffff;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: 12px 2px;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.btn-main::before, .btn-main-light::before, .btn-main::after, .btn-main-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}
.btn-main::before, .btn-main-light::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: url("../img/bg/gradient-bg.png");
  background-size: cover;
  background-position: center;
}
.btn-main::after, .btn-main-light::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: rgba(212, 210, 210, 0.1568627451);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}
.btn-main:hover::before, .btn-main-light:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}
.btn-main:hover::after, .btn-main-light:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 112%;
  height: 108%;
}
.btn-main:active::after, .btn-main-light:active::after {
  transition: 0s;
  transform: translate(0, 10%);
}

.btn-main-light {
  color: #310542;
}
.btn-main-light::before {
  background: #ffffff;
}

.bg-gradient, .cubeSwiper .swiper-pagination-bullet-active {
  background: linear-gradient(45deg, #ea1366 0%, #f857a6 30%, #9515d4 60%, #f857a6 70%, #96073e 90%);
}

.text-gradient, .navbar-nav .nav-link.active, .waves-effect, .social-connect span a, .social-connect span i {
  background: linear-gradient(45deg, #ed3775, #cb357a, #91347e 75%, #593274 86%, #cb357a, #cb357a);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.bg-blur {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
}

.container-content {
  position: relative;
  z-index: 500;
}

.underline-primary {
  position: relative;
  z-index: 500;
}
.underline-primary::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #623275;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-primary:hover::after, .underline-primary:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-primary.active::after {
  width: 100%;
  opacity: 1;
}

.hover-primary:hover {
  color: #623275;
}

.text-primary {
  color: #623275 !important;
}

.bg-primary {
  background-color: #623275;
}

.underline-secondary {
  position: relative;
  z-index: 500;
}
.underline-secondary::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #e03677;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-secondary:hover::after, .underline-secondary:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-secondary.active::after {
  width: 100%;
  opacity: 1;
}

.hover-secondary:hover {
  color: #e03677;
}

.text-secondary {
  color: #e03677 !important;
}

.bg-secondary {
  background-color: #e03677;
}

.underline-primary-dark-2 {
  position: relative;
  z-index: 500;
}
.underline-primary-dark-2::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #310542;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-primary-dark-2:hover::after, .underline-primary-dark-2:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-primary-dark-2.active::after {
  width: 100%;
  opacity: 1;
}

.hover-primary-dark-2:hover {
  color: #310542;
}

.text-primary-dark-2 {
  color: #310542 !important;
}

.bg-primary-dark-2 {
  background-color: #310542;
}

.underline-primary-dark-1 {
  position: relative;
  z-index: 500;
}
.underline-primary-dark-1::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #631383;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-primary-dark-1:hover::after, .underline-primary-dark-1:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-primary-dark-1.active::after {
  width: 100%;
  opacity: 1;
}

.hover-primary-dark-1:hover {
  color: #631383;
}

.text-primary-dark-1 {
  color: #631383 !important;
}

.bg-primary-dark-1 {
  background-color: #631383;
}

.underline-red {
  position: relative;
  z-index: 500;
}
.underline-red::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #d81616;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-red:hover::after, .underline-red:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-red.active::after {
  width: 100%;
  opacity: 1;
}

.hover-red:hover {
  color: #d81616;
}

.text-red {
  color: #d81616 !important;
}

.bg-red {
  background-color: #d81616;
}

.underline-blue {
  position: relative;
  z-index: 500;
}
.underline-blue::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #159ed0;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-blue:hover::after, .underline-blue:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-blue.active::after {
  width: 100%;
  opacity: 1;
}

.hover-blue:hover {
  color: #159ed0;
}

.text-blue {
  color: #159ed0 !important;
}

.bg-blue {
  background-color: #159ed0;
}

.underline-green {
  position: relative;
  z-index: 500;
}
.underline-green::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #0fbe3e;
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-green:hover::after, .underline-green:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-green.active::after {
  width: 100%;
  opacity: 1;
}

.hover-green:hover {
  color: #0fbe3e;
}

.text-green {
  color: #0fbe3e !important;
}

.bg-green {
  background-color: #0fbe3e;
}

.underline-orange {
  position: relative;
  z-index: 500;
}
.underline-orange::after {
  bottom: -1px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: hsl(38, 88%, 51%);
  opacity: 0.6;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, opacity 0.3s ease;
}
.underline-orange:hover::after, .underline-orange:focus::after {
  width: 100%;
  opacity: 1;
}
.underline-orange.active::after {
  width: 100%;
  opacity: 1;
}

.hover-orange:hover {
  color: hsl(38, 88%, 51%);
}

.text-orange {
  color: hsl(38, 88%, 51%) !important;
}

.bg-orange {
  background-color: hsl(38, 88%, 51%);
}

.loader-con {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #423250;
  background-image: url("../img/bg/purple-bg.png");
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-con .main-loader img {
  width: 400px;
  height: 300px;
}
.loader-con .main-loader .loader-text {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
  text-align: center;
}
.loader-con .main-loader .loading-text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

#contactus .map {
  padding: 10px;
  border: 1px solid #623275;
  border-radius: 20px;
}
#contactus .map iframe {
  border-radius: 10px;
}
#contactus .contact-links p {
  margin-bottom: 0;
}
#contactus .contact-links a {
  color: #623275;
  transition: 0.3s all ease-in;
}
#contactus .contact-links a:hover, #contactus .contact-links a:focus {
  color: #e03677;
}
#contactus input,
#contactus textarea {
  border: 1px solid #ccc !important;
  background: transparent !important;
  transition: border-color 0.3s ease-in;
}
#contactus input:focus,
#contactus textarea:focus {
  border-color: #623275 !important;
  box-shadow: none !important;
}
#contactus label::after,
#contactus label::after {
  background: transparent !important;
}

/* Toast Container */
.toast-msg {
  min-width: 250px;
  margin-left: -125px;
  background-color: #28a745;
  /* Green for success */
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: absolute;
  z-index: 10000;
  left: 10%;
  bottom: 30px;
  font-size: 17px;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Show the toast */
.toast-msg.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.card-1 {
  width: 280px;
  height: auto;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 10px;
  padding: 15px 8px;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease;
  cursor: pointer;
  margin: 15px;
}
.card-1::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-100%) rotate(25deg);
  transition: transform 1s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.card-1:hover {
  transform: scale(1.03);
}
.card-1:hover::before {
  transform: translateX(100%) rotate(25deg);
  opacity: 1;
}
.card-1:not(:hover)::before {
  transform: translateX(-100%) rotate(25deg);
  opacity: 0;
}
.card-1 .speaker-profile {
  width: 200px;
  height: 200px;
  margin: 20px 8px;
}
.card-1 .speaker-name {
  text-align: center;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card-1 .speaker-info {
  font-size: 15px;
  font-weight: 400;
  padding: 0;
}

.card-2 {
  width: 240px;
  height: auto;
  border-radius: 10px;
  padding: 15px 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin: 15px;
  box-shadow: 0px 0px 0px rgba(3, 7, 18, 0.07), 0px 0px 2px rgba(3, 7, 18, 0.13), 0px 0px 4px rgba(3, 7, 18, 0.2);
  z-index: 10;
  background: #ffffff;
}
.card-2::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(-120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-100%) rotate(-25deg);
  transition: transform 1s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.card-2:hover {
  transform: scale(1.03);
}
.card-2:hover::before {
  transform: translateX(100%) rotate(-25deg);
  opacity: 1;
}
.card-2 .speaker-profile {
  width: 140px;
  height: 140px;
  margin: 20px 8px;
  background-color: #ffffff;
}
.card-2 .speaker-name {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card-2 .speaker-info {
  font-size: 15px;
  font-weight: 400;
  padding: 0;
}
.card-2 .bg-shape {
  background: url(../img/bg/gradient-bg1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  transform: scale(27) rotate(-16deg) translate(-1px, 0px);
  height: 5.2px;
  width: 15px;
  z-index: -1;
}

.card-3 {
  width: 320px;
  height: auto;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  background-color: #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease;
  cursor: pointer;
  margin: 15px;
  padding: 0 !important;
  padding-bottom: 12px !important;
}
.card-3 .promo-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
}
.card-3 .promo-img img {
  padding-top: 2px;
  width: 92%;
  height: 92%;
  border-radius: 10px;
  object-fit: cover;
}
.card-3 .title {
  text-align: center;
  margin: 8px;
  font-weight: 600;
  font-size: 20px;
}
.card-3 .download-btn {
  padding: 8px 22px;
  background-color: #e03677;
  color: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.bread {
  position: relative;
  background-image: url("https://lg.delhi.gov.in/sites/default/files/inline-images/delhi_banner_copy_0.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bread .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #623275, #631383, #c91258, #e03677);
  opacity: 0.8;
  z-index: 1;
}
.bread .container {
  z-index: 2;
}
.bread h1,
.bread p,
.bread .breadcrumb {
  color: #ffffff;
}
.bread .breadcrumb {
  background: none;
  margin-top: 1rem;
}
.bread .breadcrumb li + li::before {
  color: #ffffff;
}
.bread .breadcrumb .active {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .bread {
    min-height: 200px;
  }
  .bread h1 {
    font-size: 2rem;
  }
  .bread p {
    font-size: 1rem;
  }
}

.main-header {
  position: relative;
}

.navbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px;
}

/* Header Top */
.topbar {
  width: 100%;
  z-index: 1050;
  background: rgb(255, 255, 255);
  border-bottom: 3px solid #623275;
}
.topbar .container .row {
  margin: -7px;
  padding: 0;
}
.topbar .container .row .col-md-12 {
  padding: 0;
}
.topbar p {
  margin: 0;
  display: inline-block;
  font-size: 13px;
  color: #e9d8f0;
}
.topbar p > i {
  margin-right: 5px;
}
.topbar p:last-child {
  text-align: right;
}
.topbar li.topbar {
  display: inline;
  padding-right: 18px;
  line-height: 52px;
  transition: all 0.3s linear;
}
.topbar li.topbar:hover {
  color: #cc70f0;
}
.topbar ul.info i {
  color: #000000;
  font-style: normal;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  top: 4px;
}
.topbar ul.info li {
  float: right;
  padding-left: 30px;
  color: #310542;
  font-size: 13px;
  line-height: 44px;
}
.topbar ul.info i span {
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 50px;
  padding-left: 18px;
}

header .navbar {
  margin-bottom: 0;
}

ul.social-network {
  border: none;
  margin: 5px 0 10px -25px;
  padding: 0;
  list-style: none;
  float: right;
}
ul.social-network li {
  border: none;
  margin: 0 5px;
  padding: 5px 0 0;
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  vertical-align: baseline;
  color: #000000;
}
ul.social-network li i {
  margin: 0;
}

.social-connect span i {
  font-weight: 600;
}
.social-connect span a {
  font-weight: 600;
  padding-left: 7px;
}

.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  will-change: opacity, transform;
  transition: 0.3s ease-out;
}

a {
  color: black;
  text-decoration: none;
}

li {
  list-style-type: none;
}

.bg-image-full {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-dark {
  background-color: #310542 !important;
}

.mx-background-top-linear {
  background: linear-gradient(45deg, #ed3775 0%, #cb357a 9%, #91347e 14%, #593274 18%, #ffffff 18%);
}

/* Hover Dropdown */
.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
  overflow: hidden;
}

/* Nested submenu position */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  color: #310542;
  font-weight: 500;
  margin-left: 15px;
}

/* Arrow icon styling */
.dropdown-submenu > a .submenu-icon {
  float: right;
  margin-left: 5px;
  font-size: 0.75rem;
}

.nav-link {
  color: #310542;
  background-color: #ffffff;
  font-weight: 600;
  margin-left: 15px;
}
.nav-link:hover {
  color: #631383;
}

.dropdown-item {
  color: #310542;
  background-color: #ffffff;
  font-weight: 600;
}
.dropdown-item:hover {
  color: #c91258;
  background-color: #ffffff;
}

@media only screen and (max-width: 1100px) {
  .navbar-collapse {
    margin-right: 0 !important;
    margin-left: 30px;
  }
}
@media only screen and (max-width: 992px) {
  .mx-background-top-linear {
    background: linear-gradient(45deg, #ed3775 0%, #cb357a 9%, #91347e 14%, #593274 68%, #ffffff 68%);
  }
  .nav-link {
    background-color: transparent;
    color: #ffffff;
  }
  .nav-link:hover {
    color: #f2d6e1;
  }
  .navbar {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .navbar-collapse {
    margin-left: 10px;
    margin-top: 25px;
  }
}
.header-fade {
  transition: opacity 0.8s ease, visibility 0.8s ease;
  opacity: 1;
  visibility: visible;
}

.header-fade.hidden {
  opacity: 0;
  visibility: hidden;
}

.navbar-collapse {
  margin-right: 15px;
}

.navbar-nav {
  flex-wrap: wrap;
}
.navbar-nav .nav-link.show {
  color: #631383;
}
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
}

.hero-section {
  background-color: #ffffff;
  height: 100vh;
  background-image: url("../img/banner3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section .tagline {
  font-size: 1.8rem;
  color: #ffffff;
}
.hero-section .hero-title {
  font-size: 5rem;
  color: #e03677;
}
.hero-section .countdown .time-unit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .countdown .time-unit .time-value {
  font-size: 2.6rem;
  font-weight: bold;
  color: #ffffff;
}
.hero-section .countdown .time-unit .time-label {
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 5px;
}
.hero-section .event-dates .date-box {
  background-image: url("../img/bg/gradient-bg1.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.hero-section .event-dates .date-box p {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.hero-section .event-dates .date-box sup {
  font-size: 0.6rem;
  vertical-align: top;
}
.hero-section .year {
  margin: 5px 20px;
  padding-top: 8px;
  text-align: center;
  border-top: 2px solid #ffffff;
  color: #ffffff;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  .hero-section .countdown .time-unit .time-value {
    font-size: 1.5rem;
  }
  .hero-section .event-dates .date-box {
    font-size: 0.85rem;
  }
}

.footer {
  color: #ffffff;
  background-color: #623275;
  background: linear-gradient(rgba(11, 11, 11, 0.5), rgba(11, 11, 11, 0.5)), url("../img/bg/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 14px;
  padding: 40px 0 30px 0;
  position: relative;
}
.footer a {
  text-decoration: none;
}
.footer:before {
  content: "";
  position: absolute;
  inset: 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 30px;
  padding: 12px;
}
.footer .footer-content .footer-info h3,
.footer .footer-content .footer-info h4 {
  font-size: 20px;
  margin: 0 0 20px 0;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: none;
  font-family: "Aboreto";
  letter-spacing: 1.2px;
  color: hsl(38, 88%, 51%);
}
.footer .footer-content .footer-info img {
  height: 90px;
  padding: 8px;
  background-color: #ffffff;
  width: auto;
  max-width: 300px;
  border-radius: 10px;
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: #623275;
  color: #ffffff;
}
.footer .footer-content .footer-info .sec-contact {
  font-size: 14px;
  margin: 5px 0 0;
  font-family: "Quicksand";
  color: #ffffff;
  letter-spacing: 1px;
}
.footer .footer-content .footer-info .sec-contact a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.8px;
  transition: 0.3s all ease-in;
}
.footer .footer-content .footer-info .sec-contact a:hover, .footer .footer-content .footer-info .sec-contact a:focus {
  color: #edadc6;
}
.footer .footer-content .footer-info .sec-name {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat";
  color: #e1e1e1;
  font-weight: 600;
  text-shadow: #000000 1px 1px;
}
.footer .footer-content .footer-info .sec-add {
  font-size: 14px;
  margin: 10px 0 0;
  font-family: "Poppins";
  color: #e1e1e1;
  font-weight: 200;
  text-shadow: #000000 1px 1px;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.5px;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links ul li {
  padding: 4px 0;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-content .footer-links ul li a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 300;
  transition: 0.3s all ease-in;
}
.footer .footer-content .footer-links ul li a:hover, .footer .footer-content .footer-links ul li a:focus {
  color: #edadc6;
}
.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.321);
  color: #ffffff;
}
.footer .footer-legal .copyright span {
  color: hsl(38, 88%, 51%);
  font-weight: 600;
  font-size: 17px;
}
.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #ffffff;
}
.footer .footer-legal .credits a {
  color: hsl(38, 88%, 51%);
  font-weight: 600;
  font-size: 14px;
}

#backtotop {
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  padding: unset;
  display: grid;
  place-items: center;
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 99999;
  animation: 2s bounce infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #623275;
  border: 1px solid #ffffff;
  color: #ffffff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  font-weight: 700;
}
#backtotop:hover, #backtotop:focus {
  background-color: #ffffff;
  color: #623275;
  border-color: #623275;
}

@keyframes bounce {
  0% {
    bottom: 3%;
  }
  50% {
    bottom: 2.5%;
  }
  100% {
    bottom: 3;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jiggle {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.02) rotate(0.5deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.01) rotate(-0.5deg);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.03) rotate(0.4deg);
  }
}
@keyframes shine {
  from {
    transform: translateX(-100%) rotate(25deg);
  }
  to {
    transform: translateX(100%) rotate(25deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.page-section-1 {
  min-height: 90vh;
  background-image: url("../img/bg/gradient-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.bg-waves {
  background-image: url("../img/shapes/bg.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-section-2 {
  min-height: 90vh;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 4;
}
.page-section-2 .shape-lt {
  position: absolute;
  left: -95px;
  top: -70px;
  width: 240px;
  height: 240px;
  background-image: url("../img/shapes/pink-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  animation: rotating 4s linear infinite;
}
.page-section-2 .shape-rb {
  position: absolute;
  right: -95px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  transform: rotate(-180deg);
  background-image: url("../img/shapes/pink-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: rotating 4s linear infinite;
  z-index: -1;
}
.page-section-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-section-2 ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  color: #623275;
}
.page-section-2 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #ed3775, #cb357a, #91347e, #593274);
}

.about-logo {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.about-logo img {
  background: linear-gradient(45deg, #ed3775, #cb357a, #91347e, #593274);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 20px;
  animation: rotateY 5s ease-in-out infinite;
}

.about-delhi .image-column img {
  width: 80%;
  height: auto;
  border-radius: 20px;
  animation: bounce 3s ease-in-out infinite;
}

.profile-wrapper {
  width: 300px;
  height: 300px;
  margin: 45px 12px;
  position: relative;
}
.profile-wrapper .profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.profile-wrapper .circle-border {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.profile-wrapper .circle1 {
  width: 320px;
  height: 320px;
  border-color: #d9534f;
  animation: jiggle 4s infinite ease-in-out;
}
.profile-wrapper .circle2 {
  width: 350px;
  height: 350px;
  border-color: #0275d8;
  animation: jiggle 4.5s infinite ease-in-out;
}
.profile-wrapper .circle3 {
  width: 380px;
  height: 380px;
  border-color: #5bc0de;
  animation: jiggle 5s infinite ease-in-out;
}

.about-aoco-img {
  height: 520px;
  animation: bounce 4s infinite;
}

.price-card {
  border-radius: 12px;
  padding-top: 20px;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
.price-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.price-card .shape {
  width: 50%;
  height: 12px;
  transform: skew(51deg, -5deg) scale(8);
  position: relative;
  z-index: 0;
  top: 0px;
  left: 12px;
}
.price-card h2 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
  z-index: 5;
}
.price-card .price-slab {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 8px;
  text-align: left !important;
  z-index: 5;
  margin-bottom: 10px;
}
.price-card .price-slab h4 {
  margin: 0;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.price-card .price-slab p {
  margin: 4px 0 0;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.price-card .border-left-red {
  border-left: 6px solid #d81616;
}
.price-card .border-left-green {
  border-left: 6px solid #0fbe3e;
}
.price-card .border-left-blue {
  border-left: 6px solid #159ed0;
}
.price-card .border-left-orange {
  border-left: 6px solid hsl(38, 88%, 51%);
}

.about-venue .info-box {
  box-shadow: 0px 0px 0px rgba(3, 7, 18, 0.01), 0px 0px 1px rgba(3, 7, 18, 0.02), 0px 0px 3px rgba(3, 7, 18, 0.03), 0px 0px 4px rgba(3, 7, 18, 0.02), 0px 0px 7px rgba(3, 7, 18, 0.03);
  padding: 8px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #faf9f6;
}
.about-venue iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 25px;
}
.about-venue iframe:hover {
  transform: scale(1.02);
}

.cubeSwiper {
  width: 80%;
  height: 80%;
  max-width: 400px;
  max-height: 400px;
  background-position: center;
  background-size: cover;
}
.cubeSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}/*# sourceMappingURL=style.css.map */