.blog-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }
  
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }
  
  .blog-image-holder {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  
  .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .blog-card:hover .blog-image {
    transform: scale(1.05);
  }
  
  .blog-info {
    padding: 1rem;
  }
  
  .blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0px;
  }
  
  .read-more {
    font-size: 0.9rem;
    color: #0073e6;
    transition: color 0.3s;
  }
  
  .blog-link:hover .read-more {
    color: #0050a3;
  }
  
  @media screen and (max-width: 600px) {
    .blog-image-holder {
      height: 160px;
    }
  
    .blog-title {
      font-size: 1rem;
    }
    .blog-grid {
      display: block;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
  }
  

  .w-button > .frm_submit > button {
    display: inline-block;
    padding: 9px 15px;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
  }
  .w-button > .frm_submit > button {
    -webkit-appearance: button;
  }

  article.post {
    padding-top: 54px;
}




.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media screen and (max-width: 1024px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-hero .blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.blog-hero .blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-hero .blog-card:hover {
  transform: translateY(-5px);
}

.blog-hero .blog-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.blog-hero .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-hero .blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-hero .blog-info {
  padding: 1rem;
}

.blog-hero .blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

.blog-hero .badge-text {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.3rem;
}

.blog-hero .read-more {
  font-size: 0.9rem;
  color: #0073e6;
  display: inline-block;
  margin-top: 0.5rem;
}

.pagination-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination li {
  display: inline;
}

.pagination a,
.pagination span {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  background-color: #f5f5f5;
  color: #333;
  font-weight: 500;
  transition: background 0.3s ease;
}

.pagination a:hover {
  background-color: #ff0083;
  color: #fff;
}

.pagination .current {
  background-color: #ff0083;
  color: #fff;
  font-weight: bold;
}

 .pagination-arrow {
  font-size: 16px;
}
.elementor-container.elementor-column-gap-default {
  margin-top: 4rem;
  width: 1200px;
  margin: 4rem auto;
}

.elementor-container.elementor-column-gap-default h1 {
  font-size: 37px;
  padding-top: 20px;
}

.post-content .wp-block-heading {
  font-size: 22px;
}
article.post figure {
  background: none;
}


div.navbar.scrolled {
    position: fixed !important;  
    background: #22222277 !important;
    transition: background 0.3s, transform 0.3s; 
}


div.navbar {
   
    transform: translateY(0); 
}

.job-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #222;
  letter-spacing: 0.02em;
}


.view-details {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #007BFF; /* Bootstrap Blue */
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
}

.view-details .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.view-details:hover {
  color: #0056b3;
  text-decoration: underline;
}

.view-details:hover .arrow {
  transform: translateX(4px);
}
