* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0A1628;
  --bg-secondary: hsl(215, 30%, 12%);
  --bg-alt: hsl(215, 50%, 10%);
  --text-primary: hsl(200, 100%, 98%);
  --text-secondary: hsl(200, 20%, 70%);
  --accent-primary: #00D9FF;
  --accent-gradient: linear-gradient(90deg, #00D9FF, #00B4FF);
  --border-color: hsl(215, 25%, 25%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}


.page-view {
  padding-top: 80px
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  min-width: 220px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1002;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.has-submenu {
  position: relative;
}

.has-submenu:hover>.submenu {
  display: block;
}

ul {
  list-style: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.logo-icon {
  color: var(--accent-primary);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 0;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--accent-primary);
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--bg-primary) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A1628, hsl(215, 50%, 15%));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 2px 2px, rgba(0, 217, 255, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-hero:hover {
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.btn-icon,
.btn-icon-left {
  transition: var(--transition);
}

.btn-hero:hover .btn-icon {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 500px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-image {
  position: relative;
  animation: slideUp 0.8s ease-out;
}

.hero-image-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(0, 217, 255, 0.2);
  border-radius: 1.5rem;
  filter: blur(40px);
  /*animation: pulseGlow 2s ease-in-out infinite;*/
}

.hero-image img {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
  border-color: var(--accent-primary);
}

.feature-icon {
  display: inline-flex;
  padding: 1rem;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(0, 217, 255, 0.2);
}

.feature-icon svg {
  color: var(--accent-primary);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--text-secondary);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.product-card:hover {
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
}

.product-content {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.875rem;
  color: var(--accent-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.check-icon {
  color: var(--accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-product {
  width: 100%;
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 0.75rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-product:hover {
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* How It Works */
.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.steps-line {
  display: none;
}

.step {
  text-align: center;
}

.step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-glow {
  position: absolute;
  inset: 0;
  background: rgba(0, 217, 255, 0.2);
  border-radius: 50%;
  filter: blur(30px);
}

.step-icon {
  position: relative;
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  display: inline-flex;
}

.step-icon svg {
  color: var(--accent-primary);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--text-secondary);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 217, 255, 0.5);
}

.testimonial-stars {
  color: var(--accent-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.author-name {
  font-weight: 700;
  font-size: 1.125rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: rgba(0, 217, 255, 0.5);
}

.pricing-popular {
  transform: scale(1.05);
  border-color: var(--accent-primary);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: var(--bg-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.btn-pricing {
  width: 100%;
  padding: 0.75rem;
  border-radius: 50px;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pricing:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.btn-pricing-popular {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  border: none;
}

.btn-pricing-popular:hover {
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.info-icon {
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.info-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-text {
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  padding: 0.75rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-submit:hover {
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.btn-submit:hover .btn-icon {
  transform: translateX(4px);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-hero,
  .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.post-item {
  background: var(--bg);
    border: 1px solid var(--border-color);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
    border-radius: 10px;

}

.post-item-related {
  background: var(--bs-body-bg);
  overflow: hidden;
  padding: 10px 10px;
  transition: transform 0.3s ease;
  width: 100%;
  border-radius: 20px;
}

.post-item-related .post-image {
  border-radius: 12px !important;
}

/* Grid Layout */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;

}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .grid-scroll-x-md {
    display: grid;
    grid-auto-flow: column;
    overflow-x: scroll;
    gap: 20px;
  }

  .grid-scroll-x-sm .post-item {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-wrapper-row {
    flex-direction: column;
  }

  .grid-scroll-x-sm {
    display: grid;
    grid-auto-flow: column;
    overflow-x: scroll;
    gap: 20px;
  }

  .grid-scroll-x-sm .post-item {
    width: 250px;
  }
}

.post-item:hover {
  transform: translateY(-5px);
}

.post-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-wrapper-row {
  display: flex;
  /* flex-direction: column; */
  /* height: 100%; */
}

.post-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 6px;
}

.post-image-wrapper-row {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-basis: 35%;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 6px;
}

.post-image-wrapper-related {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-basis: 30%;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 10px;
}

.post-image-wrapper-related .post-image,
.post-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out, transform 0.4s ease-in-out;
  opacity: 0;
  /* border-radius: 0 !important; */
}

.post-item-related-title {
  margin-bottom: 5px;
  font-style: italic;
  padding-left: 5px;
  color: var(--text-color-light);
  font-weight: 300;
}

.post-image.loaded {
  opacity: 1;
}

.post-image-link:hover .post-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;

  /* transition: transform 0.3s ease; */

}

.post-image-link:hover .image-overlay {
  opacity: 1;
  /* transition: transform 0.3s ease; */
}

.read-more {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-tags {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-tag {
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.category-tag:hover {
  background: #fff;
  color: #2c3e50;
}

.post-content {
text-align: start;
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-color-light);
}

.post-meta i {
  margin-right: 5px;
}

.post-title {
  margin: 0 0 5px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.post-title a {
  color: var(--text-color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--text-color);
}

.post-excerpt {
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: 14px;
  flex-grow: 1;
}

.post-excerpt a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* .post-excerpt a:hover {
    color: #34495e;
} */

.post-footer {
  display: flex;
  margin-top: auto;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  gap: 12px;
  /* color: #34495e; */
}

.posts-grid-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem !important
}

.lh-30 {
  line-height: 30px;
}

.post-container {
  /* background-color: var(--body); */
}

.hero-section {
  /* height: 70vh; */
  /* min-height: 500px; */
  height: 90vh;
  overflow: hidden;
  background-color: var(--bs-black);
}


@media (max-width: 768px) {
  .post-header-info {
    font-size: 12px;
  }

  .hero-section {
    height: auto;
    max-height: 90vh;
    min-height: 300px;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    position: relative !important;
    background-color: var(--body);
    color: var(--text-color) !important;
  }

  .two-columns-grid {
    display: grid;
    grid-auto-flow: column;
    overflow-x: scroll;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 1.3rem !important;
  }

  .sm-fs-7 {
    font-size: 0.75rem !important;
  }

  .post-item-related .post-title {
    font-size: 1.2rem !important;
  }

  .post-item-related .post-excerpt {
    display: none;
  }
}

.color-grey {
  color: var(--bs-light-text-emphasis);
}

.slide-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.two-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.two-columns-grid>article:nth-child(3) {
  /* grid-column: 1 / -1; */
}

.hero-image {
  position: relative;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 90%))
}

.article-popup-image {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000a9;
  z-index: 10000;
  align-items: center;
  text-align: center;
  justify-content: center;
  display: none;
}

.article-popup-image-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 5px;
}

.article-popup-image-close {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.hero-content {
  bottom: 0;
  left: 0;
  right: 0;

  color: white;
}

.travel-meta {
  font-size: 1.1rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tip-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-5px);
}

.tip-item i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.tip-item h6 {
  margin-bottom: 0.5rem;
  color: #333;
}

.tip-item p {
  color: #666;
  margin-bottom: 0;
}

.latest-posts .post-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

/* .latest-posts .post-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
} */

.newsletter-form .form-control {
  border-radius: 20px 0 0 20px;
}

.newsletter-form .btn {
  border-radius: 0 20px 20px 0;
}

.article-text img {
  cursor: pointer;
}

.article-text img {
  max-width: 100%;
  height: auto !important;
  display: block;
  border-radius: 15px;
}

.article-content .content-wrapper {
  /* background-color: var(--bg); */
}

.posts-grid-row>article:nth-child(1) .post-wrapper-row,
.posts-grid-row>article:nth-child(4) .post-wrapper-row,
.posts-grid-row>article:nth-child(7) .post-wrapper-row {
  /* display: block; */
}


.related-post {
  padding: 30px 20px;
  color: #0f5132 !important;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  border-radius: 10px;
  margin: 1em 0;
  /* font-style: italic; */
}

.related-post a {
  color: #0f5132 !important;
}

.section-title {
  /* padding: 2px 7px; */
  margin-bottom: 15px;
  margin-top: 15px;
}

/* html[dir="rtl"] .section-title {
    border-right: 5px solid #ff4d4d;
}

html[dir="ltr"] .section-title {
    border-left: 5px solid #ff4d4d;
} */


.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}


.popup-post {
  position: fixed;
  left: 20%;
  right: 20%;
  bottom: 0;
  padding: 10px;
  z-index: 10000;
}

.post-item-related.popup {
  position: fixed;
  max-width: 600px;
  display: none;
  opacity: 0;
  animation: popupFadeIn 0.3s ease-out;
}

.post-item-related.popup.show {
  display: block;
  opacity: 1;
}

.post-item-related.popup.left-top {
  left: 10px;
  top: 10px;
}

.post-item-related.popup.left-middle {
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.post-item-related.popup.left-bottom {
  left: 10px;
  bottom: 10px;
}

.post-item-related.popup.right-top {
  right: 10px;
  top: 10px;
}

.post-item-related.popup.right-middle {
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.post-item-related.popup.right-bottom {
  right: 10px;
  bottom: 10px;
}

.post-item-related.popup.center-middle {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.post-item-related.popup.center-top {
  left: 50%;
  top: 10px;
  transform: translate(-50%);
}

.post-item-related.popup.center-bottom {
  left: 50%;
  bottom: 10px;
  transform: translate(-50%);
}

.post-item-related.popup.show {
  display: block;
  opacity: 1;
}

.post-item-related.popup {
  z-index: 10000;
}

@media (max-width: 768px) {
  .post-item-related.popup {
    max-width: 95%;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .post-header-info,
  .post-header-info a {
    color: var(--text-color-light) !important;
  }
}

.user-comment-avatar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-dark-bg-subtle);
  color: var(--bs-light-text-emphasis);
}

.post-header-info,
.post-header-info a {
  /* color: var(--bs-gray-300) ; */
}

.d-grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.d-grid-cols-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}