:root {
  --blue: #1b416f;
  --green: #27a897;
  --lgreen: #a8ede4;
}
*{
  z-index: 3;
}
.innerPage{
  width: 100% !important;
}
.bgBlue{
  background-color: var(--blue);
}
.bgGreen{
  background-color: var(--green);
}
.blue{
  color:var(--blue);
}
.ligthGreen{
  color: var(--lgreen);
}
.green{
  color: var(--green);
}
.f40{
  font-size: 50px;
  font-weight: bold;
  padding: 0px !important;
}
.f20{
  font-size: 20px;
}
.f18{
  font-size: 18px;
}
.f16{
  font-size: 16px !important;
}

.bold{
  font-weight: bolder !important;
}
body{
  background-color: #F0F4F7 !important;
}

.homeHero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 700px;
  z-index: 1;
}

.homeHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 2;
}

.heroContent{
  position: relative;
  top:120px;
  color: white;
  margin: 20px;
  text-align: center;
}

.mt76{
  margin-top:76px ;
}
.m0{
  margin: 0px !important;
}
.mt50{
  margin-top:50px !important;
}
.mt10{
  margin-top:10px !important;
}

.mb20{
  margin-bottom:20px !important;

}
.me10{
  margin-right: 10px !important;
}
.p0{
  padding: 0px !important;
}
.calenderTop{
  position: absolute;
      top: 2px;
      right: 10px;
      width: 100px;
      background-color: var(--green);
      border-radius: 6px;
      box-shadow: 0 2px 6px var(--green);
      overflow: hidden;
      text-align: center;
}

.calenderMonth{
  margin-top: 15px; 
  padding-top: 8px;
  background-color: white;
  color:var(--blue) ;
  font-size: 18px;
  font-weight: bold;
  
      
}

.calenderDate{
  background-color: white;
  font-size: 22px;
  font-weight: bold;
  color: var(--blue);
  padding-bottom: 8px;
  /*padding-left: 20px !important;*/

      
}
.heroBtn{
  background-color: var(--blue) ;
  color: white ;
  margin-left: 20px;
  margin-top: 60px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px !important;
  border-radius: 6px;
  border-width: 0px 2px 2px 0px;
  border-style: solid;
  border-color: white;
}

.heroBtn:hover{
  background-color: white;
  color: var(--blue);
  border-width: 0px 2px 2px 0px;
  border-style: solid;
  border-color: var(--green);

}



.contentCard{
  padding: 30px;
  background-color: ; 
}
.cardTitle{
  font-weight: bold;
  /*color: ;*/
}
.sponserList{
  margin-top: 40px !important;
}
.SponserImg{
  height: 100px;
  width: 120px;
  margin-bottom: 20px;
}

.registerationHero{
  margin-top: 100px;
  padding-bottom: 30px;
}

.form{
  border-style: solid;
  padding: 20px 10px 20px 10px;
  border-width: 2px;
  border-radius: 8px;
  border-color: var(--lgreen);
}

.currency-toggle {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 34px;
}

.currency-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: var(--blue);
  transition: 0.4s;
  border-radius: 6px;
}

.slider:before {
  position: absolute;
  content: "USD";
  height: 28px;
  width: 35px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  color: black;
  text-align: center;
  line-height: 26px;
  font-size: 12px;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 6px;
}

input:checked + .slider {
  background-color: var(--green);
}

input:checked + .slider:before {
  transform: translateX(36px);
  content: "EUR";
}

.form-wrapper {
    position: relative;
    border: 2px solid var(--lgreen);
    border-radius: 8px;
    padding: 40px 20px 20px 20px;
    margin-top: 30px;
  }

  .form-title {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 10px;
    color: var(--blue);
    font-weight: bold;
    font-size: 32px;
  }
.pricingListDiv {
  display: flex;              /* Arrange children in a row */
  overflow-x: auto;           /* Enable horizontal scrolling */
  white-space: nowrap;        /* Prevent wrapping */
  gap: 1rem;                  /* Optional: adds spacing between children */
  padding: 1rem;              /* Optional: adds some padding */
}

.btnPrimary{
  cursor: pointer;
  background-color: var(--green);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  padding: 10px !important;
  margin-right: 20px;
}
.btnPrimary:hover{
  background-color: transparent;
  border-color: var(--green);
  color: var(--green);
}

.btnSecondary{
  cursor: pointer;
  border-color: var(--blue);
  color: var(--blue);
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  padding: 10px !important;
}
.btnSecondary:hover{
  background-color: var(--blue);
  color: white;
}
.customBtn {
  color: var(--blue) !important;
  font-weight: bolder !important;
  padding: 10px 20px;
  border-width: 2px !important;
  border-color: var(--blue) !important;
  transition: background-color 0.3s ease;
}

.customBtn:hover {
  background-color: var(--blue) !important; 
  color: #fff !important;
}

.abstractCard{
    border: 2px solid var(--blue) !important;
    
    
}
.abstractContainer{
    max-height: 662px !important;
    overflow-y:auto ;
    overflow-x: not-allowed;
}

.sessionList{
  text-decoration: none !important;
}
.sessionImg{
  height: 200px;
  width: 200px;
}

.programHero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  z-index: 1;
}

.programHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 2;
}
.programContent{
  position: relative;
  top:60px;
  color: white;
  margin: 20px;
  text-align: center;
}


/*Magic card*/
.card {
 width: 250px;
 height: 254px;
 background: #f5f5f5;
 overflow: visible;
 box-shadow: 0 5px 20px 2px rgba(0,0,0,0.1);
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-bottom: 80px;
}

.card-info {
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 0 1rem;
 margin-top: -50px !important;
}

.speakerImg {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;       /* makes image fill the circle */
  background-position: center;  /* centers the image inside */
  background-repeat: no-repeat;
  transform: translateY(-50%);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.speakerImg::before {
 
 position: absolute;
 top: 50%;
 left: 50%;
 width: 90%;
 height: 90%;
 transform: translate(-50%, -50%);
}

.text-title {
 text-transform: uppercase;
 font-size: 0.75em;
 color: #42caff;
 letter-spacing: 0.05rem;
}

.text-body {
 font-size: .8em;
 text-align: center;
 color: #6f6d78;
 font-weight: 400;
 font-style: italic;
}

.card:hover .speakerImg {
 --size: 180px;
 width: var(--size);
 height: var(--size);
}

.speakerContainer{
  margin-top: 100px !important;
  
  
}
.organization{
  font-size: 12px;
  margin-top: 0px;
}
.speakerName{
  font-size: 16px;
  color: var(--blue);
  font-weight: bold;
}
.speakerBtn{
  margin-top: 20px;
  width: 250px;
  height: 50px;
  text-align: center;
  background-color: var(--green);
  border: none;
  font-weight: bolder;
}

.speakerBtn:hover{
  background-color: var(--blue);
  color: white;

}
.speakerDetails {
  margin-top: 60px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 600px;
  background-color: #F0F4F7;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.9);
  z-index: 999;
  overflow-y:auto;
  display: none;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  border: none ;
  background-color: transparent;

}

.close-btn:hover{
  color: var(--green);
}

.card-content {
  text-align: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 0;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.map{
  width: 100% !important;
  height: 300px !important;
}

.cityImages {
  width: 100%;
  max-width: 250px;
  height: 200px;
  object-fit: cover;
  margin: 5px;
}
@media (max-width: 768px) {
  
  .heroContent{
    position: relative;
    top:80px;
    color: white;
    margin: 20px;
    text-align: center;
  }

  .f40{
    font-size: 35px;
  }

  .f20{
    font-size: 14;
  }

  .speakerDetails{
    width: 100%;
    margin-top: 40px;

  }
  .programHero{
    height: 600px !important;
  }
  .programContent{
    margin-top: 20px;
  }
  .form-title {
    font-size: 22px;
  }
}
.welcomeImg{
  width: 300px !important;
  height: 300px !important;
}