.bg-bluee{
    background-color: #101480;
}

/*Start Pre loader*/
/* ===== PRELOADER ===== */
.sr-page-loader{
    position:fixed;
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    animation:sr-hideLoader 2.5s forwards;
}
@keyframes sr-hideLoader{
    100%{opacity:0; visibility:hidden;}
}

/* ===== POPUP (SCROLL FIXED) ===== */
.sr-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);

    display:flex;
    justify-content:center;
    align-items:flex-start;

    overflow-y:auto;
    padding:30px 15px;

    opacity:0;
    visibility:hidden;
    animation:sr-showPopup 0.4s forwards;
    animation-delay:2.5s;
    z-index:999999;
}
@keyframes sr-showPopup{
    to{opacity:1; visibility:visible;}
}

/* ===== FORM ===== */
.sr-form{
    width:100%;
    max-width:850px;
    background:#fff;
    padding:25px;
    color:#1b2d64;
    position:relative;

    max-height:90vh;
    overflow-y:auto;
}

/* SCROLLBAR */
.sr-form::-webkit-scrollbar{
    width:5px;
}
.sr-form::-webkit-scrollbar-thumb{
    background:#1b2d64;
}

/* CLOSE */
.sr-close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:20px;
    cursor:pointer;
}

/* TITLE */
.sr-form h2{
    text-align:center;
    margin-bottom:20px;
}

/* ===== GRID ===== */
.sr-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

/* FIELD */
.sr-field{
    display:flex;
    flex-direction:column;
}

.sr-label{
    font-size:13px;
    font-weight:600;
    margin-bottom:5px;
}

/* INPUT */
.sr-grid input,
.sr-grid select{
    padding:12px;
    border:1px solid #dcdcdc;
    outline:none;
    color:#1b2d64;
    font-size:14px;
}

.sr-grid input:focus,
.sr-grid select:focus{
    border-color:#1b2d64;
    box-shadow:0 0 0 1px #1b2d64;
}

/* FULL WIDTH */
.sr-full{
    grid-column:span 3;
}

/* ===== CHECKBOX ===== */
.sr-check{
    grid-column:span 2;
}

.sr-check p{
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
}

.sr-check label{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:6px;
    font-size:13px;
}

.sr-check input{
    width:16px;
    height:16px;
    accent-color:#1b2d64;
}

/* ===== SUBMIT ===== */
.sr-submit{
    display:flex;
    align-items:flex-end;
}

.sr-submit button{
    width:100%;
    padding:12px;
    background:#101480;
    border:none;
    color:#fff;
    cursor:pointer;
    font-weight:600;
}

/* CLOSE FUNCTION */
#sr-close-toggle{display:none;}
#sr-close-toggle:checked ~ .sr-popup{display:none;}

/* ===== TABLET ===== */
@media(max-width:900px){
    .sr-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .sr-full,
    .sr-check{
        grid-column:span 2;
    }
}

/* ===== MOBILE ===== */
@media(max-width:500px){
    .sr-popup{
        padding:15px 10px;
    }

    .sr-form{
        padding:18px;
        max-height:95vh;
    }

    .sr-grid{
        grid-template-columns:1fr;
    }

    .sr-full,
    .sr-check{
        grid-column:span 1;
    }
}
/*End Pre loader*/


/*Start Logo*/
    .logo-header {
      background: #ffffff;
      padding: 0px 20px;
      width: 100%;
    }

    .logo-header__label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #aaa;
      margin-bottom: 16px;
    }

    .logo-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
      gap: 10px;
      list-style: none;
    }

    .logo-grid__item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      transition: opacity 0.25s ease, transform 0.25s ease;
      cursor: pointer;
    }

    .logo-grid__item:hover {
      opacity: 0.75;
      transform: scale(1.05);
    }

    .logo-grid__item img {
      display: block;
      /* height: 60px; */
      width: auto;
      max-width: 240px;
      object-fit: contain;
    }

    @media (max-width: 1024px) {
      .logo-grid__item img {
        /* height: 50px; */
        max-width: 225px;
      }
    }

    @media (max-width: 767px) {
      .logo-header {
        padding: 16px 20px;
      }
      .logo-grid__item {
        flex: 0 0 calc(33.333% - 10px);
      }
      .logo-grid__item img {
        /* height: 40px; */
        max-width: 200px;
      }
    }

    @media (max-width: 479px) {
      .logo-grid__item {
        flex: 0 0 calc(50% - 10px);
      }
      .logo-grid__item img {
        /* height: 34px; */
        max-width: 170px;
      }
    }
/*End Logo*/











/*Header Start*/
/* .sr-header {
  position: relative;
  background: radial-gradient(circle at top, #1e293b, #020617);
  padding: 60px 20px;
  overflow: hidden;
  animation: fadeUp 1s ease;
} */

/* 🌌 STAR BACKGROUND */
/* .sr-header::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('assets/images/slider-bg.png');
  animation: moveStars 80s linear infinite;
  opacity: 0.25;
} */

/* .sr-header {
  position: relative;
  background: transparent;
  padding: 60px 20px;
  overflow: hidden;
  animation: fadeUp 1s ease;
  will-change: transform;
}

.sr-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('assets/images/slider-bg.png') center/cover no-repeat fixed;
  z-index: 0;
}
 */

.sr-header {
  position: relative;
  background: radial-gradient(circle at top, #1e293b, #020617);
  padding: 60px 20px;
  overflow: hidden;
  animation: fadeUp 1s ease;
}

/* 🌌 STAR BACKGROUND */
.sr-header::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('assets/images/slider-bg.png');
  animation: moveStars 80s linear infinite;
  opacity: 0.25;
}

/* ✨ GLASS EFFECT */
.sr-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}

/* LEFT */
.sr-header-left {
  max-width: 600px;
}

.sr-logo {
  font-size: 42px;
  font-weight: bold;
  color: white;
}

/* 🔵 GLOW TEXT */
.sr-logo span {
  color: #3b82f6;
  /* text-shadow: 0 0 10px #3b82f6,
               0 0 20px #3b82f6,
               0 0 40px #3b82f6; */
}

.sr-subtitle {
  margin: 10px 0 20px;
  letter-spacing: 2px;
  /* color: #cbd5f5;
  font-size: 24px; */
  font-size: 22px;
  font-weight: bold;
  color: #fffa2e;
}

/* 🎯 BUTTON */
.sr-btn {
  position: relative;
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s;
}

.sr-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #3b82f6;
  left: 0;
  top: 0;
  transition: 0.4s;
  z-index: -1;
}

.sr-btn:hover::after {
  width: 100%;
}

/* RIGHT */
.sr-header-right {
  text-align: right;
}

.sr-header-right p {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
}

.sr-header-right span {
  color: #88b5ff;
  font-weight: bold;
}

/* 🎬 ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌌 STAR MOVE */
@keyframes moveStars {
  from {
    transform: translate(0,0);
  }
  to {
    transform: translate(-400px, -500px);
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .sr-container {
    flex-direction: column;
    text-align: center;
  }

  .sr-header-left,
  .sr-header-right {
    max-width: 100%;
    text-align: center;
  }

  .sr-header-right {
    margin-top: 20px;
  }

  .sr-logo {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .sr-logo {
    font-size: 26px;
  }

  .sr-subtitle {
    font-size: 12px;
  }

  .sr-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
/*Header End*/

/*Counter Start*/
/* wrapper */
.start-counter {
  /* background:#ffffff; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.sr-wrapper {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

/* animated gradient border */
.sr-gradient {
  position: relative;
  /* border-radius: 28px; */
  padding: 2px;
  /* background: linear-gradient(270deg, #00e5ff, #0077ff, #00e5ff); */
  background-size: 400% 400%;
  animation: sr-border 6s linear infinite;
}

@keyframes sr-border {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 400%
  }
}

/* date box */
.sr-date {
  width: 190px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 22px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* countdown cards */
.sr-box {
  width: 160px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  transition: 0.4s;
  gap: 5px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* hover glow */
/* .sr-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.7);
} */

/* numbers */
.sr-number {
  font-size: 30px;
  font-weight: bold;
}

/* label */
.sr-label {
  font-size: 18px;
  opacity: 0.85;
}

.market-overview{
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}

/* responsive */
@media(max-width:992px) {
  .sr-date {
    width: 260px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 26px; */
    /* background: #2f4156; */
    color: white;
    font-size: 22px;
    font-weight: 500;
    padding: 8px;
  }

  .booking-wrapper2 {
    margin-top: -63px;
    position: relative;
    z-index: 999;
    padding: 10px;
  }

  .start-counter {
    /* background:#ffffff; */
    /* background: linear-gradient(135deg, #141e30, #243b55); */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sr-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* .bg{
      background: linear-gradient(135deg, #141e30, #243b55);
    } */

  .sr-wrapper {
    flex-direction: row;
  }

  .sr-date {
    width: 100%;
  }

  .sr-box {
    width: 130px;
    height: 70px;
    padding: 8px;
  }

  .sr-number {
    font-size: 30px;
  }

  .market-overview{
  font-size: 26px;
  font-weight: 600;
  color: #00027e;
}

}
/*Counter End*/

/*Register-visit Start*/
/* MAIN CONTAINER */
.pdas-form {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* SECTION TITLE */
.pdas-form h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #1a1a1a;
}

.pdas-form .sub-text {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

/* GRID */
.pdas-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* INPUTS */
.pdas-form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

.pdas-form input:focus {
  border-color: #5271ff;
  box-shadow: 0 0 5px rgba(82,113,255,0.3);
}

/* FULL WIDTH */
.pdas-form .full {
  grid-column: span 2;
}

/* SECTION BOX */
.pdas-form .section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* RADIO & CHECKBOX */
.pdas-form .options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pdas-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.pdas-form input[type="checkbox"],
.pdas-form input[type="radio"] {
  width: auto;
}

/* CONFIRM BOX */
.pdas-form .confirm {
  background: #f4f7ff;
  padding: 15px;
  border-radius: 10px;
  font-size: 13px;
}

/* BUTTON */
.pdas-form button {
  width: 100%;
  padding: 15px;
  border: none;
  background: linear-gradient(135deg, #5271ff, #2e4bff);
  color: white;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.pdas-form button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(82,113,255,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
  .pdas-form .grid {
      grid-template-columns: 1fr;
  }

  .pdas-form .full {
      grid-column: span 1;
  }

  .pdas-form .options {
      grid-template-columns: 1fr;
  }
}
/*Register-visit End*/

/*Register to Exhibit*/
/* MAIN */
.aero-form {
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

/* SECTION */
.aero-form .section {
  margin-bottom: 35px;
}

.aero-form .title {
  font-size: 20px;
  font-weight: 600;
  border-left: 4px solid #5271ff;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* GRID */
.aero-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* INPUT */
.aero-form input,
.aero-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  margin: 10px 0px;
}

.aero-form input:focus,
.aero-form select:focus {
  border-color: #5271ff;
  box-shadow: 0 0 5px rgba(82,113,255,0.3);
}

/* FULL WIDTH */
.aero-form .full {
  grid-column: span 2;
}

/* CHECKBOX LIST */
.aero-form .options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.aero-form label {
  display: flex;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  flex-wrap: wrap;
}

.aero-form input[type="checkbox"],
.aero-form input[type="radio"] {
  width: auto;
}

/* REPRESENTATIVE BOX */
.aero-form .rep-box {
  background: #f9fbff;
  padding: 15px;
  border-radius: 10px;
}

/* FLEX AREA */
.aero-form .flex {
  display: flex;
  gap: 20px;
}

/* SUMMARY CARD */
.aero-form .summary {
  background: linear-gradient(135deg, #0b1d4d, #1d3ed8);
  color: white;
  padding: 20px;
  border-radius: 12px;
  min-width: 280px;
}

.aero-form .summary p {
  margin: 8px 0;
  font-size: 16px;
  color: #d0d0d0;
}

.aero-form .total {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}

/* TERMS */
.aero-form .terms {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

/* DECLARATION */
.aero-form .decl {
  font-size: 13px;
  background: #f4f7ff;
  padding: 15px;
  border-radius: 10px;
}

/* SIGN AREA */
.aero-form .sign-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.aero-form .sign-box div {
  border: 1px dashed #ccc;
  padding: 10px;
  /* height: 100px; */
}

.sign-seal{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTON */
.aero-form button {
  width: 100%;
  padding: 15px;
  border: none;
  background: linear-gradient(135deg, #5271ff, #2e4bff);
  color: white;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .aero-form .grid {
      grid-template-columns: 1fr;
  }

  .aero-form .full {
      grid-column: span 1;
  }

  .aero-form .options {
      grid-template-columns: 1fr;
  }

  .aero-form .flex {
      flex-direction: column;
  }

  .aero-form .sign-box {
      grid-template-columns: 1fr;
  }
}

/*Why Should Participate Start*/


.pdas-section {
    padding: 60px 20px;
    background: #f5f7fb;
}

/* GRID */
.pdas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.pdas-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* HOVER */
.pdas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* ICON */
.pdas-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

/* TITLE */
.pdas-card h3 {
    font-size: 18px;
    color: #0b2a78;
    margin-bottom: 10px;
}

/* TEXT */
.pdas-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .pdas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pdas-grid {
        grid-template-columns: 1fr;
    }
}
/*Why Should Participate End*/

/*Who Should Participate Start*/
.srr-participate {
    padding: 60px 20px;
    background: #f5f7fb;
}

/* TITLE */
.srr-title {
    display: inline-block;
    background: #eef2ff;
    color: #3b3bb3;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 18px;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.srr-desc {
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* GRID */
.srr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.srr-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    min-height: 180px;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-left: 4px solid transparent;
}

/* ICON */
.srr-icon {
    font-size: 22px;
    min-width: 30px;
}

/* TEXT */
.srr-card p {
    font-size: 18px;
    color: #444;
    line-height: 1.5;
}

/* HOVER */
.srr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #3b3bb3;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .srr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .srr-grid {
        grid-template-columns: 1fr;
    }
}
/*Who Should Participate End*/