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

body {
  font-family: "Poppins", sans-serif;
  background: #0a0a0a;
  color: #f5f6f7;
  line-height: 1.6;
}

.page {
  width: 210mm;
  min-height: 297mm;
  margin: 20px auto;
  background: #1f1f1f;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  page-break-after: always;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
  .page {
    /* padding: 0; */
    width: 100vw;
    min-height: max-content;
    padding: 50rem 0px;
    margin: 20px 0px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  }
}


/* Cover Page */
.cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px;
  /* background: #1f1f1f; */
  background: linear-gradient(135deg, #000000 0%, #212121 50%, #000000 100%);

}

@media screen and (max-width: 768px) {
  .cover {
    padding: 100px 0px;
    /* padding: 20px; */
  }
}


.logo-container {
  margin-bottom: 60px;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(65, 196, 255, 0.1),
    rgba(110, 75, 255, 0.1)
  );
  border-radius: 10rem;
  border: 2px solid rgba(143, 5, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.imageLogo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-size: 56px;
  font-weight: 700;
  color: white;

  /* letter-spacing: 2px; */
  /* font-family: monospace; */
}

.cover h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8a54ff, #9320ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}



.cover h2 {
  font-size: 28px;
  color: #cdb9ae;
  font-weight: 400;
  margin-bottom: 40px;
}

.cover-info {
  font-size: 16px;
  color: #bfc6cc;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cover h1 {
    font-size: 26px;
    margin-bottom: 4px;
  }
  .cover h2 {
    font-size: 20px;
  }
}

.cover-footer {
  position: absolute;
  bottom: 40px;
  text-align: center;
  font-size: 14px;
  color: #bfc6cc;
}

/* Table of Contents */
.toc {
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .toc {
    padding: 20px;
  }
}


.toc h2 {
  font-size: 42px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ad54ff, #6e4bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .toc h2 {
    font-size: 28px;
    /* padding: 20px; */
  }
}

.toc-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(65, 196, 255, 0.2);
  font-size: 16px;
}

.toc-item:hover {
  background: rgba(65, 196, 255, 0.05);
  padding-left: 10px;
  transition: all 0.3s;
}

.toc-number {
  color: #a836fa;
  font-weight: 600;
  min-width: 30px;
}

.toc-title {
  flex: 1;
  padding: 0 20px;
}

.toc-page {
  color: #cdb9ae;
}

/* Content Pages */
.content-page {
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content-page {
    padding: 20px;
  }
}


.page-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  border-left: 6px solid;
  border-image: linear-gradient(135deg, #ad54ff, #6e4bff) 1;
  padding-left: 20px;
}

.section-number {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #ad54ff, #6e4bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #f5f6f7;
}

@media screen and (max-width: 768px) {
  .page-header {
    padding-left: 8px;
  }
  .section-number {
    margin-right: 10px;
  }
  .section-title {
    font-size: 16px;
  }
}



.content-body {
  position: relative;
  z-index: 1;
}

.content-body h3 {
  font-size: 20px;
  color: #cdb9ae;
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.content-body p {
  font-size: 14px;
  color: #f5f6f7;
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-body ul {
  margin: 15px 0;
  padding-left: 30px;
}

.content-body li {
  font-size: 14px;
  color: #f5f6f7;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-body strong {
  color: #ad54ff;
  font-weight: 600;
}

.highlight-box {
  background: rgba(65, 196, 255, 0.1);
  border-left: 4px solid #ad54ff;
  padding: 20px;
  margin: 25px 0;
  border-radius: 4px;
}

.quote {
  font-style: italic;
  color: #bfc6cc;
  padding: 20px;
  border-left: 4px solid #cdb9ae;
  margin: 20px 0;
  background: rgba(205, 185, 174, 0.05);
}

/* Footer */
.page-footer {
  position: absolute;
  bottom: 30px;
  left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(65, 196, 255, 0.2);
  font-size: 12px;
  color: #bfc6cc;

  
}

@media screen and (max-width: 768px) {
  .page-footer {
    position: relative;
    bottom: 0;
    inset: 0;
    margin-top: 2rem;
  }
}


.page-number {
  color: #ad54ff;
  font-weight: 600;
}

/* Acknowledgement Page */
.signature-section {
  margin-top: 60px;
  padding: 30px;
  background: rgba(65, 196, 255, 0.05);
  border-radius: 8px;
}

.signature-line {
  margin: 30px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(65, 196, 255, 0.3);
}

.signature-label {
  font-size: 14px;
  color: #cdb9ae;
  margin-bottom: 30px;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.bod {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.bodImgCont {
  width: 30%;
              height: 10rem;
              display: flex;
              flex-direction: column;

}

.bodImgContMain {
                  width: 6rem;
                height: 6rem;
                overflow: hidden;
                border-radius: 100%;
}

.bodImgCont h1 {
                  font-weight: 800;
                margin-top: 1.2rem;
                font-size: 1.2rem;
                margin-top: 6px;
                color: #957aff;
}
@media screen and (max-width: 768px) {
  .bodImgCont {
    width: 45%;
  }
  .bodImgCont h1 {
    font-size: 0.9rem;
  }
}