
/* ===============================
   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: 60px 40px;
  background: linear-gradient(135deg, #0b1a4a 0%, #132d6b 100%);
  display: flex;
  justify-content: center;
}

.diary-container {
  width: 100%;
  max-width: 1300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-left: 8px solid #1a3d7c; /* Accent stripe */
}

/* ===============================
   Title
=================================*/
.diary-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a3d7c;
  margin-bottom: 10px;
  border-bottom: 3px solid #ff9800; /* Vibrant underline */
  display: inline-block;
  padding-bottom: 5px;
}

/* ===============================
   About Section
=================================*/
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1 1 60%;
}
.about-text p {
  text-align: justify;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #333;
}
.about-text strong {
  color: #0600ff;
}

.about-img {
  flex: 1 1 40%;
  text-align: center;
}
.about-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.about-img img:hover {
  transform: scale(1.05); /* subtle zoom */
}

/* ===============================
   Functioning Section
=================================*/
.functioning-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a3d7c;
  margin-bottom: 12px;
}
.functioning-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin-bottom: 20px;
}
.functioning-section ul {
  list-style: none;
  padding-left: 0;
}
.functioning-section ul li {
  margin-bottom: 15px;
  text-align: justify;
  position: relative;
  padding-left: 28px;
  font-size: 16px;
}
.functioning-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9800; /* vibrant bullet */
  font-weight: bold;
}

/* ===============================
   Responsive
=================================*/
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
  .about-img {
    margin-top: 20px;
  }
  .diary-container {
    padding: 30px 25px;
  }
}

