:root {
  --primary: #c6ff00;
  --primary-dark: #a5d800;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #121212;
  --body-bg: #121212;
  --body-color: #f8f9fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --text-white: #ffffff;
  --text-light: #f8f9fa;
  --card-bg: #1e1e1e;
  --card-dark: #252525;
  --border-color: #333;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  background-color: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.header-space {
  height: 76px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

a {
  color: green;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: darkgreen;
  font-weight: 600;
}

/* Navbar Styling */
.navbar {
  background-color: rgba(18, 18, 18, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-white);
}

.navbar-brand span:first-child {
  color: var(--primary);
}

.navbar .nav-link {
  color: var(--text-white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--primary);
}

.navbar .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #121212;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.navbar .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 130px 0 110px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('/files/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.35rem;
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary);
  color: #121212;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Styled text highlights */
.highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Blog Post Cards */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary);
}

.blog-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--dark);
  transition: color 0.3s ease;
  font-weight: 700;
}

.blog-card-title a:hover {
  color: var(--primary);
  text-decoration: none;
}

.blog-card-meta {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blog-card-meta span {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
}

.blog-card-meta i {
  margin-right: 5px;
  /* color: var(--primary); */
}

.blog-card-excerpt {
  color: var(--gray-700);
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
}

.blog-card-link {
  color: #000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.blog-card-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-card-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

/* Blog Post Detail */
.blog-post {
  max-width: 800px;
  margin: 60px auto;
  padding: 45px 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
  margin-bottom: 40px;
  text-align: center;
}

.blog-post-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.3;
}

.blog-post-meta {
  color: var(--gray-600);
  margin-bottom: 25px;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-post-meta span {
  margin: 0 15px;
  display: inline-flex;
  align-items: center;
}

.blog-post-meta i {
  /* color: var(--primary); */
  margin-right: 8px;
}

.blog-post-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.blog-post-content h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin: 40px 0 20px;
}

.blog-post-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 30px 0 15px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content strong {
  /* color: var(--primary); */
  font-weight: 700;
}

.blog-post-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 0 0 0 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--gray-400);
}

.blog-post-content ul, 
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-footer .card {
  background-color: #ffffff;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
}

.blog-post-footer .card-title {
  color: var(--dark);
}

.social-sharing a {
  background-color: var(--card-bg);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-sharing a:hover {
  background-color: var(--primary);
  color: var(--body-bg);
  transform: translateY(-2px);
}

.post-tags .badge {
  background-color: var(--card-bg);
  color: var(--gray-300);
  padding: 6px 12px;
  margin-right: 8px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.post-tags .badge:hover {
  background-color: var(--primary);
  color: var(--body-bg);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--card-bg);
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--card-dark);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: rgba(198, 255, 0, 0.15);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.feature-text {
  color: var(--gray-400);
}

/* Related Posts Section */
.related-posts {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.related-posts h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--dark);
}

.related-posts h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Categories Section */
.category-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 28px 20px;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.category-card h4 {
  color: var(--dark);
  margin: 15px 0 12px;
  font-weight: 700;
}

.category-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(198, 255, 0, 0.15);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: #121212;
  transform: scale(1.1);
}

/* CTA Section */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('/files/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  text-align: center;
  position: relative;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(198, 255, 0, 0.2), transparent);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray-300);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.cta-btn {
  background: var(--primary);
  color: #121212;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(198, 255, 0, 0.4);
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(198, 255, 0, 0.5);
  color: #121212;
}

/* Footer */
footer {
  background: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-white);
}

.footer-brand span:first-child {
  color: var(--primary);
}

.footer-about {
  color: var(--gray-400);
  margin-bottom: 30px;
  max-width: 300px;
}

.footer-heading {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links i {
  color: var(--primary);
  margin-right: 8px;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.social-links li {
  margin-right: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-dark);
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--body-bg);
}

.copyright {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 40px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-form .form-control {
  background-color: #f7f7f7;
  border: 1px solid var(--gray-300);
  color: var(--gray-800);
  padding: 12px 20px;
  height: auto;
  border-radius: 6px 0 0 6px;
}

.newsletter-form .form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: none;
  color: var(--gray-800);
}

.newsletter-form .form-control::placeholder {
  color: var(--gray-500);
}

.newsletter-form .btn {
  background-color: var(--primary);
  color: #121212;
  font-weight: 700;
  padding: 12px 25px;
  border: none;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  background-color: var(--primary-dark);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.pagination .page-item .page-link {
  background-color: var(--card-dark);
  color: var(--gray-300);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #121212;
}

.pagination .page-item .page-link:hover {
  background-color: var(--card-bg);
  color: var(--primary);
}

/* Button Styling */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #121212;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #121212;
}

.btn-outline-primary {
  border-color: green;
  color: green;
  font-weight: 600;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #121212;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero {
    padding: 100px 0 70px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .blog-post-title {
    font-size: 1.8rem;
  }
  
  .features-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .blog-post-title {
    font-size: 1.5rem;
  }
  
  .blog-card-img {
    height: 180px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* Blog Posts Section - Specific heading colors */
.bg-white h2 {
  color: var(--dark);
}

.bg-white h3 {
  color: var(--dark);
}

.bg-white p {
  color: var(--gray-700);
}

/* Sections & Containers */
.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.container.py-4 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 992px) {
  .container.py-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* Text Colors */
.text-muted {
  color: var(--gray-600) !important;
} 