*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

body{
    background-color:#011120;
      font-family: Arial, sans-serif;
     color: white;
} 
/* sda */
.white{
    height: 30px;
    width: 25px;
    position: relative;
}

.navbar{
    position: sticky;
    top: 0px;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
    padding: 15px;
}
.navbar.scrolled{
    background-color: #113151;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


.list ul{
    list-style: none;
    display: flex;
    gap: 30px;
}

.list ul li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.list ul li a:hover{
   color: #1e66f5;
}

/* Dropdown */
.dropdown{
  position: relative;
}

.dropdown-menu{
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 190px;

  background: #061f33;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 0;

  list-style: none;

  /* ✅ important */
  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a{
  display: block;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;

  /* ✅ keep text in one line */
  white-space: nowrap;
}

.dropdown-menu li a:hover{
  background: rgba(30,102,245,0.15);
  color: #1e66f5;
}

.buttons{
    display: flex;
    gap: 10px;
}

.SignUp{
  position: relative;
  padding: 12px 30px;
  background-color: #1e66f5;
  border: 2px solid #1e66f5;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.SignUp::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #011120;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.SignUp:hover::before{ transform: translateY(0); }
.SignUp:hover{ color: #1e66f5; }

.SignIn{
  position: relative;
  padding: 12px 30px;
  background-color: #011120;
  border: 2px solid #1e66f5;
  color: #1e66f5;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.SignIn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #1e66f5;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.SignIn:hover::before{ transform: translateY(0); }
.SignIn:hover{ color: white; }




.hamburger{
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}


.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
}
.Schedules{
    display: grid;
    grid-template-columns: 1fr auto; 
    align-items: center;
    margin-top: 1.5rem;
    padding: 20px 40px;
}


.Schedules h1{
    color: white;
    font-size: 32px;
    margin-bottom: 8px;
}


.Schedules p{
  color: #43617c;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  max-width: 640px;
}


.Schedules a{
    text-decoration: none;
    color: white;
    
    
    border-radius: 5px;
    font-size: 14px;
}


.scrollContainer{
  
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    
    display: flex;
    justify-content: space-around;
    align-content: center;


}
#card{
   
    text-align: center;
    height: 120px;
    width: 160px;
    align-content: center;

    border-radius: 12px;
    background-color: #0f22357a;
    color: #ffffff;
    padding: 10px;
}
/* scrooll */

.scrollContainer{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 40px;
    margin: 20px;

    scrollbar-width: none;
}

.scrollContainer::-webkit-scrollbar{
    display: none;
}


/* Card style */
.card{

    min-width: 160px;
    height: 120px;

    background-color: #0f22357a;
    color: white;

    border-radius: 12px;

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

    flex-shrink: 0;

    scroll-snap-align: start;

    cursor: pointer;

    transition: 0.3s;
}

.card:hover{
    background-color: #067df3;
    transform: translateY(-5px);
}
/* deatials */

/* ===== SCHEDULE CONTAINER ===== */
.schedule {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  border: 1px solid #12344d;
  border-radius: 20px;
  background: #081f33;
}

/* ===== EVENT GRID ===== */
.event {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

/* Divider line */
.divider {
  height: 1px;
  background-color: #12344d;
}

/* ===== TITLE ===== */
.event-title h2 {
  font-size: 22px;
  font-weight: 600;
}

/* ===== SPEAKER ===== */
.event-speaker {
  display: flex;
  align-items: center;
  gap: 15px;
}

.event-speaker img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.label {
  font-size: 14px;
  color: #6f8ca6;
}

.name {
  font-weight: 600;
  font-size: 16px;
}

/* ===== BUTTON ===== */
.event-action {
  display: flex;
  justify-content: flex-end;
}

.event-action button {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #1a73e8;
  color: #1a73e8;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.event-action button:hover {
  background: #1a73e8;
  color: white;
}
/* footer */

.footertop{
   background-color: #067df3;
    border-radius: 15px;
    margin: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden; /* prevents overflow */
}
.footert{
   
    text-align: center;
    align-content: center;
    justify-content: center; 
    

}
.footert h1{
    font-size: 40px;
    color: #ffffff;
}
.footert button{
    margin-top: 2rem;
    width: 200px;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid #46c4ff;
    border-radius: 5px;
    
    background-color: #46c4ff;
    color: #ffffff;
    cursor: pointer;
}
.footert button:hover{
    background-color: transparent;
}
.MainFooter{
    background-color: #0f2235;
    
    padding: 20px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

}
.MainFooter div:last-child{

    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.MainFooter div:last-child img{
    width: 30px;
    cursor: pointer;
}

.footerlist ul{
    list-style: none;
    display: flex;
    gap: 30px;
}

.footerlist ul li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}
.ticket{
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
   
}
hr {
  border: none; /* Removes default border and 3D effect */
  height: 0.5px; /* Sets the thickness of the line */
  background-color: #46c4ff; /* Sets the color of the line */
  width: 90%; /* Sets the width (optional, default is 100%) */
  margin: 15px auto; /* Centers the line and adds vertical spacing */
}
.footerend{
    color: #ffffff;
    padding-top: 2rem;
    padding-bottom: 3rem;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footersubs{
     display: grid;
     justify-content: space-around;
     grid-template-columns: 1fr 1fr;
}
.footersubs button{
    color: black;
}

@media screen and (max-width:1100px){
.navbar{
    justify-content: space-between;
}
.footerend{
    color: #ffffff;
    
    text-align: center;
    display: grid;
    grid-template-columns: 1fr ;
}
.footersubs{
     display: grid;
   
    grid-template-columns: 1fr;
}

.white{
    margin-left: auto;
    margin-right: 15px;
}
    .hamburger{
        display: block;
    }
    

    .list{
        position: fixed;
        top: 0;
        right: -250px;
        height: 100vh;
        width: 250px;
        background-color: #0f2235;
        transition: right 0.3s ease;
        padding-top: 60px;
        z-index: 1000;
    }

    .list.active{
        right: 0;
    }

    .list ul{
        flex-direction: column;
    }

    .list ul li a{
        margin-left: 1.5rem;
        display: block;
       
    }

    .buttons{
       position: fixed;
    right: -100%;
    bottom: 25px;
    width: 270px;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: right 0.3s ease;
    z-index: 10000;
    }

    .buttons.active{
        right: 0;
    }

     .buttons button{
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }
     .Schedules{
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: start;
    }
.MainFooter{
        grid-template-columns: 1fr 1fr ;
        gap: 30px;
        text-align: center;
    }

    .MainFooter div:last-child{
        justify-content: start;
    }
    .ticket{
        display: none;
    }
    .footertop{
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

}
@media screen and (max-width:900px){
.MainFooter{
        grid-template-columns: 1fr  ;
        gap: 20px;
        text-align: center;
    }

    .MainFooter div:last-child{
        justify-content: start;
    }
    
    

}


/* Responsive */
@media(max-width:768px){

.scrollContainer{
    padding: 20px;
}

.card{
    min-width: 140px;
    height: 100px;
}
.event {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-action {
    justify-self: start;
  }

}

@media(max-width:480px){

.card{
    min-width: 120px;
    height: 90px;
}
.footerlist ul{
    flex-direction: column;
    align-items: center;
  }

  .footerlist {
    padding: 10px;
  }


}



/* dMAP (you said ignore alignment, still making it responsive) */
.map_box{
  margin-top: 40px;
  width: min(1200px, 100%);
  margin: 0 auto 80px;
  border-radius: 15px;
  overflow: hidden;
}
.map_box iframe{
  width: 100%;
  height: 600px;
  display: block;
  border: 0;
}