.td-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Keep video at the very back */
}

.td-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* semi-transparent black overlay */
  z-index: -1; /* Above video, but behind content */
}
.bannerSpan {
  font-size: 13px;
}
/* inner page banner img */
.banner-img {
  position: relative;
  background: url(assets/esol/images/inner-page-banner/inner-page-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.banner-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity/color */
  z-index: 2;
}

/* keep content inside visible */
.banner-img > * {
  position: relative;
  z-index: 3;
}

/* end inner page banner img */

.text-justify-cstm {
  text-align: justify;
}
.why-attend-imd-div img {
  width: 100%;
  border-radius: 20px;
}
.awardsSection {
  padding-top: 174px;
  padding-bottom: 160px;
}

/* presentation topics */

.presentationTopicHeadingContainer h2 {
  /* color: #fff; */
  color: var(--td-theme-secondary);
  font-size: 50px;
  margin-bottom: 0;
}

/* end presentation topics */

.logo-footer {
  width: 150px;
}

/* who attend */

.who-attend-section {
  padding: 90px 0;
}

/* end who attend */

/* panel discussion */

.panel-discussion-section {
  position: relative;
  overflow: hidden;
}

.video-background-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-background-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.content-panel-discussion {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.accordion-item-panel {
  background: none;
}
.accordion-button-panel {
  color: #fff !important;
}
.accordion-body-topics p {
  color: #fff !important;
  text-align: justify;
}

/* end panel discussion */

.legacy-section {
  position: relative;
}
.legacy-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* dark overlay */
}
.legacy-ul li {
  color: #fff !important;
}

.formSection {
  padding: 90px 0;
}
.formATag {
  word-break: break-all;
}

/* Registration form */

.registration-hero {
  width: 100%;
  position: relative;
}

.hero-background {
  background: linear-gradient(135deg, #03045e 0%, #1a237e 50%, #3949ab 100%);
  border-radius: 30px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(3, 4, 94, 0.25);
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-up 8s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 5%;
  animation-delay: -4s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  right: 20%;
  animation-delay: -6s;
}

@keyframes float-up {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.edition-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-heading {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-heading {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.features-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #03045e;
  margin-bottom: 2rem;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(3, 4, 94, 0.1);
  transition: all 0.3s ease;
}

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

.feature-item:hover {
  transform: translateX(8px);
  padding-left: 1rem;
  background: rgba(3, 4, 94, 0.02);
  border-radius: 10px;
  border-bottom: 1px solid transparent;
}

.feature-emoji {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #03045e, #3949ab);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #03045e;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.cta-section {
  text-align: center;
}

.register-button {
  /* background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); */
  background: var(--td-theme-secondary);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  /* font-size: 1.2rem; */
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4); */
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.register-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.register-button:hover::before {
  left: 100%;
}

.register-button:hover {
  transform: translateY(-3px) scale(1.05);
  /* box-shadow: 0 25px 50px rgba(255, 107, 53, 0.6); */
}

.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.arrow-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.register-button:hover .arrow-icon {
  transform: translateX(5px);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  opacity: 0.7;
}

.trust-badge {
  font-size: 0.85rem;
  color: #03045e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-background {
    padding: 1.5rem 1rem;
  }

  /* .main-heading {
    font-size: 2.5rem;
  } */

  .features-section {
    /* padding: 2rem; */
    padding: 1.2rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .register-button {
    width: 100%;
    padding: 1rem 2rem;
  }
  .td-countdown-2-title .subtitle {
    font-size: 20px;
  }
}
.registration-form-section {
  padding: 90px 0;
}

/* end Registration form */

/* mertrics section */

.metrics-impact-section {
  background-color: #ffffff;
  padding: 90px 0;
  min-height: 100vh;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .metrics-impact-section {
    padding: 40px 0;
  }
}

.metrics-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.metrics-header {
  text-align: center;
  margin-bottom: 60px;
}

.metrics-title {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.metrics-subtitle {
  font-size: 1rem;
  color: #03045e;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.metrics-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 2px solid #e8eaff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease-out forwards;
}

.metrics-card:nth-child(1) {
  animation-delay: 0.6s;
}
.metrics-card:nth-child(2) {
  animation-delay: 0.8s;
}
.metrics-card:nth-child(3) {
  animation-delay: 1s;
}
.metrics-card:nth-child(4) {
  animation-delay: 1.2s;
}

.metrics-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03045e, transparent);
  transition: left 0.5s ease;
}

.metrics-card:hover {
  transform: translateY(-10px);
  border-color: #03045e;
  box-shadow: 0 20px 40px rgba(3, 4, 94, 0.15);
}

.metrics-card:hover::before {
  left: 100%;
}

.metrics-number {
  /* font-size: clamp(2.5rem, 4vw, 3.5rem); */
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  color: #03045e;
  margin-bottom: 15px;
  display: block;
  line-height: 1;
  position: relative;
}

.metrics-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #03045e, #4c5bff);
  border-radius: 2px;
  transition: width 0.4s ease 0.2s;
}

.metrics-card:hover .metrics-number::after {
  width: 60px;
}

.metrics-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #03045e;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.metrics-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #03045e, #4c5bff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transition: all 0.4s ease;
}

.metrics-card:hover .metrics-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Decorative elements */
.metrics-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.metrics-shape {
  position: absolute;
  background: rgba(3, 4, 94, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.metrics-shape1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.metrics-shape2 {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.metrics-shape3 {
  width: 80px;
  height: 80px;
  top: 40%;
  right: 5%;
  animation-delay: 4s;
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* .metrics-impact-section {
    padding: 60px 20px;
  } */

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .metrics-card {
    padding: 30px 25px;
  }

  .metrics-header {
    margin-bottom: 40px;
  }
}

/* @media (max-width: 480px) {
  .metrics-impact-section {
    padding: 40px 15px;
  }
} */

/* end mertrics section */

/* whats app */
.floating-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* end whatsapp */

/* bg particles */

/* Custom background enhancement styles */
.formSection {
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.form-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(3, 4, 94, 0.02) 0%,
    rgba(116, 0, 184, 0.03) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  z-index: 1;
}

/* Floating geometric shapes */
.form-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(116, 0, 184, 0.1), rgba(3, 4, 94, 0.08));
  animation: float 6s ease-in-out infinite;
}

.shape-circle.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.shape-circle.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 8%;
  animation-delay: 2s;
}

.shape-circle.circle-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  right: 25%;
  animation-delay: 4s;
}

/* Modern hexagonal shapes */
.shape-hexagon {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(30deg, rgba(3, 4, 94, 0.05), rgba(116, 0, 184, 0.08));
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  animation: rotate 15s linear infinite;
}

.shape-hexagon.hex-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-hexagon.hex-2 {
  top: 50%;
  right: 10%;
  transform: scale(0.7);
  animation-delay: 5s;
}

/* Subtle dot pattern overlay */
.form-dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-image: radial-gradient(circle, rgba(3, 4, 94, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

/* Elegant wave decoration */
.form-wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(116, 0, 184, 0.02) 100%);
  clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Ensure content stays above background elements */
.td-contact-form-area {
  position: relative;
  z-index: 10;
}

/* Subtle glow effect for form containers */
.form-glow-effect .td-contact-info,
.form-glow-effect .td-contact-form-wrap {
  box-shadow: 0 8px 32px rgba(3, 4, 94, 0.08);
  border: 1px solid rgba(116, 0, 184, 0.1);
}

/* Animated floating particles */
.form-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(116, 0, 184, 0.4);
  border-radius: 50%;
  animation: particle-float 8s linear infinite;
}

.particle.p1 {
  left: 20%;
  animation-delay: 0s;
}

.particle.p2 {
  left: 40%;
  animation-delay: 2s;
}

.particle.p3 {
  left: 60%;
  animation-delay: 4s;
}

.particle.p4 {
  left: 80%;
  animation-delay: 6s;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shape-circle,
  .shape-hexagon {
    transform: scale(0.6);
  }

  .form-dot-pattern {
    background-size: 20px 20px;
  }
}

/* end bg particles */
.legacy-tagline {
  font-size: 2rem;
}
