
  .caption {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 8px;
}
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .logo {
    width: 60px;
    margin-bottom: 6px;
  }

  header h1 {
    font-size: 1.3rem;
    margin: 6px 0;
  }

  header p {
    font-size: 0.85rem;
  }

  nav a {
    font-size: 0.85rem;
    margin: 0 8px;
  }

  section h2 {
    font-size: 1.2rem;
  }

  section p,
  ul {
    font-size: 0.95rem;
  }

  .button,
  .cta .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .featured-post h2,
  .blog-post h3 {
    font-size: 1.1rem;
  }

  .caption {
    font-size: 0.8rem;
  }

  .container {
    padding: 0 12px;
  }
}

.quote-author {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
}

.image-post .caption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}
.about-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  color: #333;
}

.about-section h1 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.about-section blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #aaa;
  padding-left: 15px;
  margin-top: 30px;
}

.about-section img.profile {
  display: block;
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  margin: 0 auto 30px auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

@media screen and (max-width: 600px) {
  .about-section h1 {
    font-size: 24px;
  }

  .about-section p {
    font-size: 15px;
  }

  .about-section img.profile {
    max-width: 140px;
  }
}
.contact-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-container input,
.contact-container textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.contact-container button {
  padding: 12px;
  border: none;
  background-color: #333;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-container button:hover {
  background-color: #555;
}

.contact-social {
  margin-top: 30px;
  font-size: 15px;
}

.read-more-link {
  color: #2970cd;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.read-more-link:hover {
  text-decoration: underline;
}
.read-more-btn {
  display: inline-block;
  background-color: #1e3a8a; 
  color: #ffffff;
  padding: 8px 16px;
  margin-top: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.back-to-blog-btn {
  display: inline-block;
  background-color: #f3f4f6;
  color: #1e3a8a;
  padding: 8px 16px;
  margin: 20px 0;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  transition: all 0.3s ease;
}

.back-to-blog-btn:hover {
  background-color: #e0e7ff;
  color: #111827;
  border-color: #a5b4fc;
  transform: translateY(-2px);
}


.feel-card-sad {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding: 40px 20px;
  scrollbar-width: none; 
}

.feel-card-sad::-webkit-scrollbar {
  display: none; 
}

.feel-card {
  flex: 0 0 auto;
  width: 300px;
  background: #d5e0e0;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  text-align: center;
  animation: pulse 8s infinite ease-in-out;
  transition: transform 5s ease;
}

.feelsad-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #801a4c;
  margin-bottom: 20px;
  line-height: 1.4;
}

.feel-sad {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}


 