@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



body{
	background:#141414;
font-family: "Barlow Condensed", sans-serif;
font-style: normal;	
	
	
/*
	right click
	-webkit-user-select: none; 
    -moz-user-select: none;  
    -ms-user-select: none;     
    user-select: none;      */   
}

/* 
right click
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
  }*/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to right, #6e00ff, #ff3caa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
  border: none;
}

.back-to-top:hover {
  box-shadow: 0 0 10px rgba(255, 60, 170, 0.6);
  transform: translateY(-5px);
}





/*** Navbar Start ***/
.nav-bar {
    background:#141414;
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 100px;
}


@media (max-width: 768px) {
  .nav-bar .navbar-light .navbar-brand img {
    max-height: 70px;
}

}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;

	
	
	color: #FFF;

text-align: center;
font-family: "Barlow Condensed";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px 8px;
	font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color:#a32bf2;
	font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}


.navbar-light .navbar-nav .nav-link {
	
	    padding: 0px 10px;

	
	
	color: #FFF;

text-align: center;
font-family: "Barlow Condensed";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
	
	
	
}



.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #a32bf2;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}


@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        /*background:#f4f4f4;*/
        border-radius: 10px;
		border:#DC139B 1px solid;
		   background:
        linear-gradient(#313131, #313131) padding-box, /* Transparent look inside */
        linear-gradient(45deg, #a62eb6, #7139f5) border-box; /* Gradient border */
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        /*border: 1px solid var(--bs-primary);
        color: var(--bs-primary);*/
		 background:
        linear-gradient(#313131, #313131) padding-box, /* Transparent look inside */
        linear-gradient(45deg, #a62eb6, #7139f5) border-box; /* Gradient border */
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
	   background:
        linear-gradient(#313131, #313131) padding-box, /* Transparent look inside */
        linear-gradient(45deg, #a62eb6, #7139f5) border-box; /* Gradient border */
}

.dropdown .dropdown-menu .dropdown-item:hover {
     background: linear-gradient(90deg, #a32bf2, #e43079);
    color:#fff;
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

   .navbar .navbar-nav {
    width: 100%;
    padding-left: 15px;
    border-radius: 50px;
    border: 2px solid transparent;

    background:
        linear-gradient(#313131, #313131) padding-box, /* Transparent look inside */
        linear-gradient(45deg, #a62eb6, #7139f5) border-box; /* Gradient border */

    background-origin: border-box;
    background-clip: padding-box, border-box;

    display: flex;
    justify-content: center;
    align-items: center;
}
 
    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 9;
		background:#3a3a3a;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 0px;
	
		border:0.5px solid #D9237D;

background: linear-gradient(135deg, #3a3a3a 2.43%, #2c2c2c 38.66%, #3a3a3a 74.9%);
        transition: .5s;
        opacity: 9;
    }
}



.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #fff!important;
    text-align: inherit;
    white-space: nowrap;
background:#3a3a3a;
  
	

}


.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
 	width: 250px;
    padding: .8rem 0;
    margin: 0;
    font-size: 18px;
     color: #fff!important;
    text-align: left;
    list-style: none;
background:#3a3a3a;
       
}

.navbar-light .dropdown-menu .dropdown-item.active {
    background-color: transparent;
    color: #a32bf2;
    font-weight: 500;
}




/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 5px;

  background-color: #ccc; /* default color */
  border: none;
  margin: 0 5px;
}








.carousel-indicators .active {
   background: linear-gradient(90deg, #d8228a, #a32bf2); /* pink to purple */
}


/*** Carousel End ***/

/*** banner bwlow Buttons Start ***/ 
  .gradient-btn {
      position: relative;
      display: inline-block;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
    
      color: #fff;
      background: transparent;
      border: 2px solid transparent;
      z-index: 1;
      transition: color 0.3s ease-in-out;
	  
	  
	  text-align: center;
leading-trim: both;

text-edge: cap;

font-family: "Barlow Condensed", sans-serif;
font-style: normal;	
font-size: 18px;

font-weight: 500;
line-height: 23px; /* 164.286% */
	  
	  
    }

    .gradient-btn::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border-radius: 50px;
      padding: 2px; /* border width */
      background: linear-gradient(to right, #6e00ff, #ff3caa);
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
      transition: all 0.3s ease-in-out;
    }

    .gradient-btn:hover::before,
    .gradient-btn:focus::before {
      -webkit-mask: none;
      mask: none;
      background: linear-gradient(to right, #6e00ff, #ff3caa);
    }

    .gradient-btn:hover,
    .gradient-btn:focus {
      color: #fff;
    }



    .gradient-btn2 {
      display: inline-block;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-weight: 500;
      color: #fff;
      background: linear-gradient(to right, #6e00ff, #ff3caa);
      border: none;
      transition: background 0.1s ease-in-out;
    }

    .gradient-btn2:hover,
    .gradient-btn2:focus {
      background: linear-gradient(to left, #6e00ff, #ff3caa);
      color: #fff;
    }



/*** banner bwlow Buttons Close ***/ 


/***  home text start ***/

  .venue-section {
      background-image: url('../img/video-bg.png');/* Dummy background path */
      background-size: cover;
      background-position: center;
      padding: 40px 20px 80px;
      /*position: relative;*/
      overflow: hidden;
    }


    .venue-section::before {
      content: '';
      position: relative;
      inset: 0;
      background: rgba(0, 0, 0, 0.88);
      z-index: 0;
    }

    .venue-content {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }

    .venue-content h6 {
		
		text-align: center;
font-family: "Barlow Condensed";
font-size: 34px;
font-style: normal;
font-weight: 700;
line-height: normal;
		
background: linear-gradient(97deg, #06FF00 -34.75%, #036C00 169.03%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    }

    .venue-content h2 {
      color: #FFF;

text-align: center;
font-family: "Barlow Condensed";
font-size: 60px;
font-style: normal;
font-weight: 700;
line-height: normal;
    }

    .venue-content p {
      color: #BCBCBC;
text-align: center;
font-family: "Barlow Condensed";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 26px */
    }

    .venue-video {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      margin-top: 2.5rem;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }

    .venue-video img {
      width: 100%;
      height: auto;
      display: block;
    }

    .video-caption {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 2rem;
      font-weight: 600;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
      white-space: nowrap;
    }

    .play-button {
      position: absolute;
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0.15);
      border: 2px solid #fff;
      border-radius: 50%;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s ease;
    }

    .play-button:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .play-button::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-left: 16px solid #fff;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
    }

    @media (max-width: 768px) {
      .venue-content h2 {
        font-size: 2rem;
      }

      .venue-content p {
        font-size: 0.95rem;
      }

      .video-caption {
        font-size: 1.5rem;
        top: 38%;
      }

      .play-button {
        top: 62%;
      }
    }






/***  home text end ***/



/*** Pillar Card Start ***/


.pillar h2{
	color: #FFF;

text-align: center;
font-family: "Barlow Condensed";
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

.pillar-card {
  border: 1px solid transparent;
  border-image: linear-gradient(to bottom, #a854ff, #e84393) 1;
  background: linear-gradient(to bottom, #000000, #2a002f);
  padding: 2rem 1rem  0.5rem 1rem;
  position: relative;
  border-radius: 4px;
  height: auto;
}

.pillar-label {
  position: absolute;
  top: 0;
  left: 10px;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, #141414 0%, #141414 50%, #010001 50%, #010001 100%);

  padding: 0 10px;

	
	
	color: #06FF00;

font-family: "Barlow Condensed";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
	
}

.pillar-icon {
  color: #d64be8;
}

.pillar-list li {
  padding: 8px 0;
  border-bottom: 1px dotted #8D8D8D;;

	
	color: #FFF;

text-align: center;
font-family: "Barlow Condensed";
font-size: 17px;
font-style: normal;
font-weight: 500;
line-height: 180%;
	
	
}

.pillar-list li:last-child {
  border-bottom: none;
}

/*** Pillar Card End ***/




/*.ai-card {
  width: 320px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.ai-card img {
  height: 100%;
  object-fit: cover;
}

.ai-card-overlay {
  width: 100%;
  background: linear-gradient(135deg, #27ae60, #2980b9);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  border-radius: 0px;
  padding: 1.2rem;
}
*/


/*** Tracks start ***/
.section-title {
      color: #FFF;

text-align: center;
font-family: "Barlow Condensed";
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }

   /* .section-title span {
      
		  background: linear-gradient(92deg, #198b4b 0%, #2cc2f2 35%, #cb167e 70%, #7a2b75 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: "Barlow Condensed";
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }*/

 .section-title span {
      color:#c81980;
font-family: "Barlow Condensed";
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }


    .section-title5 span {
   
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: "Barlow Condensed";
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }


    .ai-card {
      position: relative;
      width: 100%;
      height: 360px;
      border-radius: 12px;
      overflow: hidden;
      background-color: #000;
    }

    .ai-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* .ai-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1.2rem;
      color: #fff;
      background: linear-gradient(90deg, #27ae60, #8e44ad);
      clip-path: polygon(0 0, 93% 0, 100% 12%, 100% 100%, 0% 100%);
      transition: transform 0.3s ease;
    }*/

.ai-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding:5px 2px 5px 15px;
  color: #fff;
  background: url("../img/p-overlay.png") no-repeat;
  background-size: cover;
  background-position: center bottom;

  transition: transform 0.3s ease;
}


    .ai-card-overlay h5 {
    
   
		color: #FFF;

font-family: "Barlow Condensed";
font-size: 24px;
font-style: normal;
font-weight: 800;
line-height: 93%; /* 22.32px */
text-transform: uppercase;
		margin-top:10px;
		
		
    }

    .ai-card-overlay p {
     color: #E1E1E1;

font-family: "Barlow Condensed";
font-size: 18.861px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 18.861px */
    }

    .ai-card-overlay a {
     color: #FFF;
font-family: "Barlow Condensed";
font-size: 16.503px;
font-style: normal;
font-weight: 600;
line-height: 130%; /* 21.454px */
		margin-bottom:10px;
    }

  .ai-card-overlay a:hover {
text-decoration:underline;
}



    @media (max-width: 576px) {
      .ai-card {
        height: 280px;
      }
    }

.ai-card:hover .ai-card-overlay {
  transform: translateY(-10px);
}

/*
.ai-card-overlay {
  background: linear-gradient(120deg, #27ae60, #8e44ad);
  background-size: 200%;
  transition: background-position 0.5s ease;
}

.ai-card:hover .ai-card-overlay {
  background-position: right center;
}

*/



/*** Tracks end ***/



/*** exhibition start***/


.exhibition-box {
 background: linear-gradient(180deg, #141414 14.61%, #7B2FEB 373.21%);
  border-radius: 15px;
  padding: 30px;
  position: relative;
border: 1px solid #D9237D;



backdrop-filter: blur(80px);
	
	
	
	

	
}

.swiper {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  background: #ccc;
  opacity: 1;
  border-radius: 15px;
  transition: all 0.3s ease;
	 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* soft shadow */
}

.swiper-pagination-bullet-active {
  background: #06FF00; /* green like in the image */
  width: 20px;
}
.exhibition h4{
color: #FFF;

font-family: "Barlow Condensed";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 40px */
	
	}


.exhibition {
	color:#fff;
}

.exhibition p{
	color: #C6C6C6;

font-family: "Barlow Condensed";
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 24.7px */
	
}

/*** exhibition end***/

  .platform-heading {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 50px;
    }

    .platform-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 0 2px #141414;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .platform-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    .platform-img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .platform-info {
      padding: 20px;
    }

    .platform-info h5 {
    
      color: #000;
      margin-bottom: 10px;


font-family: "Barlow Condensed";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 93%; /* 22.32px */
    }

    .platform-info p {
    
		
		color: #484848;

font-family: "Barlow Condensed";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 98%; /* 17.64px */
    }




 .speaker-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
      margin-bottom: 40px;
	 cursor:pointer;
    }

    .speaker-img-wrap {
	
    /*  background: linear-gradient(135deg, #00FFAB, #9B5DE5);*/
      padding: 1px;
      border-radius: 50%;
      width: 200px;
      height: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
		
		
border: 1px solid #D9D9D9; 
  }


    .speaker-img {
      width: 190px;
      height: 190px;
      border-radius: 50%;
      object-fit: cover;
      background-color: #000;
    }


.speaker-img-wrap {
  padding: 1px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background: #fff; /* inner background */
	
	filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
	
	
	
	
}

/* Gradient border using pseudo-element */
.speaker-img-wrap::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(135deg, #B62D83, #7B2FEB, #B62D83);
  background-size: 200% 200%;
  animation: borderAnimation 4s linear infinite;
}


    .speaker-details {
      display: flex;
      margin-top: 20px;
      width: 100%;
      max-width: 300px;
    }

 .speaker-card:hover .speaker-img-wrap::before {
  filter: brightness(1.2) drop-shadow(0 0 10px #b62d83);
}
    


.speaker-card:hover .speaker-img-wrap{
	
	filter: grayscale(0%);
	
}




.speaker-line {
  width: 2px;
  height: 100px; /* Set your height */
  background: linear-gradient(90deg, #B62D83 0%, #7B2FEB 51.87%, #B62D83 115.58%);
  position: relative;
  margin-right: 12px;
/*  transition: filter 0.3s ease, opacity 0.3s ease;
  filter: grayscale(100%);*/
}

.speaker-card:hover .speaker-line {
  filter: grayscale(0%);
}

.speaker-text h5 {
  margin-bottom: 6px;
  color: #fff;
  text-align: left;
  font-family: "Barlow Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Gradient on hover */
.speaker-card:hover .speaker-text h5 {
  background: linear-gradient(135deg, #B62D83, #7B2FEB, #B62D83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}

.speaker-text p {
    line-height: 1.5;
     margin: 0;
/*	color: #C8C2C2;*/

font-family: "Barlow Condensed";
font-size: 14.5px;
font-style: normal;
font-weight: 400;

    } 


.speaker-card:hover .speaker-text p {
    line-height: 1.5;
     margin: 0;
	color: #fff;

font-family: "Barlow Condensed";
font-size: 14.5px;
font-style: normal;
font-weight: 400;

    } 





    @media (max-width: 576px) {
      .speaker-img-wrap {
        width: 160px;
        height: 160px;
      }

      .speaker-img {
        width: 150px;
        height: 150px;
      }

      .speaker-details {
        max-width: 100%;
      }
    }


.partner-card {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  width: 200px;
	margin-left:10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.partner-header {
  background: linear-gradient(to right, #9c27b0, #e91e63);
  color: white;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 16px;
}

.partner-card img {
  max-height: 100px;
  object-fit: contain;
  padding: 5px;
  max-width: 100%;
}

.glide__arrows {
  display: flex;
  justify-content: space-between;
  margin-top: -80px;
	margin-left: -35px;
	margin-right: -35px;
}

.glide__arrow {
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.glide__arrow:hover {
  background-color: rgba(0, 0, 0, 0.5);
}


.glide1 .glide__arrows {
  display: flex;
  justify-content: space-between;
  margin-top: -70px;
	margin-left: -35px;
	margin-right: -35px;
}



 .bts-section {
      padding: 60px 20px;
	 background:#191919;
    }

    .bts-image {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    .bts-title {
     
      
		
		
		color: #FFF;

font-family: "Barlow Condensed";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: normal;
		
    }

    .bts-subtext {
  
      margin: 20px 0;
   
		
		
		color: #B1B1B1;

font-family: "Barlow Condensed";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
		
    }

.bts-section p{ 
color: #B1B1B1;

font-family: "Barlow Condensed";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;

}

.bts-section strong{
	
	color: #F7F7F7;

font-family: "Barlow Condensed";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

    .bts-buttons .btn {
      border: none;
      padding: 10px 24px;
      margin-right: 12px;
      margin-bottom: 10px;
      border-radius: 25px;
      background: linear-gradient(90deg, #a73acc, #dd58ce);
      color: white;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .bts-buttons .btn:hover {
      background: linear-gradient(90deg, #dd58ce, #a73acc);
    }

    @media (max-width: 767.98px) {
      .bts-title {
        font-size: 1.75rem;
      }
    }





 .footer {
      background: url('../img/footer-bg.png') no-repeat center center;
      background-size: cover;
      color: #fff;
      padding: 60px 20px 30px;
      font-family:"Barlow Condensed", sans-serif;
    }



    .footer h6 {
      
      margin-bottom: 20px;
		
		
		background: radial-gradient(1138.61% 589.58% at 201.03% 378.75%, #0BC707 33.92%, #0BC707 53.53%, #0BC707 91.68%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 0.5px;
-webkit-text-stroke-color: #000;

font-family: "Barlow Condensed";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 93%; /* 22.32px */
text-transform: uppercase;
		
    }

.footer p{
	color: #FFF;

font-family: "Barlow Condensed";
font-size:16px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 26px */
}


    .footer ul {
      list-style: none;
      padding-left: 0;
    }

    .footer ul li {
      margin-bottom: 0px;
    }

    .footer ul li a {
     
      text-decoration: none;
		
		color: #FFF;

font-family: "Barlow Condensed";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 24px */
		
    }

    .footer ul li a:hover {
      text-decoration: underline;
    }

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1 / 1;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 26px;
  transition: all 0.3s ease;
}
.social-icons i {
	font-size:14px;
}
.social-icons a:hover {
  background: linear-gradient(to right, #6e00ff, #ff3caa);
  color: #fff;
  border: 2px solid #6e00ff;
}

    .footer-bottom {
    
     /* margin-top: 40px;*/
      padding-top: 20px;
		padding-bottom: 20px;
      font-size: 0.875rem;
		
		
		
    }

 .footer-bottom1 {
    
		
		 background: linear-gradient(90deg, #2d0b52 0%, #1b0c42 50%, #2d0b52 100%);
  color: #fff;
 
		
    }

    .footer-bottom a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }


/*** flag-container Start ***/

.Marquee1 {
  /*background: -webkit-linear-gradient(225deg, #008ed9, #8b00db);
  background: -moz-linear-gradient(225deg, #008ed9, #8b00db);
  background: -o-linear-gradient(225deg, #008ed9, #8b00db);
  background: -ms-linear-gradient(225deg, #008ed9, #8b00db);
  background: linear-gradient(-135deg, #008ed9, #8b00db);*/
  width:100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1em;
  color: #fff;
  font-weight: 200;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.Marquee-content1 {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-animation: marquee1 40s linear infinite running;
  -moz-animation: marquee1 40s linear infinite running;
  -o-animation: marquee1 40s linear infinite running;
  -ms-animation: marquee1 40s linear infinite running;
  animation: marquee1 40s linear infinite running;
}
.Marquee-content1:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  -ms-animation-play-state: paused;
  animation-play-state: paused;
}
.Marquee-tag1 {
  width: 165px;
  height:auto;
  margin: 0 0.5em;
  padding: 0.5em;

  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  
}
.Marquee-tag1:hover {
  /*background: rgba(255,255,255,0.5);*/
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}
@-moz-keyframes marquee1 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@-webkit-keyframes marquee1 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@-o-keyframes marquee1 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@keyframes marquee1 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
	
	
	.flag-container {
  display: inline-block;
  text-align: center;
  margin: 10px;
  vertical-align: top;
}

.country-name {
 
    width: 165px;
    font-size: 14px;
    color: white;
 
    white-space: nowrap;
    text-align: center;
   
    margin-top: -30px;
    margin-left: 0px;
}


	/*** flag-container End ***/



.logo-container {
  padding: 40px 0;
  overflow-x: hidden; /* prevents scroll from container-fluid */
}

.logo-box {
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 100%; /* Ensures it doesn't overflow */
}

.logo-box img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
}




.logo-container1 {
  padding: 40px 0;
  overflow-x: hidden; /* prevents scroll from container-fluid */
}

.logo-box1 {
  background: #fff;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 100%; /* Ensures it doesn't overflow */
}

.logo-box1 img {
  max-height: 150px;
  max-width: 100%;
  object-fit: contain;
}






/* Banner wrapper */
.inner-banner {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;     /* Vertical center */
  justify-content: center; /* Horizontal center */
  text-align: center;
}

.inner-banner h1 {
  color: #ffffff;
  font-size:72px;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
}

@media (max-width: 768px) {
  .inner-banner h1 {
    font-size: 2rem;
  }
}





.text-section{
	 color: #FFF;

text-align: left;
font-family: "Barlow Condensed";
font-size: 16px;
	  
}

.text-section h4{
	

font-family: "Barlow Condensed";

font-style: normal;

line-height: normal;
		
background: linear-gradient(97deg, #06FF00 -34.75%, #036C00 169.03%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;




}





.exhibition  {
      color: #BCBCBC;
text-align: left;
font-family: "Barlow Condensed";
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 26px */
    }


.exhibition h5{
font-family: "Barlow Condensed";

font-style: normal;

line-height: normal;
		
background: linear-gradient(97deg, #06FF00 -34.75%, #036C00 169.03%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

	
	}



  .text-section h6 {
		
text-align: left;
font-family: "Barlow Condensed";
font-size: 34px;
font-style: normal;
font-weight: 700;
line-height: normal;
		
background: linear-gradient(97deg, #06FF00 -34.75%, #036C00 169.03%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    }

    .text-section h2 {
      color: #FFF;

text-align: left;
font-family: "Barlow Condensed";
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: normal;
    }

    .text-section p {
      color: #BCBCBC;
text-align: left;
font-family: "Barlow Condensed";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 26px */
    }



.section-title2 {
		
text-align: center;
font-family: "Barlow Condensed";
font-size: 34px;
font-style: normal;
font-weight: 700;
line-height: normal;
		
background: linear-gradient(97deg, #06FF00 -34.75%, #036C00 169.03%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    }

.fa-arrows-alt, .fa-futbol-o{
	
	font-size:14px;
	background: linear-gradient(97deg, #06FF00 -34.75%, #036C00 169.03%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.fa-star{
		font-size:14px;
	background: linear-gradient(97deg, #06FF00 -34.75%, #036C00 169.03%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}


.fa-arrow{
	
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-kerning: auto;
	text-decoration-line: underline;
	pointer-events: painted;
	cursor: alias;
	flex-flow: wrap-reverse;
	baseline-shift: super;
	align-items: stretch;
}

section {
  scroll-margin-top:150px; /* Match your fixed navbar height */
}




	 .conf .card {
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .conf .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
    }

    .conf .img-hover-zoom {
      overflow: hidden;
      border-radius: 0.5rem 0.5rem 0 0;
    }

    .conf .img-hover-zoom img {
      transition: transform 0.4s ease;
    }

    .conf .img-hover-zoom:hover img {
      transform: scale(1.05);
    }





	.inner-banner .zoom-in {
  display: inline-block;
  
  transform: scale(0);
  opacity: 0;
  animation: zoomIn 1.2s ease-out forwards;
}

@keyframes zoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}










/* Cookie Consent Styles */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 3px solid #667eea;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            gap: 20px;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text h3 {
            margin-bottom: 10px;
            color: #333;
            font-size: 1.2rem;
        }

        .cookie-text p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .cookie-text a {
            color: #667eea;
            text-decoration: none;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .cookie-btn.decline {
            background: #f8f9fa;
            color: #666;
            border: 2px solid #dee2e6;
        }

        .cookie-btn.decline:hover {
            background: #e9ecef;
            color: #495057;
        }

        .cookie-btn.accept {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: 2px solid transparent;
        }

        .cookie-btn.accept:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .cookie-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .loading {
            position: relative;
        }

        .loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            margin: auto;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }

            .cookie-btn {
                flex: 1;
                max-width: 120px;
            }
        }
		


 .gallery {
      padding: 40px 0;
      
    }
    .gallery-img {
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .gallery-img img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
    }
    .gallery-img:hover img {
      transform: scale(1.1);
    }



  /* FAQ Section Custom CSS */
  .faq-section {

    padding: 60px 20px;
    border-radius: 12px;
  }
  .faq-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2b3a67;
    margin-bottom: 30px;
    border-left: 6px solid #0d6efd;
    padding-left: 12px;
  }
  .faq-section h5 {
    font-weight: 600;
    color: #333;
  }
  .faq-section .nav-pills .nav-link {
  border: 2px solid transparent; /* use border-image for gradient */
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
	  color:#fff!important;
  background-clip: padding-box; /* keeps bg inside rounded border */
}

.faq-section .nav-pills .nav-link {
  border-image: linear-gradient(45deg, #a62eb6, #7139f5) 1;
}

.faq-section .nav-pills .nav-link.active {
  background: linear-gradient(45deg, #a62eb6, #7139f5);
  color: #fff;
  font-weight: 600;
  border: none; /* remove border so gradient bg shows clean */
}
  .faq-section .accordion-button {
    background: #fff;
    border-radius: 8px;
    font-weight: 500;
    color: #2b3a67;
    transition: all 0.2s ease;
  }
  .faq-section .accordion-button:not(.collapsed) {
    background-color: #e9f2ff;
    color: #0d6efd;
  }
  .faq-section .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  .faq-section .form-control {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #d1d5db;
  }
  .faq-section .btn-primary {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
  }
