* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family:Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* Header Section CSS */

header {
  position: relative;
  display: block;
  width: 100vw;
  min-height: 90vh;
  background: url(./herobg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

header .shade {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    247deg,
    rgba(0, 0, 0, 0) 1%,
    rgba(255, 255, 255, 0.961) 62%
  );
  z-index: 2;
}
header .hero{
  position: absolute;
  padding: 0 60px;
  gap: 100px;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
header .hero .left{
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
header .hero .left p{
  font-weight: 700;
}
header .hero .left .logo{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
header .hero .left img {
  width: 100px;
  object-fit: contain;
}
header .hero .left h2{
  text-align: left;
  font-size: 45px;
}
header .hero .left ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  list-style: none;
  color: #0040DF;
}
header .hero .left ul li {
  font-size: 16px;
  font-weight: 600;
}
header .hero .left ul li i{
  background: #0040DF;
  color: white;
  padding: 5px;
  border-radius: 50%;
}

header .hero .right{
  display: flex;
  align-items: center;
  justify-content: center;
 width: 33%;
}

header .hero .right .formContainer {
  width: 90%;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: white;
  border-radius: 5px;
  padding: 20px;
  z-index: 20;
  flex-direction: column;
}
header .hero .right .formContainer h2{
  color: #0040DF;
  font-size: 15px;
}
header .hero .right .formContainer hr{
  border-top: 1px solid rgb(199, 199, 199);
  width: 100px;
}
header .hero .right .formContainer p{
  text-align: center;
  color: black;
  font-size: 20px;
  font-weight: 400;
}
header .hero .right .formContainer form {
  width: 100%;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
header .hero .right .formContainer form input{
  padding: 7px;
  border: 1px solid rgb(198, 198, 198);
}
header .hero .right .formContainer form button{
  padding: 7px;
  background: #0040DF;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
}
header .hero .right .formContainer form button:hover{
  background-color: rgb(68, 149, 91);
}

@media (max-width: 954px) {
  header {
    height: 850px;
  }
  header .hero{
    padding: 0;
    gap: 10px;
  }
  header .hero .left{
    padding: 0 5vw;
    width: 100%;
    gap: 10px;
  }
  header .hero .left h2{
    text-align: left;
    font-size: 25px;
  }
  header .hero .left ul li {
    font-size: 12px;
    font-weight: 600;
  }
  header .hero .right{
    width: 90%;
   }
   
}

/* Event Sheduler Section CSS */

.eventShedule {
  width: 100vw;
  background-color: #26354A;
  padding: 20px 0;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
}

.schedule {
  width: 40%;
  min-width: 550px;
}

.schedule h2 {
  text-align: start;
  color: white;
  font-size: 2rem;
  margin-bottom: 40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.event {
  display: flex;
  color: white;
  background-color: #374B6E;
  gap: 10px;
  border-radius: 20px;
  height: 60px;
  align-items: center;
  position: relative;
}


.event-description {
  width: 30%;
  display: flex;
  font-size: 12px;
  padding: 7px;
  align-items: center;
  justify-content:space-between;
  height: 100%;
  border-radius: 20px;
  color: #0040DF;
  background-color: #ffffff;
}

.event-time {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.event p{
  width: 70%;
}

.event-number {
  width: 30px;
  height: 30px;
  letter-spacing: 2px;
  background-color: #457b9d;
  background:#0040DF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.event-number::after {
 content: '';
 position: absolute;
 top: 100%;
 width: 2px;
 height: calc(100% + 1.5rem);
 background-color: #0040DF;
 transform: translate(0%, -50%); 
 z-index: 1;
}


.event:first-child .event-number::after {
top: 100%; 
}
.event:last-child .event-number::after {
display: none;
}



.why-attend {
  width: 400px;
  background-color: white;
  color: #1d3557;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.why-attend img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.why-attend h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-attend ul {
  text-align: left;
  padding-left: 1.5rem;
}

.why-attend ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
.schedule {
  width: 100%;
  min-width: 380px;
}

.event p{
  width: 75%;
}

.event-number {
  width: 35px;
  height: 25px;
}

}

/* Abut Vserv Section CSS */

.aboutVserv{
  padding: 40px 0;
}

.aboutVserv h2{
  text-align: center;
  font-size: 2rem;
}

.aboutVserv-container{
  margin-top: 60px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.aboutVserv-Left{
  width: 40%;
}
.aboutVserv-Left img{
  width: 70%;
  min-width: 400px;
}
.aboutVserv-Right{
  width: 35%;
  min-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.aboutVserv-Right h3{
  font-size: 1.5rem;
  color: #0040DF;
}
.aboutVserv-Right p{
  line-height: 1.2rem;
}
.aboutVserv-Right ul{
  padding-left: 40px;
}
.aboutVserv-Right li{
  line-height: 1.5rem;
}

@media (max-width: 1000px) {
  .aboutVserv-Left{
    text-align: center;
    width: 90%;
  }
  .aboutVserv-Left img{
    min-width: 300px;
  }
  .aboutVserv-Right{
    width: 90%;
    min-width: 0;
    text-align: justify;
  }
  .aboutVserv-Right h3{
    text-align: center;
  }
}


/* Speaker section CSS */
.speaker {
  width: 100vw;
  min-height: 80vh;
  background-color: #F5F7FC;
  padding: 30px 0;
}

.speaker-header h2 {
  text-align: center;
  font-size: 30px;
}

/* Cards */
.speakersCard-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card-details {
  background-color: rgb(255, 255, 255);
  border: 3px solid #0040DF;
  border-radius: 8px;
  box-shadow: 2px 2px 2px rgba(#000);
  width: 280px;
  padding: 0 40px;
}

.card-details:hover{
  scale: 1.04;
}


.card-details img {
  width: 110px;
  margin-bottom: 15px;
}

.card-details a img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-position: top center;
  object-fit: cover;
}
.card-details a{
  text-decoration: none;
}
.card-details h3 {
  color: #000;
  font-size: 18px;
  font-size: 14px;
  font-weight: 700;
}

.card-details p {
  font-size: 12px;
  color: #4d5154;
  font-family: "Poppins", sans-serif;
  line-height: 16px;
  margin: 5px 0px 5px 0px;
}


/* Pannel Section CSS */

.consumer-container {
  min-height: 150px;
  padding-top: 5px;
  background-color: #eef2fc;
  font-family: Arial, Helvetica, sans-serif;
}

.speaker-header {
  margin: 0px 15px 0px 15px;
  padding: 0px 0px 30px 0px;
  margin-top: 30px;
  text-align: center;
}
.panel-discussion {
  font-family: open sans;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.speaker-header h2 {
  text-align: center;
  font-size: 30px;
  margin: 26px 0px 26px 0px;
}

/* Cards */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}


.card-content {
  text-align: center;
  background: #fff;
  border-radius: 6px;
  padding: 25px 0px 20px 0px;
}

/* Event Agenda Section */

.evenAgenda {
  width: 100vw;
  min-height: 80vh;
  background-color: white;
}

.event-container {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.event-header h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.event-date {
  font-size: 18px;
  font-weight: bold;
  color: #555;
}

/* Cards Container */
.event-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 20px;
}

/* Individual Card */
.event-card-details {
  background-color: #0040df;
  color: white;
  border-radius: 12px;
  width: 340px;
  height: 260px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: start;
}

.event-card-details span {
  display: block;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.event-card-details h3 {
  font-size: 16px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 8px;
}

.event-card-details p {
  color: white;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
}

/* Venue Location Section */

.venue {
  width: 100vw;
  min-height: 60vh;
  padding: 30px 0;
  background-color: #F8FAFF;
}
.venue h2{
  text-align: center;
  font-size: 2rem;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 8rem;
}
.card {
  display: flex;
  gap: 13px;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 1.2rem;
  max-width: 280px;
}
.card img {
  width: 100%;
  border-radius: 10px;
  max-height: 200px;
  object-fit: cover;
}
.card h3 {
  margin: 0.6rem 0;
  font-size: 1rem;
}
.card p {
  color: #555;
  font-size: 0.8rem;
}
.button {
  background-color: #0e26dc;
  color: #ffffff;
  padding: 0.8rem 0.8rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.button:hover {
  text-decoration: underline;
}
.navigation {
  display: flex;
  flex-direction: column;
  min-width: 620px;
}
.map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .container {
    gap: 4rem;
  }
  .card {
    max-width: 350px;
  }
  .navigation {
    display: flex;
    min-width: 620px;
    align-items: center;
  }
  .map {
    width: 90vw;
  }
}


.heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

footer {
  width: 100vw;
  min-height: 40vh;
  background-color: #001b6d;
}
.footer-container {
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem;
  color: white;
}

.footer-container-heading {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.date-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon img {
  background-color: #1d4ed8;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  margin-right: 10px;
}

.date-section p {
  font-size: 1.2rem;
}

.register-btn {
  background: #0040df;
  color: #fff;
  font-size: 1rem;
  padding: 20px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.register-btn:hover {
  text-decoration: underline;
}

.contact-section h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 0.8rem;
}
.contact-section p:hover {
  text-decoration: underline;
}

.event-card-details ul {
    padding-left: 35px; 
    margin: 14px 0;
    list-style-type: disc; 
}

.event-card-details ul li {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px; 
}

