/* =========================================================
   core.css
   Shared base - loaded on every page.
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}
.btn {
  font-weight: 600;
  transition: .5s;
}
.btn-square {
  width: 32px;
  height: 32px;
}
.btn-sm-square {
  width: 34px;
  height: 34px;
}
.btn-md-square {
  width: 44px;
  height: 44px;
}
.btn-lg-square {
  width: 56px;
  height: 56px;
}
.btn-xl-square {
  width: 66px;
  height: 66px;
}
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}
.btn.btn-primary {
  background: linear-gradient(to right, #63005d, #01316f);
  color: var(--bs-white);
  border: none;
  font-weight: 400;
  transition: 0.5s;
}
.btn.btn-primary:hover {
  background: linear-gradient(to right, #01316f, #63005d) !important;
  color: var(--bs-light);
}
.btn.btn-dark {
  background: #1966b1 !important;
  color: var(--bs-white) !important;
  font-family: 'Roboto', sans-serif;
  border: none;
  font-weight: 400;
  transition: 0.5s;
}
.btn.btn-dark:hover {
  background: var(--bs-white) !important;
  color: var(--bs-dark) !important;
}
.btn.btn-light {
  background: #1966b1 !important;
  color: var(--bs-white) !important;
  font-family: 'Roboto', sans-serif;
  border: none;
  font-weight: 400;
  transition: 0.5s;
}
.btn.btn-light:hover {
  background: var(--bs-white) !important;
  color: var(--bs-dark) !important;
}
@keyframes RotateMoveCircle {
  0% {top: -400px;}
  50%   {right: -200px;}
  75%   {top: -200px;}
  100%  {top: -400px;}
}
@keyframes RotateMoveRight {
  0%   {left: 0px;}
  50%   {left: 70px;}
  100%  {left: 0px;}
}
@keyframes RotateMoveLeft {
  0%   {left: -240px;}
  50%   {left: -300px;}
  100%  {left: -240px;}
}
@keyframes RotateMoveCircle {
  0% {top: -200px;}
  50%   {right: -100px;}
  75%   {top: -100px;}
  100%  {top: -200px;}
}
.about .text {
  position: relative;
}
.about .text::after {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #1966b1;
}
.project .project-carousel .project-item .project-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.project .project-carousel .project-item .project-img::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(68, 210, 246, 0.4);
  transition: 0.5s;
}
.project .project-carousel .project-item:hover .project-img::after {
  height: 100%;
}
.project .project-carousel .project-item .project-img img {
  transition: 0.5s;
}
.project .project-carousel .project-item:hover .project-img img {
  transform: scale(1.2);
}
.blog .blog-item .project-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s;
}
.blog .blog-item .project-img .blog-plus-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(68, 210, 246, 0.2);
  transition: 0.5s;
  opacity: 0;
}
.blog .blog-item:hover .project-img .blog-plus-icon {
  opacity: 1;
}
.blog .blog-item .project-img img {
  transition: 0.5s;
}
.blog .blog-item:hover .project-img img {
  transform: scale(1.3);
}
.section-p {
  margin-top: 60px;
  margin-bottom: 60px;
}
.service .service-item {
  position: relative;
  overflow: hidden;
}
.service .service-item .service-inner .service-title {
  position: relative;
  margin-top: -30px;
  text-align: center;
  transition: 0.5s;
}
.service .service-item .service-inner .service-title .service-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-primary);
  opacity: 0;
  transition: 0.5s;
}
.service .service-item:hover .service-inner .service-title .service-content {
  bottom: 0;
  opacity: 1;
}
.service .service-item .service-inner .service-title .service-content a h5 {
  border-bottom: 1px solid rgba(256, 256, 256, .1);
}
.service .service-item .service-inner .service-title .service-title-name {
  transition: 0.5s;
}
.service .service-item:hover .service-inner .service-title .service-title-name {
  opacity: 0;
}
.service .service-item .service-inner .service-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.service .service-item .service-inner .service-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .5);
  transition: 0.5s;
  opacity: 0;
}
.service .service-item:hover .service-inner .service-img::after {
  height: 100%;
  opacity: 1;
}
.service .service-item .service-inner .service-img img {
  transition: 0.5s;
}
.service .service-item:hover .service-inner .service-img img {
  transform: scale(1.3);
}
.service .service-item {
  position: relative;
  overflow: hidden;
}
.service .service-item .service-inner .service-title {
  position: relative;
  margin-top: -30px;
  text-align: center;
  transition: 0.5s;
}
.service .service-item .service-inner .service-title .service-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  border-radius: 10px;
  background: #01253f;
  opacity: 0;
  transition: 0.5s;
}
.service .service-item:hover .service-inner .service-title .service-content {
  bottom: 0;
  opacity: 1;
}
.service .service-item .service-inner .service-title .service-content a h5 {
  border-bottom: 1px solid rgba(256, 256, 256, .1);
}
.service .service-item .service-inner .service-title .service-title-name {
  transition: 0.5s;
}
.service .service-item:hover .service-inner .service-title .service-title-name {
  opacity: 0;
}
.service .service-item .service-inner .service-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.service .service-item .service-inner .service-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .5);
  transition: 0.5s;
  opacity: 0;
}
.service .service-item:hover .service-inner .service-img::after {
  height: 100%;
  opacity: 1;
}
.service .service-item .service-inner .service-img img {
  transition: 0.5s;
}
.service .service-item:hover .service-inner .service-img img {
  transform: scale(1.3);
}
.venue .container-fluid {
  margin-bottom: 3px;
}
@keyframes slideleft {
  33% {transform:translateX(-300px);
  opacity:0;
  }
  66% {transform:translateX(300px);
  opacity:0;
  }
}
@keyframes slideright {
  33% {transform:translateX(300px);
  opacity:0;}
  66% {transform:translateX(-300px);
  opacity:0;}
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v145/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}
.testimonial-carousel .item {
  padding: 10px;
}
.testimonial-carousel .testimonial-item .d-flex img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.small-text {
  font-size: 14px;
}
.exhibitor-profiles-text {
  font-size: 16px;
}
.sponsors .clients-wrap {
  border-top: 1px #e9e9e9 solid ;
  border-left: 1px #e9e9e9 solid ;
}
.sponsors .client-logo {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px #e9e9e9 solid ;
  border-bottom: 1px #e9e9e9 solid ;
  overflow: hidden;
}
.sponsors .client-logo img {
  padding: 10px;
  max-width: 100%;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .sponsors .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}
.sponsors .client-logo:hover img {
  transform: scale(1.1);
}
.pbmit-icon-wrapper.pbmit-icon-type-icon.why-icon img {
  width: 40px;
  margin: 0;
  height: 40px;
  margin-top: -50px;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-15px); }
  50% { transform: translateX(15px); }
  75% { transform: translateX(-15px); }
}
.clients {
  padding: 1px 0;
  padding-bottom: 30px;
}
.box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 90%;
  height: auto;
  transition: transform 0.5s ease-in;
  margin: 8px auto;
}
.box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}
.box:hover {
  transform: scale(1.1);
}
.carousel-testimonial .item {
  padding: 30px 10px;
}
@keyframes scrollText {
  0% {
  transform: translateX(0);
  }
  100% {
  transform: translateX(-50%);
  }
}
@keyframes scrollText {
  0% {
  transform: translateX(100%);
  }
  100% {
  transform: translateX(-100%);
  }
}
@keyframes bounce {
  0%, 100% {
  transform: translateY(0);
  }
  50% {
  transform: translateY(-8px);
  }
}
.border-b {
  border-bottom: 1px #d3d2d2 solid;
}
.clients-section {
  padding:10px 30px 20px 30px;
  text-align: center;
}
.clients-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 600;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.client-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 10px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.client-card img {
  max-width: 240px;
  max-height: 100px;
  object-fit: contain;
}
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
@keyframes floatImage {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-10px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}
.animate-scale-item.visible {
  opacity: 1;
  transform: scale(1);
}
.fade-up-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-slide.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.contact-img {
  width: 95%;
}
@media (max-width: 991px) {
  .contact-img {
    width: 100%;
  }
}
@keyframes pulseCircle {
  0% { box-shadow: 0 0 0 0 rgba(254, 204, 0, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(254, 204, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 204, 0, 0); }
}
@keyframes floatLeft {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
@keyframes floatRight {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}
.info-box:hover {
  transform: translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,0.18);
}
@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(-50px); }
  60% { opacity: 1; transform: translateY(10px); }
  80% { transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes floatWave {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-3px) translateX(2px); }
  100% { transform: translateY(0) translateX(0); }
}
.team-card-front .bg-dark {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  overflow: visible;
}
.attend-card .icon {
  font-size: 2rem;
  color: #1966b1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.attend-card:hover .icon {
  transform: rotate(15deg);
  color: #102147;
}
@keyframes fadeSlideIn {
  from {
  opacity: 0;
  transform: translateY(30px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.visit-box1 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 20px;
  border-bottom: 1px solid #d3d2d2 ;
  transition: 0.3s ease;
}
.visit-box1 i {
  font-size: 1.8rem;
  color: #fff;
}
.visit-box1 p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
.visit-box1:hover {
  background: linear-gradient(to right, #01316f, #63005d);
  border-radius: 8px;
}
.btn-ai {
  background: linear-gradient(90deg, #007bff, #00eaff);
  border: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 5px 18px rgba(0,150,255,0.4);
  transition: 0.3s ease;
}
.btn-ai:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,180,255,0.6);
}
.icon-circle {
  background: linear-gradient(135deg, #1966b1, #1966b1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s ease;
}
.attend-card:hover .icon-circle {
  transform: scale(1.1);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.btn-glow {
  background: linear-gradient(90deg, #007bff, #00d0ff);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 5px 18px rgba(0,180,255,0.4);
  transition: 0.3s ease;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,200,255,0.6);
}
.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background: linear-gradient(to right, #000606, #001d1e);
}
.content-overlay {
  position: relative;
  z-index: 2;
}
.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
@media (min-width: 768px) {
  .event-info .col-md-6 {
    display: flex;
    flex-direction: column;
  }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes glow-pulse {
  0% { filter: blur(100px) brightness(0.8); }
  50% { filter: blur(120px) brightness(1); }
  100% { filter: blur(100px) brightness(0.8); }
}
@keyframes rotate-rays {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}
.gold {
  color: #ffe167; font-weight: bold;
}
@keyframes float-soft {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}
@keyframes float-title {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.vip-privileges-section .container {
  position: relative;
  z-index: 1;
}
@keyframes glow-pulse {
  0% { filter: blur(100px) brightness(0.8); }
  50% { filter: blur(120px) brightness(1); }
  100% { filter: blur(100px) brightness(0.8); }
}
.vip-eligibility-section .container {
  position: relative;
  z-index: 1;
}
.gold {
  color: #ffd700;
  font-weight: 700;
}
@keyframes particles-move {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 8px #f5d98d; }
  50% { box-shadow: 0 0 18px #f5d98d; }
}
@keyframes goldWave {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}
@keyframes vipShine {
  0% { left: -150%; }
  60% { left: 160%; }
  100% { left: 160%; }
}
.vip-privileges-section.container-fluid {
  padding-bottom: 20px;
}
@keyframes shimmer {
  0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
  100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
}
@keyframes arrowGlow {
  0% { text-shadow: 0 0 5px #FFD700; }
  50% { text-shadow: 0 0 15px #FFD700; }
  100% { text-shadow: 0 0 5px #FFD700; }
}
@keyframes fadeScaleIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
  transform: translateY(0);
  }
  40% {
  transform: translateY(-15px);
  }
  60% {
  transform: translateY(-7px);
  }
}
.section-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}
table {
  width: 100%;
}
td, th {
  border: 1px solid #818181;
  text-align: left;
  padding: 8px;
  color: #818181;
  font-size: 14px;
}
tr:nth-child(even) {
  background-color: #fff;
}
.panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.panel:nth-child(even) {
  flex-direction: row-reverse;
}
.panel img {
  width: 45%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.panel img:hover {
  transform: scale(1.05);
}
.cta .btn-neon {
  font-size: 1.5rem;
  padding: 20px 60px;
}
@media(max-width:992px) {
  .panel img, .panel-content {
    width: 100%;
    text-align: center;
  }
  .panel {
    flex-direction: column !important;
  }
}
.btn-neon {
  background: linear-gradient(45deg, #00f0ff, #0072ff, #00ff90);
  color: white;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-neon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,255,198,0.7);
}
.panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.panel:nth-child(even) {
  flex-direction: row-reverse;
}
.panel img {
  width: 45%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .panel img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
}
.panel img:hover {
  transform: scale(1.05);
}
.pune-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pune-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
}
.pune-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pune-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
}
.partner-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, rgb(1 37 63 / 97%) 0%, rgb(1 37 63 / 77%) 25%, rgb(1 37 63 / 0%) 50%, rgba(220, 20, 60, 0.00) 100% 100%);
}
.tabs {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,0.10);
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media(max-width: 768px) {
  .tabs {
    flex-wrap: wrap;
  }
}
.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-left: 5px solid #1966b1;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.12);
}
.contact-card h5 {
  margin-bottom: 10px;
}
.contact-card p {
  margin-bottom: 6px;
  font-size: 15px;
}
.contact-card a {
  color: #818181;
  text-decoration: none;
}
.icon {
  margin-right: 8px;
}
.machine-bg {
  background: #051f3a  !important;
}
.neon-text1 {
  color: #fff;
  text-shadow: 0 0 5px #0014ff, 0 0 20px #005aff;
}
.neon-text-purple {
  text-shadow: 0 0 5px var(--neon-purple), 0 0 20px var(--neon-purple);
}
.btn-cyber {
  background: transparent;
  color: #ff00ff;
  border: 2px solid #ff00ff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 700;
}
.btn-cyber:hover {
  background: #ff00ff;
  color: black;
  border-color: #ff00ff;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.4);
  text-shadow: none;
}
.btn-cyber1 {
  background: transparent;
  color: #228fff;
  border: 2px solid #228fff;
  box-shadow: 0 0 15px rgb(0 149 255 / 50%);
  text-shadow: 0 0 8px rgb(0 196 255 / 60%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 700;
}
.btn-cyber1:hover {
  background: #228fff;
  color: black;
  border-color: #228fff;
  box-shadow: 0 0 30px rgb(0 243 255 / 80%), 0 0 60px rgb(0 67 255 / 40%);
  text-shadow: none;
}
.btn-pulse {
  background: linear-gradient(90deg, rgb(99, 0, 93), rgb(1, 49, 111));
  border: none;
  color: white;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(99, 0, 93, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(99, 0, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(99, 0, 93, 0); }
}
.robotic-text {
  font-size: 4rem !important;
  font-weight: 900;
  line-height: 1.1;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.robotic-text-1 {
  font-family: 'Rajdhani';
  font-size: 1.8rem;
}
.robotic-text-2 {
  font-family: 'Rajdhani';
  font-size: 20px;
  font-weight: 500;
}
.robotic-heding {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 992px) {
  .robotic-text {
    font-size: 1.8rem !important;
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .robotic-heding {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem !important;
    color: #fff;
  }
}
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.stat-card-neon {
  background: rgb(13 13 64 / 70%);
  border: 1px solid rgba(0, 243, 255, 0.2);
  padding: 25px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.stat-card-neon::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 20px;
  border-top: 2px solid #00f3ff;
  border-right: 2px solid #00f3ff;
}
.stat-card-neon::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 20px; height: 20px;
  border-bottom: 2px solid #bc13fe;
  border-left: 2px solid #bc13fe;
}
.stat-number-box {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00f3ff !important;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-symbol {
  font-size: 2rem;
  color: #fff;
}
.stat-label-neon {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.stat-card-neon:hover {
  background: rgba(0, 243, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
}
.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 15px;
  transition: 0.4s;
  position: relative;
}
.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}
.glass-card h3 {
  color: #00f3ff;
  font-family: 'Orbitron', sans-serif;
}
.collage-section {
  background: #05050a;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  border-bottom: 1px solid rgba(188, 19, 254, 0.1);
  padding-bottom: 50px;
}
.cyber-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  padding: 10px;
  grid-auto-flow: dense;
}
.collage-item {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 243, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 4px;
}
.span-2-2 {
  grid-column: span 2; grid-row: span 2;
}
.span-2-1 {
  grid-column: span 2; grid-row: span 1;
}
.span-1-2 {
  grid-column: span 1; grid-row: span 2;
}
.span-1-1 {
  grid-column: span 1; grid-row: span 1;
}
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: grayscale(40%) contrast(1.1) brightness(0.9);
}
.collage-item:hover {
  z-index: 10;
  transform: scale(1.05);
  border-color: #ff00ff;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.6), 0 0 50px rgba(0, 243, 255, 0.4);
}
.collage-item:hover img {
  transform: scale(1.15);
  filter: grayscale(0%) contrast(1.2) brightness(1.1);
}
.collage-stat-box {
  background: linear-gradient(135deg, rgb(58, 12, 100), rgb(26, 35, 126));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.collage-stat-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin: 0;
}
.collage-section1 {
  background: #05050a;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  border-bottom: 1px solid rgba(188, 19, 254, 0.1);
  padding-bottom: 50px;
}
.cyber-collage1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  padding: 10px;
  grid-auto-flow: dense;
}
@media (max-width: 992px) {
  .cyber-collage1 {
    display: flow;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
    padding: 10px;
    grid-auto-flow: dense;
  }
}
.collage-item1 {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 243, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 4px;
}
.span-2-02 {
  grid-column: span 2; grid-row: span 2;
}
.span-2-01 {
  grid-column: span 2; grid-row: span 1;
}
.span-1-02 {
  grid-column: span 1; grid-row: span 2;
}
.span-1-01 {
  grid-column: span 1; grid-row: span 1;
}
.collage-item1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: grayscale(40%) contrast(1.1) brightness(0.9);
}
.collage-item1:hover {
  z-index: 10;
  transform: scale(1.05);
  border-color: #228fff;
  box-shadow: 0 0 25px rgb(0 67 255 / 60%), 0 0 50px rgb(0 208 255 / 40%);
}
.collage-item1:hover img {
  transform: scale(1.15);
  filter: grayscale(0%) contrast(1.2) brightness(1.1);
}
.collage-stat-box {
  background: linear-gradient(135deg, rgb(58, 12, 100), rgb(26, 35, 126));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.collage-stat-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin: 0;
}
.visitor-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.visitor-card1 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: 8px;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: default;
}
.visitor-card1 i {
  font-size: 1.5rem;
  width: 40px;
  color: #ee65ff;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
  transition: 0.3s;
}
.visitor-card1 span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #e0e0e0;
}
.visitor-card1:hover {
  background: rgba(0, 243, 255, 0.1);
  border-color: #ee65ff;
  box-shadow: 0 0 20px rgb(255 0 235 / 20%);
  transform: translateY(-3px);
}
.visitor-card1:hover i {
  color: #fff;
  transform: scale(1.1);
}
.why-icon {
  font-size: 2.5rem;
  color: var(--neon-purple);
  margin-bottom: 20px;
}
.why-visit-card1 {
  background: rgb(19 19 50 / 60%);
  border: 1px solid rgb(19 124 254 / 20%);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.why-visit-card1::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: #13a7fe;
  opacity: 0.5;
  transition: 0.3s;
}
.why-visit-card1:hover {
  transform: translateY(-5px);
  border-color: #13a7fe;
  box-shadow: 1px solid rgb(19 167 254 / 20%);
  transform: translateY(-3px);
}
.why-visit-card1:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--neon-purple);
}
@media (max-width: 992px) {
  .cyber-collage {
    grid-template-columns: repeat(2, 1fr);
  }
  .span-2-2, .span-2-1 {
    grid-column: span 2;
  }
  .span-1-2 {
    grid-row: span 2;
  }
}
@media (max-width: 576px) {
  .cyber-collage {
    grid-template-columns: 1fr;
  }
  .span-2-2, .span-2-1, .span-1-2, .span-1-1 {
    grid-column: span 1; grid-row: span 1;
  }
  .collage-item {
    height: 250px;
  }
}
.smart-text {
  font-family: 'Rajdhani', sans-serif !important;
}
.r-text {
  color: #9da2a7 !important;
}
.stall-f {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 768px) {
  .stall-f {
    font-size: 0.8rem;
    font-weight: 400;
    color: #fff;
  }
}
.text-white-50 {
  color: rgb(255 255 255 / 74%) !important;
}
.robotic-hero-p {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .robotic-hero-p {
    padding-top: 1px;
    padding-bottom: 1px;
  }
}
.stall-f {
  font-size: 1.2rem!important;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 768px) {
  .stall-f {
    font-size: 0.8rem !important;
    font-weight: 400;
    color: #fff;
  }
}
.btn-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.btn-container::-webkit-scrollbar {
  display: none;
}
.btn-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.btn-gallery {
  background: linear-gradient(90deg, #FF6B6B, #FFD93D);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .btn-gallery {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}
.btn-gallery {
  background: linear-gradient(90deg, #2d55c5, #6e149d);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-gallery1 {
  background: linear-gradient(90deg, #2d55c5, #6e149d);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .btn-gallery {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
  .btn-gallery1 {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}
.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}
.gallery-img-wrapper img {
  transition: transform 0.5s ease;
}
.gallery-img-wrapper:hover img {
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay i {
  color: #fff;
  font-size: 2rem;
}
.gallery-img-wrapper:hover .overlay {
  opacity: 1;
}
.gallery-item {
  display: none;
}
.gallery-item[data-folder="inauguration"] {
  display: block;
}
.partners-card {
  background: #001524;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #2c2c2c;
  transition: 0.35s;
  height: 100%;
}
.partners-card:hover {
  transform: translateY(-10px);
  transform: translateY(-10px);
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgb(255 255 255 / 20%);
}
.partners-img {
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .partners-img {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
  }
}
.partners-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.partners-card:hover img {
  transform: scale(1.06);
}
.partners-card h4 {
  color: #fff;
  margin-bottom: 8px;
}
.btn-partner {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0057B7;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-partner:hover {
  background-color: #FF7A00;
  color: #fff;
  transform: translateY(-3px);
}
.glow-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #000e22;
  border: 6px solid #FFD700;
  box-shadow: 0 0 15px #ffdd33, 0 0 20px #ffdd33;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 15px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.glow-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #ffe066, 0 0 25px #ffeb88;
}
.icon-glow {
  font-size: 45px;
  color: #ffd000;
  margin-bottom: 12px;
  text-shadow: 0 0 6px #ffdd33;
}
.glow-circle p {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: #FFD700;
}
.partner-card {
  background: #04305a;
  border: 1px solid rgb(135 109 3);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: #fecc00;
  opacity: 0.5;
  transition: 0.3s;
}
.partner-card:hover {
  transform: translateY(-5px);
  border-color: #fecc00;
  box-shadow: 0 0 25px rgb(48 25 102 / 55%);
  transform: translateY(-3px);
}
.partner-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--neon-purple);
}
.who-can-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgb(255 255 255 / 43%);
}
.who-can-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  border: 1px solid #fff;
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: #1966b1  ;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px auto;
}
.objective-strip {
  position: relative;
  background: rgba(255,255,255,0.05);
  padding: 28px 25px 28px 80px;
  border-radius: 14px;
  height: 100%;
  transition: 0.3s ease;
}
.objective-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #fecc00;
  border-radius: 4px 0 0 4px;
}
.objective-strip:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.strip-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fecc00;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.objective-strip p {
  color: #adb5bd;
  margin: 0;
  font-size: 16px;
}
.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}
.gallery-img-wrapper img {
  transition: transform 0.5s ease;
}
.gallery-img-wrapper:hover img {
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay i {
  color: #fff;
  font-size: 2rem;
}
.gallery-img-wrapper:hover .overlay {
  opacity: 1;
}
.gallery-item {
  display: none;
}
.gallery-item[data-folder="inauguration"] {
  display: block;
}
.event-card {
  background: #04305a;
  border: 1px solid rgb(135 109 3);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: #fecc00;
  opacity: 0.5;
  transition: 0.3s;
}
.event-card:hover {
  transform: translateY(-5px);
  border-color: #fecc00;
  box-shadow: 0 0 25px rgb(48 25 102 / 55%);
  transform: translateY(-3px);
}
.event-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--neon-purple);
}
.event-icon {
  font-size: 2.5rem;
  color: #fecc00;
  margin-bottom: 20px;
}
.section-title {
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title span {
  color: #0d6efd;
}
.section-text {
  color: #555;
  margin-bottom: 20px;
}
.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}
.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: 700;
}
.feedback-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.feedback-box h3 {
  margin-bottom: 25px;
  font-weight: 700;
}
.feedback-item {
  margin-bottom: 20px;
}
.feedback-item p {
  color: #333;
}
.feedback-item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}
.home-about-video {
  width: 100%;
}
@media (max-width: 991px) {
  .home-about-video {
    width: 100%;
  }
}
.cybersecurity-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cybersecurity-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
}
.cybersecurity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cybersecurity-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
}
@media (max-width: 768px) {
  .cybersecurity-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
  }
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}
.focus-card {
  background: #062f4c;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s;
  border: 1px solid rgba(255,255,255,0.08);
}
.focus-card:hover {
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 12px 35px rgb(255 215 0 / 14%);
}
.focus-card i {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 18px;
}
.focus-card p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
}
.participation-p {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .participation-p {
    display: block;
    gap: 20px;
    row-gap: 30px;
  }
}
@keyframes zoomIn {
  from {
  transform: scale(0.7);
  opacity: 0;
  }
  to {
  transform: scale(1);
  opacity: 1;
  }
}
.book-text1 {
  font-size: 28px !important;
}
@keyframes wave {
  0% {
  transform: scale(1);
  opacity: 0.8;
  }
  100% {
  transform: scale(2.2);
  opacity: 0;
  }
}
.item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.item i {
  font-size: 22px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b9164;
}
.red .item i {
  background: #d33838;
  color: #fff;
}
.green .item i {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}
.display-4-1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .display-4-1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
.custom-select {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}
.show-priview-text {
  padding-top: 15px;
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.show-priview-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgb(25 102 177 / 27%);
}
.show-priview-img-new {
  width: 168px;
  height: 99px;
  object-fit: cover;
  background: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}
.show-priview-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.show-priview-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #061f30;
  border-left: 4px solid #fecc00;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 290px;
}
.show-priview-more-btn1 {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 8px 18px;
  color: #fff;
  border: 3px #1966b1 solid;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  width: 100%;
}
.show-priview-more-btn1:hover {
  background: #13589b;
  transform: scale(1.05);
  color: #fff !important;
  background: #1966b1;
}
.agenda-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}
.agenda-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,#00c6ff,#0072ff);
}
.agenda-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,114,255,0.25);
  border-color: rgba(0,198,255,0.4);
}
.agenda-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #104f61, #0072ff);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0,114,255,0.35);
}
.agenda-card ul {
  padding-left: 20px;
  margin: 0;
}
.agenda-card ul li {
  color: #e8e8e8;
  line-height: 32px;
  font-size: 15px;
}
.agenda-card ul li::marker {
  color: #00c6ff;
}
.agenda-wrapper {
  max-width: 950px;
  margin: auto;
  padding: 20px;
}
.agenda-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #04284a, #082c50);
  border: 1px solid rgb(255 255 255 / 33%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.agenda-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(135deg, #1966b1, #70b8ff);
}
.agenda-row:hover {
  transform: translateY(-4px) scale(1.01);
  background: linear-gradient(135deg, #172554, #1966b1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}
.date-pill {
  background: linear-gradient(135deg, #ffcc00, #f8df7b);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  color: #000;
  box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}
.time-pill {
  background: linear-gradient(135deg, #1966b1, #70b8ff);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(124,58,237,0.35);
}
.agenda-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.agenda-content i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14276b, #7c5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0,212,255,0.35);
}
@media (max-width: 768px) {
  .agenda-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }
  .date-pill,
    .time-pill {
    min-width: auto;
    width: fit-content;
  }
  .agenda-content {
    font-size: 15px;
  }
}
.col-experience {
  max-width: 20% !important;
}
@media (max-width: 991px) {
  .col-experience {
    max-width: 100% !important;
  }
}
.confrence-hero-text {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .confrence-hero-text {
    margin-left: 1px;
  }
}
.session {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(127,223,255,0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  transition: 0.25s ease;
}
.session:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(11,124,255,0.16);
}
@media (max-width: 991px) {
  .session {
    display: block;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(127,223,255,0.2);
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    transition: 0.25s ease;
  }
}
.side-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transform: translateY(-50%);
}
.side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, .28);
  transition: padding-right .25s ease, filter .25s ease;
}
.side-btn:hover {
  padding-right: 16px; filter: brightness(1.06);
}
.side-btn:focus-visible {
  outline: 3px solid #0d6efd; outline-offset: 2px;
}
.side-btn--stall {
  background: #FFD100;
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  line-height: 1;
  padding: 22px 12px;
}
.side-btn--stall .side-btn__text {
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.side-btn--whatsapp {
  background: #25D366;
  color: #fff !important;
  width: 52px;
  height: 52px;
  font-size: 28px;
}
.side-btn--whatsapp:hover {
  padding-right: 0; width: 58px;
}
@media (max-width: 991px) {
  .side-buttons {
    gap: 6px;
  }
  .side-btn--stall {
    font-size: 13px; padding: 18px 10px;
  }
  .side-btn--whatsapp {
    width: 46px; height: 46px; font-size: 24px;
  }
}
