/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */


/* projects css start */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #000;
}

.image-box {
  height: 400px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s linear;
}
.image-box:hover img {
  transform: translateY(calc(-100% + 400px));
}

.project-link {
  text-align: center;
  background: #5974c9 !important; 
  padding: 12px 0;
  border-radius: 0 0 10px 10px;
}


.project-link a {
  color: #000000; 
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.project-link a:hover {
  color: #000000;   
}

@media (max-width: 991px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: repeat(1, 1fr); 
  }
}
/* projects css end */