html, body {
  overflow-x: hidden; 
}

.highlight-section {
  margin-bottom: 20px;
}
.highlight-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #2196f3;
  padding-bottom: 10px;
}
.key-highlights {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
}
.highlight-item {
  width: calc(33.333% - 20px);
  /* background: #e3f2fd; */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
  height: 265px;
}
.highlight-item:hover {
  background: #fd5f00;
  transform: scale(1.02);
  color: #ffffff;
}
.highlight-item i {
  font-size: 40px;
  color: #2196f3;
  margin-bottom: 10px;
}
.highlight-item span {
  display: block;
  font-size: 18px;
  /* color: #555; */
  font-weight: bold;
}
.highlight-item p {
  font-size: 16px;
  /* color: #666; */
  margin-top: 10px;
}
.chart-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.chart-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px; /* Reduced margin-bottom */
}
.chart-title {
  text-align: center;
  font-size: 22px;
  margin: 0;
  padding: 15px;
  background: #fd5f00;
  color: #ffffff;
  border-bottom: 2px solid #fd5f00;
}
.chart-container {
  width: 100%;
  /* height: 400px; */
}
.key-highlights {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.highlight-item {
  /* background: #f1f8e9; */
  border: 2px solid #dcedc8;
}




.key-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.highlight-item {
  flex: 1 1 calc(33.333% - 40px); /* Three items per row with gaps */
  box-sizing: border-box;
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: background-color 0.3s;
  height: 275px;
}

.highlight-item:hover {
  background-color: #fd5f00;
}

.highlight-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.highlight-item span {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

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

@media (max-width: 1024px) {
  .highlight-item {
      flex: 1 1 calc(50% - 40px); /* Two items per row on medium screens */
  }
}

@media (max-width: 768px) {
  .highlight-item {
      flex: 1 1 100%; /* One item per row on small screens */
  }
}



.timeline-container {
  position: relative;
  padding: 10px;
}
.timeline-section {
  display: flex;
  flex-direction: column;
  position: relative;
}
.timeline-item {
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
}.timeline-item.left {
  background-color: #9b59b6; /* Amethyst Purple */
  color: #ffffff; /* White */
}
.timeline-item.right {
  background-color: #f39c12; /* Vibrant Orange */
  color: #2c3e50; /* Dark Blue Gray */
}
.timeline-item.special-event {
  background-color: #e74c3c; /* Bright Red */
  color: #ffffff; /* White */
}
.timeline-item.doubts {
  background-color: #34495e; /* Slate Blue */
  color: #ffffff; /* White */
}
.timeline-item.customer-call {
  background-color: #16a085; /* Teal Green */
  color: #ffffff; /* White */
}
.timeline-item.feedback {
  background-color: #27ae60; /* Lush Green */
  color: #ffffff; /* White */
}
.timeline-item.course-content {
  background-color: #3498db; /* Sky Blue */
  color: #ffffff; /* White */
}
.date {
  font-weight: bold;
  margin-right: 10px;
}
.event {
  flex: 1;
}

.timeline-item::after {
  content: '';
  display: table;
  clear: both;
}

.project-class {
  background-color: #9b59b6; /* Amethyst Purple */
  color: #ffffff; /* White */
}










h1 {
  color: #fd5f00;
  text-align: center;
  margin-bottom: 30px;
}


.section-heading h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #fd5f00;
  text-align: center;
}



.course-contents {
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.course-contents h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.content-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  border-left: 4px solid #3498db; /* Blue color for content items */
  padding-left: 16px;
  position: relative;
}

.content-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #3498db; /* Circle color */
  border-radius: 50%;
  transform: translateY(-50%);
}

.content-header {
  display: flex;
  /* align-items: center; */
  /* width: 45%; */
}

.number {
  width: 30px;
  height: 30px;
  background-color: #3498db; /* Blue color for the number circle */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 10px;
}

.text {
  flex: 1;
}

.title {
  font-size: 24px;
  font-weight: bold;
  color: #fd5f00;
}

.description {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  text-align: left;
}





.calendar-container {
  margin: 20px;
}

.calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar-item {
  flex: 1 1 calc(20% - 10px);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  display: grid;
  color: #ffffff;
}

.calendar-item .date {
  font-weight: bold;
}
.project-specifications {
  background-color: #9b59b6; /* Primary vibrant color */
}

.specifications-signoff {
  background-color: #ffb300; /* Amber */
}

.code-development {
  background-color: #3498db; /* Green A700 */
}

.progress-review {
  background-color: #16a085; /* Red A700 */
}

.project-demo {
  background-color: #6200ea; /* Deep Purple A700 */
}

.addressing-review-comments {
  background-color: #ff6d00; /* Orange A700 */
}

.code-freeze {
  background-color: #4e342e; /* Light Blue A700 */
}

.project-submission {
  background-color: #aeea00; /* Lime A700 */
}

.live-deployment {
  background-color: #ff3d00; /* Deep Orange A700 */
}

.customer-demo {
  background-color: #4e342e; /* Brown */
}

.course-closure {
  background-color: #00c853; /* Blue Grey */
}






.container {
  width: 100%;
  margin: auto;
  /* text-align: center; */
}
h2 {
  color: #343a40;
  margin-bottom: 20px;
}
.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step, .decision {
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}
.challenge {
  background: #eaf4f4;
  border: 2px solid #00aaff;
}
.regular {
  background: #f4eaf4;
  border: 2px solid #aa00aa;
}
.step:hover {
    /* background-color: #fd5f00;
    color: #fff;
    border-color: #343a40; */
}
.step h3 {
  font-size: 18px;
  margin: 0;
}
.step p {
  font-size: 14px;
  margin: 10px 0 0;
}

.step a {
  font-size: 14px;
  margin: 10px 0 0;
}




.important-note {
  margin: 20px 0;
  font-size: 14px;
  color: #ff0000;
  font-weight: bold;
}
.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #fd5f00;
  margin: 10px 0;
}
.line {
  width: 2px;
  height: 20px;
  background: #fd5f00;
  margin: 10px 0;
}
.email {
  color: #fd5f00;
  text-decoration: none;
}






.intro {
  text-align: left;
  background-color: #fff;
  padding: 50px 20px;
  margin-bottom: 40px;
  border-bottom: 5px solid #fd5f00;
}

.intro h2 {
  font-size: 2.8em;
  color: #0d1128;
  margin-bottom: 20px;
}

.intro p {
  font-size: 1.4em;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.benefit-section {
  background-color: #fff;
  padding: 50px 20px;
  text-align: left;
}

.benefit-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #fd5f00;
}

.benefit-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-tile {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit-tile:hover {
  transform: translateY(-5px);
  background-color: #e6e6e6;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: #0d1128;
  color: #fff;
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
}

.benefit-content h3 {
  font-size: 1.6em;
  margin-bottom: 5px;
  color: #0d1128;
}

.benefit-content p {
  font-size: 1.2em;
  color: #333;
  line-height: 1.6;
}

.category-divider {
  margin: 40px 0;
  text-align: center;
  color: #fd5f00;
  font-size: 2em;
  font-weight: bold;
}

.cta {
  background-color: #fd5f00;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.cta a {
  margin-top: 30px;
  display: inline-block;
  background-color: white;
  color: #fd5f00;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta a:hover {
  background-color: #333;
  color: white;
}

@media (max-width: 768px) {
  .benefit-tile {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-icon {
    margin-bottom: 10px;
  }
}