* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }  

  /* hero section start */

/* Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.hero-image-container {
  width: 100%;
  max-width: 1100px; /* Increased from 800px */
  margin: 0 auto 3rem; /* Increased bottom margin */
  height: 500px; /* Added fixed height */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px; /* Increased border radius */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.profile-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 2rem;
}

.profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.profile-info {
  text-align: left;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.profile-title {
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0 0;
}

/* Content Section */
.content-section {
  display: flex;
  gap: 3rem;
  padding: 2rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Increased gap */
  margin-right: 2rem; /* Added margin for spacing */
}

.social-link {
  color: #666;
  font-size: 2.5rem; /* Increased from 1.5rem */
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #1a1a1a;
}

.content-text {
  flex: 1;
  max-width: 650px; /* Added max-width to control paragraph width */
  margin: 0 auto;
}

.content-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.content-paragraph {
  font-size: 1.1rem; /* Slightly increased font size */
  color: #444;
  margin-bottom: 2rem; /* Increased paragraph spacing */
  line-height: 1.8; /* Increased line height for better readability */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-container {
    padding: 1rem;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .content-section {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }

  .hero-image-container {
    height: 400px; /* Adjusted height for tablets */
  }

  .social-links {
    flex-direction: row;
    justify-content: center;
  }

  .social-link {
    font-size: 2rem; /* Slightly smaller on tablets */
  }

  .content-heading {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.75rem;
  }

  .profile-section {
    margin-left: 1rem;
  }

  .profile-image {
    width: 50px;
    height: 50px;
  }

  .hero-image-container {
    height: 300px; /* Adjusted height for mobile */
  }

  .social-link {
    font-size: 1.8rem; /* Adjusted for mobile */
  }

  .content-heading {
    font-size: 1.5rem;
  }
}
/* hero section ended */



.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Back Navigation */
.back-navigation {
  margin-bottom: 2rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007BFF;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.back-btn:hover {
  background: #e9ecef;
  color: #0056b3;
  text-decoration: none;
  transform: translateX(-5px);
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-info {
  text-align: left;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.profile-title {
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0 0;
}

.blog-date {
  font-size: 0.875rem;
  color: #888;
  margin: 0.25rem 0 0;
}

/* Content Section */
.content-section {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.social-link {
  color: #666;
  font-size: 2rem;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background: #f8f9fa;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #007BFF;
  background: #e3f2fd;
  transform: translateY(-2px);
}

.content-text {
  flex: 1;
  max-width: 800px;
}

.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2rem 0 1rem;
}

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 1.5rem 0 0.75rem;
}

/* Admin Actions */
.admin-actions {
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.admin-actions .delete-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-actions .delete-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-container {
    padding: 1rem;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-image-container {
    height: 300px;
  }

  .content-section {
    flex-direction: column;
    gap: 2rem;
  }

  .social-links {
    flex-direction: row;
    justify-content: center;
    position: static;
  }

  .profile-section {
    flex-direction: column;
    text-align: center;
  }

  .profile-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.75rem;
  }

  .profile-image {
    width: 50px;
    height: 50px;
  }

  .hero-image-container {
    height: 250px;
  }

  .social-link {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .blog-content {
    font-size: 1rem;
  }
}