@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: 46px;
  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;
  white-space: nowrap;
}

.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;}
.s-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border-bottom: 1px solid #d90743;
  min-height: 150px;
  flex-grow: 1;
  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 .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-card-link {
  color: var(--accent-color) !important;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.service-card-link i {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  margin-left: 6px;
  line-height: 1;
  transform: translateY(1px);
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  color: var(--primary-color) !important;
}

.service-card-link:hover i {
  transform: translate(4px, 1px);
}

.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;
}

.prof-desc {
  font-size: 12px !important;
  color: black !important;
  margin-top: 8px;
  line-height: 1.5;
  display: block;
  transition: all 0.3s ease;
}

.prof-desc.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prof-desc.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  padding: 0;
  margin-top: 6px;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.btn-read-more:hover {
  opacity: 0.85;
}

.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%;
  position: relative;
}

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

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

.garv_speaker_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  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 {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  display: inline-flex;
  padding: 6px 14px;
  background: #ffffff;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(217, 7, 67, 0.15);
  border-bottom-right-radius: 20px;

}

.garv_speaker_tag.green {
  background: #ffffff;
  color: #007f59;
  border-color: rgba(0, 127, 89, 0.15);
}

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

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

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

.garv_benefits_sec {
  background: #f3f3f3;
}

.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%;
  display: flex;
  flex-direction: column;
  /* 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: 16px;
  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 {
  position: relative;
  z-index: 5;
  overflow: visible;
  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;
  overflow: visible;
}

.fg {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.fg.is-hidden {
  display: none;
}

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

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

.fg select.native-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-color) 50%),
    linear-gradient(135deg, var(--accent-color) 50%, transparent 50%);
  background-position: calc(100% - 24px) 24px, calc(100% - 17px) 24px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 48px;
}

.fg select.customized-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.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;
  z-index: 1;
}

.custom-select.is-open {
  z-index: 50;
}

.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: 60;
  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: min(var(--custom-select-menu-height, 260px), 44vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-select.is-open-up .custom-select-menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(6px);
}

.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);
}

.clinician-workshop-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 7, 67, 0.16);
  border-radius: 14px;
  background: #fff7fa;
}

.clinician-workshop-note.is-hidden {
  display: none;
}

.clinician-workshop-note strong,
.clinician-workshop-message strong {
  color: var(--accent-color);
  font-weight: 800;
}

.clinician-workshop-note span,
.clinician-workshop-message span {
  color: #18233d;
  font-size: 14px;
}

.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;
}

.price-card-fees.clinician-card,
.price-card-fees.embryologist-card {
  grid-column: span 1;
  width: 100%;
}

.price-card-fees.clinician-card .price-content-info,
.price-card-fees.embryologist-card .price-content-info {
  display: flex;
  flex-direction: column;
}

.price-card-fees.clinician-card .price-content-info span,
.price-card-fees.embryologist-card .price-content-info span {
  margin-bottom: 5px;
}

.price-card-fees.clinician-card .price-content-action,
.price-card-fees.embryologist-card .price-content-action {
  display: none;
  flex-shrink: 0;
  max-width: 380px;
}

.price-card-fees.clinician-card input:checked ~ .price-content-action,
.price-card-fees.embryologist-card input:checked ~ .price-content-action {
  display: block;
}

.student-workshop-action {
  margin-top: 18px;
}

.student-workshop-action.is-hidden {
  display: none;
}

.student-id-card-wrap.is-hidden {
  display: none;
}

.student-id-card-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.student-id-card-control {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(217, 7, 67, 0.18);
  background: #fff;
  padding: 8px 10px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.student-id-card-control span {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--accent-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.student-id-card-control strong {
  min-width: 0;
  flex: 1;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.student-id-card-input:focus + .student-id-card-control,
.student-id-card-input.is-invalid + .student-id-card-control {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(217, 7, 67, 0.08);
}

.btn-add-workshop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  max-width: 380px;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  background-color: var(--accent-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
  white-space: normal;
  text-align: center;
}

.btn-add-workshop:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: scale(1.03);
}

.btn-add-workshop.is-added {
  background-color: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

.btn-add-workshop.is-added:hover {
  background-color: #c62828;
  border-color: #c62828;
  color: #fff;
}

@media (max-width: 991px) {
  .price-card-fees.clinician-card,
  .price-card-fees.embryologist-card {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .price-card-fees.clinician-card,
  .price-card-fees.embryologist-card {
    grid-column: span 1;
  }
  .price-card-fees.clinician-card .price-content,
  .price-card-fees.embryologist-card .price-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }
  .price-card-fees.clinician-card .price-content-info,
  .price-card-fees.embryologist-card .price-content-info {
    align-items: center;
  }
  .btn-add-workshop {
    width: 100%;
  }
}

.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;
}

.group-discount-wrap {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(217, 7, 67, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 26, 55, 0.06);
}

.group-discount-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.group-discount-head h4 {
  margin: 0;
}

.group-discount-head span {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.group-discount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.group-discount-grid .fg input[readonly] {
  background: #fff7fa;
  color: var(--accent-color);
  font-weight: 800;
}

.group-discount-tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.group-discount-tiers span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border: 1px solid rgba(217, 7, 67, 0.18);
  border-radius: 14px;
  background: #fff7fa;
  color: #18233d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.group-discount-tiers strong {
  color: var(--accent-color);
  font-size: 18px;
}

.group-discount-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.group-discount-summary div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(11, 26, 55, 0.04);
}

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

.group-discount-summary span {
  color: #6d6470;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.group-discount-summary strong {
  margin-top: 5px;
  color: #18233d;
  font-size: 18px;
}

.group-discount-summary div:last-child {
  background: var(--accent-color);
}

.group-discount-summary div:last-child span,
.group-discount-summary div:last-child strong {
  color: #fff;
}

.group-attendees-wrap {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(217, 7, 67, 0.22);
}

.group-attendees-wrap.is-hidden {
  display: none;
}

.group-attendees-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.group-attendees-head h5 {
  margin: 0;
  color: #18233d;
  font-size: 18px;
}

.group-attendees-head span {
  color: #6d6470;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.group-attendees-list {
  display: grid;
  gap: 14px;
}

.group-attendee-card {
  padding: 16px;
  border: 1px solid rgba(217, 7, 67, 0.12);
  border-radius: 14px;
  background: rgba(255, 247, 250, 0.72);
}

.group-attendee-card h6 {
  margin: 0 0 12px;
  color: var(--accent-color);
  font-weight: 800;
}

.group-attendee-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.group-attendee-workshop {
  margin-top: 14px;
}

.group-attendee-workshop > span {
  display: block;
  margin-bottom: 10px;
  color: #18233d;
  font-size: 13px;
  font-weight: 800;
}

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

.group-workshop-grid .work-pill span {
  padding: 12px 18px;
}

.clinician-workshop-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 7, 67, 0.14);
  border-radius: 12px;
  background: #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 {

  white-space: normal;
  text-align: center;
}

#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: center;
  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.3;
  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: 991px) {
  h2 {
    font-size: 35px !important;
    line-height: 1.4 !important;
  }
  .time-box h2 {
    line-height: 1 !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_image {
    height: 100vh;
    min-height: 680px;
  }

  .banner_content {
    top: 150px;
  }

  .sec_padding {
    padding: 40px 0;
  }

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

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

  .header .btn-common {
    display: none;
  }

  .menu-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    width: fit-content;
  }

  .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 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
  }

  .hero-meta-item {
    width: 46% !important;
    border-right: none !important;
    border-bottom: none;
    padding: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .time-box h2 {
    font-size: 20px !important;
  }

  .time-box span {
    font-size: 11px;
  }

  .countdown-wrap {
    gap: 5px;
    justify-content: center;
  }
.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;
  }

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

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


}

@media (max-width: 430px) {
  h2 {
    font-size: 30px !important;
    line-height: 1.4 !important;
  }
  .time-box h2 {
    line-height: 1 !important;
  }

  .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;
  }



  .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;
  } */

  .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: 200px;
  }

  .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;
    background:white;
    color: var(--accent-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-bottom-right-radius: 20px;
}
  .reg-form-box {
    padding: 30px 20px;
  }

  .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;
    --bs-nav-tabs-border-color:none;
  }

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

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

  .price-content{
    padding: 14px;
    height: 100%;
  }
  .price-content span{
    margin-bottom:8px;
    font-size: 14px;
  }
  .price-content h5{
    font-size: 16px;
  }
  .price-content strong{
    font-size: 20px;
  }
  
}

/* Form Validation Vibration Effect */
@keyframes shake-vibrate {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-6px); }
  30%, 60%, 90% { transform: translateX(6px); }
}

.shake-field {
  animation: shake-vibrate 0.4s ease-in-out;
}

/* Sticky Bottom Bar */
.sticky-offer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FDF2F5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  margin: 0;
  padding: 12px 16px;
  color: #ffffff;
}

.sticky-offer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.sticky-offer-actions a {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.sticky-offer-actions a span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
}

.register-left {
  background-color: #C6063C;
  flex-direction: column;
}

.whatsApp-right {
  background-color: #25d366;
}

.whatsApp-right i {
  font-size: 24px;
}

.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: 16px;
  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;
  }

  .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;
  }

  .sticky-offer .btn-common {
    font-size: 14px;
    min-height: 40px;
    padding: 0 16px;
    white-space: nowrap;
  }

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

@media (max-width: 375px) {
  .offer-left {
    gap: 8px;
  }
  .offer-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .offer-title {
    font-size: 12px;
  }
  .new-price {
    font-size: 18px;
  }
  .old-price {
    font-size: 12px;
  }
  .sticky-offer .btn-common {
    font-size: 12px;
    min-height: 36px;
    padding: 0 12px;
  }
}

/* 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;
  }
}

/* ==========================================================================
   Features Comparison Table Styling
   ========================================================================== */

.comp-table-container {
  width: 100%;
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1dbe2;
  position: relative;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.comp-table-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  overflow: hidden;
  border: 1px solid #f1dbe2;
  border-top: 0;
  border-bottom: 2px solid #f1dbe2;
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 26, 55, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  will-change: opacity, transform;
}

.comp-table-sticky-header.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.comp-table-sticky-header .comp-table {
  margin: 0;
}

.comp-table-sticky-header .comp-table th {
  position: static;
}

.comp-table-sticky-header .comp-table th:first-child {
  position: sticky;
  left: 0;
}

/* Custom scrollbar */
.comp-table-container::-webkit-scrollbar {
  height: 8px;
}
.comp-table-container::-webkit-scrollbar-track {
  background: #fcf6f7;
}
.comp-table-container::-webkit-scrollbar-thumb {
  background: #e8c6ce;
  border-radius: 4px;
}
.comp-table-container::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
  min-width: 1180px; /* Ensures columns are readable and don't shrink too much */
}

/* Column headers styling */
.comp-table th {
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 24px 6px;
  font-weight: 700;
  vertical-align: top;
  background: #fffcfd;
  border-bottom: 2px solid #f1dbe2;
  box-shadow: 0 6px 18px rgba(11, 26, 55, 0.06);
}

.comp-table th .category-tag {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 8px;
  font-weight: 700;
}

.comp-table th .pass-name {
  display: block;
  font-size: 14px;
  color: #0b1a37;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comp-table th .pass-spot-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #7d7278;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.comp-table th .pass-spot-price s {
  color: var(--accent-color, #d90743);
  font-size: 16px;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
}

.comp-table th .pass-spot-price strong {
  color: var(--accent-color, #d90743);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.comp-table .pass-price {
  display: block;
  font-size: 19px;
  color: var(--accent-color, #d90743);
  font-weight: 800;
}

/* Features header cell override */
.comp-table th.feature-col-header {
  font-size: 16px;
  font-weight: 800;
  color: #0b1a37;
  vertical-align: middle;
  text-align: left;
  padding-left: 24px !important;
}

/* Row styling */
.comp-table tr {
  border-bottom: 1px solid #f1dbe2;
}

.comp-table tr:nth-child(even) td {
  background-color: #fff9fa;
}

.comp-table td {
  padding: 18px 6px;
  vertical-align: middle;
  color: #222;
  font-weight: 500;
}

.comp-table th:first-child,
.comp-table td:first-child {
  position: sticky;
  left: 0;
  background-color: #fffcfd;
  z-index: 8;
  text-align: left;
  padding-left: 24px !important;
  padding-right: 16px !important;
  width: 310px;
  min-width: 310px;
  border-right: 1px solid #f1dbe2;
  font-weight: 700;
  color: #0b1a37;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
}

.comp-table th:first-child {
  background-color: #fff;
  z-index: 14;
}

.comp-table tr:nth-child(even) td:first-child {
  background-color: #fef5f6;
}

/* Feature column label structure */
.feature-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-label i {
  color: var(--accent-color);
  font-size: 16px;
  width: 24px;
  text-align: center;
}

/* Styled check and cross icons */
.check-mark-only {
  color: var(--accent-color, #d90743);
  font-size: 18px;
  font-weight: 700;
}

.cross-icon-subtle {
  color: #ccc;
  font-size: 16px;
  opacity: 0.5;
}

/* Reg button in table */
.btn-table-reg {
  position: relative;
  background: var(--accent-color, #d90743);
  color: #fff !important;
  border: 1px solid var(--accent-color, #d90743);
  border-radius: 30px;
  padding: 0 14px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  max-width: 130px;
  width: fit-content;
}

.btn-table-reg::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0%;
  background: #000; /* Slide-in black background, matching solid button hover color */
  transition: width 0.5s ease;
  z-index: -1;
}

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

.btn-table-reg:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-table-group-reg {
  position: relative;
  background: transparent;
  color: var(--accent-color, #d90743) !important;
  border: 1px solid var(--accent-color, #d90743);
  border-radius: 30px;
  padding: 8px 12px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  white-space: normal;
  text-align: center;
  width: 90%;
  max-width: fit-content;
  margin: 0 auto;
  line-height: 1.2;
}

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

.btn-table-group-reg:hover::before {
  width: 100%;
}

.btn-table-group-reg:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Timeline Info Banner */
.pricing-timeline-banner {
  background: linear-gradient(135deg, #fff2f4 0%, #ffe6eb 100%);
  border-left: 4px solid var(--accent-color);
  padding: 18px 24px;
  border-radius: 12px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(217, 7, 67, 0.04);
}

.pricing-timeline-banner i {
  color: var(--accent-color);
  font-size: 24px;
}

.pricing-timeline-content h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0b1a37;
}

.pricing-timeline-content p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

@media (max-width: 991px) {
  .comp-table-container {
    margin-top: 30px;
  }
  .comp-table {
    min-width: 1000px;
  }
  .comp-table th:first-child,
  .comp-table td:first-child {
    width: 250px;
        min-width: 250px;
        
        
  }
  .pricing-timeline-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }

 



}

@media(max-width:430px){
 .comp-table th:first-child, .comp-table td:first-child{
    white-space: normal;
    width: 135px;
    min-width: 135px;
    font-size: 14px;
    padding: 0px 8px !important;
  }
  .feature-label{
    gap: 8px;
  }
  .feature-label i{
    font-size: 12px;
  }
  .feature-label span{
    font-size: 12px;
  }
  .comp-table td{
    font-size: 12px;
  }
  .btn-table-reg{
    min-height: 32px;
    padding: 0px 12px;
  }
  .btn-table-group-reg{
    min-height: 32px;
    padding: 4px 8px;
    font-size: 9px;
  }
}
/* Thank You Page Accommodation Option */
.thankyou-accommodation-box {
  background: var(--accent-color);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  max-width: 580px;
  margin: 25px auto;
  box-shadow: 0 10px 30px rgba(217, 7, 67, 0.15);
}

.thankyou-accommodation-box label {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  display: block;
}

.thankyou-accommodation-box select.form-select {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.thankyou-accommodation-box select.form-select:focus {
  border-color: #0b1a37;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(11, 26, 55, 0.25);
}

/* Service Card Link custom alignment in thank you page */
.thankyou-poster-link-container {
  margin: 20px auto 30px;
  text-align: center;
}

.thankyou-poster-link-container .service-card-link {
  margin-top: 0;
  font-size: 17px;
  padding: 8px 16px;
  background: rgba(217, 7, 67, 0.05);
  border-radius: 30px;
  border: 1px dashed rgba(217, 7, 67, 0.3);
  transition: all 0.3s ease;
}

.thankyou-poster-link-container .service-card-link:hover {
  background: rgba(217, 7, 67, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Prizes Strip Section */
.prizes-strip-sec {
  margin-top: -120px;

}

.pad-btm{
  padding-bottom:200px;
}

@media (max-width: 991px) {
  .pad-btm {
    padding-bottom: 150px;
  }
}

.prizes-strip-wrapper {
  background: linear-gradient(135deg, #d90743 0%, #b00534 100%);
  border-radius: 24px;
  padding: 40px clamp(20px, 4vw, 50px);
  box-shadow: 0 20px 45px rgba(217, 7, 67, 0.18);
  position: relative;
  overflow: hidden;
}

.prizes-strip-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.prize-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.prize-strip-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.prize-strip-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.prizes-strip-info .service-card-link {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 15px;
  margin-top: 15px;
}

.prizes-strip-info .service-card-link:hover {
  background: #fff !important;
  color: var(--accent-color) !important;
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.prizes-grid-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.group-registration-banner {
  margin: 24px 0 35px;
}

.group-discount-strip {
  grid-template-columns: repeat(4, 1fr);
}

.group-discount-strip .medal-icon {
  color: #fff;
  font-size: 28px;
}

.prize-card-strip {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid #ffffff8a;
  border-radius: 16px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.prize-card-strip:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.medal-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.prize-details {
  display: flex;
  flex-direction: column;
}

.prize-place {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.prize-amount {
  color: #ffffff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .prizes-grid-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
  }
  
  .prize-card-strip {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 20px;
  }
  
  .medal-icon {
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 28px;
  }
  
  .prize-details {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }
  
  .prize-place {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .group-discount-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .group-discount-strip .prize-card-strip {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .group-discount-strip .medal-icon {
    margin-right: 0;
  }

  .group-discount-strip .prize-details {
    flex-direction: column;
    gap: 2px;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .group-discount-strip {
    grid-template-columns: 1fr;
  }
}

/* --- Leadership Message Section --- */
.leadership-title{
  font-size: 55px;
}
.leadership-msg-sec {
  background: linear-gradient(180deg, #fffcfd 0%, #fff4f6 100%);
  position: relative;
  border-bottom: 1px solid rgba(217, 7, 67, 0.05);
}

.leadership-subtitle {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.leadership-subtitle span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
}

.badge-present {
  background: rgba(217, 7, 67, 0.08);
  color: var(--accent-color);
  border: 1px solid rgba(217, 7, 67, 0.15);
}

.badge-power {
  background: rgba(11, 26, 55, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(11, 26, 55, 0.15);
}

.leadership-body-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.25rem;
}

.leadership-body-text .lead-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.featuring-box {
  background: #ffffff;
  border: 1px solid rgba(217, 7, 67, 0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(217, 7, 67, 0.02);
}

.featuring-box h4 {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.featuring-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.featuring-list li {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.featuring-list li i {
  color: var(--accent-color);
  font-size: 12px;
  margin-top: 5px;
}

.closing-highlight {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 20px;
}

.leaders-cards-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.leader-profile-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(217, 7, 67, 0.08);
  border-radius: 20px;
  padding: 20px;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(217, 7, 67, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex: 1;
}

.leader-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(217, 7, 67, 0.1);
  border-color: rgba(217, 7, 67, 0.2);
}

.leader-img-box {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(217, 7, 67, 0.05);
  background: linear-gradient(135deg, #eef2f3 0%, #d5dbdb 100%);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.leader-profile-card:hover .leader-img-box {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

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

.leader-info {
  text-align: left;
}

.leader-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.leader-info .role-tag {
  font-size: 11px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0;
  line-height: 1.4;
}

.leader-info .role-sub-tag {
  font-size: 12px;
  color: #555;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1.4;
}


/* --- Highlight Box --- */
.leadership-highlight-box {
  background: #ffffff;
  border: 1px solid rgba(217, 7, 67, 0.12);
  border-left: 4px solid var(--accent-color);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(217, 7, 67, 0.02);
  text-align: left;
}

.highlight-desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #444444 !important;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: left;
}

.highlight-cta {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 991px) {
  .leaders-cards-container {
    margin-top: 40px;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .leaders-cards-container {
    flex-direction: column;
  }
  .leader-img-box {
    aspect-ratio: 1.2 / 1;
  }
}

/* --- Organizing Committee Section (Updated Design) --- */
.organizing-committee-sec {
  background: linear-gradient(180deg, #fffcfd 0%, #fff4f6 100%);
  border-bottom: 1px solid rgba(217, 7, 67, 0.05);
}

.organizing-committee-sec .section-title {
  font-size:55px ;
}

.organizing-committee-sec .section-title .highlight-pink {
  color: var(--accent-color);
}

.organizing-committee-sec .sec-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  font-weight: 500;
}

.committee-edu {
  font-size: 11px;
  color: #666666;
  font-weight: 700;
  margin-top: -2px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Small screen laptops/desktops header navigation styling to prevent wrapping */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-links {
    gap: 20px;
  }
  .header .me-5 {
    margin-right: 1.5rem !important;
  }
  .header .btn-common {
    font-size: 16px;
    padding: 0 20px;
    min-height: 46px;
  }
}

/* --- Organizing Grid Custom Sizing for Symmetrical 5-4 Layout --- */
.organizing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.organizing-grid > div {
  width: calc(20% - 20px);
  flex: 0 0 auto;
}

@media (max-width: 1200px) {
  .organizing-grid > div {
    width: calc(25% - 18px);
  }
}

@media (max-width: 991px) {
  .organizing-grid {
    gap: 20px;
  }
  .organizing-grid > div {
    width: calc(33.333% - 14px);
  }
}

@media (max-width: 767px) {
  .group-discount-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .group-discount-grid,
  .group-discount-summary,
  .group-attendee-grid {
    grid-template-columns: 1fr;
  }

  .group-discount-tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organizing-grid > div {
    width: calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .organizing-grid > div {
    width: 100%;
  }
}

/* --- Organizing Committee Members Text List --- */
.organizing-members-section {
  position: relative;
  z-index: 2;
}

.organizing-members-section .sub-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.organizing-members-section .sub-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.member-name-card {
  background: #ffffff;
  border: 1px solid rgba(217, 7, 67, 0.08);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(217, 7, 67, 0.02);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-name-card span {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.member-name-card:hover {
  transform: translateY(-3px);
  background: #fffcfd;
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(217, 7, 67, 0.08);
}

.member-name-card:hover span {
  color: var(--accent-color);
}

/* --- Venue Section --- */
.garv_venue_sec {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.venue_details_card {
  background: #fff7f9;
  border: 1px solid rgba(217, 7, 67, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(217, 7, 67, 0.02);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue_details_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(217, 7, 67, 0.06);
}

.venue_details_card .venue_name {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
}

.venue_details_card .venue_name i {
  color: var(--accent-color);
}

.venue_details_card .venue_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.address_box {
  border-top: 1px dashed rgba(217, 7, 67, 0.15);
  padding-top: 24px;
}

.address_box strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  font-weight: 800;
}

.address_box p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0;
}

.address_box i {
  color: var(--accent-color);
  font-size: 18px;
}

.map_container {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
  min-height: 450px;
}

.map_container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}

@media (max-width: 991px) {
  .venue_details_card {
    padding: 30px;
  }
  .map_container {
    min-height: 350px;
  }
  .map_container iframe {
    min-height: 350px;
  }
}

.venue_image_wrapper {
  overflow: hidden;
  border-radius: 18px;
  height: 260px;
  margin-bottom: 24px;
}

.venue_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.venue_details_card:hover .venue_image_wrapper img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .venue_image_wrapper {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .venue_image_wrapper {
    height: 180px;
    margin-bottom: 18px;
  }
}

@media (min-width: 769px) {
  .mob-reg {
    display: none !important;
  }
}

/* --- Additional Custom Styles (Alphabetical, Highlight, Flags, FAQs) --- */

/* Highlight Offer Type Row in pricing table */
.comp-table tr.highlight-offer-row {
  background: linear-gradient(90deg, #fff5f7 0%, #fffbfb 100%) !important;
}

.comp-table tr.highlight-offer-row td {
  background-color: #fff0f3 !important;
  font-weight: 700;
  color: var(--accent-color, #d90743) !important;
  border-top: 2px solid #f9d8df !important;
  border-bottom: 2px solid #f9d8df !important;
}

.comp-table tr.highlight-offer-row td:first-child {
  background-color: #ffeef1 !important;
  color: #0b1a37 !important;
  border-left: 4px solid var(--accent-color, #d90743) !important;
}

/* Offer Badges */
.offer-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(217, 7, 67, 0.08);
}

.offer-badge.student {
  background-color: #ffffff;
  color: var(--accent-color, #d90743);
  border: 1px solid var(--accent-color, #d90743);
  white-space: nowrap;
}

.offer-badge.early-bird {
  background: linear-gradient(135deg, var(--accent-color, #d90743) 0%, #a00430 100%);
  color: #ffffff;
  border: 1px solid transparent;
}

/* Emoji Speaker Tag (✈️ & 🇮🇳) */
.garv_speaker_tag.emoji-tag {
  font-size: 16px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Right-aligned speaker tag */
.garv_speaker_tag.right {
  left: auto;
  right: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

/* Justify FAQ answers text */
.garv_faq_answer p {
  text-align: justify !important;
}

/* Floating WhatsApp Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 36px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  line-height: 1;
  margin: 0;
  padding: 0;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
            display: none;
  }
}









