
/* ===============================
   Global Styles
=================================*/
body {
  font-family: "Roboto", sans-serif;
  background: #0b1a4a; /* Dark blue like ISRO page */
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
  color: #000;
}
/* ===============================
   Wrapper & Container
=================================*/
/* ===============================
   Wrapper & Container
=================================*/
.diary-wrapper {
  padding: 70px 40px;
  background: linear-gradient(135deg, #0b1a4a 0%, #132d6b 100%);
  display: flex;
  justify-content: center;
}

.diary-container {
  width: 100%;
  max-width: 1250px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-left: 8px solid #1a3d7c; /* accent stripe */
}

/* ===============================
   Title
=================================*/
.diary-title {
  text-align: center;
}
.diary-title h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1a3d7c;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 4px solid #ff9800;
  padding-bottom: 5px;
}
.diary-title .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #ff5722;
}

/* ===============================
   Sections (Cards)
=================================*/
.diary-section {
  padding: 40px 35px;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diary-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.diary-section h2 {
  font-size: 22px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

/* Gradient headers */
.diary-section.vision h2 {
  background: linear-gradient(135deg, #007bff, #00c6ff);
}
.diary-section.mission h2 {
  background: linear-gradient(135deg, #ff6f61, #ff9472);
}
.diary-section.objectives h2 {
  background: linear-gradient(135deg, #be2f83, #e056fd);
}

/* ===============================
   Lists
=================================*/
.diary-section ul {
  padding-left: 0;
}
.diary-section ul li {
  list-style: none;
  position: relative;
  margin-bottom: 15px;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
.diary-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9800;
  font-weight: bold;
  font-size: 18px;
}

/* ===============================
   Responsive
=================================*/
@media (max-width: 768px) {
  .diary-container {
    padding: 35px 25px;
  }
  .diary-title h1 {
    font-size: 28px;
  }
  .diary-section h2 {
    font-size: 20px;
  }
}


