/*@copyright:ITFox Technologies	
* @created date: May 2026
* @location	 :Haldwani
* @#Developer: Pooja Joshi
*/
/* common css start */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* =========================
   Bootstrap Theme Variables
   ========================= */

:root {
  --font-sans: "Montserrat", sans-serif;
  /* Colors */
  --color-surface: #0F1B2D;
  --color-card: #16263D;
  --color-primary-dark: #07111F;
  --color-primary: #0B2A6D;
  --color-secondary: #18B8B0;
  --color-orange: #F28C1A;
  --color-orange-dark:rgb(159, 45, 0);
  --color-orange-light: rgba(203, 48, 0, 0.2);
  --color-purple: #8B5CF6;
  --color-pink: #EC4899;
  --color-green: #39B54A;
  --color-text: #F8FAFC;
  --color-muted: #94A3B8;
  --color-border: #233552;
  /* Shadows */
  --shadow-card: 0 12px 30px rgba(0,0,0,.35);
  --shadow-glow: 0 0 40px rgba(24,184,176,.25);
  /* fonts size start */
  --xxs-font: 0.675rem;
  --xs-font: 0.875rem;
  --sm-font: 1rem;
  --md-font: 1.2rem;
  --lg-font: 1.5rem;
  --xl-font: 2rem;
  --xxl-font: 3.5rem;
}

body{ font-family: var(--font-sans)!important; font-size: var(--xs-font); }
section{ overflow: hidden; }
a{color:inherit; text-decoration: none;}
h1,h2,h3,h4,h5,h6{ font-family: var(--heading-font); font-weight: 700; }

/* typography */
.text-xxs{font-size: var(--xxs-font)}
.text-xs{font-size: var(--xs-font);}
.text-sm{font-size: var(--sm-font);}
.text-md{font-size: var(--md-font);}
.text-lg{font-size: var(--lg-font);}
.text-xl{font-size: var(--xl-font);}
.text-xxl{font-size: var(--xxl-font);}
.testimonial-heading{ font-size: 50px;}
.text-shadow{text-shadow: 2px 2px 4px #000000}
/* background  color start */
.bg-primary { background-color: var(--color-primary) !important; }
.bg-primary-dark { background-color: var(--color-primary-dark) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-orange-color { background-color: var(--color-orange) !important; }
.bg-orange-light { background-color: var(--color-orange-light) !important; }
.bg-orange-dark{ background-color: var(--color-orange-dark);}
.bg-surface { background-color: var(--color-surface) !important; }
.bg-card { background-color: var(--color-card) !important; }
.bg-hero { background: linear-gradient( 135deg, #07111F 0%, #0B2A6D 40%, #18B8B0 100% ); }
.bg-primary-gradient { background: linear-gradient( 135deg, #07111F 0%, #0B2A6D 40%, #0F1B2D 100% ); }
.bg-gradient-color{background: linear-gradient(295deg, transparent 56%,#0F1B2D 30%);}
.bg-glow { background: radial-gradient( circle at center, rgba(24,184,176,.2) 0%, transparent 70% ); }
/* background color end */
/* color start */
.text-primary-custom { color: var(--color-primary) !important; }
.text-orange { color: var(--color-orange) !important; }
.text-orange-dark { color: var(--color-orange-dark) !important; }
.text-orange-light { color: var(--color-orange-light) !important; }
.text-secondary-custom { color: var(--color-secondary) !important; }
.text-muted-custom { color: var(--color-muted) !important; }
/* color end */
/* shadow start */
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-glow { box-shadow: var(--shadow-glow); }
/* border start */
.border-primary-color{ border-color:  var(--color-primary) !important;}
.border-secondary-color{ border-color:  var(--secondary-base) !important;}
/* button start */
.btn-primary-custom:active, .btn-secondary-custom:active{ transform: scale(0.9);}
.btn-primary-custom { background-color: var(--color-primary); color: white; }
.btn-primary-custom:hover, .btn-primary-custom:focus, .btn-primary-custom:active {
  background-color: #081f52;
  border-color: #081f52;
  color:white;
}
.btn-secondary-custom {
  background-color: var(--color-orange);
  color: #fff;
  transition: 0.5s ease-in-out;
  transform: scale(1);
}
.btn-secondary-custom:hover { background-color: var(--color-orange-dark); color: #fff; }
.custom-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
}
.primary-button{
  color: #F8FAFC;
  background-color: transparent;
  border: 1px solid #F8FAFC;
  transition: 0.5s;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.primary-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: var(--color-orange);
  transition: all 0.5s ease-in-out;
}
.primary-button:hover:after { left: 0; width: 100%;}
.primary-button:hover,.primary-button:focus,.primary-button:active{ color: white;  background-color: var(--primary-color);}

.secondary-button{
  border: none;
  color: var(--color-primary);
  background-color: var(--color-primary);
  transition: 0.5s;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.secondary-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: var(--color-orange);
  transition: all 0.5s ease-in-out;
}
.secondary-button:hover:after { left: 0; width: 100%;}
.secondary-button:hover,.secondary-button:focus,.secondary-button:active{ color: white;  background-color: var(--color-orange-light);}

/* common css end */

/* css start */
/* common css start */
.w_h_5{ width: 1.25rem; height:1.25rem;}
.w_h_15{ width: 8rem; height:8rem;}
.tracking{ letter-spacing: 0.1em;}
.stack-line{ width:1px; height: max-content; padding:0.5rem 0; display: block; background-color: var(--color-orange-dark);}
.icon-holder { background-color: var(--color-orange-light); color:var(--color-orange); }
.icon-holder:hover { background-color: var(--color-orange-dark); color:white;}
.custom-border-top{ border-top: 1px dashed #fff }
.custom-dashed-top {
  padding: 10px;
  border-top: 3px solid transparent;
  border-image: repeating-linear-gradient(
    to right,
    navy 0,
    navy 1px,
    transparent 10px,
    transparent 20px
  ) 1;
}
/* navbar css start */
.nav-item.dropdown .dropdown-menu{ animation: downOut 500ms ease-in-out forwards; transform-origin: center center;}
.nav-item.dropdown:hover .dropdown-menu{ 
  display: block !important; 
  top: 100%; 
  background-color: white;
  width: 12rem;
}
.dropdown-menu li .dropdown-item{ transition: all .3s ease-in-out; }
.nav-item.dropdown:hover .dropdown-menu li .dropdown-item:hover{ padding-left: 25px; }
.home .nav-link{ color: white}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--color-primary-dark);
}
@-moz-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@-webkit-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@-o-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
/* new css start */
.box{ background-color: #ffefef12; border: 2px solid var(--color-orange-light); }
.box:hover{background-color: var(--color-orange-light); transform: scale(1.01);}
.box:hover .download-icon-holder{ transform: rotate(12deg);}
.download-icon-holder{ width: 64px; height: 64px;}
/* navbar css end */
/* appreciation letter */
.appreciation-letter { height: 12rem; }
.modal-image {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.openImageModal{
  background-position:  center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.8); 
  width: 100%; height: 100vh; position: fixed; z-index: 10000; top: 0px; left: 0px; cursor: zoom-out; overflow: hidden;
}
.carousel-box {
  width: 100%;
  height: 4rem;
  border: 1px dashed #333;
}
/* pages css */
.position-relative.exhibitions_div {
  top: 0rem !important;
  z-index: 9;
}
/* .exhibitions_div .mySwiper { overflow-y: visible;} */
/* .exhibitions_div .swiper-button-prev { top: -1rem !important; } */
.swiper-nav-wrapper .swiper-button-prev, .swiper-nav-wrapper .swiper-button-next {
  position: static;
  margin: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #0d224b;
  color: #0e1d37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: rotate(360deg);
}

/* Adjusting icon arrow sizes */
.swiper-nav-wrapper .swiper-button-prev::after, .swiper-nav-wrapper .swiper-button-next::after { font-size: 12px; font-weight: bold; }
/* Hover State */
.swiper-nav-wrapper .swiper-button-prev:hover,
.swiper-nav-wrapper .swiper-button-next:hover {
  background-color: #0d224b;
  color: #ffffff;
  transform: rotate(0deg);
}
.display-img{ width: 100%; height: 14rem;}
.display-profile .swiper-nav-wrapper{ top: -4rem;}
.display-profile .swiper-nav-wrapper .swiper-button-prev, .display-profile .swiper-nav-wrapper .swiper-button-next,
.mediaSupport .swiper-nav-wrapper .swiper-button-prev, .mediaSupport .swiper-nav-wrapper .swiper-button-next {
  border: 2px solid #fff; color: #fff;
}
.display-profile .swiper-nav-wrapper .swiper-button-next:hover {
  background-color: #fff;
  color: #0d224b;
  transform: rotate(0deg);
}
.display-profile .swiper-nav-wrapper, .mediaSupport .swiper-nav-wrapper{ top: -4rem;}
.display-profile .swiper-nav-wrapper .swiper-button-prev, .display-profile .swiper-nav-wrapper .swiper-button-next.appreciation-letter
.mediaSupport .swiper-nav-wrapper .swiper-button-prev, .mediaSupport .swiper-nav-wrapper .swiper-button-next {
  border: 2px solid #fff; color: #fff;
}
.display-profile .swiper-nav-wrapper .swiper-button-next:hover, .mediaSupport .swiper-nav-wrapper .swiper-button-next:hover, .display-profile .swiper-nav-wrapper .swiper-button-prev:hover, .mediaSupport .swiper-nav-wrapper .swiper-button-prev:hover {
  background-color: #fff;
  color: #0d224b;
  transform: rotate(0deg);
}
.exhibitor_div .swiper-nav-wrapper{ top: -4rem;}
/* footer */
.links li::before {
  position: absolute;
  content: "\F231";
  top: 0;
  left: 0;
  font-family: 'bootstrap-icons' !important;
  color: #F8FAFC;
  font-size: 1rem;
}
.links li:hover {
  margin-left: 1rem;
  transition-duration: .9s;
}
/* inner page css */
.bg-image { text-shadow: 2px 2px 4px #000000; }
.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/inner_banner.jpg') bottom / cover no-repeat;
  background-attachment: fixed;
  filter: blur(5px);
  z-index: -1;
}
/* exhibitor logos css start */
.exhibitor-logo-container{ width: 100%; height: 6rem; transition: 0.6s all ease-in-out; }
.exhibitor-logo-container:hover { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
.exhibitor-logo-container .exhibitors-logo-box{ width: 100%; height: 6rem;  cursor: pointer;
  border: 4px solid var(--color-orange);
  transition: 0.6s all ease-in-out;
}
.exhibitor-logo-container:before{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  content: '';
  z-index: 2;
  background-color: var(--color-primary-dark);
   transition: 0.6s all ease-in-out; 
}
.exhibitor-logo-container:after{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  z-index: 2;
  background-color: var(--color-primary-dark);
   transition: 0.6s all ease-in-out;  
}
.exhibitor-logo-container:hover:before,.exhibitor-logo-container:hover:after{ width: 0; }

.exhibitor-logo-container .exhibitors-logo-box:before{
  position: absolute;
  width: 5px;
  height: 100%;
  content: '';
  bottom: 0;
  right: -5px;
  transition: 0.6s all ease-in-out; 
  background-color: var(--color-primary-dark); 
}
.exhibitor-logo-container .exhibitors-logo-box:after{
  position: absolute;
  width: 5px;
  height: 100%;
  content: '';
  top: 0;
  left: -5px;
  transition: 0.6s all ease-in-out; 
  background-color: var(--color-primary-dark); 
}
.exhibitor-logo-container:hover .exhibitors-logo-box:before, .exhibitor-logo-container:hover .exhibitors-logo-box:after{ height: 0; }
/* exhibitor logos css end */
/* why exhibit start */
.why-exhibit-box-container{ transition: 0.6s all ease-in-out; }
.why-exhibit-box-container:hover{ -webkit-transform: translateY(-10px); transform: translateY(-10px); }

/* exhibitor profile */
.service-box{ transition: .3s all ease-in-out; border: 1px solid orange}
.service-box:hover{ transform: translateY(-10px);}
.service-box:hover img{ transform: scale(1.1);}
.profile-image { height: 15rem; }
.ul-list ul{ list-style:none; padding: 0; margin:0;}
.ul-list li::before {
  position: absolute;
  content: "\F231";
  top: 0;
  left: 0;
  font-family: 'bootstrap-icons' !important;
  color: var(--color-orange);
  font-size: 1rem;
}
.ul-list li:hover {
  margin-left: 1rem;
  transition-duration: .9s;
  padding: 0px 0px 0px 2.5rem;
}
/* registration  */
.option .form-check-label{
    display:flex;
    align-items:center;
    cursor:pointer;
    gap:8px;
    margin-right:20px;
    user-select:none;
}

/* Custom checkbox style */
/* Hide default radio */
.option .form-check-input{
  display:none;
}

/* Label */
.option .form-check-label{
  display:flex;
  align-items:center;
  cursor:pointer;
  gap:8px;
  margin-right:20px;
  user-select:none;
}

/* Custom checkbox style */
.custom-radio{
  width:22px;
  height:22px;
  border:2px solid #bdbdbd;
  border-radius:4px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}

.custom-radio::after{
  content:"";
  width:6px;
  height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg) scale(0);
  transition:.2s;
}

/* Checked */
.option .form-check-input:checked + .form-check-label .custom-radio{
  background:#0d6efd;
  border-color:#0d6efd;
}

.option .form-check-input:checked + .form-check-label .custom-radio::after{
  transform:rotate(45deg) scale(1);
}


/* visitor profile page css start */
.exhibit-profile-card{ transition: all 0.3s ease-in-out;}
.exhibit-profile-img{border-bottom: 3px solid var(--color-primary-dark); height: 12rem; transform: scale(1);}
.exhibit-profile-card:hover .exhibit-profile-img{ transform: scale(1.05);}
.exhibit-profile-card:hover{ border-color: var(--color-primary-dark); box-shadow: 1px 1px 3px var(--color-primary-dark) !important; }
.exhibit-profile-card p {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .visitor-profile-card:hover h5{ color: white;} */
.visitor-profile-card::before {
  content: '';
  position: absolute;
  right: -55px;
  width: 95px;
  height: 95px;
  bottom: -50px;
  border-radius: 15px;
  background: linear-gradient(268deg, #e5a91e17, #0f0f0f21) !important;
  -webkit-transition: all .6s ease-in-out; 
  transition: all .6s ease-in-out; 
  z-index: -1;
}
.visitor-profile-card:hover:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #eb661f;
}
/* visitor profile page css end */
