/* Global Styles */
:root {
  --primary-color: #9c8a5a;
  --secondary-color: #1a2639;
  --accent-color: #7d6d48;
  --light-color: #f8f9fa;
  --dark-color: #1a2639;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #9c8a5a, #7d6d48);
  --gradient-accent: linear-gradient(135deg, #b9a87d, #9c8a5a);
  --card-border-radius: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
  background-color: #f9f9f9;
  background-image: 
    radial-gradient(#9c8a5a10 1px, transparent 1px),
    radial-gradient(#9c8a5a10 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* Hero Section - Right Image Removed & Enhanced Animation */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background: #000;
  perspective: 1000px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-section .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../image/airport.jpg') no-repeat center center;
  background-size: cover;
  z-index: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(156, 138, 90, 0.5), rgba(26, 38, 57, 0.9));
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

/* Hero Container and Content Left Positioning Fix */
.hero-container {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Content Left - Without Box Border */
.hero-content-left {
  position: relative;
  padding: 60px 50px;
  margin-top: 10%;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
  z-index: 5;
  max-width: 1250px;
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.hero-content-left::before {
  content: none;
}

.hero-content-left::after {
  content: none;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: none;
  box-shadow: 0 5px 15px rgba(156, 138, 90, 0.3);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.4s;
  position: relative;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  display: inline;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textGradient 3s linear infinite;
  padding-right: 5px;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 40px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.6s;
  line-height: 1.8;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 90%;
}

.hero-description::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  opacity: 0.7;
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.8s;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.hero-feature:hover {
  transform: translateY(-5px);
}

.hero-feature i {
  font-size: 1.2rem;
  color: #fff;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-feature:hover i {
  transform: scale(1.1);
  background: var(--accent-color);
}

.hero-feature span {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1s forwards 1s;
}

.hero-btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 20px rgba(156, 138, 90, 0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(156, 138, 90, 0.4);
  color: white;
  text-decoration: none;
}

.hero-btn-primary:hover::before {
  opacity: 1;
}

.hero-btn-primary i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.hero-btn-primary:hover i {
  transform: translateX(5px);
}

.hero-btn-outline {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: 2px solid var(--primary-color);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-outline:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(156, 138, 90, 0.2);
  color: white;
  text-decoration: none;
}

.hero-btn-outline i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.hero-btn-outline:hover i {
  transform: translateX(5px);
}

/* Animation for card hover */
.hero-container:hover .hero-content-left {
  transform: translateY(-10px);
}

/* Hero Content Right (removed) - Replace with animated shapes */
.hero-content-right {
  display: none;
}

/* Additional animated shapes */
.hero-animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-animated-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(156, 138, 90, 0.6), rgba(26, 38, 57, 0));
  opacity: 0.3;
  z-index: 1;
}

.hero-animated-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  left: -100px;
  top: 30%;
  animation: moveAround 20s infinite alternate ease-in-out;
}

.hero-animated-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  right: -50px;
  top: 20%;
  animation: moveAround 15s infinite alternate-reverse ease-in-out;
  animation-delay: 1s;
}

.hero-animated-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  left: 10%;
  bottom: 10%;
  animation: moveAround 25s infinite alternate ease-in-out;
  animation-delay: 2s;
}

.hero-animated-shape:nth-child(4) {
  width: 250px;
  height: 250px;
  right: 15%;
  bottom: 15%;
  animation: moveAround 18s infinite alternate-reverse ease-in-out;
  animation-delay: 3s;
}

.hero-particle {
  position: absolute;
  background: rgba(156, 138, 90, 0.6);
  border-radius: 50%;
  z-index: 1;
}

.hero-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

@keyframes moveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -30px) scale(1.1);
  }
  50% {
    transform: translate(20px, 50px) scale(0.9);
  }
  75% {
    transform: translate(-30px, 20px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes lightShine {
  0% {
    transform: translateX(-300%) translateY(-300%) rotate(45deg);
  }
  100% {
    transform: translateX(300%) translateY(300%) rotate(45deg);
  }
}

/* Floating Elements Animation */
.floating-element {
  position: absolute;
  z-index: 3;
  opacity: 0.7;
  filter: blur(1px);
  animation: floatUpDown 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 50px;
  height: 50px;
  top: 20%;
  left: 15%;
  background: var(--primary-color);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-duration: 7s;
}

.floating-element:nth-child(2) {
  width: 30px;
  height: 30px;
  top: 30%;
  right: 20%;
  background: var(--accent-color);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation-duration: 9s;
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  width: 40px;
  height: 40px;
  bottom: 15%;
  left: 25%;
  background: var(--secondary-color);
  border-radius: 5px;
  transform: rotate(45deg);
  animation-duration: 10s;
  animation-delay: 2s;
}

.floating-element:nth-child(4) {
  width: 25px;
  height: 25px;
  bottom: 25%;
  right: 25%;
  background: var(--primary-color);
  border-radius: 50%;
  animation-duration: 8s;
  animation-delay: 3s;
}

/* Responsive Styles for Hero Section */
@media (max-width: 992px) {
  .hero-content-left {
    padding: 40px 30px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content-left {
   
    margin-top: 100%; /* Add spacing from top for better vertical centering */
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn-primary, .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content-left {
    padding: 30px 20px;
    margin-top: 35%; /* Adjusted for smaller screens */
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Add a new media query for very small screens */
@media (max-width: 400px) {
  .hero-content-left {
    margin-top: 25%; /* Less margin for very small screens */
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
}

/* Intro Section */
.intro-section {
  padding: 120px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.05);
}

.intro-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.05;
  top: -250px;
  left: -250px;
  animation: floatAnimation 15s infinite alternate ease-in-out;
}

.intro-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.05;
  bottom: -150px;
  right: -150px;
  animation: floatAnimation 10s infinite alternate-reverse ease-in-out;
}

.intro-content {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.intro-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.intro-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 5px;
  background: var(--gradient-accent);
  border-radius: 10px;
  transition: width 0.4s ease;
}

.intro-content:hover h2::after {
  width: 100%;
}

.intro-content .lead {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #555;
  position: relative;
}

.intro-content .lead b {
  color: var(--primary-color);
  font-weight: 600;
}

.intro-image {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.intro-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(26, 38, 57, 0.2), rgba(156, 138, 90, 0.2));
  opacity: 0;
  transition: var(--transition);
}

.intro-image:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.intro-image:hover::before {
  opacity: 1;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.services-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-color);
  position: relative;
}

.services-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 10px;
}

.service-detail-card {
  background-color: white;
  padding: 50px;
  border-radius: var(--card-border-radius);
  margin-bottom: 50px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 7px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.service-detail-card::after {
  content: "";
  position: absolute;
  right: -50%;
  top: -50%;
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.05;
  transition: var(--transition);
  z-index: -1;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-card:hover::before {
  width: 10px;
}

.service-detail-card:hover::after {
  transform: scale(1.5);
}

.service-detail-card h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--dark-color);
  font-weight: 700;
  text-align: left;
}

.service-detail-card h2::after {
  content: none;
}

.service-detail-card h2 i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 15px;
  transform: translateY(2px);
}

.service-detail-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
  position: relative;
  padding-left: 0;
  transition: var(--transition);
}

.service-detail-card:hover p {
  padding-left: 15px;
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239c8a5a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.features-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 70px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.features-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-accent);
  border-radius: 10px;
}

.feature-card {
  background-color: white;
  padding: 50px 30px;
  border-radius: var(--card-border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gradient-primary);
  transition: var(--transition);
  z-index: -1;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background: var(--gradient-accent);
  transition: var(--transition);
  z-index: -1;
  transition-delay: 0.1s;
}

.feature-card:hover::before,
.feature-card:hover::after {
  height: 100%;
  opacity: 0.8;
}

.feature-card i {
  font-size: 3.5rem;
  margin-bottom: 30px;
  transition: var(--transition);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 5px rgba(156, 138, 90, 0.3));
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 20px;
}

.feature-card:hover i {
  transform: translateY(-10px) scale(1.1);
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.5));
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card:hover h3 {
  color: white;
  transform: translateY(5px);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 100px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: rotate 60s linear infinite;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  animation: floatAnimation 15s infinite alternate ease-in-out;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cta-section .btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  background: var(--gradient-accent);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(156, 138, 90, 0.3);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.cta-section .btn:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover::after {
  width: 100%;
}

/* Enhanced Animation Classes */
.animate-fadein {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.animate-fadein-up {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-slidein-left {
  opacity: 0;
  animation-name: slideInLeft;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-slidein-right {
  opacity: 0;
  animation-name: slideInRight;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-bouncein {
  opacity: 0;
  animation-name: bounceIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Advanced Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  40% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  60% { 
    transform: scale(0.89); 
  }
  80% { 
    opacity: 1;
    transform: scale(1.03); 
  }
  100% { 
    opacity: 1;
    transform: scale(1); 
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(156, 138, 90, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(156, 138, 90, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(156, 138, 90, 0.3);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
