  *  :root {
      --bs-btn-color: #ef7026;
      --bs-warning-rgb:rgb(239 112 38) !important;
      --bg-primary:#ef7026;
    }
.bg-orange{
    background-color:#ef7026!important;
}
.navbar{
    background-color: #fff!important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ef7026!important;
}
.nav-link {
    transition: color 0.2s ease, border-bottom 0.2s ease;
    border-bottom: 2px solid transparent;
  }
  .nav-link:hover,
  .nav-link.active {
    color: #ef7026 !important;
    border-bottom: 2px solid #ef7026;
  }
  .navbar-brand img {
    transition: transform 0.2s ease;
  }
  .navbar-brand img:hover {
    transform: scale(1.05);
  }
  .offcanvas-body .nav-link {
    font-weight: 500;
    color: #333;
  }
  .offcanvas-body .nav-link:hover {
    color: #ef7026;
  }
  
  /*--------Footer class----*/
  .footer-section{
    background-color: rgb(100, 100, 100);
  }
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #fff!important;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  .footer-links a:hover {
    color: #ef7026;
    padding-left: 5px;
  }

  .footer-section {
    /* background: linear-gradient(180deg, #1a1a1a 0%, #000 100%); */
  }

  .social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .social-circle:hover {
    background-color: #ef7026;
    color: #000;
  }

  .floating-book {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ef7026;
    color: #fff!important;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1050;
  }
  .floating-book:hover {
    transform: translateY(-3px);
    background: #ffc83d;
    text-decoration: none;
  }
  .floating-book a{color: #fff!important;}
  .floating-book i {
    font-size: 1.1rem;
  }

  .text-light-emphasis {
    color: #b8b8b8 !important;
  }

  @media (max-width: 576px) {
    .floating-book {
      bottom: 15px;
      right: 15px;
      font-size: 0.9rem;
    }
  }
  /*-------footer class end-----*/
  
  /*-----index--------------*/
  #hero {
  height: 100vh;
  min-height: 600px;
}

.hero-img {
  height: 100vh!important;
  object-fit: cover;
  filter: brightness(70%) contrast(1.1);
  transition: transform 10s ease-in-out;
}

.carousel-item.active .hero-img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.8) 90%);
  z-index: 10;
}

/* Text Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.delay-1s { animation-delay: 0.5s; }
.delay-2s { animation-delay: 1s; }

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

  .hover-zoom {
    transition: transform 0.4s ease;
  }
  .hover-zoom:hover {
    transform: scale(1.08);
  }

  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  section h2 {
    letter-spacing: 0.5px;
  }

  a.btn-warning, .btn-warning {
    background-color: rgb(239 112 38) !important;
    border-color: #ef7026;
  }
  a.btn-warning:hover, .btn-warning:hover {
    background-color: #ffc94d;
    border-color: #ffc94d;
  }
  /*-----index-end----------*/
   .breadcrumb-section {
    background: linear-gradient(135deg, #111 0%, #333 100%);
  }

  h2 span {
    color: #ef7026;
  }

  p {
    line-height: 1.7;
  }

  section {
    scroll-margin-top: 80px;
  }

  .carousel-item img {
    height: 450px;
    object-fit: cover;
  }

  .btn-warning {
    background-color: rgb(239 112 38) !important;
    border: none;
  }

  .btn-warning:hover {
    background-color: #ffc83d;
  }

  .shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }

  @media (max-width: 768px) {
    h2 {
      font-size: 1.5rem;
    }
    .carousel-item img {
      height: 300px;
    }
  }
  
    .card.hover-card {
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    color:#ef7026;
  }

  .card.hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

  .icon-circle {
    background-color: #ef7026;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  h2 {
    letter-spacing: 0.5px;
  }

  .card h6 {
    font-size: 0.95rem;
    color: #333;
  }

  @media (max-width: 767px) {
    .card.hover-card {
      padding: 1rem;
    }
    .icon-circle {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  }
  
   .breadcrumb-section {
    background: linear-gradient(135deg, #111 0%, #333 100%);
  }

  .text-orange {
    color: rgb(239 112 38) !important;
  }

  input, select {
    border-radius: 0.4rem !important;
  }

  .btn-warning {
    background-color: #ef7026;
    border: none;
    color: #000;
  }
  .btn-warning:hover {
    background-color: #ffc94d;
    color: #000;
  }

  .form-check-input:checked {
    background-color: #ef7026;
    border-color: #ef7026;
  }

  .captcha span img {
    height: 45px;
    width: auto;
  }

 
  .form-control, .form-select {
    border-radius: 0.5rem !important;
    border: 1px solid #ccc;
    padding: 0.75rem 1rem;
  }

  .form-control:focus, .form-select:focus {
    border-color: #ef7026;
    box-shadow: 0 0 0 0.2rem rgba(255, 179, 0, 0.25);
  }


  .card {
    background: #fff;
    border-radius: 1rem;
  }
   .icon-box {
    background-color: #ef7026;
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 179, 0, 0.4);
  }

  .feature-list li {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 10px;
  }

  .feature-list li:hover {
    transform: translateY(-4px);
    border-left: 3px solid #ef7026;
  }

  .highlight-tag {
    font-size: 0.85rem;
    top: 15px;
    left: 0;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.15);
  }

  .exhibit-image {
    border-radius: 1rem;
  }

  @media (max-width: 768px) {
    .icon-box {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  }
  a{text-decoration:none!important;
      color:#000!important;
  }
  .text-orange{
      
      color:#ef7026;
  }
  .sponcer .card
  {
    border: 1px solid #ef7026;
    box-shadow: 15px 15px 15px #ccc!important;
    height:100%
}
.card
  {
    border: 1px solid #ef7026!important;
    box-shadow: 15px 15px 15px #ccc!important;
    height:100%
}
.memory-slider {
  width: 100%;
  padding-bottom: 40px;
}
.memory-slider .swiper-slide{ border: 1px solid #fff; border-radius: 1rem;}
.memory-card {
  overflow: hidden;
  border-radius: 1rem;
  
 
}

.memory-card img {
  width: calc(100% -2px);
  height: 180px; /* fixed uniform height */
  object-fit: cover; /* ensures consistent size */
  transition: transform 0.3s ease;
  
 
}

.memory-card:hover img {
  transform: scale(1.08);
}



/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: var(--bs-btn-color, #ef7026);
}

.swiper-pagination-bullet-active {
  background: var(--bs-btn-color, #ef7026);
}

/* Lightbox Custom Style */
.lb-data .lb-caption {
  color: #fff;
}
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  color: var(--bs-btn-color, #ef7026);
}
.bg-memory{
    background-image: url('../images/memory/mem-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.bg-memory::before{ 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}
.bg-memory .container{
    position: relative;
    z-index: 1;
}

.login-card {
    border-radius: 15px;
    background: #fff;
    transition: all 0.3s ease;
  }

  .login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 1.8rem;
  }

  .form-control {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
  }

  .form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
  }

  .btn-warning {
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .exhibitor-login-section {
    background: linear-gradient(180deg, #fdfdfd 0%, #f8f9fa 100%);
  }

  .tick-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
  }

  .tick-list li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ef7026;
    position: absolute;
    left: 0;
    top: 3px;
  }
 .text-orange { color: #ff6600 !important; }
  .bg-orange { background-color: #ff6600 !important; }
  .btn-orange {
    background-color: #ff6600!important;
    color: #fff!important;
    transition: all 0.3s ease;
  }
  .btn-orange:hover {
    background-color: #e05500;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 10px 6px 12px rgba(255, 102, 0, 0.4); 
  }
  .hover-orange:hover {
    color: #ff6600 !important;
  }
   .dropdown-menu .dropdown-item{
  padding: 10px 15px;
   
  }
  .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, #ff6600, #ff8c00);
    color: #fff!important;
   
  }
    .dropdown-menu .dropdown-item:hover i{
   
    color: #fff!important;
   
  }
  .navbar-nav .nav-link {
    transition: color 0.3s ease;
  }

  /* Hover dropdowns (desktop only) */
  @media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
       border: 1px solid #ef7026!important;
    }
    .dropdown-menu {
      margin-top: 0;
      display: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      transform: translateY(10px);
     
    }
  }

  /* Mobile adjustments */
  @media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
      position: static;
      float: none;
      box-shadow: none;
      background: transparent;
      border: none;
      padding-left: 0;
    }
    .navbar-nav .dropdown-item {
      color: #333;
      padding: 0.5rem 1rem;
    }
    .navbar-nav .dropdown-item:hover {
      background: none;
      color: #ff6600;
    }
  }



  .btn-highlight {
  background: linear-gradient(90deg, #ff6600, #ff8c00);
  color: #fff!important;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: orangeGlow 2.5s infinite alternate ease-in-out;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

/* Hover effect: brighter glow, faster pulse */
.btn-highlight:hover {
  transform: translateY(-2px) scale(1.05);
  animation: orangeGlowFast 1.2s infinite alternate ease-in-out;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.7);
}

/* Shimmer overlay (gentle white light sweep) */
.btn-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 3.5s infinite linear;
}

/* Base pulsing glow */
@keyframes orangeGlow {
  0% {
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.3), 0 0 15px rgba(255, 102, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.6), 0 0 50px rgba(255, 102, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.4), 0 0 25px rgba(255, 102, 0, 0.3);
  }
}

/* Faster pulsing on hover */
@keyframes orangeGlowFast {
  0% {
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 102, 0, 0.8), 0 0 60px rgba(255, 102, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.4);
  }
}

/* Continuous shimmer animation */
@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

.sublogo-text{display:block;
    font-size:10px;
    color:#555;
    margin-bottom:-5px;
    font-weight:500;
}

#exhibitor .card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
  }
  #exhibitor .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  #exhibitor img {
    border-radius: 10px 10px 0 0;
  }
  
  
  /* Section */
.blog-section{
  padding:80px 15px;
}

/* Header */
.blog-header{
  margin-bottom:50px;
}

.blog-header h2{
  font-size:36px;
  font-weight:700;
}

.blog-header p{
  color:#666;
}

/* Card */
.blog-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.4s;
  height:100%;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* Image */
.blog-img{
  position:relative;
  overflow:hidden;
}

.blog-img img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:0.4s;
}

.blog-card:hover img{
  transform:scale(1.1);
}

/* Category */
.category{
  position:absolute;
  top:15px;
  left:15px;
  background:#000;
  color:#fff;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
}

/* Content */
.blog-content{
  padding:25px;
}

.meta{
  display:flex;
  gap:20px;
  font-size:13px;
  color:#777;
  margin-bottom:12px;
}

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

.blog-content p{
  color:#555;
  line-height:1.6;
}

/* Read More */
.read-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#000;
  font-weight:600;
  text-decoration:none;
  margin-top:10px;
}

.read-more:hover{
  text-decoration:underline !important;
  color:#ff6800 !important;
}

/* Mobile */
@media(max-width:600px){
  .blog-header h2{
    font-size:28px;
  }
}


/* Pagination */
.blog-pagination .page-link{
  border:none;
  margin:0 6px;
  padding:10px 16px;
  border-radius:8px;
  color:#333;
  font-weight:600;
  box-shadow:0 6px 15px rgba(0,0,0,0.06);
  transition:0.3s;
}

.blog-pagination .page-link:hover{
  background:#ff6800;
  color:#fff;
}

/* Active Page */
.blog-pagination .page-item.active .page-link{
  background:#ff6800;
  color:#fff;
  box-shadow:0 10px 25px rgba(255,104,0,0.4);
}

/* Disabled */
.blog-pagination .page-item.disabled .page-link{
  background:#eee;
  color:#999;
  pointer-events:none;
}


/*blog detail*/
/* BLOG DETAIL */

.blog-detail-section{
  padding:80px 15px;
}

.blog-detail-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.blog-detail-img{
  width:100%;
  height:380px;
  object-fit:cover;
}

.blog-detail-content{
  padding:35px;
}

.detail-category{
  background:#ff6800;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
}

.blog-detail-content h1{
  margin:15px 0;
  font-size:32px;
}

.detail-meta{
  display:flex;
  gap:20px;
  font-size:14px;
  color:#777;
  margin-bottom:20px;
}

.blog-detail-content p{
  color:#555;
  line-height:1.8;
  margin-bottom:15px;
}

.blog-detail-content h3{
  margin:25px 0 10px;
}

.blog-detail-content blockquote{
  background:#f6f7fb;
  border-left:4px solid #ff6800;
  padding:15px 20px;
  margin:20px 0;
  font-style:italic;
}

/* RELATED BLOGS */

.related-wrapper{
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  /*height:100%;*/
}

.related-title{
  margin-bottom:20px;
  font-size:22px;
}

.related-card{
  display:flex;
  gap:15px;
  margin-bottom:18px;
  text-decoration:none;
  color:#000;
}

.related-card img{
  width:90px;
  height:70px;
  object-fit:cover;
  border-radius:8px;
}

.related-card h6{
  font-size:15px;
  margin-bottom:5px;
}

.related-card span{
  font-size:13px;
  color:#777;
}

.related-card:hover h6{
  color:#ff6800;
}

/* Mobile */

@media(max-width:768px){
  .blog-detail-img{
    height:250px;
  }

  .blog-detail-content{
    padding:25px;
  }
}
