/* Custom Animations for Seven Seeds Landing Page */

/* Logo Animation */
.brand-logo img {
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.1);
}

/* Button Hover Animations */
.main-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Content Animations */
.hero-content h1 {
  animation: slideInFromLeft 1s ease-out;
}

.hero-content p {
  animation: slideInFromLeft 1.2s ease-out;
}

.hero-button {
  animation: slideInFromLeft 1.4s ease-out;
}

/* Hero Image Animation */
.hero-image-box {
  animation: slideInFromRight 1s ease-out;
}

/* Feature Items Animation */
.single-features-item-two {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-features-item-two:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Counter Animation */
.single-counter-item-two {
  transition: transform 0.3s ease;
}

.single-counter-item-two:hover {
  transform: scale(1.05);
}

/* Service Items Animation */
.single-service-item-two {
  transition: all 0.3s ease;
}

.single-service-item-two:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Team Member Animation */
.single-team-item-two {
  transition: transform 0.3s ease;
}

.single-team-item-two:hover {
  transform: translateY(-8px);
}

/* About Items Animation */
.fancy-about-item {
  transition: transform 0.3s ease;
}

.fancy-about-item:hover {
  transform: translateX(10px);
}

/* Category Items Animation */
.single-category-item {
  transition: all 0.3s ease;
  position: relative;
}

.single-category-item:hover {
  transform: scale(1.05);
}

.single-category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.single-category-item:hover::before {
  opacity: 1;
}

/* Blog Post Animation */
.single-blog-post-four {
  transition: transform 0.3s ease;
}

.single-blog-post-four:hover {
  transform: translateY(-5px);
}

/* Keyframe Animations */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Mobile Responsive Animations */
@media (max-width: 768px) {
  .hero-content h1 {
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-content p {
    animation: fadeInUp 1.2s ease-out;
  }
  
  .hero-button {
    animation: fadeInUp 1.4s ease-out;
  }
  
  .hero-image-box {
    animation: fadeInUp 1s ease-out;
  }
  
  .single-features-item-two:hover {
    transform: translateY(-5px);
  }
  
  .single-service-item-two:hover {
    transform: translateY(-3px);
  }
}

/* Floating Animation for Shapes */
.animate-float-y {
  animation: floatY 3s ease-in-out infinite;
}

.animate-float-x {
  animation: floatX 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatX {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
}

/* Icon Animations */
.icon-btn {
  transition: transform 0.3s ease;
}

.icon-btn:hover {
  transform: translateX(5px);
}

/* Social Links Animation */
.social-link li a {
  transition: all 0.3s ease;
}

.social-link li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}