
:root{
  --primary-gradient: linear-gradient(90deg,#ff5b2b,#ff7a3a);
  --accent: #ff5b2b;
  --muted:#f5f5f7;
  --card-bg: #fff;
  --text-dark: #2b2b2b;
}
body{
  font-family: "Poppins", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:15px;
}
.topbar{
  background: #ff5020;
  color:white;
  font-size:14px;
}
.topbar a{ color: rgba(255,255,255,0.95); text-decoration:none; }
.logo{
  font-weight:800;
  color:#fff;
  letter-spacing:0.6px;
}
.hero{
  background: var(--primary-gradient);
  color: white;
  background-size:cover;
  position:relative;
  overflow:hidden;
  padding-bottom:40px;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.08));
  pointer-events:none;
}
.hero .badge-info{
  background: rgba(255,255,255,0.07);
  border-radius:12px;
  padding:6px 10px;
  display:inline-block;
  color: #fff;
  font-weight:600;
}
.hero h1{
  font-size: 2.4rem;
  font-weight:700;
  margin-bottom:0.6rem;
  letter-spacing:0.2px;
}
.hero p.lead{
  color: rgba(255,255,255,0.92);
  font-size:1rem;
}
.stats-box{
  background: rgba(255,255,255,0.08);
  padding:16px;
  border-radius:10px;
  min-width:110px;
  text-align:center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stats-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.stats-box strong{ display:block; font-size:1.3rem; }
.stats-box small{ display:block; opacity:.9; }
.category-card{
  background: var(--card-bg);
  border-radius:12px;
  padding:20px;
  min-height:140px;
  box-shadow: 0 6px 18px rgba(20,20,20,0.04);
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s ease;
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.category-card .icon{
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: #fff6f2;
  color: var(--accent);
  font-size:1.1rem;
  box-shadow: inset 0 -6px 12px rgba(255,90,40,0.04);
  flex-shrink:0;
}
.category-card:hover{
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 22px 44px rgba(20,20,20,0.09);
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
  135deg,
  color-mix(in srgb, #DB5D03 90%, transparent 25%) 0%,
  color-mix(in srgb, #5a2d12 90%, transparent 10%) 100%
);
}

.small-muted{ color:#7a7a7a; font-size:0.92rem; }
.small-muted1{ color:#C7FFFA; font-size:0.92rem; }
.why-card{
  background: #fff;
  padding:18px;
  border-radius:10px;
  min-height:120px;
  box-shadow: 0 8px 24px rgba(10,10,10,0.03);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align:center;
}

.logoimg {
  max-height: 80px;
  margin-right: 8px;
}
.why-card:hover{ transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.09); }
.why-card .wicon{
  width:56px;height:56px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#fff6f2;color:var(--accent);font-size:1.2rem;margin-bottom:10px;
}
.stat-banner{
  background: linear-gradient(90deg,#ff6a33,#ff8050);
  color:white;
  border-radius:12px;
  padding:10px;
  box-shadow: 0 18px 50px rgba(255,90,40,0.12);
}
.stat-banner .stat{
  font-size:1.6rem;
  font-weight:800;
}
.btn-primary-custom{
  background: transparent;
  border: 2px solid rgba(255,255,255,0.14);
  color:white;
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
  transition: all .18s ease;
}
.btn-primary-custom:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  color:white;
  text-decoration:none;
}
footer{ padding:40px 0; font-size:0.95rem; color:#666; }
.card-learn-more{ color: var(--accent); font-weight:600; text-decoration:none; }
.hero-img{ max-height:360px; object-fit:cover; }

/* tooltip-sub */
.tooltip-sub{
  display:block;
  font-size:0.83rem;
  color:#9a9a9a;
  margin-top:6px;
  opacity:0;
  transform: translateY(6px);
  transition: all .18s ease;
  pointer-events:none;
}
.category-card:hover .tooltip-sub,
.why-card:hover .tooltip-sub{
  opacity:1;
  transform: translateY(0);
}
@media (min-width:1200px){
  .hero h1{ font-size:3rem; }
}
@media (max-width:767px){
  .hero{ padding:28px 12px; }
  .hero h1{ font-size:1.5rem; }
}


.video-box-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-button i {
  font-size: 3rem;
  color: #e63946;
}

.play-button:hover {
  background: #e63946;
}

.play-button:hover i {
  color: #fff;
}


/* Navbar Base */
#navmenu {
  background: #ffffff;
  padding: 12px 0;
  transition: all 0.3s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Nav Links */
#navmenu .nav-link {
  color: #222222;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
#navmenu .nav-link:hover {
  color: #e63946; /* highlight color */
}

/* Active link */
#navmenu .nav-link.active,
#navmenu .nav-link:focus,
#navmenu .nav-link.show {
  color: #e63946;
  font-weight: 600;
}

/* Active underline effect */
#navmenu .nav-link.active::after,
#navmenu .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e63946;
  transition: width 0.3s ease;
}

/* Remove underline when inactive */
#navmenu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #e63946;
  transition: width 0.3s ease;
}

/* On scroll (optional if you want navbar shrink effect) */
#navmenu.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
}

/* Dropdown Menu Base */
#navmenu .dropdown-menu {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

/* Dropdown Item */
#navmenu .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 10px 18px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Effect */
#navmenu .dropdown-item:hover,
#navmenu .dropdown-item:focus {
  background: #e63946;
  color: #fff;
  transform: translateX(5px);
}

/* Divider Style */
#navmenu .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 8px 0;
}

/* Dropdown Arrow */
#navmenu .dropdown-toggle::after {
  content: "\f107"; /* FontAwesome down arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: none;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

#navmenu .show > .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Dropdown Hover Effect on Large Screens */
@media (min-width: 992px) {
  #navmenu .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #navmenu .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
}


/* about us page style */

    /* Hero Section */
    .hero-section-sample {
      background: linear-gradient(rgba(100, 20, 0, 0.7), rgba(100, 20, 0, 0.7)), url('https://images.unsplash.com/photo-1581093588401-22af1c1e7d80?auto=format&fit=crop&w=1400&q=80') center/cover;
      color: #fff;
      text-align: center;
      padding: 120px 20px;
    }

    .hero-section-sample h1 {
      font-size: 2.8rem;
      font-weight: 700;
    }

    .hero-section-sample h2 {
      font-size: 3rem;
      font-weight: 800;
      color: #ff7b00;
    }

    .hero-section-sample p {
      font-size: 1.1rem;
      margin-top: 15px;
    }

    .hero-section-sample .btn {
      margin: 10px;
      padding: 12px 25px;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background-color: #ff7b00;
      border: none;
    }

    .btn-primary:hover {
      background-color: #e46a00;
      transform: translateY(-3px);
    }

    .btn-outline-light:hover {
      background-color: #fff;
      color: #ff7b00;
      transform: translateY(-3px);
    }

    /* Info Cards */
    .info-box {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      padding: 25px;
      transition: all 0.3s ease;
      text-align: center;
    }

    .info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }

    .info-box i {
      color: #ff7b00;
      font-size: 2rem;
      margin-bottom: 10px;
    }

    /* Why Exhibit Section */
    .why-section {
      background-color: #fff7f0;
      padding: 80px 0;
    }

    .why-section h2 {
      font-weight: 700;
      color: #ff7b00;
      margin-bottom: 30px;
    }

    .target-list li {
      list-style: none;
      padding: 5px 0;
      font-size: 1rem;
    }

    .target-list li::before {
      content: "✔️";
      color: #ff7b00;
      margin-right: 8px;
    }

    .stat-box {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
      padding: 25px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-box:hover {
      transform: translateY(-5px);
      background: #fff0e0;
    }

    .stat-box h3 {
      color: #ff7b00;
      font-size: 2rem;
      font-weight: 700;
    }

    /* CTA Section */
    .cta-section {
      background-color: #ff7b00;
      color: #fff;
      text-align: center;
      padding: 70px 20px;
    }

    .cta-section h3 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .cta-section .btn {
      margin: 10px;
      border-radius: 50px;
      transition: 0.3s;
    }

    .cta-section .btn:hover {
      transform: translateY(-4px);
    }
	
	
    /* === About page SECTION === */	
	
	    .about-hero h1 {
      font-size: 3rem;
      font-weight: 800;
      color: #ff7b00;
    }

    .about-hero p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 15px auto 0;
    }

    /* === CONTENT SECTION === */
    .about-section {
      padding: 70px 0;
    }

    .about-title {
      font-weight: 700;
      color: #ff7b00;
      margin-bottom: 25px;
    }

    .about-content {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
      padding: 30px;
      transition: all 0.3s ease;
    }

    .about-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* === HIGHLIGHT SECTION === */
    .about-highlight {
      background-color: #fff7f0;
      padding: 70px 0;
    }

    .about-reasons {
      list-style: none;
      padding-left: 0;
    }

    .about-reasons li {
      padding: 8px 0;
      font-size: 1.7rem;
      display: flex;
      align-items: center;
    }

    .about-reasons li i {
      color: #ff7b00;
      font-size: 1.2rem;
      margin-right: 10px;
    }


       Visitor Page Styles
    =========================== */
    .visitor-page {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      color: #333;
    }

    .visitor-page h2.section-title {
      font-weight: 700;
      color: #e5520b;
    }

    .visitor-page .info-box {
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      background: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .visitor-page .info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .visitor-page .info-box i {
      font-size: 2rem;
      color: #e5520b;
      margin-bottom: 10px;
    }

    .visitor-page .benefit-box {
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 25px;
      background: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .visitor-page .benefit-box:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .visitor-page .benefit-box ul {
      list-style: none;
      padding-left: 0;
    }

    .visitor-page .benefit-box li {
      padding: 8px 0;
    }

    .visitor-page .benefit-box li i {
      color: #e5520b;
      margin-right: 8px;
    }

    .visitor-page .cta-section {
      background: linear-gradient(90deg, #ff6b00, #e5520b);
      color: #fff;
      padding: 50px 0;
      text-align: center;
    }

    .visitor-page .btn-register {
      background-color: #fff;
      color: #e5520b;
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 30px;
      border: none;
      transition: 0.3s;
    }

    .visitor-page .btn-register:hover {
      background-color: #e5520b;
      color: #fff;
      box-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
	
	
	
	 /* ==========================
       Partners Page Styles
    =========================== */
    .partners-page {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      color: #333;
    }

    .partners-page .section-title {
      font-weight: 700;
      color: #e5520b;
      text-align: center;
      margin-bottom: 40px;
    }

    .partners-page .partner-logo {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
    }

    .partners-page .partner-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .partners-page .partner-logo img {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
    }

    .partners-page .partners-section {
      padding: 60px 0;
      background: #f9f9f9;
    }

    .partners-page .partners-section:nth-child(even) {
      background: #fff;
    }

    .partners-page .cta-section {
      background: linear-gradient(90deg, #ff6b00, #e5520b);
      color: #fff;
      text-align: center;
      padding: 50px 0;
    }

    .partners-page .btn-partner {
      background-color: #fff;
      color: #e5520b;
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 30px;
      transition: 0.3s;
      border: none;
    }

    .partners-page .btn-partner:hover {
      background-color: #e5520b;
      color: #fff;
      box-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
	
	 /* ==========================
       Visitor Registration Page Styles
    =========================== */	
	
	    .registration-page {
      max-width: 1200px;
      margin: 0 auto;
    }

    .form-section {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      padding: 40px;
    }

    .form-section h4 {
      font-weight: 700;
      color: #e5520b;
      margin-bottom: 30px;
    }

    .form-label {
      font-weight: 500;
    }

    .btn-submit {
      background: #e5520b;
      border: none;
      color: #fff;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      width: 100%;
    }

    .btn-submit:hover {
      background: #ff6b00;
      transform: translateY(-2px);
    }

    .sidebar-card {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .sidebar-card h5 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .event-details {
      background: linear-gradient(145deg, #ff6b00, #e5520b);
      color: #fff;
    }

    .event-details h5 {
      color: #fff;
    }

    .event-details p {
      margin: 0;
      line-height: 1.6;
    }

    .benefits-list,
    .contact-info {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .benefits-list li {
      margin-bottom: 10px;
    }

    .benefits-list i {
      color: #e5520b;
      margin-right: 8px;
    }

    .contact-info li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-check-label {
      font-size: 0.9rem;
    }

    @media (max-width: 992px) {
      .form-section, .sidebar-card {
        margin-bottom: 30px;
      }
    }
	
	
	 /* ==========================
       Past Editions Page Styles
    =========================== */		
.nav-pills .nav-link {
  background: #f5f2ed;
  color: #333;
  border-radius: 10px;
  margin: 0 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav-pills .nav-link.active {
  background: #ff4b00;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 75, 0, 0.4);
}
.nav-pills .nav-link:hover {
  background: #ff4b00;
  color: #fff;
}

.gallery-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


	 /* ==========================
       Contact Page Styles
    =========================== */	
    .contact-card {
      border: 1px solid #eee;
      border-radius: 10px;
      background-color: #fff;
      padding: 25px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .contact-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .contact-card i {
      color: #ff6600;
      font-size: 2rem;
      margin-bottom: 10px;
    }
    .contact-form, .about-card {
      border: 1px solid #f1f1f1;
      border-radius: 10px;
      background: #fff;
      padding: 25px;
      height: 100%;
    }
    .btn-orange {
      background-color: #ff6600;
      border: none;
      color: #fff;
      font-weight: 500;
      border-radius: 8px;
      transition: background 0.3s ease;
    }
    .btn-orange:hover {
      background-color: #e65c00;
    }
    .section-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .section-title i {
      color: #ff6600;
    }
    .expertise-list {
      list-style-type: none;
      padding-left: 0;
    }
    .expertise-list li::before {
      content: "• ";
      color: #ff6600;
    }
	
	
	 /* ==========================
       stall booking Page Styles
    =========================== */		
	
	    /* Card Containers */
    .booking-container {
      padding: 50px 15px;
    }

    .booking-form-card, .event-info-card, .help-card {
      border-radius: 10px;
      background-color: #fff;
      border: 1px solid #eee;
      padding: 25px;
      transition: all 0.3s ease;
    }

    /* Section Headings */
    .form-section-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #e85c00;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 25px;
    }

    .form-section-title i {
      font-size: 1.4rem;
    }

    /* Inputs */
    .booking-form .form-control, 
    .booking-form .form-select {
      border-radius: 8px;
      padding: 10px;
      border: 1px solid #ddd;
      font-size: 0.95rem;
    }

    /* Buttons */
    .btn-orange {
      background-color: #ff6600;
      border: none;
      color: #fff;
      font-weight: 500;
      border-radius: 8px;
      padding: 10px 25px;
      transition: background 0.3s ease;
    }

    .btn-orange:hover {
      background-color: #e65c00;
    }

    /* Event Details Card */
    .event-info-card {
      background: linear-gradient(135deg, #ff6a00, #ff3c00);
      color: #fff;
      border: none;
    }

    .event-info-card h5 {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .event-info-card p {
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    /* Help Card */
    .help-card h5 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .help-card p {
      font-size: 0.9rem;
      margin-bottom: 5px;
    }

    .help-card a {
      color: #ff6600;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .event-info-card, .help-card {
        margin-top: 20px;
      }
    }