/*------------------------------------------------------------------
* Project:        Eventen - Event Conference React Templates
* Author:         HtmlDesign Templates
* URL:            https://themeforest.net/user/htmldesigntemplates/portfolio
* Created:        05/27/2025
-------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");

.swal2-actions {
  display: flex !important;
  justify-content: center !important;
}

/* color */
.pink {
  color: #e91e8c;
}
.black {
  color: #223645;
}
.text-grey {
  color: #707070;
}
.text-blue {
  color: #3a4cb4;
}
.text-light-grey {
  color: #adadad;
}
.elite {
  color: #ae4b84;
}
.business {
  color: #393182;
}
.vip {
  color: #d7b56b;
}
.student {
  color: #dc6601;
}
.white {
  color: #ffffff;
}

/*Background color */
.bg-pink {
  background-color: #e91e8c;
}
.bg-lightgrey {
  background-color: #f7f7f7;
}
.bg-blue {
  background-color: #3a4cb4;
}
.bg-grey {
  background-color: #70707057;
}
.bg-elite {
  background-color: #ae4b84;
}
.bg-business {
  background-color: #393182;
}
.bg-vip {
  background-color: #d7b56b;
}
.bg-student {
  background-color: #dc6601;
}

/*Border color */
.border-lightgrey {
  border-color: #f7f7f7 !important;
}
.border-grey {
  border-color: #70707057 !important;
}
.border-lightgrey {
  border-color: #f7f7f757 !important;
}
.border-pink {
  border-color: #e91e8c !important;
}
.border-lightpink {
  border-color: #ffa1c0 !important;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #707070;
}

/* Booth Categories */
/* Premium Booth Cards */
.bc-card {
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(145, 65, 133, 0.347);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.bc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

/* Badge Styling */
.bc-badge {
  font-weight: 600;
  font-size: 0.85rem;
}

/* Custom Animation start */
.shake {
  animation: shake 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(1.5px);
  }
}

.pulse {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* Custom Animation end */

/* Custom Css */

/* Feature section */
/* Card hover lift + smooth shadow */
.feature-box {
  transition: all 0.35s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: #e91e8c !important;
  box-shadow: 0px 12px 25px rgba(233, 30, 140, 0.25);
}

/* Shake animation */
@keyframes subtle-shake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(1px, -1px) rotate(-1deg);
  }
  50% {
    transform: translate(-1px, 1px) rotate(1deg);
  }
  75% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Apply shake only on hover */
.feature-box:hover img,
.feature-box:hover .feature-icon img {
  animation: subtle-shake 0.4s ease-in-out;
}

/* Role Tabs Section */
/* Tabs */
.tab-btn {
  padding: 10px 25px;
  margin: 0 8px;
  border-radius: 30px;
  border: 2px solid #e91e8c;
  background: transparent;
  color: #223645;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #e91e8c;
  color: #fff;
  transform: translateY(-3px);
}

.tab-btn.active {
  background: #e91e8c;
  color: #fff;
}

.role-tab-card {
  background-color: var(--bg-card, #12122a) !important;
  border: 1px solid rgba(233, 30, 140, 0.55) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.role-tab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(233, 30, 140, 0.28);
}

/* Tab Content Animation */
.animate-fade {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal Css */
/* Overlay */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 54, 69, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

/* Modal Box */
.custom-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: fadeInScale 0.3s ease;
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.modal-header h4 {
  margin: 0;
}

/* Body */
.modal-body {
  padding: 20px;
  overflow-y: auto;
}

.modal-body label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-top: 15px;
  color: #223645;
}

.modal-body input,
.modal-body textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.modal-body textarea {
  resize: vertical;
  min-height: 80px;
}

/* Footer */
.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #f0f0f0;
}

/* Icons */
.icon {
  color: #e91e8c;
}

/* Animations */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Live Pulse stats*/
.live-pulse {
  /* background-color: #f7f7f7; */
}

.pulse-card {
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.pulse-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 30px rgba(233, 30, 140, 0.25);
}

.pulse-icon {
  color: #e91e8c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

h3.pink {
  color: #e91e8c;
  font-size: 2rem;
  font-weight: 700;
}

p.text-grey {
  color: #707070;
  font-size: 1rem;
  font-weight: 500;
}

/* About Section */
.about-section {
  /* background: #f7f7f7; */
  position: relative;
  overflow: hidden;
}

.about-text h2 {
  font-weight: 700;
  line-height: 1.3;
  color: #223645;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #223645;
}

/* Download Button */
.btn-download {
  background-color: #3a4cb4;
  color: #fff;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-download:hover {
  background-color: #e91e8c;
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(233, 30, 140, 0.35);
  color: #fff;
}

/* Image Animation */
.animate-pulse {
  animation: pulseAnimation 2.5s ease-in-out infinite alternate;
}

@keyframes pulseAnimation {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-section {
    text-align: center;
  }
  .about-text {
    margin-bottom: 2rem;
  }
}

/* Timeline */
.timeline-container {
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  width: 4px;
  top: 0;
  bottom: 0;
  left: 20px;
  position: absolute;
  background: linear-gradient(#e91e8c, #6a1b9a);
}

.timeline-item {
  position: relative;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: pulseScale 2s infinite alternate;
}

.vision-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vision-image img:hover {
  transform: scale(1.05);
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.timeline-content {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(233, 30, 140, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .timeline-container {
    padding-left: 16px;
  }
  .timeline-line {
    left: 0;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-icon {
    margin-bottom: 10px;
  }
}

/* Core Pillars */
.core-pillars {
  position: relative;
}

.pillar-card {
  flex: 1; /* Stretch to fill parent column */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.pillar-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(233, 30, 140, 0.2);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e91e8c; /* pink theme */
  color: #fff;
  border-radius: 50%;
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.pillar-card:hover .pillar-icon {
  transform: rotate(15deg) scale(1.2);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.4);
}

.text-grey {
  color: #707070;
}

.bg-lightgrey {
  background-color: #f7f7f7;
}

@media (max-width: 991px) {
  .pillar-icon {
    width: 60px;
    height: 60px;
  }
}

/* Access Synergies */
.access-synergies {
  background-color: #fff;
}

.as-accordion-header {
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.as-accordion-header:hover {
  background-color: #e91e8c;
  color: #fff;

  .cat-title {
    color: #fff;
  }
}
.as-accordion-header .cat-title {
  color: #e91e8c;
}

.accordion-icon {
  transition: transform 0.4s ease;
}

.accordion-icon.rotate {
  transform: rotate(180deg);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-collapse.show {
  max-height: 500px; /* adjust if needed */
}

.table-row-hover {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.table-row-hover:hover {
  transform: translateY(-5px);
  background-color: #f7f7f7;
}

.table th,
.table td {
  vertical-align: middle;
}

/* Agenda Calendar */
.agenda-title {
  font-size: 2.4rem;
}

.gradient-text {
  background: rgb(233, 30, 140);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Styling */
.fc-button {
  background: rgb(233, 30, 140) !important;
  border: 1px solid rgb(231, 78, 129) !important;
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}

.fc-button:hover {
  opacity: 0.85;
  transform: translateY(1px);
}

/* Calendar wrapper */
.calendar-wrapper {
  background: #fff;
  border-radius: 16px;
}

.fc .fc-toolbar-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.fc .fc-daygrid-day-number {
  font-weight: 600;
}

.fc-event {
  background: rgb(196, 22, 116) !important;
  border: none !important;
  color: #fff !important;
  padding: 4px 6px !important;
  border-radius: 6px !important;
  font-size: 0.85rem;
}

.fc-scrollgrid-sync-inner a {
  color: #e91e8c !important;
}

/* ===========================================================
   Agenda 
=========================================================== */

/* ===========================================================
    TABS
=========================================================== */
.ag-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #223645;
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
}

.ag-tab-btn.active {
  color: #e91e8c;
}

.ag-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  height: 3px;
  width: 90%;
  background: #e91e8c;
  border-radius: 10px;
}

/* ===========================================================
    CUSTOM ACCORDION
=========================================================== */
.ag-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ag-accordion-item {
  border: 1px solid #e91e8c;
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.ag-accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 16px rgba(34, 54, 69, 0.08);
}

.ag-accordion-header {
  padding: 15px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ag-time {
  font-weight: 600;
  color: #223645;
}

.ag-title {
  font-weight: 500;
  color: #223645;
}

.ag-badge {
  background: #e91e8c20;
  color: #e91e8c;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.ag-chevron {
  transition: 0.3s ease;
  color: #223645;
}

.ag-chevron.rotated {
  transform: rotate(180deg);
}

/* Body */
.ag-accordion-body {
  padding: 0 22px 15px 50px;
  display: none;
}

.ag-accordion-item.open .ag-accordion-body {
  display: block;
  animation: agFadeDown 0.3s ease forwards;
}

@keyframes agFadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Exhibitors Page */

.exhibitors-floorplan .section-title {
  font-size: 2rem;
  font-weight: 700;
}

.exhibitors-floorplan .highlight {
  background: linear-gradient(90deg, #ff2d95, #e91e8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exhibitors-floorplan .section-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.exhibitors-floorplan .primary-btn {
  padding: 10px 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff2d95, #e91e8c);
  border: none;
  transition: 0.3s;
}

.exhibitors-floorplan .primary-btn:hover {
  opacity: 0.85;
}

.exhibitors-floorplan .outline-btn {
  padding: 10px 22px;
  border-radius: 8px;
  border: 2px solid #e91e8c;
  color: #e91e8c;
  background: #fff;
  transition: 0.3s;
}

.exhibitors-floorplan .outline-btn:hover {
  background: #ff2d95;
  color: #fff;
}

.floorplan-box img {
  border-radius: 12px;
}

/* Bootspectrem CSS */
.booth-spectrum .section-title {
  font-size: 2rem;
  font-weight: 700;
}

.booth-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background-color: #fff;
}

/* .booth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
} */

.booth-card h5 {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booth-card ul {
  padding-left: 18px;
  margin-bottom: 12px;
  color: #555;
}

.booth-card .badge {
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
}

.bg-pink {
  background-color: #e91e8c;
}
.bg-blue {
  background-color: #3a4cb4;
}
.bg-elite {
  background-color: #ae4b84;
}
.bg-vip {
  background-color: #d7b56b;
}

.booth-card .primary-btn {
  padding: 8px 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff2d95, #e91e8c);
  border: none;
  transition: 0.3s;
}

.booth-card .primary-btn:hover {
  opacity: 0.85;
}

/* Exhibitor Steps */
.exhibitor-success .section-title {
  font-size: 2rem;
  font-weight: 700;
}

.success-step {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background-color: #fff;
}

.success-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.step-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
}

.primary-btn {
  padding: 10px 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff2d95, #e91e8c);
  border: none;
  transition: 0.3s;
}

.primary-btn:hover {
  opacity: 0.85;
}

.outline-btn {
  padding: 10px 22px;
  border-radius: 8px;
  border: 2px solid #e91e8c;
  color: #e91e8c;
  background: #fff;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #ff2d95;
  color: #fff;
}

/* Sponsors Page*/
.sponsor-hero .sponsor-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #223645;
}

.gradient-text {
  background: linear-gradient(90deg, #ff2d95, #e91e8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.primary-btn {
  background: linear-gradient(135deg, #ff2d95, #e91e8c);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover {
  opacity: 0.85;
}

.sponsor-hero img {
  border-radius: 14px;
}

/* Sponsors Tiers */
.sponsor-tiers .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #223645;
}

.tier-card {
  background: #fff;
  transition: 0.3s ease;
  border-radius: 18px;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.tier-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.tier-price {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Colored Gradient Borders */
.vip-border {
  border-left: 5px solid #d7b56b;
  border-right: 5px solid #d7b56b;
}

.elite-border {
  border-left: 5px solid #ae4b84;
  border-right: 5px solid #ae4b84;
}

.business-border {
  border-left: 5px solid #393182;
  border-right: 5px solid #393182;
}

.pink-border {
  border-left: 5px solid #e91e8c;
  border-right: 5px solid #e91e8c;
}

.tier-list {
  padding-left: 0;
  list-style: none;
}

.tier-list li {
  color: #555;
  margin-bottom: 6px;
}

/* Sponsors Partner Perks Deep Dive */
.partner-perks {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(233, 30, 140, 0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(58, 76, 180, 0.16),
      transparent 38%
    ),
    linear-gradient(160deg, var(--bg-dark, #0a0a1a), var(--bg-card2, #0f0f24));
}

/* glowing background elements */
.glow-1,
.glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
}
.glow-1 {
  background: #c41674;
  top: -50px;
  left: -50px;
}
.glow-2 {
  background: #8220e5;
  bottom: -50px;
  right: -50px;
}

/* premium card style */
.perk-premium-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.perk-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);

  .perk-icon img {
    transform: scale(1.1);
    transition: all 0.3s ease;
  }
}

/* premium icons */
.perk-icon img {
  max-width: 80px;
  background: linear-gradient(90deg, #c41674, #8220e5);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* story card */
.story-premium {
  max-width: 760px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
}

.partner-perks .black {
  color: #ffffff !important;
}

.partner-perks p {
  color: var(--text-gray, #9ca3af);
}

/* Trusted Partners */

.partner-card {
  flex-shrink: 0;
  min-width: 160px;
  transition: background-color 0.3s ease;
}

.partner-card:hover {
  background-color: #f8f9fa;
}

/* Increased size for logo box */
.logo-box {
  width: 200px; /* was 140px */
  height: 100px; /* was 64px */
  /* background: #f1f3f5; */
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Slightly larger scale on hover */
.partner-card:hover .logo-box {
  transform: scale(1.08);
}

/* Make image fill the box and add smooth transition */
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keep logo proportions */
  transition: all 0.3s ease;
}

.partner-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.visit-text {
  color: #e91e8c;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.partner-card:hover .visit-text {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: make logo box responsive */
@media (min-width: 768px) {
  .logo-box {
    width: 240px;
    height: 120px;
  }
}

@media (min-width: 1200px) {
  .logo-box {
    width: 280px;
    height: 140px;
  }
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}

/* pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* LetsDoIt CTA section */
.lets-do-it-section {
  background-size: cover;
  background-position: center;
}

.lets-do-it-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.35;
  pointer-events: none;
}

.lets-do-it-bg-orb-left {
  width: 260px;
  height: 260px;
  left: -60px;
  top: 20px;
  background: radial-gradient(
    circle,
    rgba(58, 76, 180, 0.9) 0%,
    rgba(58, 76, 180, 0) 70%
  );
}

.lets-do-it-bg-orb-right {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -40px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.75) 0%,
    rgba(233, 30, 140, 0) 70%
  );
}

/* LetsDoIt CTA card */
.lets-do-it-card {
  background: linear-gradient(
    145deg,
    rgba(20, 28, 70, 0.88) 0%,
    rgba(16, 22, 56, 0.8) 100%
  );
  border: 1px solid rgba(233, 30, 140, 0.32);
  border-radius: 34px;
  box-shadow: 0 18px 44px rgba(7, 10, 28, 0.55);
  backdrop-filter: blur(8px);
}

.lets-do-it-card .ticket-info p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.lets-do-it-kicker {
  display: inline-block;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #ffd1e9;
  border: 1px solid rgba(233, 30, 140, 0.45);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(233, 30, 140, 0.12);
}

.lets-do-it-btn {
  background: linear-gradient(135deg, #e91e8c 0%, #c91879 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.lets-do-it-btn:hover {
  color: #fff;
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(233, 30, 140, 0.35);
}

@media (max-width: 767px) {
  .lets-do-it-card {
    border-radius: 24px;
  }
}

/* OUR AGENDA cards */
.schedule-card-modern {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.schedule-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 140, 0.75) !important;
  box-shadow: 0 14px 30px rgba(233, 30, 140, 0.2);
}

/* General Questions accordion alignment */
.faq-accordion-pro {
  border: 1px solid rgba(233, 30, 140, 0.24);
  border-radius: 16px;
  background: var(--bg-card, #12122a) !important;
}

.faq-accordion-pro .accordion-item {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.faq-accordion-pro .accordion-item:last-child {
  border-bottom: 0 !important;
}

.faq-accordion-pro .accordion-header {
  margin: 0;
  padding: 18px 0 !important;
}

.faq-accordion-pro .accordion-button {
  background: transparent !important;
  color: #e9edf8 !important;
  font-weight: 600;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.35;
}

.faq-accordion-pro .accordion-button:not(.collapsed) {
  color: #e91e8c !important;
}

.faq-accordion-pro .accordion-button::after {
  background-image: none !important;
  content: "\f067" !important;
  font-family: "FontAwesome" !important;
  font-size: 14px;
  color: #e91e8c !important;
  background-color: transparent !important;
  border: 1px solid rgba(233, 30, 140, 0.45);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  margin-left: auto;
  transform: none !important;
  transition: all 0.25s ease;
}

.faq-accordion-pro .accordion-button.collapsed::after {
  background-color: transparent !important;
}

.faq-accordion-pro .accordion-button:not(.collapsed)::after {
  content: "\f068" !important;
  color: #ffffff !important;
  background-color: #e91e8c !important;
  border-color: #e91e8c !important;
}

.faq-accordion-pro .accordion-body {
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--text-gray, #9ca3af) !important;
  border-radius: 12px;
  margin-bottom: 14px;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 18px !important;
}

/* Testimonial quote icon style */
.testimonial-slide .testimonial-content i.fa-quote-left {
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0 !important;
  background: transparent !important;
  color: #e91e8c !important;
  display: block;
  font-size: 52px !important;
  line-height: 1;
  top: -2px !important;
  left: -2px !important;
  opacity: 1 !important;
}

.testimonial-slide .testimonial-content p {
  margin-left: 72px !important;
  margin-top: 8px !important;
}

/* Blogs Page */
.blog-hero-section {
  background: linear-gradient(135deg, #fff, #fdf2fa);
}

.blog-subscribe-btn {
  background: linear-gradient(90deg, #e91e8c, #ae4b84);
  padding: 14px 26px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.blog-subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
}

/* Blog Feed section */
.blog-card {
  height: 100%;
  background: #fff;
  border: 1px solid #f1f1f1;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.load-more-btn {
  padding: 12px 35px;
  border-radius: 40px;
  border: 2px solid #e91e8c;
  color: #e91e8c;
  background: transparent;
  font-weight: 600;
  transition: 0.3s;
}

.load-more-btn:hover {
  background: #e91e8c;
  color: #fff;
}

/* Blog Filter */
.filter-btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid palevioletred;
  background: transparent;
  font-weight: 600;
  color: #c638aa;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, #e91e8c, #ae4b84);
  color: #fff;
  border-color: transparent;
}
/* Contribute Corner */
.submit-idea-btn {
  background: linear-gradient(90deg, #3a4cb4, #e91e8c);
  padding: 14px 32px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.submit-idea-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(58, 76, 180, 0.3);
}

.blog-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-content-area {
  flex-grow: 1;
}

.bottom-meta {
  margin-top: auto; /* pushes this to bottom */
}

/* Sponsorship Partners */
.profx-sponsors-card {
  width: 260px;
  min-height: 120px;
  padding: 16px;
}

@media (max-width: 768px) {
  .profx-sponsors-card {
    width: 220px;
  }
}

.profx-sponsors-section {
  background-color: #ffffff;
}

.profx-sponsors-title {
  color: #e91e8c;
  font-weight: 600;
}

.profx-sponsors-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  text-decoration: none;
}

.profx-sponsors-card img {
  max-width: 350px;
  max-height: 116px;
  object-fit: contain;
}

.profx-sponsors-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(233, 30, 140, 0.25);
}
/*  */
/* Always-visible small overlay */
.profx-speakers-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  text-align: center;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.profx-speakers-overlay h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}

.profx-speakers-overlay span {
  display: block;
  font-size: 15px;
  color: #fff;
}

.profx-speakers-overlay small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* Hide small overlay on hover so hover content is clear */
.speaker-box:hover .profx-speakers-overlay {
  opacity: 0;
}

/* Custom Navbar css */
/* -------------------------------------
   DESKTOP NAV
--------------------------------------*/
.cust-nav-desktop {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.cust-dropdown-menu li {
  list-style: none !important;
}

.cust-nav-desktop li a,
.cust-dropdown-btn {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  padding: 10px 0;
}

.cust-nav-desktop li a:hover {
  color: #f7f7f7;
}

/* DROPDOWN */
.cust-dropdown {
  position: relative;
}

.cust-dropdown-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cust-dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 170px;
  padding: 8px 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.cust-dropdown-menu li a {
  padding: 12px 16px;
  display: block;
  color: #223645;
}

.cust-dropdown-menu li a:hover {
  color: #e91e8c;
  background: rgba(233, 30, 140, 0.08);
}

.cust-dropdown:hover .cust-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------
   MOBILE NAV
--------------------------------------*/
.cust-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
}

/* MOBILE OVERLAY */
.cust-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

/* MOBILE PANEL */
.cust-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.15, 0.85, 0.5, 1);
  z-index: 9999;
  padding-bottom: 30px;
  overflow-y: auto;
  box-shadow: -2px 0 18px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 0 30px;
}

.cust-mobile-panel.cust-open {
  transform: translateX(0);
}

/* CLOSE BUTTON */
.cust-close-btn {
  background: none;
  border: none;
  color: #223645;
}

/* MOBILE LIST */
.cust-mobile-header {
  padding: 22px;
  display: flex;
  justify-content: flex-end;
}

.cust-mobile-list {
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  gap: 22px;
}

.cust-mobile-list a {
  font-size: 18px;
  color: #223645;
  font-weight: 500;
}

/* MOBILE DROPDOWN */
.cust-mobile-dropdown-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #223645;
}

.cust-mobile-dropdown-btn .rotate {
  transform: rotate(180deg);
  transition: 0.3s;
}

.cust-mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 18px;
}

.cust-mobile-dropdown-menu a {
  padding: 8px 0;
  font-size: 16px;
  color: var(--grey);
}

.cust-mobile-dropdown-menu.cust-show {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cust-nav-desktop {
    display: none;
  }

  .cust-mobile-toggle {
    display: block;
  }
}

/* sweetalert2 css */
.my-swal-btn {
  display: block;
  margin: 0 auto !important; /* centers the button horizontally */
  background: #e91e8c;
  border: none;
}

.my-swal-btn:hover {
  background: rgba(233, 30, 140, 0.8);
  border: none;
}

/* Ticket Booking Modal Styles */

.visitor-forms {
  max-height: 60vh;
}

.ticket-custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* SweetAlert2 toasts modal overlay */
.swal2-toast-container-high-z {
  z-index: 10001 !important;
}

.ticket-custom-modal {
  background: #fff;
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 24px;
}

.modal-close {
  background: none;
  border: none;
  /* font-size: 28px; */
  cursor: pointer;
}

.steps .step {
  margin: 0 10px;
  padding: 6px 12px;
  border-radius: 20px;
  background: #eee;
}

.steps .step.active {
  background: #e91e8c;
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.payment-card {
  border: 1px dashed #e91e8c;
  padding: 18px;
  cursor: pointer;
  text-align: center;
  border-radius: 12px;
  transition: all 0.25s ease;
  background: #fff;
}

.payment-card img {
  max-height: 40px;
  /* margin-bottom: 10px; */
  object-fit: contain;
}

.payment-card span {
  display: block;
  font-size: 14px;
  color: #223645;
  font-weight: 500;
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ✅ Selected State */
.payment-card.active {
  border: 2.5px solid #e91e8c;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.bank-deposit-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.bank-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.bank-upload {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bank-details {
  background: #fdf2f8;
  border: 1px dashed #e91e8c;
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .bank-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom File Input Styles */

input[type="file"] {
  width: 100%;
  max-width: 320px;
  font-size: 14px;
  color: #374151;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* File button */
input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: #e91e8c;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover */
input[type="file"]::file-selector-button:hover {
  background: #e91e8c;
  opacity: 0.95;
}

/* Disabled */
input[type="file"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Tickets*/

.tic-text {
  font-size: 43px;
  line-height: 0.8;
}

.transform-floor {
  transform: scale(1.1);
}

.floor-plan-bangkok {
  height: calc(100vh - 220px) !important;
}

/* Less than or equal to 600px */
@media (max-width: 600px) {
  .transform-floor {
    transform: scale(1);
  }

  .floor-plan-bangkok {
    height: calc(120vh - 365px) !important;
  }
}

/* ============================================================
   DARK THEME — ProfinExpo Bangkok
   ============================================================ */

:root {
  --bg-dark: #0a0a1a;
  --bg-card: #12122a;
  --bg-card2: #0f0f24;
  --text-gray: #9ca3af;
  --text-muted: #6b7280;
  --border-dark: rgba(255, 255, 255, 0.08);
  --pink: #e91e8c;
}

body {
  background-color: var(--bg-dark) !important;
  color: var(--text-gray);
}

/* Headings — all white in dark theme */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff !important;
}

/* Generic dark backgrounds replacing light ones */
.bg-lightgrey,
.bg-white,
section.testimonial.bg-lightgrey {
  background-color: var(--bg-card) !important;
}

/* Cards */
.pulse-card,
.tier-card,
.blog-card,
.booth-card,
.success-step,
.ag-accordion-item,
.bc-card,
.pillar-card,
.glass-card-dark,
.partner-card,
.custom-modal,
.ticket-custom-modal,
.cust-dropdown-menu,
.cust-mobile-panel,
.bank-deposit-box,
.perk-premium-card,
.story-premium {
  background-color: var(--bg-card) !important;
  color: var(--text-gray);
  border-color: var(--border-dark) !important;
}

/* White backgrounds on event info boxes etc */
.event-info-box,
.timeline-content {
  background-color: var(--bg-card) !important;
  border-color: var(--border-dark) !important;
}

/* Text color fixes */
.text-grey,
p.text-grey {
  color: var(--text-gray);
}
.black,
.about-text h2,
.about-text p,
.ag-time,
.ag-title,
.ag-chevron,
.cust-close-btn,
.modal-body label,
.payment-card span,
.filter-btn,
.sponsor-hero .sponsor-title,
.sponsor-tiers .section-title,
.blog-hero-section h1,
h3.pink + p {
  color: var(--text-gray);
}

/* Links in dark mode */
.cust-mobile-list a,
.cust-mobile-dropdown-btn,
.cust-dropdown-menu li a {
  color: var(--text-gray);
}
.cust-dropdown-menu li a:hover {
  color: #fff;
  background: rgba(233, 30, 140, 0.12);
}

/* Mobile nav panel dark */
.cust-mobile-panel {
  background: #0f0f24 !important;
  box-shadow: -2px 0 30px rgba(0, 0, 0, 0.6);
}

/* Tab buttons dark */
.tab-btn,
.ag-tab-btn {
  color: var(--text-gray) !important;
  border-color: rgba(233, 30, 140, 0.4) !important;
}
.tab-btn.active,
.tab-btn:hover {
  color: #fff !important;
}
.ag-tab-btn.active {
  color: #e91e8c !important;
}

/* Form inputs dark */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea,
select {
  background-color: #1a1a38 !important;
  color: #fff !important;
  border: 1px solid var(--border-dark) !important;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-muted) !important;
}

/* Modal dark */
.custom-modal,
.ticket-custom-modal {
  background: var(--bg-card) !important;
  color: #fff;
}
.modal-header,
.modal-footer {
  border-color: var(--border-dark) !important;
}
.modal-body label {
  color: var(--text-gray);
}

/* Bootstrap overrides */
.accordion-button,
.accordion-body {
  color: var(--text-gray);
  background: var(--bg-card);
}
.accordion-button:not(.collapsed) {
  background: var(--bg-card);
  color: #e91e8c;
}
.accordion-item {
  background: var(--bg-card) !important;
  border-color: var(--border-dark) !important;
}

/* Table dark */
.table {
  color: var(--text-gray);
}
.table th,
.table td {
  border-color: var(--border-dark) !important;
  color: var(--text-gray);
}
.table-row-hover:hover {
  background-color: var(--bg-card2) !important;
}

/* Calendar dark */
.calendar-wrapper {
  background: var(--bg-card) !important;
}
.fc .fc-toolbar-title,
.fc .fc-daygrid-day-number {
  color: #fff;
}
.fc .fc-col-header-cell-cushion {
  color: var(--text-gray);
}

/* Calendar polish */
.calendar-section .calendar-wrapper {
  background: linear-gradient(
    165deg,
    rgba(18, 18, 42, 0.96),
    rgba(12, 12, 30, 0.96)
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.calendar-section .fc .fc-toolbar {
  margin: 0;
  padding: 10px 8px 14px;
}

.calendar-section .fc .fc-toolbar-title {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.04em;
  color: #ffffff !important;
}

.calendar-section .fc .fc-button {
  background: linear-gradient(135deg, #e91e8c, #c41674) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  font-weight: 600;
  text-transform: lowercase;
  box-shadow: none !important;
}

.calendar-section .fc .fc-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(233, 30, 140, 0.35) !important;
}

.calendar-section .fc .fc-button-primary:not(:disabled).fc-button-active {
  background: #a91363 !important;
  border-color: #a91363 !important;
}

.calendar-section .fc-theme-standard td,
.calendar-section .fc-theme-standard th,
.calendar-section .fc-theme-standard .fc-scrollgrid {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.calendar-section .fc .fc-col-header-cell {
  background: rgba(255, 255, 255, 0.04);
}

.calendar-section .fc .fc-col-header-cell-cushion {
  color: #ff4ea9 !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.calendar-section .fc .fc-daygrid-day-frame {
  transition: background-color 0.22s ease;
}

.calendar-section .fc .fc-daygrid-day:hover .fc-daygrid-day-frame {
  background: rgba(255, 255, 255, 0.035);
}

.calendar-section .fc .fc-daygrid-day-number {
  color: #ff4ea9 !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 8px;
}

.calendar-section .fc .fc-day-today {
  background: rgba(58, 76, 180, 0.22) !important;
}

.calendar-section .fc .fc-day-today .fc-daygrid-day-number {
  background: rgba(233, 30, 140, 0.18);
  border: 1px solid rgba(233, 30, 140, 0.55);
  border-radius: 999px;
}

.calendar-section .fc-event {
  background: linear-gradient(135deg, #e91e8c, #cf197b) !important;
  border: 0 !important;
  border-left: 3px solid rgba(113, 42, 42, 0.75) !important;
  color: #fff !important;
  border-radius: 7px !important;
  font-size: 0.76rem !important;
  font-weight: 600;
  padding: 3px 6px !important;
}

.calendar-section .fc .fc-list {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.calendar-section .fc .fc-list-day-cushion,
.calendar-section .fc .fc-list-table td {
  background: transparent !important;
  color: #d6d9e8 !important;
}

/* Day popover (more events) */
.calendar-section .fc .fc-popover {
  background: var(--bg-card, #12122a) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.calendar-section .fc .fc-popover-header {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--text-gray, #9ca3af) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-section .fc .fc-popover-title,
.calendar-section .fc .fc-popover-close {
  color: var(--text-gray, #9ca3af) !important;
}

/* Blog dark */
.blog-card {
  background: var(--bg-card) !important;
  border-color: var(--border-dark) !important;
}
.blog-hero-section {
  background: var(--bg-dark) !important;
}

/* Payment card dark */
.payment-card,
.bank-deposit-box,
.bank-details {
  background: var(--bg-card) !important;
}
.bank-details {
  border-color: rgba(233, 30, 140, 0.35) !important;
}

/* Tier list */
.tier-list li {
  color: var(--text-gray);
}
.booth-card ul,
.booth-card h5 {
  color: var(--text-gray);
}

/* Profx sponsors dark */
.profx-sponsors-section {
  background-color: var(--bg-card) !important;
}
.profx-sponsors-card {
  background: var(--bg-card2) !important;
}

/* Access synergies dark */
.access-synergies {
  background-color: var(--bg-dark) !important;
}
.as-accordion-header .cat-title {
  color: #e91e8c;
}

/* Schedules dark */
.schedules {
  background-image: none !important;
  background-color: var(--bg-dark) !important;
}
.schedule-2 {
  background-image: none !important;
  background-color: var(--bg-dark) !important;
}

.schedule-day {
  background: transparent !important;
}

/* Hero glass card */
.hero-glass-card {
  background: rgba(18, 18, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(233, 30, 140, 0.15);
  color: #ff2d95;
  border: 1px solid rgba(233, 30, 140, 0.25);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e91e8c;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  top: 20%;
  left: 8%;
  width: 320px;
  height: 320px;
  opacity: 0.28;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
  filter: blur(60px);
  animation: floatOrb 7s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: 15%;
  right: 5%;
  width: 420px;
  height: 420px;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(100, 30, 140, 0.3), transparent 70%);
  filter: blur(80px);
  animation: floatOrb 9s ease-in-out infinite;
  animation-delay: 3s;
}
@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.04);
  }
}

/* Wave fill — dark background */
.wave .elementor-shape-fill {
  fill: var(--bg-dark) !important;
}

/* Section backgrounds */
section {
  background-color: transparent;
}
.feature {
  background-color: #070710 !important;
}
.faq {
  background-color: #070710 !important;
}

.event-partners-section {
  position: relative;
}

.event-partners-shell {
  color: #ffffff !important;
  border-radius: 36px;
  padding: 56px 34px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.event-partners-title {
  color:#ffffff !important;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  text-transform: none;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.event-partners-highlight {
  color: #e91e8c;
}

.event-partners-copy {
  color: #ffffff !important;
  font-size: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.event-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.event-partners-card {
  min-height: 112px;
  background: #fff;
  border: 2px solid rgba(233, 30, 140, 0.88);
  border-radius: 28px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(233, 30, 140, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.event-partners-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(233, 30, 140, 0.18);
  border-color: #c41674;
}

.event-partners-card img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.event-partners-more {
  margin-top: 28px;
  text-align: right;
  color: #eceff4;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
}

@media (max-width: 1199px) {
  .event-partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .event-partners-shell {
    padding: 42px 22px 24px;
    border-radius: 28px;
  }

  .event-partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .event-partners-card {
    min-height: 96px;
    border-radius: 22px;
  }
}

@media (max-width: 767px) {
  .event-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-partners-card {
    padding: 14px 16px;
  }

  .event-partners-card img {
    max-height: 48px;
  }

  .event-partners-more {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .event-partners-grid {
    grid-template-columns: 1fr;
  }
}

/* SweetAlert dark */
.swal2-popup {
  background: var(--bg-card) !important;
  color: #fff !important;
}
.swal2-title,
.swal2-content {
  color: #fff !important;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #e91e8c, #c41674);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   END DARK THEME
   ============================================================ */

/* Custom Scrollbar */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* light track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(rgb(196, 22, 116), rgb(36, 54, 156));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    rgb(170, 10, 65),
    rgb(28, 42, 140)
  ); /* darker gradient on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(196, 22, 116) #f1f1f1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Poppins", serif;
  text-transform: uppercase;
  margin: 0;
  color: #223645;
  line-height: 1.22;
}

h1,
.h1 {
  font-size: 54px;
}

h2,
.h2 {
  font-size: 40px;
}

h3,
.h3 {
  font-size: 32px;
}

h4,
.h4 {
  font-size: 26px;
}

h5,
.h5 {
  font-size: 21px;
}

h6,
.h6 {
  font-size: 18px;
}

@media (max-width: 1100px) {
  h1,
  .h1 {
    font-size: 36px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h4,
  .h4 {
    font-size: 21px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  h1,
  .h1 {
    font-size: 30px;
  }

  h2,
  .h2 {
    font-size: 24px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }

  h5,
  .h5 {
    font-size: 16px;
  }
}

a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #e91e8c;
  transition: all 0.5s ease-in-out;
}

a.social-url:hover {
  color: #fff !important;
  transition: all 0.5s ease-in-out;
}

/* Borders Styles */
.border-dashed-bottom-1 {
  border-bottom: 1px dashed #70707057;
}
.border-dashed-bottom-2 {
  border-bottom: 2px dashed #70707057;
}
.border-social {
  border: 1px solid #f7f7f757;
}

/* Box Shadow */
.box-shadow {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
}

/* padding */
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 5px !important;
}
.p-2 {
  padding: 10px !important;
}
.p-3 {
  padding: 15px !important;
}
.p-4 {
  padding: 20px !important;
}
.p-5 {
  padding: 25px !important;
}
.p-6 {
  padding: 30px !important;
}
.p-7 {
  padding: 40px !important;
}
.p-8 {
  padding: 50px !important;
}
.p-9 {
  padding: 75px !important;
}
.p-10 {
  padding: 100px !important;
}
.p-11 {
  padding: 120px !important;
}

/* Padding Top */
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pt-1,
.py-1 {
  padding-top: 5px !important;
}
.pt-2,
.py-2 {
  padding-top: 10px !important;
}
.pt-3,
.py-3 {
  padding-top: 15px !important;
}
.pt-4,
.py-4 {
  padding-top: 20px !important;
}
.pt-5,
.py-5 {
  padding-top: 25px !important;
}
.pt-6,
.py-6 {
  padding-top: 30px !important;
}
.pt-7,
.py-7 {
  padding-top: 40px !important;
}
.pt-8,
.py-8 {
  padding-top: 50px !important;
}
.pt-9,
.py-9 {
  padding-top: 75px !important;
}
.pt-10,
.py-10 {
  padding-top: 100px !important;
}
.pt-11,
.py-11 {
  padding-top: 120px !important;
}

/* Padding Bottom */
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pb-1,
.py-1 {
  padding-bottom: 5px !important;
}
.pb-2,
.py-2 {
  padding-bottom: 10px !important;
}
.pb-3,
.py-3 {
  padding-bottom: 15px !important;
}
.pb-4,
.py-4 {
  padding-bottom: 20px !important;
}
.pb-5,
.py-5 {
  padding-bottom: 25px !important;
}
.pb-6,
.py-6 {
  padding-bottom: 30px !important;
}
.pb-7,
.py-7 {
  padding-bottom: 40px !important;
}
.pb-8,
.py-8 {
  padding-bottom: 50px !important;
}
.pb-9,
.py-9 {
  padding-bottom: 75px !important;
}
.pb-10,
.py-10 {
  padding-bottom: 100px !important;
}
.pb-11,
.py-11 {
  padding-bottom: 120px !important;
}

/* Padding Start/Left */
.ps-0,
.px-0 {
  padding-left: 0px !important;
}
.ps-1,
.px-1 {
  padding-left: 5px !important;
}
.ps-2,
.px-2 {
  padding-left: 10px !important;
}
.ps-3,
.px-3 {
  padding-left: 15px !important;
}
.ps-4,
.px-4 {
  padding-left: 20px !important;
}
.ps-5,
.px-5 {
  padding-left: 25px !important;
}
.ps-6,
.px-6 {
  padding-left: 30px !important;
}
.ps-7,
.px-7 {
  padding-left: 40px !important;
}
.ps-8,
.px-8 {
  padding-left: 50px !important;
}
.ps-9,
.px-9 {
  padding-left: 75px !important;
}
.ps-10,
.px-10 {
  padding-left: 100px !important;
}
.ps-11,
.px-11 {
  padding-left: 120px !important;
}

/* Padding End/Right */
.pe-0,
.px-0 {
  padding-right: 0px !important;
}
.pe-1,
.px-1 {
  padding-right: 5px !important;
}
.pe-2,
.px-2 {
  padding-right: 10px !important;
}
.pe-3,
.px-3 {
  padding-right: 15px !important;
}
.pe-4,
.px-4 {
  padding-right: 20px !important;
}
.pe-5,
.px-5 {
  padding-right: 25px !important;
}
.pe-6,
.px-6 {
  padding-right: 30px !important;
}
.pe-7,
.px-7 {
  padding-right: 40px !important;
}
.pe-8,
.px-8 {
  padding-right: 50px !important;
}
.pe-9,
.px-9 {
  padding-right: 75px !important;
}
.pe-10,
.px-10 {
  padding-right: 100px !important;
}
.pe-11,
.px-11 {
  padding-right: 120px !important;
}

/* Margin */

.m-0 {
  margin: 0px !important;
}
.m-1 {
  margin: 5px !important;
}
.m-2 {
  margin: 10px !important;
}
.m-3 {
  margin: 15px !important;
}
.m-4 {
  margin: 20px !important;
}
.m-5 {
  margin: 25px !important;
}
.m-6 {
  margin: 30px !important;
}
.m-7 {
  margin: 40px !important;
}
.m-8 {
  margin: 50px !important;
}
.m-9 {
  margin: 75px !important;
}
.m-10 {
  margin: 100px !important;
}
.m-11 {
  margin: 120px !important;
}

/* Margin Top */
.mt-0,
.my-0 {
  margin-top: 0px !important;
}
.mt-1,
.my-1 {
  margin-top: 5px !important;
}
.mt-2,
.my-2 {
  margin-top: 10px !important;
}
.mt-3,
.my-3 {
  margin-top: 15px !important;
}
.mt-4,
.my-4 {
  margin-top: 20px !important;
}
.mt-5,
.my-5 {
  margin-top: 25px !important;
}
.mt-6,
.my-6 {
  margin-top: 30px !important;
}
.mt-7,
.my-7 {
  margin-top: 40px !important;
}
.mt-8,
.my-8 {
  margin-top: 50px !important;
}
.mt-9,
.my-9 {
  margin-top: 75px !important;
}
.mt-10,
.my-10 {
  margin-top: 100px !important;
}
.mt-11,
.my-11 {
  margin-top: 120px !important;
}

/* Mrgin Bottom */
.mb-0,
.my-0 {
  margin-bottom: 0px !important;
}
.mb-1,
.my-1 {
  margin-bottom: 5px !important;
}
.mb-2,
.my-2 {
  margin-bottom: 10px !important;
}
.mb-3,
.my-3 {
  margin-bottom: 15px !important;
}
.mb-4,
.my-4 {
  margin-bottom: 20px !important;
}
.mb-5,
.my-5 {
  margin-bottom: 25px !important;
}
.mb-6,
.my-6 {
  margin-bottom: 30px !important;
}
.mb-7,
.my-7 {
  margin-bottom: 40px !important;
}
.mb-8,
.my-8 {
  margin-bottom: 50px !important;
}
.mb-9,
.my-9 {
  margin-bottom: 75px !important;
}
.mb-10,
.my-10 {
  margin-bottom: 100px !important;
}
.mb-11,
.my-11 {
  margin-bottom: 120px !important;
}

/* Margin Start/Left */
.ms-0,
.mx-0 {
  margin-left: 0px !important;
}
.ms-1,
.mx-1 {
  margin-left: 5px !important;
}
.ms-2,
.mx-2 {
  margin-left: 10px !important;
}
.ms-3,
.mx-3 {
  margin-left: 15px !important;
}
.ms-4,
.mx-4 {
  margin-left: 20px !important;
}
.ms-5,
.mx-5 {
  margin-left: 25px !important;
}
.ms-6,
.mx-6 {
  margin-left: 30px !important;
}
.ms-7,
.mx-7 {
  margin-left: 40px !important;
}
.ms-8,
.mx-8 {
  margin-left: 50px !important;
}
.ms-9,
.mx-9 {
  margin-left: 75px !important;
}
.ms-10,
.mx-10 {
  margin-left: 100px !important;
}
.ms-11,
.mx-11 {
  margin-left: 120px !important;
}

/* Mrgin End/Right */
.me-0,
.mx-0 {
  margin-right: 0px !important;
}
.me-1,
.mx-1 {
  margin-right: 5px !important;
}
.me-2,
.mx-2 {
  margin-right: 10px !important;
}
.me-3,
.mx-3 {
  margin-right: 15px !important;
}
.me-4,
.mx-4 {
  margin-right: 20px !important;
}
.me-5,
.mx-5 {
  margin-right: 25px !important;
}
.me-6,
.mx-6 {
  margin-right: 30px !important;
}
.me-7,
.mx-7 {
  margin-right: 40px !important;
}
.me-8,
.mx-8 {
  margin-right: 50px !important;
}
.me-9,
.mx-9 {
  margin-right: 75px !important;
}
.me-10,
.mx-10 {
  margin-right: 100px !important;
}
.me-11,
.mx-11 {
  margin-right: 120px !important;
}

/* Margin Negative */
.mb-mi {
  margin-bottom: -30px;
}

/* Margin responsive */
@media (max-width: 992px) {
  .m-md-0 {
    margin: 0px !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0px !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0px !important;
  }
  .ms-md-0,
  .mx-md-0 {
    margin-left: 0px !important;
  }
  .me-md-0,
  .mx-md-0 {
    margin-right: 0px !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0px !important;
  }
  .ps-md-0,
  .px-md-0 {
    padding-left: 0px !important;
  }
  .pe-md-0,
  .px-md-0 {
    padding-right: 0px !important;
  }

  .page-banner .page-title {
    padding: 80px 0 !important;
  }
}

@media (max-width: 576px) {
  .m-sm-0 {
    margin: 0px !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0px !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0px !important;
  }
  .ms-sm-0,
  .mx-sm-0 {
    margin-left: 0px !important;
  }
  .me-sm-0,
  .mx-sm-0 {
    margin-right: 0px !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0px !important;
  }
  .ps-sm-0,
  .px-sm-0 {
    padding-left: 0px !important;
  }
  .pe-sm-0,
  .px-sm-0 {
    padding-right: 0px !important;
  }
}

/* Padding for Section */
section {
  padding: 100px 0;
}

/* Form Control */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea,
select {
  font-size: 15px;
  font-weight: 400;
  background-color: #f7f7f7;
  border: none;
  border-radius: 25px;
  padding: 15px 25px;
  color: #707070;
  margin-bottom: 0;
  box-shadow: none;
  width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
  outline: none;
  transition: all 0.5s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
input::placeholder,
textarea::placeholder {
  color: #70707070;
  font-size: 15px;
}

/* Button */
.btn,
.btn1,
.btn2 {
  font-size: 15px;
  border-radius: 25px;
  padding: 15px 25px;
  transition: all 0.5s ease-in-out;
  background-color: #e91e8c;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.btn:hover {
  background-color: rgb(233, 30, 140);
  transition: all 0.5s ease-in-out;
  color: #fff;
}

.btn1 {
  background-color: #fff;
  color: #e91e8c;
}

.btn1:hover {
  background-color: #e91e8c;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.btn2 {
  background-color: transparent;
  color: #fff;
  border: solid;
  border-width: 1px;
}

.btn3:hover {
  background-color: #fff;
  color: #e91e8c;
  transition: all 0.5s ease-in-out;
}

/* Width */
.w-20 {
  width: 20% !important;
}
.w-40 {
  width: 40% !important;
}
.w-60 {
  width: 60% !important;
}
.w-80 {
  width: 80% !important;
}

@media (min-width: 576px) {
  .w-sm-20 {
    width: 20% !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-40 {
    width: 40% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-55 {
    width: 55% !important;
  }
  .w-sm-60 {
    width: 60% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-80 {
    width: 80% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .w-md-20 {
    width: 20% !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-40 {
    width: 40% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-55 {
    width: 55% !important;
  }
  .w-md-60 {
    width: 60% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-80 {
    width: 80% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-20 {
    width: 20% !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-40 {
    width: 40% !important;
  }
  .w-lg-35 {
    width: 35% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-55 {
    width: 55% !important;
  }
  .w-lg-60 {
    width: 60% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-80 {
    width: 80% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
}

/* Border Radius */
.rounded {
  border-radius: 25px !important;
}

.rounded-top {
  border-top-left-radius: 25px !important ;
  border-top-right-radius: 25px !important;
}

.rounded-bottom {
  border-bottom-left-radius: 25px !important;
  border-bottom-right-radius: 25px !important ;
}

.rounded-start {
  border-top-left-radius: 25px !important ;
  border-bottom-left-radius: 25px !important ;
}

.rounded-end {
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important ;
}

/* Overlay */
.overlay {
  background-blend-mode: overlay;
  background-size: auto;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0.5;
}

/* Overlay for other pages*/
.page-banner .overlay {
  background-image: linear-gradient(180deg, #24369c 0%, #c41674 100%);
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1270px;
  }
}
