      .hero-section {
        position: relative;
        /*background: url('/images/landing.jpg') no-repeat center center/cover;*/
        background: linear-gradient(
            rgba(4, 106, 56, 0.68),
            rgba(4, 106, 56, 0.52)
          ),
          url("/images/1920X1280.webp") no-repeat center center/cover;

        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        overflow: hidden;
      }

      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgba(4, 106, 56, 0.5);
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
      }

      .hero-content h4 {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .hero-content h1 {
        font-size: 55px;
        margin-bottom: 15px;
        font-weight: 800;
      }

      .hero-content h1 span.highlight {
        color: orange;
      }

      .hero-content p {
        font-size: 20px;
        margin-bottom: 30px;
      }

      .countdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
      }

      .time-box {
        /*background: rgba(255, 255, 255, 0.1);*/
        background: white;
        padding: 10px 20px;
        border-radius: 10px;
        color: black;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        /* Optional: fix height so things are balanced */
        height: 100px;
      }

      .time-box h2,
      .time-box p {
        margin: 0;
        line-height: 1; /* keeps vertical spacing tight */
      }

      .time-box h2 {
        font-size: 32px;
        color: #046a38;
      }

      .time-box p {
        font-size: 14px;
        margin-top: 5px;
      }

      .buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
      }

      .btn {
        padding: 12px 25px;
        border-radius: 5px;
        border: 2px;
        font-weight: bold;
        text-decoration: none;
      }

      .btn-primary {
        background-color: orange;
        color: white;
      }

      .btn-secondary {
        border: 1px solid white !important;

        color: white;
        background: transparent;
      }

      .event-details {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        font-size: 14px;
      }

      .green-dot {
        height: 10px;
        width: 10px;
        background-color: #00ff00;
        border-radius: 50%;
        margin-right: 8px;
      }

      @media only screen and (max-width: 600px) {
        .hero-content h1 {
          font-size: 28px;
          margin-bottom: 15px;
          font-weight: 800;
        }
        .hero-content p {
          font-size: 14px;
          margin-bottom: 30px;
        }
        .time-box {
          /*background: rgba(255, 255, 255, 0.1);*/
          background: white;
          padding: 10px 10px;
          border-radius: 10px;
          color: black;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;

          /* Optional: fix height so things are balanced */
          height: 100px;
        }

        .btn {
          padding: 12px 15px;
          border-radius: 5px;
          border: 2px;
          font-weight: bold;
          text-decoration: none;
        }
      }

/* Live Ticker Animation */
.ticker-scroll {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Smooth dropdown animation */
.dropdown-fade {
  transition: all 0.2s ease-in-out;
}

/* Mobile menu animation */
#mobileMenu {
  transition: all 0.3s ease-in-out;
}

      @import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap");
      @import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap");

      :root {
        --abt-bg: #fff;
        --abt-fg: #18181b;
        --abt-primary: #7b61ff;
        --abt-secondary: #ff9000;
        --abt-muted: #6b7280;
        --abt-border: #e5e7eb;
        --abt-radius: 12px;
      }

      body {
        background: var(--abt-bg);
        color: var(--abt-fg);
        font-family: "Poppins", sans-serif;
      }

      .abt-container {
        max-width: 1400px;
        margin: 2.5rem auto 0 auto;
        padding: 0 1rem;
        background: var(--abt-bg);
      }

      .abt-title-wrap {
        text-align: center;
      }

      .abt-section-title {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 2.25rem;
        line-height: 2.5rem;
        margin-bottom: 1rem;
        color: black;
      }

      .abt-section-subtitle {
        margin: 0 auto 3rem auto;
        max-width: 48rem;
        text-align: center;
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: var(--abt-muted);
      }

      .abt-main-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 4rem;
      }

      @media (min-width: 768px) {
        .abt-main-grid {
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
        }
      }

      .abt-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .abt-heading {
        font-family: "Montserrat", sans-serif;
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #18181b;
      }

      @media (min-width: 768px) {
        .abt-heading {
          font-size: 1.875rem;
          line-height: 2.25rem;
        }
      }

      .abt-desc {
        color: var(--abt-muted);
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
      }

      .abt-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .abt-feature {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .abt-feature-icon {
        display: inline-block;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: rgba(255, 144, 0, 0.15);
        margin-right: 1rem;
        flex-shrink: 0;
        position: relative;
      }
      .abt-feature-users::before {
        content: "";
        display: block;
        width: 1.8rem;
        height: 1.8rem;
        background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="orange" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="7" r="4"/><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>')
          center/contain no-repeat;
        margin: 0.35rem;
      }
      .abt-feature-exhibitors::before {
        content: "";
        display: block;
        width: 1.8rem;
        height: 1.8rem;
        background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="orange" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="14" x="2" y="6" rx="2"/><path d="M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/></svg>')
          center/contain no-repeat;
        margin: 0.35rem;
      }
      .abt-feature-calendar::before {
        content: "";
        display: block;
        width: 1.8rem;
        height: 1.8rem;
        background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="orange" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" x="3" y="4" rx="2"/><path d="M8 2v4"/><path d="M16 2v4"/><path d="M3 10h18"/></svg>')
          center/contain no-repeat;
        margin: 0.35rem;
      }
      .abt-feature-award::before {
        content: "";
        display: block;
        width: 1.8rem;
        height: 1.8rem;
        background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="orange" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="8" r="6"/><path d="m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"/></svg>')
          center/contain no-repeat;
        margin: 0.35rem;
      }

      .abt-feature-number {
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--abt-primary);
      }

      .abt-feature-label {
        color: var(--abt-muted);
        font-size: 1rem;
      }

      .abt-image-wrap {
        position: relative;
        border-radius: var(--abt-radius);
        overflow: hidden;
        height: 400px;
      }

      @media (min-width: 768px) {
        .abt-image-wrap {
          height: auto;
        }
      }

      .abt-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .abt-image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        display: flex;
        align-items: flex-end;
      }

      .abt-image-caption {
        padding: 1.5rem;
      }

      .abt-image-venue {
        color: #fff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
      }

      .abt-image-address {
        color: white;
        font-size: 1rem;
      }

      @media (max-width: 767px) {
        .abt-features-grid {
          grid-template-columns: 1fr 1fr;
          gap: 1rem;
        }
        .abt-main-grid {
          gap: 2rem;
        }
      }

      /* Why Attend Section Styles */
      .why-attend-section {
        font-family: "Arial", sans-serif;
        /*max-width: 1200px;*/
        margin: 80px auto;
        padding: 40px 20px;
        color: #333;
        /*background-color: black !important;*/
        background: #1a2980; /* fallback for old browsers */
        background: -webkit-linear-gradient(
          to right,
          #26d0ce,
          #1a2980
        ); /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(
          to right,
          #26d0ce,
          #1a2980
        ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
      }

      .why-attend-section h1 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 50px;
        color: #222;
      }

      /*.benefits-container {*/
      /*    display: grid;*/
      /*    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
      /*    gap: 30px;*/
      /*}*/
      .benefits-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }

      .benefit-card {
        background-color: #fff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      }

      .benefit-card h2 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
      }

      .benefit-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
      }

      @media (max-width: 768px) {
        .benefits-container {
          grid-template-columns: 1fr;
        }

        .why-attend-section h1 {
          font-size: 28px;
          margin-bottom: 30px;
        }
      }

      /* Registration Section Styles */
      .registration-section {
        font-family: "Arial", sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        color: #333;
        background-color: #f9f9f9;
        /*text-align:center;*/
      }

      /*.registration-section h1 {*/
      /*    text-align: center;*/
      /*    font-size: 36px;*/
      /*    margin-bottom: 20px;*/
      /*    color: #222;*/
      /*}*/

      .registration-section p.subtitle {
        text-align: center;
        font-size: 18px;
        margin-bottom: 50px;
        color: #555;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }

      .pricing-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
      }

      .pricing-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 300px;
        position: relative;
        transition: transform 0.3s ease;
      }

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

      .pricing-card h2 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #2c3e50;
      }

      .pricing-card .price {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 5px;
        color: #3498db;
      }

      .pricing-card .original-price {
        font-size: 18px;
        text-decoration: line-through;
        color: #999;
        margin-bottom: 25px;
        display: block;
      }

      .pricing-card .per-person {
        font-size: 14px;
        color: #777;
        margin-bottom: 25px;
      }

      .pricing-card ul {
        list-style-type: none;
        padding: 0;
        margin-bottom: 30px;
      }

      .pricing-card ul li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 15px;
      }

      .pricing-card .btn {
        display: block;
        text-align: center;
        padding: 12px 20px;
        background-color: #3498db;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s;
      }

      .pricing-card .btn:hover {
        background-color: #2980b9;
      }

      .vip-card {
        border: 2px solid #f1c40f;
      }

      .vip-card h2 {
        color: #f1c40f;
      }

      .vip-card .price {
        color: #f1c40f;
      }

      .vip-card .btn {
        background-color: #f1c40f;
      }

      .vip-card .btn:hover {
        background-color: #f39c12;
      }
      .vip-card-btn {
        background-color: #f1c40f;
      }

      .vip-card-btn:hover {
        background-color: #f39c12;
      }

      .divider {
        text-align: center;
        margin: 40px 0;
        position: relative;
      }

      .divider:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #ddd;
        z-index: 1;
      }

      .divider span {
        background-color: #f9f9f9;
        position: relative;
        z-index: 2;
        padding: 0 20px;
        color: #777;
        font-size: 14px;
      }

      @media (max-width: 768px) {
        .pricing-container {
          flex-direction: column;
          align-items: center;
        }

        .registration-section h1 {
          font-size: 28px;
        }

        .registration-section p.subtitle {
          font-size: 16px;
        }
      }

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

      /* Speakers Section */
      .speakers-section {
        padding: 60px 20px;
        background: #fff;
        text-align: center;
      }

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

      .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #1f2937; /* Dark Gray */
      }

      .section-subtitle {
        font-size: 1rem;
        color: #6b7280; /* Light Gray */
        margin-bottom: 50px;
      }

      /* Speakers Grid */
      .speakers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }

      /* Speaker Card */
      .speaker-card {
        background: #f9fafb;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: transform 0.3s ease;
      }

      .speaker-card:hover {
        transform: translateY(-5px);
      }

      .speaker-img {
        width: 100%;
        height: 250px;
        object-fit:fill;
      }

      .speaker-info {
        padding: 10px;
      }

      .speaker-info h3 {
        font-size: 1.0rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #111827; /* Almost Black */
      }

      .speaker-info p {
        font-size: 0.95rem;
        color: #6b7280;
        margin-bottom: 10px;
      }

      .speaker-topic {
        display: inline-block;
        background: linear-gradient(
          to right,
          #f97316,
          #f59e0b
        ); /* orange gradient */
        color: #fff;
        padding: 5px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
        margin-top: 10px;
      }

      .event-schedule-section {
        background-color: #f9fafb;
        padding: 60px 20px;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }
      .event-schedule-container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
      }
      .event-schedule-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: black;
      }
      .event-schedule-subtitle {
        color: #6b7280;
        margin-bottom: 40px;
      }
      .event-schedule-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
      }
      .event-schedule-tab {
        background-color: #ffffff;
        border: 1px solid #d1d5db;
        border-radius: 9999px;
        padding: 10px 24px;
        font-weight: 500;
        color: #374151;
        cursor: pointer;
      }
      .event-schedule-tab.active {
        background-color: #6366f1;
        color: #ffffff;
        border-color: #6366f1;
      }
      .event-schedule-day-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 30px;
        text-align: left;
      }
      .event-schedule-day {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      }
      .event-schedule-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 20px;
      }
      .event-schedule-time {
        font-weight: bold;
        color: #8b5cf6;
        min-width: 90px;
        text-align: right;
      }
      .event-schedule-content {
        text-align: left;
      }
      .event-schedule-content h4 {
        margin: 0 0 5px;
        font-size: 1.1rem;
        color: #111827;
      }
      .event-schedule-content p {
        margin: 2px 0;
        color: #6b7280;
        font-size: 0.95rem;
      }

      /*body {*/
      /*  font-family: 'Arial', sans-serif;*/
      /*  background: #f7f8f9;*/
      /*  margin: 0;*/
      /*  padding: 40px;*/
      /*}*/
      .faq-container {
        max-width: 800px;
        margin: auto;
        text-align: center;
      }
      .faq-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: black;
      }
      .faq-subtitle {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 30px;
      }
      .faq-item {
        background: #fff;
        border-bottom: 1px solid #ddd;
        text-align: left;
        cursor: pointer;
        padding: 20px;
        position: relative;
      }
      .faq-item:hover {
        background: #f0f0f0;
      }
      .faq-question {
        font-size: 1.1rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .faq-answer {
        font-size: 1rem;
        color: #444;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding-left: 10px;
      }
      .faq-item.active .faq-answer {
        max-height: 300px; /* Enough for multiple lines */
        padding-top: 15px;
      }
      .arrow {
        transition: transform 0.3s ease;
      }
      .faq-item.active .arrow {
        transform: rotate(180deg);
      }

      .modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(15, 23, 42, 0.6);
        padding: 1rem;
      }
      .modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .modal-dialog {
        width: 100%;
        max-width: 32rem;
      }
      .modal-content {
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border: none;
      }
      .modal-header {
        background-color: rgb(244, 41, 19);
        color: white;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        padding: 15px 20px;
      }
      .modal-header .close {
        color: white;
        opacity: 1;
        font-size: 1.5rem;
      }
      .modal-header h3 {
        margin: 0;
        font-size: 1.5rem;
      }
      .modal-body {
        padding: 20px;
      }
      .form-control {
        border-radius: 25px;
        padding: 10px 20px;
        border: 1px solid #ddd;
        margin-bottom: 15px;
        transition: all 0.3s ease;
      }
      .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
      }
      .input-group-prepend .custom-select {
        border-radius: 25px 0 0 25px;
        border-right: none;
      }
      .input-group .form-control {
        border-radius: 0 25px 25px 0;
      }
      .btn-outline-secondary {
        border-radius: 25px;
        padding: 10px 30px;
        font-weight: bold;
        transition: all 0.3s ease;
      }
      .btn-outline-secondary:hover {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
      }

      section {
        background: white;
      }

      /* --- Internal CSS for Exhibitor Section (unique prefix: exh-) --- */
      :root {
        --exh-background: #fff;
        --exh-foreground: #18181b;
        --exh-primary: #7b61ff;
        --exh-primary-foreground: #fafafa;
        --exh-secondary: #ff9000;
        --exh-secondary-foreground: #fff;
        --exh-muted-foreground: #6b7280;
        --exh-accent: #f1f5f9;
        --exh-border: #e5e7eb;
        --exh-radius: 8px;
      }
      .exh-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1rem;
        font-family: "Poppins", sans-serif;
        background: var(--exh-background);
        color: var(--exh-foreground);
      }
      .exh-section-title {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 2.25rem;
        line-height: 2.5rem;
        text-align: center !important;
        margin-bottom: 1rem;
        color: black;
      }
      .exh-section-subtitle {
        margin: 0 auto 3rem auto;
        max-width: 48rem;
        text-align: center;
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: var(--exh-muted-foreground);
      }
      .exh-main-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 4rem;
      }
      @media (min-width: 1024px) {
        .exh-main-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      .exh-image-card {
        position: relative;
        border-radius: 1.2rem;
        overflow: hidden;
        height: 400px;
      }
      @media (min-width: 1024px) {
        .exh-image-card {
          height: auto;
        }
      }
      .exh-image-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(123, 97, 255, 0.8),
          rgba(255, 144, 0, 0.8)
        );
        mix-blend-mode: multiply;
        z-index: 1;
      }
      .exh-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: relative;
        z-index: 0;
      }
      .exh-image-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 1.5rem;
        z-index: 2;
      }
      @media (min-width: 768px) {
        .exh-image-caption {
          padding: 2.5rem;
        }
      }
      .exh-image-title {
        color: #fff;
        font-size: 1.875rem;
        line-height: 2.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        font-family: "Montserrat", sans-serif;
      }
      .exh-image-desc {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.125rem;
        line-height: 1.75rem;
      }
      .exh-benefits {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .exh-benefits-title {
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        font-family: "Montserrat", sans-serif;
        color: black;
      }
      .exh-benefits-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
      }
      .exh-benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
      }
      .exh-benefit-icon {
        flex-shrink: 0;
        height: 1.5rem;
        width: 1.5rem;
        border-radius: 50%;
        background: rgba(255, 144, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
      }
      .exh-benefit-icon span {
        color: var(--exh-secondary);
        font-weight: 700;
        font-family: "Montserrat", sans-serif;
      }
      .exh-packages {
        background: #f3f4f6;
        border-radius: var(--exh-radius);
        padding: 1.5rem;
        margin-bottom: 2rem;
      }
      .exh-packages-title {
        font-weight: 700;
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        font-family: "Montserrat", sans-serif;
        color: black;
      }
      .exh-packages-grid {
        /*display: grid;*/
        /*grid-template-columns: 1fr 1fr;*/
        /*gap: 1rem;*/
        /*margin-bottom: 1rem;*/
        display: flex;
        gap: 2.5rem;
      }
      /*@media (min-width: 640px) {*/
      /*  .exh-packages-grid { grid-template-columns: repeat(3, 1fr); }*/
      /*}*/

      .exh-package-card {
        background: #fff;
        border-radius: var(--exh-radius);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        text-align: start;
        padding: 1rem;
        border: none;
      }
      .exh-package-featured {
        border: 2px solid var(--exh-secondary);
      }
      .exh-package-name {
        font-weight: 700;
      }
      .exh-package-size {
        color: #4b5563;
      }
      .exh-package-price {
        color: var(--exh-primary);
        font-weight: 700;
        font-size: 1.2rem;
      }
      .exh-packages-note {
        font-size: 0.875rem;
        color: #4b5563;
      }
      .exh-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      @media (min-width: 640px) {
        .exh-actions {
          flex-direction: row;
        }
      }
      .exh-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        white-space: nowrap;
        font-size: 1rem;
        font-weight: 500;
        height: 2.75rem;
        border-radius: 6px;
        padding: 0 2rem;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        border: none;
      }
      .exh-btn-primary {
        background: var(--exh-secondary);
        color: var(--exh-secondary-foreground);
      }
      .exh-btn-primary:hover {
        background: #ffb84d;
      }
      .exh-btn-outline {
        border: 1px solid var(--exh-border);
        background: var(--exh-background);
        color: var(--exh-foreground);
      }
      .exh-btn-outline:hover {
        background: var(--exh-accent);
        color: var(--exh-primary);
      }
      .exh-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 5rem;
      }
      @media (min-width: 768px) {
        .exh-stats-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      .exh-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .exh-stat-number {
        font-size: 2.25rem;
        line-height: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--exh-primary);
        font-family: "Montserrat", sans-serif;
      }
      .exh-stat-label {
        color: #4b5563;
      }

      :root {
        --theme-primary: #046a38;
        --theme-accent: #ff9933;
        --theme-light: #f5f5f8;
        --theme-text: #1f2937;
        --theme-muted: #6b7280;
      }

      body {
        background: var(--theme-light);
        color: var(--theme-text);
        font-family: "Inter", "Poppins", sans-serif;
      }

      h1,
      h2,
      h3,
      h4,
      .section-title,
      .abt-section-title,
      .abt-heading {
        font-family: "Playfair Display", "Montserrat", serif;
        color: var(--theme-light);
      }

      .hero-section {
        background: linear-gradient(
            rgba(4, 106, 56, 0.65),
            rgba(4, 106, 56, 0.5)
          ),
          url("/images/1920X1280.webp") no-repeat center center/cover;
      }

      .overlay {
        background: rgba(4, 106, 56, 0.45);
      }

      .hero-content h1 span.highlight,
      .btn-primary {
        color: #fff;
        background-color: var(--theme-accent);
      }

      .time-box h2,
      .abt-feature-number,
      .pricing-card .price,
      .count,
      .exh-stat-number {
        color: var(--theme-primary);
      }

      .btn-primary:hover {
        background-color: #e68622;
      }

      .btn-secondary {
        border: 1px solid #fff !important;
        color: #fff;
      }

      .btn-secondary:hover {
        background: #fff;
        color: var(--theme-primary);
      }

      .why-attend-section {
        background: linear-gradient(135deg, #046a38 0%, #024f2a 100%);
      }

      .why-attend-section h1,
      .section-subtitle {
        color: #fff;
      }

      .benefit-card h2 {
        border-bottom-color: var(--theme-accent);
        color: var(--theme-primary);
      }

      .registration-section {
        background-color: #fff;
      }

      .pricing-card .btn {
        background-color: var(--theme-primary);
      }

      .pricing-card .btn:hover {
        background-color: #03512b;
      }

      .vip-card {
        border-color: var(--theme-accent);
      }

      .vip-card h2,
      .vip-card .price {
        color: var(--theme-accent);
      }

      .vip-card .btn,
      .vip-card-btn {
        background-color: var(--theme-accent);
      }

      .vip-card .btn:hover,
      .vip-card-btn:hover {
        background-color: #e68622;
      }

      .speaker-topic {
        background: linear-gradient(90deg, #046a38, #ff9933);
      }

      .faq-title {
        color: var(--theme-primary);
      }

      .faq-question {
        border-left: 4px solid var(--theme-primary);
      }

      .faq-item.active .faq-question {
        color: var(--theme-primary);
      }

      .exh-btn-primary {
        background: var(--theme-accent);
        color: #fff;
      }

      .exh-btn-primary:hover {
        background: #e68622;
      }

      .exh-btn-outline:hover {
        background: var(--theme-accent);
        color: #fff;
      }

      header.transparent {
        background: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid #e5e7eb;
        backdrop-filter: blur(6px);
      }

      #mainmenu > li > a,
      #mainmenu > li > a span {
        color: var(--theme-primary) !important;
      }

      #mainmenu > li > a:hover {
        color: var(--theme-accent) !important;
      }

      .dropdown-content li a:hover {
        color: var(--theme-accent) !important;
      }

      footer.style-2 {
        background: #fff;
        border-top: 1px solid #e5e7eb;
      }

      footer.style-2 .id-color {
        color: var(--theme-primary);
      }

      .social-icons a:hover {
        color: var(--theme-accent) !important;
      }

      /* ── Header ── */
      .header-code1 { position:sticky; top:0; z-index:50; background-color:rgba(255,255,255,0.9); backdrop-filter:blur(4px); border-bottom:1px solid #e5e7eb; font-family:'Inter',sans-serif; }
      .header-code1 .nav-link { color:#046a38; font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; transition:color 0.2s; }
      .header-code1 .nav-link:hover { color:#ff9933; }
      .header-code1 .register-btn { background-color:#046a38; color:white; padding:0.5rem 1.25rem; border-radius:0.375rem; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; }
      .header-code1 .register-btn:hover { opacity:0.9; }
      .group { position:relative; }
      .dropdown-menu { position:absolute; top:100%; left:0; background:#fff; min-width:200px; border-radius:8px; box-shadow:0 8px 20px rgba(0,0,0,0.15); padding:8px 0; display:none; z-index:1000; }
      .group.open .dropdown-menu { display:block; }
      .dropdown-item { display:block; padding:10px 16px; color:#046a38; text-decoration:none; font-size:13px; font-weight:600; text-transform:uppercase; transition:all 0.2s; }
      .dropdown-item:hover { background:#f9fafb; color:#ff9933; padding-left:20px; }

            .logo-design {
              border-radius: 20px;
              padding: 10px;
              background-color: white;
              width: 200px;
            }

