* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
}

.navbar1{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  justify-content: space-around;
  background-color: #0c092d;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  height: 5.5rem;
}

/* Remove bullets and make the menu horizontal */
.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;        /* removes the bullets */
  padding: 0;
  margin: 0;
  gap: 20px;               /* adds spacing between items */
}

/* Remove link styles */
.menu a {
  text-decoration: none;   /* removes underline */
  color: white;            /* makes text white */
  font-weight: 500;
}
.menu-item{
  margin-top: 40px;
  margin-right: 20px;
}
/* Optional hover effect */
.menu a:hover {
  color: #ddd;             /* lighter shade on hover */
}

.content{
  padding-top: 5%;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Glory", sans-serif;
  font-size: 1rem;
}

.content-heading h1{
  font-size: 4vw;
  color: #0c092d;
}

.content-heading h2{
  font-size: 2vw;
}

.content-heading h3{
  font-size: 1.5vw;
}

.content-heading i{
  font-size: 1.2vw;
  font-weight: 400;
  color: #0c092d;
}

.content-heading {
  color: #e85b24;
  margin-bottom: 20px;
  font-weight: 900;
  font-family:Verdana, Geneva, Tahoma, sans-serif
}

.date {
  background-color: #e85b24;   /* orange shade */
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 20px;
  text-align: center;
  font-family: sans-serif;
  margin: 20px 10px 10px 0px;
}

.logos{
  margin: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clg-logo{
  width: 100px;
  margin: 0 20px;
}

.what-to-expect {
  padding: 60px 0px;
  text-align: center;
  color: #e85b24;
  border-top: #000 solid 1px;
  border-bottom: #000 solid 1px;;
  margin-top: 50px;
}

.what-to-expect h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.expect-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.details{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.card {
  background-color: #fff;
  color: #000;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 0 #e85b24;
  border: #e85b24 solid 1px;
  width: 240px;
}

.card i {
  font-size: 24px;
  color: #e85b24;
  margin-bottom: 10px;
  display: block;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  height: 60px;
  margin-bottom: 20px;
}

.card p {
  font-size: 1rem;
  margin: 0;
}

.cta-button-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: red;
  font-weight: bold;
  font-weight: 900;
}

.book-btn {
  background-color: #e85b24;
  color: white;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-radius: 14px;
  text-decoration: none;
}

.book-btn:hover {
  background-color: #e85b24;
}

.workshop-benefits {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 60px 0px; 
  margin: 0 auto;
  align-items:center;
}

.benefits-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #e85b24;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-left: 6px solid #0c092d;
  text-align: left;
}

.benefit img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.certificate-preview img{
  width: 500px;
  height: 100%;
}

.benefit p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}


.cta-button {
  display: inline-block;
  margin-top: 30px;
  background-color: #e85b24;
  color: white;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  background-color: #e85b24;
}

.certificate-preview{
  width: 500px;   
  height: 100%; 
  }

  .video-box {
      border-radius: 20px;
      overflow: hidden;
      width: 100%;
      max-width: 600px; /* adjust as needed */
      margin-bottom: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .video-box video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
  }

  .journey-section {
      text-align: center;
      padding: 30px 20px;
      border-top: #000 solid 1px;
    }
    
    .journey-section h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 70px;
      color: #e85b24;
    }
    
    .journey-steps {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      margin: 20px;
      position: relative;
    }
    
    .step {
      max-width: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .step img {
      width: 60px;
      margin-bottom: 15px;
    }
    
    .step h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .step p {
      font-size: 16px;
      color: #333;
    }
    
    .arrow {
      width: 60px;
      align-self: center;
    }

    .cta-btn {
      background-color: #e85b24;
      color: white;
      font-weight: bold;
      padding: 15px 30px;
      border: none;
      border-radius: 12px;
      margin-top: 40px;
      font-size: 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      cursor: pointer;
    }
  

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

  .content{
  padding-top: 5%;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Glory", sans-serif;
  font-size: 1rem;
}

.content-heading h1{
  font-size: 5vw;
  color: #0c092d;
}

.content-heading h2{
  font-size: 4vw;
}

.content-heading h3{
  font-size: 3.5vw;
}

.content-heading i{
  font-size: 3.5vw;
  font-weight: 400;
  color: #0c092d;
}

.content-heading {
  color: #e85b24;
  margin-bottom: 20px;
  font-weight: 900;
  font-family:Verdana, Geneva, Tahoma, sans-serif
}


  .workshop-benefits {
    flex-direction: column;
    padding: 40px 20px;
  }

  .certificate-preview {
    margin-top: 40px;
    width: 300px;
    height: 100%;
  }

  header .burger {
    display: block;
    color: white;
    position: absolute;
    right: 1rem;
  }

  #menu-icon {
    color: white;
  }

  .details{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

  header .close-menu-icon {
    display: block;
    color: white;
    position: absolute;
    right: 16rem;
  }

 
  
  .date {
    background-color: #e85b24;   /* orange shade */
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    font-family: sans-serif;
    margin-top: 20px;
  }
  
  .logos{
    margin: 10px;
    width: 30px;
    padding-top: 15%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .expect-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
  }

  .workshop-benefits {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 60px 0px; 
    margin: 0 auto;
    align-items:center;
  }
  .journey-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 20px;
    position: relative;
  }
}
