@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary-color: #0b1a37;
  --accent-color: #d90743;
  --surface-color: #ffffff;
  --surface-muted: #f3f3f3;
  --text-color: #000000;
  --text-muted: #777777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: 'Manrope', sans-serif;
  background: #fff !important;
  color: #000 !important;
  min-height: 100vh;
}

img,
iframe,
video {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--text-color);
}
h2{
  background: linear-gradient(125deg, #000000 40%, #d90743 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p {
  color: var(--text-color);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.sec_padding {
  padding: 90px 0;
}

.sec-eyebrow {
  font-size: 13px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.header {
  background-color: #fff9f9 !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(217, 7, 67, 0.12);
}

.header.active {
  position: fixed;
  backdrop-filter: blur(3px);
  animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fadeInUpModern {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow,
.fadeInUp,
.animate-heading,
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  animation: fadeInUpModern 0.85s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.wow.fadeInUp,
.animate-heading {
  animation-delay: 0.12s;
}

.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+1) .garv_benefits_card.wow.fadeInUp,
.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+1) .garv_benefits_card.animate-card {
  animation-delay: 0.08s;
}

.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+2) .garv_benefits_card.wow.fadeInUp,
.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+2) .garv_benefits_card.animate-card {
  animation-delay: 0.14s;
}

.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+3) .garv_benefits_card.wow.fadeInUp,
.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+3) .garv_benefits_card.animate-card {
  animation-delay: 0.20s;
}

.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+4) .garv_benefits_card.wow.fadeInUp,
.garv_benefits_sec .row .col-lg-3:nth-of-type(4n+4) .garv_benefits_card.animate-card {
  animation-delay: 0.26s;
}

.garv_faq_sec .garv_faq_item.wow.fadeInUp,
.garv_faq_sec .garv_faq_head.wow.fadeInUp,
.garv_faq_sec .garv_faq_item.animate-card,
.garv_faq_sec .garv_faq_head.animate-heading {
  animation-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {

  .wow,
  .fadeInUp,
  .animate-heading,
  .animate-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.wow-section {
  overflow: hidden;
}

.logo img {
  width: 150px;
}

.nav-links {
  gap: 40px;
  list-style: none;
  align-items: center;
  display: flex;
}

.nav-links li a {
  color: #000;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links li a:hover {
  color: var(--accent-color);
}

.nav-links li a:hover::before {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  padding: 14px 0;
}

.menu-button label {
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.menu-button label span {
  background: var(--accent-color);
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: transform 0.4s ease;
}

.menu-button span:nth-of-type(1) {
  width: 50%;
}

.menu-button span:nth-of-type(2) {
  width: 100%;
}

.menu-button span:nth-of-type(3) {
  width: 75%;
}

.menu-button input[type='checkbox'] {
  display: none;
}

.menu-button input[type='checkbox']:checked~span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotate(45deg) translate(5px, 0);
}

.menu-button input[type='checkbox']:checked~span:nth-of-type(2) {
  transform-origin: top;
  transform: rotate(-45deg);
}

.menu-button input[type='checkbox']:checked~span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(13px, -5px) rotate(45deg);
}

.banner {
  position: relative;
}

.banner_image {
  position: relative;
  width: 100%;
  height: 100vh;
}

.banner_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top Live Bar */
.top-live-bar {
  width: 100%;
  background: #d90743;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}

.live-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marqueeMove 25s linear infinite;
}

.live-track span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* .banner_image.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
} */

.banner_content {
  position: absolute;
  left: 0;
  right: 0;
  top: 26%;
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 20px;
}

.banner_content p {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  background: rgba(217, 7, 67, 0.2);
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  padding: 7px 10px;
  margin-bottom: 20px;
}

.banner_content h1 {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.05;
}

.banner_content h1 span {
  color: var(--accent-color);
  font-family: 'Playfair Display', serif;
  font-size: 70px;
}

.banner_content h4 {
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 20px;
}

.countdown-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.time-box {
  width: 150px;
  height: 110px;
  border-radius: 16px;
  background: #fcd9e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.time-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.time-box:hover {
  transform: translateY(-6px);
}

.time-box h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-color);
}

.time-box span {
  font-size: 16px;
  font-weight: 500;
  color: #2a2929;
  letter-spacing: 1px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.hero-meta-item {
  display: block;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  border-right: 1px solid var(--accent-color);
}

.hero-meta-item:last-child {
  border-right: none;
}

.hm-label {
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 3px;
}

.hm-val {
  font-size: 16px;
  font-weight: 500;
}
.hm-val i{

    color: #d90743;
    background: #fcdbe1;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    margin-right: 10px;

}

/* .btn-common {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 58px;
  padding: 0 2rem;
  border-radius: 50px;
  border: 1px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease;
}

.btn-common span {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 1px solid var(--accent-color);
  z-index: -1;
}

.btn-common span::before {
  content: '';
  position: absolute;
  width: 5%;
  height: 500%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s ease;
}

.btn-common:hover span::before {
  width: 100%;
  background: var(--accent-color);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.btn-common:hover {
  color: #fff;
  background-color: #d90743;
}

.btn-common--solid {
  background: var(--accent-color);
  color: #fff;
}

.btn-common--solid:hover {
  color: #fff;
} */
.btn-common {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  width: fit-content;
  padding: 0 24px;
  border-radius: 50px;
  border: 1px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.btn-common::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--accent-color);
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-common:hover::before {
  width: 100%;
}

.btn-common:hover {
  color: #fff;
}

.btn-common.w-100,
.btn-common.full-width {
  width: 100%;
}

/* Solid Button */
.btn-common--solid {
  background: var(--accent-color);
  color: #fff;
}

.btn-common--solid::before {
  background: #000;
}

/* Arrow Animation */
.btn-common i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-common:hover i {
  transform: translateX(6px);
}

#about-us-section img {
  border-radius: 18px;
}

.about-txt-1 h2,
.about-txt-2 h2 {
  font-size: 55px;
}

.about-txt-2.highlight-color {
  color: var(--accent-color);
}

.about-section-new-p p {
  margin-bottom: 1.5rem;
}

.about-section-new-img iframe {
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(217, 7, 67, 0.08);
}

.galery_sec {
  background-color: #f3f3f3bd;
}

.Service-sec {
  overflow: hidden;
}

.service-sec-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 30px;
}

.swiper-slide {
  transform: scale(0.85);
  opacity: 1;
  transition: transform 0.4s ease;
}

.swiper-slide-active {
  transform: scale(1.1);
}
.Service-sec{ margin-top: 20px;}
.service-card {
  position: relative;
    overflow: hidden;
    border-radius: 0;
    border-bottom: 1px solid #d90743;
    min-height: 150px;
    padding: 7px;
    margin-bottom: 15px;
    /* background: #fff; */
    display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  transition: transform 0.4s ease, background 0.4s ease;
}


.service-card img {
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
  margin-right: 14px;
}

.service-card h3 {
  color: var(--accent-color);
  font-size: 22px;
  margin-bottom: 18px;
  width: 54%;
}

.service-card p {
  color: var(--text-color);
}

.service-card:hover {
  /* background: #ffeaef; */
  transform: translateY(-8px);
}
.h-img{ display: flex;
}

.galery_sec .swiper-button-next,
.galery_sec .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.galery_sec .swiper-button-next::after,
.galery_sec .swiper-button-prev::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
}

.galery_sec .swiper-button-prev {
  left: 10px;
}

.galery_sec .swiper-button-prev::after {
  border-top: 3px solid #333;
  border-left: 3px solid #333;
  top: 18px;
  left: 18px;
}

.galery_sec .swiper-button-next {
  right: 10px;
}

.galery_sec .swiper-button-next::after {
  border-bottom: 3px solid #333;
  border-right: 3px solid #333;
  top: 18px;
  left: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1dbe2;
}

.price-card {
  background: #fff;
  padding: 50px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #f1dbe2;
  transition: background 0.4s ease;
}

.price-card:last-child {
  border-right: 0;
}

.price-card:hover {
  background: #fff7f9;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(217, 7, 67, 0.05) 0%, rgba(217, 7, 67, 0.02) 100%);
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.price-card.featured::before {
  content: 'Early Bird';
  position: absolute;
  top: 95px;
  right: 24px;
  background: rgba(217, 7, 67, 0.1);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 50px;
}

.pc-tier {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.pc-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.pc-price {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 15px;
  /* font-family: 'Playfair Display', serif; */
}

.pc-price sup {
  font-size: 28px;
  top: -20px;
}

.pc-period {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin-bottom: 35px;
}

.pc-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 280px;
}

.pc-includes li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 13px;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.pc-includes li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009402;
  font-size: 16px;
  font-weight: 600;
}

.pricing-grid .btn-common {
  width: 100%;
}

.btn-common.w-100 {
  width: 100%;
}

.garv_speakers_sec {
  background: #fff7f9;
}

.garv_speakers_head {
  max-width: 1200px;
  margin-bottom: 50px;
}

.garv_speakers_label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.garv_speakers_title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 18px;
}

.garv_speakers_text {
  font-size: 17px;
  line-height: 1.8;
}

.garv_speakers_tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.garv_speakers_tabs .nav-link {
  border: 1px solid rgba(217, 7, 67, 0.12);
  border-radius: 20px;
  background: #fff;
  padding: 12px 18px;
  text-align: left;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.garv_speakers_tabs .nav-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.garv_speakers_tabs .nav-link.active {
  background-color: var(--accent-color);
  border-color: transparent;
  color: #fff;
}

.garv_speaker_card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease;
  height: 100%;
}

.garv_speaker_card:hover {
  transform: translateY(-10px);
}

.garv_speaker_img {
  height: 140px;
  overflow: hidden;
}

.garv_speaker_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.garv_speaker_card:hover .garv_speaker_img img {
  transform: scale(1.08);
}

.garv_speaker_content {
  padding: 16px;
}

.garv_speaker_tag {
  display: inline-flex;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(217, 7, 67, 0.08);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.garv_speaker_tag.green {
  background: rgba(0, 127, 89, 0.08);
  color: #007f59;
}

.garv_speaker_card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.garv_speaker_card p {
  font-size: 15px;
  font-weight: 600;
  color: #007f59;
  margin-bottom: 6px;
}

.garv_speaker_card small {
  color: #777;
  font-size: 14px;
}

.garv_benefits_sec {
  background: #ffffff;
}

.garv_benefits_head {
  max-width: 850px;
  margin: 0 auto 60px;
}

.garv_benefits_label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.garv_benefits_title {
  font-size: 55px;
  line-height: 1.12;
  font-weight: 600;
  margin-bottom: 0;
}

.garv_benefits_card {
  height: 100%;
  /* min-height: 240px; */
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(217, 7, 67, 0.12);
  border-radius: 24px;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.garv_benefits_card:hover {
  transform: translateY(-10px);
  background: #fff7f9;
  border-color: rgba(217, 7, 67, 0.35);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.06);
}

.garv_benefits_icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(217, 7, 67, 0.08);
  margin-bottom: 24px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.garv_benefits_icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.garv_benefits_card:hover .garv_benefits_icon {
  background: var(--accent-color);
  transform: rotate(-6deg);
}

.garv_benefits_card:hover .garv_benefits_icon img {
  filter: brightness(0) invert(1);
}

.garv_benefits_card h4 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 14px;
  width: 88%;
}

.garv_benefits_card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.garv_faq_sec {
  background: var(--surface-muted);
}

.garv_faq_item {
  border-radius: 12px;
  border: 1px solid #fff9f9;
  background: #fff;
  margin-bottom: 12px;
  padding: 10px;
  
}

.garv_faq_question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 0;
  background: #fff9f9;
  color: var(--text-color);
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
}

.garv_faq_question span {
  font-size: 20px;
  line-height: 1.45;
  color: #000;
  font-weight: 600;
}

.garv_faq_question i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 7, 67, 0.08);
  border: 1px solid rgba(217, 7, 67, 0.18);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.garv_faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.garv_faq_answer p {
  padding: 0 9px 22px;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  margin-top: 10px;
}

.garv_faq_item.active {
  background: #ffffff;
  border-color: rgba(217, 7, 67, 0.42);
  box-shadow: 0 18px 40px rgba(11, 26, 55, 0.08);
}

.garv_faq_item.active .garv_faq_question i {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: rotate(45deg);
}

.garv_faq_item.active .garv_faq_answer {
  max-height: 335px;
}

.reg-section {
  padding: 100px 0;
  background: #fff;
}

.reg-form-box {
  margin-top: 50px;
  padding: 50px;
  border-radius: 30px;
  background: #fdf2f5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fg {
  display: flex;
  flex-direction: column;
}

.fg label {
  font-size: 12px;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fg input,
.fg select {
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(217, 7, 67, 0.18);
  background: #fff;
  padding: 0 18px;
  color: #000;
}

.fg input:focus,
.fg select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.fg input.is-invalid,
.fg select.is-invalid,
.custom-select.is-invalid .custom-select-toggle {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(217, 7, 67, 0.08);
}

.field-error,
.form-section-error {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.form-section-error:empty {
  display: none;
}

.custom-select {
  position: relative;
}

.custom-select-toggle {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(217, 7, 67, 0.18);
  background: #fff;
  color: #000;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-select-toggle i {
  color: var(--accent-color);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select-toggle,
.custom-select-toggle:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(217, 7, 67, 0.08);
}

.custom-select.is-open .custom-select-toggle i {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  padding: 8px;
  border: 1px solid rgba(217, 7, 67, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(11, 26, 55, 0.14);
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-select-menu::-webkit-scrollbar {
  width: 8px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background: rgba(217, 7, 67, 0.06);
  border-radius: 999px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: rgba(217, 7, 67, 0.35);
  border-radius: 999px;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-menu button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--primary-color);
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-select-menu button:hover,
.custom-select-menu button:focus {
  outline: none;
  background: rgba(217, 7, 67, 0.08);
  color: var(--accent-color);
}

.custom-select-menu button.is-selected {
  background: var(--accent-color);
  color: #fff;
}

.price-wrap,
.workshop-wrap {
  margin-top: 35px;
}

.workshop-wrap {
  transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.25s ease, margin-top 0.25s ease;
  max-height: 260px;
  overflow: hidden;
}

.workshop-wrap.is-hidden {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.price-wrap h4,
.workshop-wrap h4 {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card-fees {
  cursor: pointer;
}

.price-card-fees input {
  display: none;
}

.price-content {
  padding: 30px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card-fees:hover .price-content,
.price-card-fees input:checked+.price-content {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.price-content h5 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.price-content span {
  display: block;
  color: #000;
  margin-bottom: 15px;
}

.price-content strong {
  color: #000;
  font-size: 1.6rem;
}

.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.work-pill input {
  display: none;
}

.work-pill span {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.work-pill input:checked+span,
.work-pill span:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.form-disc {
  margin-top: 20px;
  color: #000;
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status--info {
  color: var(--primary-color);
}

.form-status--success {
  color: #157347;
}

.form-status--error {
  color: var(--accent-color);
}

#registrationSubmit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.thankyou-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(253, 242, 245, 0.96), rgba(255, 255, 255, 1)),
    #fff;
}

.thankyou-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.thankyou-shell {
  width: min(860px, 100%);
  border: 1px solid rgba(217, 7, 67, 0.16);
  border-radius: 24px;
  background: #fff;
  padding: clamp(22px, 4vw, 38px);
  text-align: center;
  box-shadow: 0 24px 70px rgba(11, 26, 55, 0.1);
}

.thankyou-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 16px;
}

.thankyou-logo img {
  width: min(150px, 44vw);
  margin: 0 auto;
}

.thankyou-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 14px 34px rgba(217, 7, 67, 0.24);
}

.thankyou-icon i {
  font-size: 24px;
}

.thankyou-shell h1 {
  max-width: 720px;
  margin: 0 auto 10px;
  color: var(--primary-color);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.thankyou-copy {
  max-width: 640px;
  margin: 0 auto 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.thankyou-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 22px;
  text-align: left;
}

.thankyou-summary div {
  border: 1px solid rgba(217, 7, 67, 0.14);
  border-radius: 14px;
  background: #fdf2f5;
  padding: 12px 14px;
}

.thankyou-summary span,
.thankyou-summary strong {
  display: block;
}

.thankyou-summary span {
  margin-bottom: 6px;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thankyou-summary strong {
  color: #000;
  overflow-wrap: anywhere;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.garv_footer_sec {
  background: #000;
  color: #fff;
  padding: 90px 0 0;
}

.garv_footer_cta_title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.garv_footer_cta_subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.garv_footer_cta_text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.garv_footer_cta_btn {
  width: 150px;
  height: 150px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.35s ease;
}

.garv_footer_cta_btn i {
  font-size: 2rem;
  transition: transform 0.35s ease;
}

.garv_footer_cta_btn:hover {
  transform: translateY(-6px);
}

.garv_footer_divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin: 75px 0;
}

.garv_footer_title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 26px;
  color: #fff;
}

.garv_footer_links,
.garv_footer_contact_list,
.garv_footer_bottom_links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.garv_footer_links li,
.garv_footer_contact_list li {
  margin-bottom: 14px;
}

.garv_footer_links a,
.garv_footer_contact_list a,
.garv_footer_contact_list span,
.garv_footer_bottom_links a {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.garv_footer_links a:hover,
.garv_footer_contact_list a:hover,
.garv_footer_bottom_links a:hover {
  color: #ff6aa2;
}

.garv_footer_contact_list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.garv_footer_contact_list i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 162, 0.15);
  border: 1px solid rgba(255, 106, 162, 0.28);
  border-radius: 50%;
  color: #ff6aa2;
  font-size: 0.9rem;
}

.garv_footer_social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.garv_footer_social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.garv_footer_social a:hover {
  background: #ff6aa2;
  border-color: #ff6aa2;
  color: #ffffff;
  transform: translateY(-5px);
}

.garv_footer_bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.garv_footer_bottom_links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.garv_footer_copyright {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  margin: 0;
}

.garv_footer_brand img {
  filter: brightness(0) invert(1);
  height: 115px;
}


.immersive_learning_sec {
  background: #f3f3f3;
}

.immersive_learning_head {
  text-align: center;
  margin-bottom: 45px;
}

.immersive_learning_label {
  display: inline-block;
  color: #d90743;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.immersive_learning_title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0;
}

.immersive_learning_tabs {
  justify-content: center;
  gap: 22px;
  width: fit-content;
  margin: auto;
  margin-bottom: 30px;
}

.immersive_learning_tabs .nav-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  padding: 0 0 14px;
  transition: all 0.35s ease;
}

.immersive_learning_tabs .nav-link:hover {
  color: #d90743;
}

.immersive_learning_tabs .nav-link.active {
  background: transparent;
  color: #d90743;
  border-bottom: 2px solid #d90743;
}

.immersive_learning_content {
  margin-top: 0;
}

.immersive_learning_card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 26px;
}

.immersive_learning_card span {
  display: inline-block;
  color: #d90743;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.immersive_learning_card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.immersive_learning_card p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .form-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 35px !important;
  }
  .service-card.b-remove{
  border-bottom: 0px;
}
.garv_faq_question span{
  width: 135%;
}
.about-section-new-p{
  text-align: center;
}
.garv_benefits_sec .col-lg-3.col-md-6 {
    width: 50%;
}
.garv_benefits_icon{
  margin-bottom: 15px;
}


  .banner_content h1 span {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-size: 50px;
  }

  .banner_content h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.05;
  }
.hm-val{
  display: contents;
}
.hm-val i{
  margin-right: 0px;
}
  .banner_content {
    top: 24%;
  }

  .sec_padding {
    padding: 40px 0;
  }

  .menu-button {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
    padding-right: 10px;
  }

  .nav-links {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    top: 0;
    right: 0;
    left: 30%;
    height: 100vh;
    background: #ffe9ee;
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding-top: 25%;
    gap: 16px;
    transition: all 0.6s ease;
    z-index: 0;
    margin-right: 0px !important;
    display: flex;
    align-items: flex-start;
  }
  
  .nav-links.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links li {
    padding: 6px 0;
  }

  .nav-links li a {
    font-size: 20px;
    font-weight: 200;
  }

  /* .hero-meta-item {
    padding: 0 1rem;
  } */

  .time-box {
    width: 80px;
    height: 80px;
  }

  .time-box h2 {
    font-size: 25px !important;
  }
  .countdown-wrap{
    gap: 5px;
  }
.price-card.featured{
  border-left: 0px;
  border-right: 0px;
}
  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
  .pc-includes{
    min-height: auto;
  }

  .price-card {
    border-right: 0;
    border-bottom: 1px solid #f1dbe2;
  }

  .price-card:last-child {
    border-bottom: 0;
  }

  .pc-name {
    font-size: 32px;
  }

  .pc-price {
    font-size: 52px;
  }

  .garv_speakers_title {
    font-size: 42px;
  }

  .garv_speakers_tabs {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
  }

  .garv_speakers_tabs .nav-link {
    width: auto;
    min-width: max-content;
    padding: 12px 22px;
  }

  .garv_benefits_title {
    font-size: 42px;
  }

  .garv_benefits_card {
    min-height: 180px;
    padding: 12px;
  }

  .about-section-new-img {
    padding-left: 12px;
  }

  .garv_footer_sec {
    padding-top: 65px;
  }

  .garv_footer_cta_title {
    font-size: 3rem;
  }

  .garv_footer_cta_btn {
    width: 125px;
    height: 125px;
    font-size: 0.76rem;
  }

  .garv_footer_cta_btn i {
    font-size: 1.65rem;
  }

  .garv_footer_divider {
    margin: 55px 0;
  }

  .garv_footer_bottom_links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .reg-form-box {
    padding: 30px 20px;
  }

  .garv_faq_question i {
    width: 45px;
    height: 30px;
  }
  .work-pill span {
    display: inline-flex;
    padding: 7px 9px;
    font-size: 15px;
  }


}

@media (max-width: 430px) {
  h2 {
    font-size: 30px !important;
  }

  .header {
    /* padding: 15px 0; */
  }

  .header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo img {
    max-width: 150px;
    height: auto;
  }

  .header .col-lg-8 {
    /* width: auto;
    padding-right: 60px; */
    display: none;
  }

  .header .col-lg-3 {
    width: auto;
  }

  .header .container .row {
    flex-wrap: nowrap;
  }

  .submit_btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
    border-radius: 50px;
    white-space: nowrap;
  }

  .menu-button {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }



  .about-txt-1 h2,
  .about-txt-2 h2,
  .garv_speakers_title,
  .garv_benefits_title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  /* .hero-meta {
    gap: 12px;
    padding: 12px;
  } */

  .hero-meta-item {
    width: 47%;
    padding: 2px 1.2rem;
    border-right: 1px solid var(--accent-color);
    border-bottom: none;
    display: flex;
  }

  .hero-meta-item:last-child {
    border-bottom: none;
  }

  .btn-common {
    font-size: 16px;
    min-height: 48px;
    padding: 0 1.2rem;
  }
  .header .btn-common {
display: none;
  }

  .price-card {
    padding: 40px 24px;
  }

  .pc-name {
    font-size: 28px;
  }

  .pc-price {
    font-size: 44px;
  }

  .pc-period {
    font-size: 16px;
  }

  .pc-includes li {
    font-size: 16px;
  }

  .garv_speaker_img {
    height: 140px;
  }

  .garv_speaker_card h4 {
    font-size: 18px;
  }

  .garv_speaker_card p {
    font-size: 14px;
  }

  .garv_speakers_tabs .nav-link {
    padding: 14px 18px;
    font-size: 14px;
  }

  .garv_benefits_head,
  .garv_faq_head {
    text-align: left !important;
    margin-bottom: 40px;
  }

  .garv_benefits_card {
    border-radius: 20px;
  }

  .garv_benefits_icon {
    width: 62px;
    height: 62px;
  }

  .garv_benefits_card h4 {
    font-size: 18px;
  }
  .garv_footer_bottom{
    padding: 25px 0px 70px 0px
  }

  .garv_benefits_card p,
  .garv_speaker_card p,
  .garv_speaker_card small {
    font-size: 13px;
  }
.garv_speaker_content{
  padding: 13px;
}
.garv_speaker_tag {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(217, 7, 67, 0.08);
    color: var(--accent-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
  .reg-form-box {
    padding: 30px 20px;
  }

  .form-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .garv_footer_sec {
    padding-top: 48px;
  }

  .garv_footer_cta_title {
    font-size: 2.25rem;
  }

  .garv_footer_cta_btn {
    width: 105px;
    height: 105px;
    font-size: 0.66rem;
  }

  .garv_footer_cta_btn i {
    font-size: 1.4rem;
  }

  .garv_footer_divider {
    margin: 42px 0;
  }

  .garv_footer_main {
    padding-bottom: 38px;
  }
  .garv_footer_main .col-md-6{
    margin-top: 20px;
  }

  .garv_footer_brand_text,
  .garv_footer_links a,
  .garv_footer_contact_list a,
  .garv_footer_contact_list span,
  .garv_footer_bottom_links a {
    font-size: 0.9rem;
  }

  .garv_footer_bottom_links {
    justify-content: flex-start;
    gap: 14px;
  }

  .garv_footer_copyright {
    font-size: 0.8rem;
  }

  .garv_footer_social a {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .service-sec-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 15px;
    grid-auto-flow: row;
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    width: 65%;
  }

  .immersive_learning_tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: left;
  }

  .immersive_learning_tabs::-webkit-scrollbar {
    display: none;
  }

  .immersive_learning_tabs .nav-link {
    flex: 0 0 auto;
    font-size: 15px;
    min-width: max-content;
  }
}

/* Sticky Bottom Bar */
.sticky-offer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-top: 1px solid #eee;
  z-index: 9999;
  padding: 12px 14px;
}

.offer-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Left Section */
.offer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.offer-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d90743, #d90743);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 22px;
  flex-shrink: 0;
}

.offer-content {
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 4px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.new-price {
  font-size: 22px;
  font-weight: 800;
  color: #d90743;
}

.old-price {
  font-size: 15px;
  color: #999;
  text-decoration: line-through;
}

.offer-note {
  font-size: 11px;
  color: #ff4d4f;
  margin-top: 2px;
  font-weight: 600;
}



/* Mobile */
@media (max-width:768px) {

  .thankyou-hero {
    align-items: start;
    padding: 12px;
  }

  .thankyou-shell {
    border-radius: 20px;
    padding: 18px;
  }

  .thankyou-logo {
    margin-bottom: 10px;
  }

  .thankyou-logo img {
    width: 118px;
  }

  .thankyou-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .thankyou-icon i {
    font-size: 20px;
  }

  .thankyou-shell h1 {
    font-size: 1.65rem;
  }

  .thankyou-copy {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .thankyou-summary {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .thankyou-summary div {
    padding: 10px 12px;
  }

  .thankyou-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sticky-offer {
    padding: 10px 12px;
    display: block;
  }

  .offer-wrapper {
    gap: 10px;
  }

  .offer-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .offer-title {
    font-size: 14px;
  }

  .new-price {
    font-size: 20px;
  }

  .old-price {
    font-size: 13px;
  }

  .cta-btn {
    padding: 13px 18px;
    font-size: 14px;
    border-radius: 14px;
  }
}

/* Desktop Bigger Style */
@media (min-width:992px) {

  .sticky-offer {
    padding: 16px 24px;
    display: none;
  }

  .offer-title {
    font-size: 16px;
  }

  .new-price {
    font-size: 28px;
  }

  .cta-btn {
    padding: 16px 32px;
    font-size: 16px;
  }
}
