/* Custom Styles */

/* Global Styles */
body {
  font-family: "Inter", sans-serif;
  color: #333;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  color: #0a58ca;
}

/* Hero Section */
.hero {
  padding: 80px 0;
}

/* Timeline Styles */
.timeline-item {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #dee2e6;
}

.timeline-item:last-child {
  border-left: 2px solid transparent;
}

/* Blog Content Styles */
.blog-content {
  line-height: 1.8;
}

.blog-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-content p {
  margin-bottom: 1.2rem;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  margin: 1.5rem 0;
}

.blog-content pre {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.375rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-content blockquote {
  border-left: 4px solid #0d6efd;
  padding-left: 1rem;
  font-style: italic;
  margin: 1.5rem 0;
}

/* Custom Card Hover Effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Progress Bar Styling */
.progress {
  height: 8px;
  background-color: #e9ecef;
}

.progress-bar {
  background-color: #0d6efd;
}

/* Custom Badge Styling */
.badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}

/* Footer Styling */
footer {
  margin-top: auto;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .hero {
    padding: 40px 0;
  }

  h1.display-4 {
    font-size: 2.5rem;
  }

  h1.display-5 {
    font-size: 2rem;
  }
}

