body {
  font-family: Arial, sans-serif;
}

.navbar-brand img {
    /*height: 45px;*/
    width: auto;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a237e, #5c6bc0);
  padding: 100px 0;
  border-bottom-left-radius: 80px;
}

.dropdown-menu.mega-menu {
  display: block; /* 🔥 THIS IS THE MAIN FIX */
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #5c6bc0, #7e57c2);
  padding: 80px 0;
  border-radius: 20px;
  margin: 40px;
}

/* Cards */
.card {
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* NAVBAR */
.navbar {
  padding: 0px 60px;
  background: #fff;
}

/* LOGO */
.navbar-brand {
  font-size: 26px;
  font-weight: 700;
  color: #00a0a0;
}

/* NAV LINKS */
.nav-link {
  font-weight: 500;
  color: #222;
  margin: 0 14px;
  position: relative;
  padding-bottom: 6px;
}

/* UNDERLINE ANIMATION */
.nav-link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #6c63ff;
  transition: 0.3s;
}

.nav-link:hover::before {
  width: 100%;
}

/* ARROW */
.nav-link.dropdown-toggle::after {
  border: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 6px;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.hero-youtube-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}



/* MEGA MENU */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  padding: 35px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

/* SHOW ON HOVER */
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MENU TEXT */
.mega-menu h6 {
  font-weight: 600;
  margin-bottom: 12px;
}

.mega-menu a {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.2s;
}

.mega-menu a:hover {
  color: #6c63ff;
}

/* RIGHT SIDE */
.right-nav a {
  margin-left: 20px;
  font-size: 11px;
  color: #333;
  text-decoration: none;
}

/* MOBILE NAVBAR */
@media (max-width: 991px) {

  .navbar {
    padding: 12px 20px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .nav-link {
    margin: 10px 0;
  }

  /* DISABLE HOVER MEGA MENU */
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 0;
    display: none;
  }

  /* CLICK TO OPEN */
  .nav-item.active .mega-menu {
    display: block;
  }

  /* STACK RIGHT SIDE */
  .right-nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }

  .right-nav a {
    margin: 8px 0;
  }

  .divider {
    display: none;
  }

  .icon {
    margin-top: 10px;
  }
}

/* DEMO BUTTON */
/* Cvent style outline gradient button */
/* Base button */
.btn-demo {
  position: relative;
  padding: 7px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #00a0a0;
  background: #fff;
  border: 2px solid transparent;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;

  /* Gradient border trick */
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(to right, #00ca9d 0%, #006ae1 51%, #8457d9 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Gradient layer (hidden initially) */
.btn-demo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00ca9d 0, #006ae1 51.04%, #8457d9 100%);
  z-index: -1;
  transition: all 0.4s ease;
}

/* Hover effect (left â†’ right fill) */
.btn-demo:hover::before {
  left: 0;
}

/* Text color change */
.btn-demo:hover {
  color: #fff;
  /* border-color: transparent; */
}

/* ICONS */
.icon {
  font-size: 16px;
  cursor: pointer;
  margin-left: 15px;
}

/* Divider line */
.divider {
  width: 1px;
  height: 20px;
  background: #ccc;
  margin: 0 12px;
}



/* Optional: improve text spacing */
.find-text {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #0f1b3d, #1a2a6c);
  padding: 80px 60px;
  color: #fff;
}

/* Title */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Subtitle */
.hero-subtitle {
  margin: 20px 0;
  font-size: 16px;
  color: #cfd3ff;
}

/* Button */
.hero-btn {
  background: #fff;
  color: #000;
  border-radius: 25px;
  padding: 10px 22px;
  font-weight: 500;
}

.hero-btn:hover {
  background: #ddd;
}

/* Image */
.hero-img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 50px 20px;
  }

  .hero-title {
    font-size: 32px;
  }
  .hero-video-wrapper {
        max-width: 100%;
        margin-top: 30px;
        border-radius: 18px;
    }
}

/* HERO BACKGROUND */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0f1b3d, #1a2a6c);
  padding: 90px 60px;
  color: #fff;
  overflow: hidden;
}

/* GRADIENT GLOW OVERLAY */
.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.4), transparent);
  top: -100px;
  right: -100px;
  filter: blur(100px);
}

/* TITLE */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* SUBTITLE */
.hero-subtitle {
  margin: 20px 0;
  font-size: 16px;
  color: #cfd3ff;
}

/* BUTTON */
.hero-btn {
  background: #fff;
  color: #000;
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 500;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e6e6e6;
}

/* IMAGE WRAPPER (for glow + animation) */
.hero-img-wrapper {
  position: relative;
  display: inline-block;
}

/* FLOATING ANIMATION */
.hero-img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* KEYFRAMES */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* EXTRA GLOW BEHIND IMAGE */
.hero-img-wrapper::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.4), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }
}

/* Wave container */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hero-wave svg {
  width: 100%;
  height: 140px;
}

/* Button container */
/* Container */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

/* BLUE BUTTON */
.button-blue {
  background: #006ae1;
  color: #ffffff;
  padding: 12px 26px;
  /* border-radius: 28px; */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.button-blue:hover {
  background: #f2f2f2;
  color: #000;
}

/* REQUEST DEMO LINK */
/* CTA link */
.cta-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* underline */
.cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease;
}

/* arrow */
.cta-link .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* HOVER EFFECT */
.cta-link:hover::after {
  width: 100%;
}

.cta-link:hover .arrow {
  transform: translateX(4px);
  /* smooth move right */
}

.cta-link:hover::after {
  width: 100%;
}

/* Wrapper */
/* Wrapper (important) */
.hero-bottom-wrapper {
  position: relative;
  margin-top: -70px;
  /* pulls card into hero */
  z-index: 5;
}

/* Card */
.header-banner-hero-horizontal-notification-card.component-theme-color-indigo {
  background:
    linear-gradient(180deg, #00ca9d 0, #006ae1 50%, #8457d9 100%) left / 6px 100% no-repeat,
    #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 22px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Text */
.alt-title {
  margin: 0;
  font-size: 13.5px;
  color: #333;
}

/* CTA */
.register-link {
  color: #006ae1;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* underline */
.register-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 1px;
  background: #006ae1;
  transition: width 0.25s ease;
}

/* arrow */
.register-link .arrow {
  transition: transform 0.2s ease;
}

/* hover */
.register-link:hover::after {
  width: 100%;
}

.register-link:hover .arrow {
  transform: translateX(3px);
}

/* Curve */
/* .hero-curve {
    margin-top: -1px;
}

.hero-curve svg {
    width: 100%;
    height: 110px;
    display: block;
    fill: #fff;
} */

@media (max-width: 768px) {

  .hero-bottom-wrapper {
    margin-top: -40px;
  }

  .header-banner-hero-horizontal-notification-card.component-theme-color-indigo {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
  }

  .alt-title {
    font-size: 13px;
  }

  .register-link {
    font-size: 13px;
  }
}

/* compound-media-bar section */
/* SECTION */
/* CONTAINER */
.compound-media-bar-container {
  max-width: 1391px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1e6bd6, #7b4ce2);
    border-radius: 28px;
    padding: 60px;
    color: #fff;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

/* LEFT */
.left {
  flex: 1;
}

.media-wrapper {
  position: relative;
}

.media-wrapper img {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  display: block;
}





/* RIGHT */
.right {
  flex: 1;
  max-width: 500px;
}

.right h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.right p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 20px;
  /* background: white; */
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;

    width: 70px;
    height: 70px;

    display: none;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;

    font-size: 25px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* ðŸ“± MOBILE */
@media (max-width: 768px) {
  .compound-media-bar-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .media-wrapper img {
    max-width: 100%;
  }
  
  
    .hero-video-wrapper {
        max-width: 100%;
        height: 260px;
        margin-top: 30px;
        border-radius: 20px;
    }

    .hero-video {
        border-radius: 20px;
    }



  .right h1 {
    font-size: 26px;
  }

  .right p {
    font-size: 15px;
  }
}

/* Your all-in-one solution for every event */
.events-managed-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 60px 80px;
  max-width: 1200px;
  margin: auto;
  color: #161851;
}

/* LEFT IMAGE */
.image-section img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
}

/* RIGHT CONTENT */
.content {
  max-width: 500px;
}

.content h1 {
  font-size: 36px;
  color: #1a1a3c;
  margin-bottom: 30px;
  line-height: 1.3;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
}

.stat h2 {
  font-size: 28px;
  margin: 0;
  color: #1a1a3c;
}

.stat p {
  margin: 5px 0 0;
  color: #555;
  font-size: 14px;
}

/* Responsive */
/* TABLET + MOBILE */
@media (max-width: 900px) {

  .events-managed-container {
    flex-direction: column;
    /* âœ… stack */
    padding: 40px 20px;
    text-align: center;
  }

  .image-section img {
    max-width: 100%;
  }

  .content {
    margin-top: 30px;
    max-width: 100%;
  }

  .content h1 {
    font-size: 26px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    /* âœ… 2 per row */
    gap: 20px;
    margin-top: 20px;
  }

  .stat h2 {
    font-size: 22px;
  }

  .stat p {
    font-size: 13px;
  }
}


/* Trusted by thousands of top organizations */
.trusted-section {
  text-align: center;
  padding: 60px 20px;
}

.trusted-section h3 {
  font-size: 32px;
  color: #1a1a3c;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* LOGO GRID */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: auto;
}

.logo-grid img {
  max-width: 120px;
  width: 100%;
  height: auto;
  opacity: 0.8;
  transition: 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* TABLET */
@media (max-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* MOBILE */
/* MOBILE */
@media (max-width: 600px) {

  .trusted-section {
    padding: 40px 15px;
  }

  .trusted-section h3 {
    /* âœ… fixed selector */
    font-size: 22px;
    margin-bottom: 30px;
  }

  .logo-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
  }

  .logo-grid img {
    min-width: 80px;
  }
}

/* Powerful event management software */
.section-title {
  text-align: center;
  margin: 50px 0 30px 0;
}

.section-title h1 {
  font-weight: bold;
}

.section-title p {
  color: #555;
}

.card-custom {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-custom img {
  border-bottom: 1px solid #eee;
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.card-custom .card-body {
  padding: 20px;
}

.card-custom .card-body h5 {
  font-weight: bold;
}

.card-custom .card-body a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.card-custom .card-body a:hover {
  text-decoration: underline;
}

.explore-btn {
  display: block;
  margin: 40px auto;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {

  /* Section spacing */
  .section-title {
    margin: 30px 10px 20px;
    text-align: center;
  }

  .section-title h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .section-title p {
    font-size: 14px;
  }

  /* Cards spacing */
  .row {
    gap: 10px;
  }

  /* Make cards full width */
  .col-md-4 {
    width: 100%;
  }

  /* Card styling */
  .card-custom {
    border-radius: 14px;
  }

  .card-custom img {
    height: 160px;
    /* better for mobile */
  }

  .card-custom .card-body {
    padding: 16px;
  }

  .card-custom h5 {
    font-size: 16px;
    line-height: 1.4;
  }

  .card-custom small {
    font-size: 11px;
  }

  .card-custom a {
    font-size: 14px;
  }

  /* Button */
  .explore-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px;
    margin: 25px 0;
  }
}

/* Find the right venue faster with AI */
.banner-card {
  position: relative;
  background: linear-gradient(135deg, #0f5db8, #1aa37a);
  border-radius: 24px;
  padding: 50px 50px 50px 50px;
  width: 900px;
  color: #fff;
  overflow: visible;
  display: flex;
  align-items: flex-start;
}

.banner-content {
  max-width: 500px;
}

.banner-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.banner-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.95;
}

.banner-content strong {
  font-weight: 600;
}

.banner-btn {
  padding: 14px 24px;
  border: 2px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #fff;
  color: #0f5db8;
}

/* Right media card */
.media-card {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background-color: #000;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay text on right card */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 120, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  font-weight: 600;
}

.overlay span {
  font-size: 14px;
  letter-spacing: 1px;
}

.overlay strong {
  font-size: 18px;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .banner-card {
    flex-direction: column;
    padding: 30px;
  }

  .media-card {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .media-card {
    width: 100%;
    height: 180px;
  }

  .overlay strong {
    font-size: 16px;
  }
}


@media (max-width: 768px) {

  .banner-card {
    width: 100%;
    /* fix overflow */
    padding: 25px 20px 80px;
    /* extra bottom space for overlap */
    border-radius: 18px;
  }

  .banner-content h1 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }

  /* ðŸ”¥ IMAGE OVERLAP EFFECT */
  .media-card {
    position: absolute;
    right: 15px;
    bottom: -82px;
    /* overlap outside */
    top: auto;
    transform: none;

    width: 80%;
    height: 160px;
    border-radius: 12px;
  }

  .overlay span {
    font-size: 12px;
  }

  .overlay strong {
    font-size: 14px;
  }
}

/* Join thousands of planners and marketers who love our software */
.section img {
  width: 100%;
  border-radius: 8px;
  max-width: 500px;
  /* Set a max width for better control */
}

.header {
  font-size: 32px;
  font-weight: bold;
  color: #1D2A5A;
  text-align: center;
  margin-top: 0px;
  /* margin-bottom: 50px; */
}

@media (max-width: 768px) {

  .header {
    font-size: 22px;
    margin-top: 100px;
    padding: 0 10px;
  }

  section img {
    max-width: 100%;
    /* full width on mobile */
  }

  .row {
    justify-content: center !important;
  }

  .col-md-5 {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* <!-- Ready to see how it works? --> */
.demo-section {
  display: flex;
  height: 50vh;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Left Section (image) */
.left-section {
  width: 50%;
  position: relative;
  z-index: 2;
  /* Ensures the image is above the right section */
}

.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Right Section (Text and Buttons) */
.right-section {
  width: 100%;
  background: linear-gradient(to right, #007bff, #6f42c1);
  color: white;
  padding: 70px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: -10%;
  /* This creates the 10% overlay effect */
}

.right-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.buttons-container .btn {
  padding: 15px 30px;
  font-size: 16px;
  /* border-radius: 50px; */
}

.buttons-container .btn-primaryy {
  background-color: #ffffff;
  color: #007bff;
  border: none;
}

.buttons-container .btn-primaryy:hover {
  background-color: #9ef5f1bd;
  color: #000000;
  border: none;
}

.buttons-container .btn-outline-light {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.buttons-container .btn-outline-light:hover {
  background-color: white;
  color: #007bff;
}


@media (max-width: 768px) {

  .demo-section {
    flex-direction: column;
    height: auto;
    position: relative;
  }

  .left-section {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-bottom: -60px;
    /* ðŸ”¥ overlap effect */
  }

  .left-section img {
    width: 90%;
    margin: 0 auto;
    display: block;
    border-radius: 14px;
  }

  .right-section {
    width: 100%;
    margin-left: 0;
    padding: 80px 20px 25px;
    /* ðŸ”¥ extra top space for image */
    border-radius: 16px;
    text-align: left;
  }

  .right-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .buttons-container {
    flex-direction: row;
    gap: 10px;
  }

  .buttons-container .btn {
    flex: 1;
    font-size: 14px;
    padding: 10px;
  }
}


/* <!-- What's new at Cvent --> */
/* Container */
/* MOBILE - PIXEL PERFECT CVENT STYLE */
@media (max-width: 576px) {

  .custom-container {
    padding: 12px;
  }

  .header {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .card-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .card-connect {
    width: 100%;
    background: #f3f4f6;
    /* exact soft gray */
    border-radius: 18px;
    padding: 20px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  /* Small top label */
  .card-connect h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
  }

  /* Main heading */
  .card-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  /* Sub text */
  .card-connect p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
  }

  /* Link */
  .card-connect a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    /* Cvent blue */
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-right: 18px;
  }

  /* Arrow */
  .card-connect a::after {
    content: 'â€º';
    position: absolute;
    right: 0;
    top: 0;
    color: #ef4444;
    font-size: 1.2rem;
    transition: 0.3s;
  }

  .card-connect a:hover::after {
    transform: translateX(4px);
  }
}

/* Header */
.header {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #161851;
}

/* Card Layout */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Card */
.card-connect {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

  flex: 1 1 calc(25% - 20px);
  /* 4 cards desktop */
  min-height: 200px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Headings */
.card-connect h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #161851;
}

/* Text */
.card-text {
  margin-bottom: 10px;
  color: #161851;
}

/* Links */
.card-connect a {
  color: #161851;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

/* Arrow */
.card-connect a::after {
  content: '>';
  position: absolute;
  right: 0;
  top: 0;
  color: #f45f5f;
  font-size: 1.2rem;
  transition: 0.3s;
}

.card-connect a:hover::after {
  transform: translateX(5px);
}

/* Link Card */
.card-link a {
  display: block;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */


/* Tablet */
@media (max-width: 992px) {
  .card-connect {
    flex: 1 1 calc(50% - 16px);
    /* 2 cards */
  }
}

/* Mobile */
@media (max-width: 576px) {

  .header {
    font-size: 1.5rem;
  }

  .card-container {
    gap: 12px;
  }

  .card-connect {
    flex: 1 1 100%;
    /* âœ… ONE CARD PER ROW */
    max-width: 100%;
    padding: 16px;
  }

  .card-connect h4 {
    font-size: 1.2rem;
  }

  .card-connect a {
    font-size: 0.95rem;
  }
}

/* A complete platform for your events */
.container-fluid-section {
  background: linear-gradient(to right, #007BFF, #6f42c1);
  padding: 60px 0;
}

/* Left text spacing */
.text-section {
  padding-right: 30px;
}

/* Form box */
.form-container {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Titles */
.form-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.form-subtitle {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Inputs */
.form-control,
.form-select {
  border-radius: 8px;
  padding: 10px;
}

/* Button */
.btn-primary {
  border-radius: 8px;
  padding: 10px;
}

/* ðŸ”¥ MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .container-fluid-section {
    padding: 40px 15px;
  }

  .text-section {
    padding-right: 0;
    text-align: center;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .form-container {
    padding: 20px;
  }

  ul {
    padding-left: 0;
    list-style-position: inside;
  }
}

/* footer section  */
.footer {
  background-color: #0d1140;
  /* padding: 40px 0 20px; */
  font-size: 14px;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .footer-title {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-bottom {
  font-size: 12px;
  margin-top: 30px;
  border-top: 1px solid #2b2b5c;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-social i {
  font-size: 20px;
  margin-right: 10px;
}

.footer-column {
  margin-bottom: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 30px; */
  flex-wrap: wrap;
}




/* âœ… MOBILE FOOTER FIX */
@media (max-width: 768px) {
  .footer {
    text-align: left;
  }

  /* Top logo + icons center */
  .footer .d-flex {
    justify-content: center !important;
    text-align: center;
  }

  /* Columns full width */
  .footer .row>div {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Space between sections */
  .footer-column {
    margin-bottom: 25px;
  }

  /* Title bigger */
  .footer-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* Links spacing */
  .footer ul li {
    margin-bottom: 6px;
  }

  /* Bottom section stacking */
  .footer-bottom,
  .footer .container:last-child>div {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px;
  }

  /* Legal links wrap nicely */
  .footer .container:last-child span {
    display: none;
    /* remove | on mobile */
  }

  .footer .container:last-child a {
    display: inline-block;
    margin-right: 10px;
  }
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .dropdown-menu.mega-menu {
    display: none; /* 🔥 hide by default */
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu.mega-menu.show {
    display: block; /* show only when clicked */
  }
}