:root {
  --color-primary: #0f3abb;
  --color-primary-dark: #232c52;
  --color-accent: #3698ed;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-bg: #f7fafc;
  --color-white: #ffffff;
  --color-border: #e2e8f0;
  --color-gradient-1: linear-gradient(135deg, #0f3abb 0%, #3698ed 100%);
  --color-gradient-2: linear-gradient(135deg, #3698ed 0%, #0f3abb 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}



/* Header & Navigation */
header {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(15, 58, 187, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 0.6s ease-out;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
  animation: slideInLeft 0.8s ease-out;
}

.logo img {
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  animation: slideInRight 0.8s ease-out;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 50%;
  background: var(--color-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.mobile-menu:hover {
  transform: rotate(90deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(15, 58, 187, 0.9) 0%, rgba(35, 44, 82, 0.95) 100%), 
              url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1200') center/cover no-repeat;
  color: var(--color-white);
  padding: 180px 0 120px;
  margin-top: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(54, 152, 237, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(15, 58, 187, 0.3) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
  font-weight: 500;
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(54, 152, 237, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: #2072dd;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(54, 152, 237, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-white);
  margin-left: 1rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
  padding: 50px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-gradient-1);
  border-radius: 2px;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin-top: 20px;
}

/* About Section */
.about {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(54, 152, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  animation: slideInLeft 1s ease-out;
}

.about-text h3 {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 25px;
  font-weight: 500;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: var(--color-text);
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  margin-top: 30px;
}

.about-features li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.about-features li:hover {
  transform: translateX(5px);
  color: var(--color-primary);
}

.about-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.4rem;
  animation: pulse 2s ease-in-out infinite;
}

.about-image {
  background: url('../images/background.png') center/cover no-repeat;
  height: 450px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-white);
  box-shadow: 0 20px 60px rgba(15, 58, 187, 0.2);
  animation: slideInRight 1s ease-out;
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.about-image:hover {
  transform: scale(1.02) translateY(-5px);
}

/* Fleet Section */
.fleet {
  background: var(--color-bg);
  position: relative;
}

.fleet::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.fleet-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 58, 187, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  position: relative;
}

.fleet-card:nth-child(1) {
  animation-delay: 0.1s;
}

.fleet-card:nth-child(2) {
  animation-delay: 0.2s;
}

.fleet-card:nth-child(3) {
  animation-delay: 0.3s;
}

.fleet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-gradient-1);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.fleet-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(15, 58, 187, 0.25);
}

.fleet-card:hover::before {
  opacity: 0.05;
}

.fleet-image {
  height: 240px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image {
  transform: scale(1.1);
}

.fleet-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.fleet-card:nth-child(1) .fleet-image {
  background: url('../images/20.jpg') center/cover no-repeat;
}

.fleet-card:nth-child(2) .fleet-image {
  background: url('../images/30.jpg') center/cover no-repeat;
}

.fleet-card:nth-child(3) .fleet-image {
  background: url('../images/40.jpg') center/cover no-repeat;
}

.fleet-info {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.fleet-info h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.fleet-card:hover .fleet-info h3 {
  color: var(--color-accent);
}

.fleet-info p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.fleet-specs {
  list-style: none;
  margin-bottom: 25px;
}

.fleet-specs li {
  padding: 8px 0;
  color: var(--color-text);
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
  transition: all 0.3s ease;
}

.fleet-specs li:hover {
  padding-left: 30px;
  color: var(--color-primary);
}

.fleet-specs li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Testimonials */
.testimonials {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(54, 152, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: var(--color-white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(15, 58, 187, 0.08);
  transition: all 0.4s ease;
  animation: scaleIn 0.8s ease-out;
  animation-fill-mode: both;
  position: relative;
  border: 2px solid transparent;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(15, 58, 187, 0.15);
  border-color: var(--color-accent);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 25px;
  line-height: 1.9;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color-gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(15, 58, 187, 0.2);
}

/* .testimonial-card:hover .author-avatar {
  transform: rotate(360deg) scale(1.1);
} */

.author-info h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.author-info p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.rating {
  color: #fbbf24;
  margin-top: 8px;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  background: var(--color-white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 58, 187, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: slideInLeft 1s ease-out;
}

.info-item {
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 15px;
}

.info-item:hover {
  background: var(--color-bg);
  transform: translateX(10px);
}

.info-icon {
  width: 55px;
  height: 55px;
  background: var(--color-gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(15, 58, 187, 0.25);
  transition: transform 0.3s ease;
}

.info-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .info-item:hover .info-icon {
  transform: rotate(360deg) scale(1.1);
} */

.info-text h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.info-text p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInRight 1s ease-out;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  margin-bottom: 8px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 15px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(54, 152, 237, 0.1);
  transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Footer */
footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--color-gradient-1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-section h3 {
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.footer-section p {
  line-height: 1.9;
  opacity: 0.9;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 1.1rem;
}

.social-links a i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(54, 152, 237, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
  margin-top: 20px;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--color-gradient-1);
  color: var(--color-white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(54, 152, 237, 0.4);
  transition: all 0.4s ease;
  z-index: 999;
  font-size: 1.5rem;
  font-weight: bold;
}

.scroll-top:hover {
  background: var(--color-gradient-2);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 35px rgba(54, 152, 237, 0.6);
}

.scroll-top.active {
  display: flex;
  animation: fadeInUp 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .about-image {
    height: 300px;
  }
  
  .fleet-grid,
  .testimonial-grid {
    gap: 25px;
  }
}

/* Loading animations for images */
.fleet-image,
.about-image {
  position: relative;
}

.fleet-image::before,
.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 58, 187, 0.1) 0%,
    rgba(54, 152, 237, 0.2) 50%,
    rgba(15, 58, 187, 0.1) 100%
  );
  animation: shimmer 2s infinite;
  z-index: 0;
}

/* Parallax effect */
@media (min-width: 769px) {
  .hero {
    background-attachment: fixed;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gradient-1);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gradient-2);
}

/* Scroll Animation Styles */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate-left {
  transform: translateX(-50px);
}

.scroll-animate.animate-right {
  transform: translateX(50px);
}

.scroll-animate.animate-scale {
  transform: scale(0.9);
}

.scroll-animate.animate-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered animation delays for child elements */
.scroll-animate-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-stagger.animate-visible > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.scroll-animate-stagger.animate-visible > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.scroll-animate-stagger.animate-visible > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.scroll-animate-stagger.animate-visible > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.scroll-animate-stagger.animate-visible > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.scroll-animate-stagger.animate-visible > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}