 body {
     box-sizing: border-box;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html,
 body {
     height: 100%;
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
     line-height: 1.6;
     color: #2d3748;
     /* text-gray-800 */
     scroll-behavior: smooth;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1.5rem;
 }

 /* Header */
 .header-top {
     background: #1a202c;
     /* bg-gray-900 */
     color: white;
     padding: 0.5rem 0;
     font-size: 0.9rem;
 }

 .header-top-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .contact-info {
     display: flex;
     gap: 2rem;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .social-links {
     display: flex;
     gap: 1rem;
 }

 .social-links a {
     color: white;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .social-links a:hover {
     color: #FF6600;
     /* Accent Color */
 }

 /* Navigation */
 nav {
     position: fixed;
     top: 40px;
     width: 100%;
     background: rgba(255, 255, 255, 0.9);
     /* Lighter alpha for better blur */
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     z-index: 1000;
     padding: 1rem 0;
     transition: all 0.3s ease;
     border-bottom: 1px solid rgba(56, 0, 107, 0.1);
 }

 nav.scrolled {
     top: 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     /* Softer shadow */
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo-container {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .logo-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #38006B, #FF6600);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 800;
     font-size: 1.2rem;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     height: 50px;
     width: 180px;
     color: #38006B;
     /* Primary Color */
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 2.5rem;
 }

 .nav-links a {
     text-decoration: none;
     color: #4a5568;
     /* text-gray-700 */
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     padding: 0.5rem 0;
 }

 .nav-links a:hover {
     color: #38006B;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: #FF6600;
     transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
     /* Upgraded transition */
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-cta {
     background: #FF6600;
     color: white;
     padding: 0.75rem 1.5rem;
     border-radius: 25px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 .nav-cta:hover {
     background: #e55a00;
     transform: translateY(-3px) scale(1.03);
     /* Upgraded hover */
     box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
 }

 /* Hero Section */
 .hero {
     min-height: 100%;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     padding-top: 120px;
     background-color: #f7fafc;
     /* Fallback */
 }

 #hero-bg-container {
     position: absolute;
     inset: 0;
     z-index: 0;
     overflow: hidden;
 }

 #hero-bg-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 120%;
     /* Taller for parallax */
     object-fit: cover;
     object-position: center;
     /* Will be animated by JS */
 }

 #hero-overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     /* Subtle gradient to ensure text readability over image */
     background: linear-gradient(90deg,
             rgba(255, 255, 255, 0.5) 40%,
             rgba(255, 255, 255, 0.5) 80%,
             rgba(247, 250, 252, 0.5) 100%);
 }

 .hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     padding: 6rem 0;
     position: relative;
     /* Bring content above overlay */
     z-index: 2;
 }

 .hero-text {
     z-index: 2;
 }

 /* Load Animations */
 .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     color: #1a202c;
     opacity: 0;
     animation: heroFadeUp 1s ease 0.2s forwards;
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: #38006B;
     font-weight: 600;
     margin-bottom: 2rem;
     opacity: 0;
     animation: heroFadeUp 1s ease 0.4s forwards;
 }

 .hero-description {
     font-size: 1.1rem;
     color: #4a5568;
     margin-bottom: 3rem;
     opacity: 0;
     animation: heroFadeUp 1s ease 0.6s forwards;
 }

 .cta-button {
     display: inline-block;
     background: #FF6600;
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
     opacity: 0;
     animation: heroFadeUp 1s ease 0.8s forwards;
 }

 .cta-button:hover {
     background: #e55a00;
     transform: translateY(-3px) scale(1.03);
     /* Upgraded hover */
     box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
 }

 .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .truck-icon {
     width: 300px;
     height: 200px;
     opacity: 0;
     animation: heroFadeIn 1s ease 1s forwards;
 }

 /* Keyframe animations for hero load */
 @keyframes heroFadeUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes heroFadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Stats Section */
 .stats {
     padding: 4rem 0;
     background: white;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     text-align: center;
 }

 .stat-item {
     padding: 2rem;
     border-radius: 12px;
     background: #f7fafc;
     /* bg-gray-50 */
     transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
     /* Upgraded transition */
     position: relative;
     overflow: hidden;
 }

 .stat-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 3px;
     background: linear-gradient(90deg, #38006B, #FF6600);
     transition: left 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 .stat-item:hover {
     transform: translateY(-8px);
     /* More lift */
     box-shadow: 0 15px 30px rgba(56, 0, 107, 0.1);
     /* Softer shadow */
 }

 .stat-item:hover::before {
     left: 0;
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 700;
     color: #38006B;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     font-size: 1.1rem;
     color: #4a5568;
     font-weight: 500;
 }

 /* About Section */
 .about {
     padding: 6rem 0;
     background: white;
     overflow: hidden;
     /* For scroll animations */
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* Changed to 1fr 1fr */
     gap: 4rem;
     align-items: center;
 }

 .about h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 2rem;
     color: #1a202c;
 }

 .lead {
     font-size: 1.25rem;
     font-weight: 500;
     color: #38006B;
     margin-bottom: 2rem;
     line-height: 1.5;
 }

 .about p {
     font-size: 1.1rem;
     color: #4a5568;
     margin-bottom: 3rem;
     line-height: 1.7;
 }

 .values-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
 }

 .value-item {
     text-align: center;
     padding: 1.5rem;
     border-radius: 12px;
     background: #f7fafc;
     transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 .value-item:hover {
     transform: translateY(-5px);
     /* More subtle */
     background: #edf2f7;
     /* bg-gray-200 */
 }

 .value-icon {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: #FF6600;
     /* Use accent color */
 }

 .value-item h4 {
     font-size: 1.1rem;
     font-weight: 600;
     color: #38006B;
     margin-bottom: 0.5rem;
 }

 .value-item p {
     font-size: 0.9rem;
     color: #4a5568;
     margin: 0;
 }

 .about-visual {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     height: 450px;
 }

 .about-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 16px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 /* Services Section */
 .services {
     padding: 6rem 0;
     background: #f7fafc;
     overflow: hidden;
     /* For scroll animations */
 }

 .section-header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section-header h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1a202c;
     margin-bottom: 1rem;
 }

 .section-header p {
     font-size: 1.2rem;
     color: #4a5568;
     max-width: 600px;
     margin: 0 auto;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .service-card {
     background: white;
     padding: 3rem 2rem;
     border-radius: 16px;
     text-align: center;
     transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
     border: 1px solid #e2e8f0;
     /* border-gray-200 */
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #38006B, #FF6600);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 .service-card:hover {
     transform: translateY(-10px);
     /* More lift */
     box-shadow: 0 20px 40px rgba(56, 0, 107, 0.1);
     /* Softer shadow */
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-icon {
     font-size: 3rem;
     margin-bottom: 1.5rem;
     color: #38006B;
     /* Use primary color */
     display: inline-block;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-icon {
     transform: scale(1.1);
     /* Icon pulse on hover */
 }

 /* NEW Service Redesign Styles */
 .service-item-features {
     list-style: none;
     margin-top: 1.5rem;
     padding-left: 0;
 }

 .service-item-features li {
     position: relative;
     padding-left: 1.75rem;
     /* 28px */
     margin-bottom: 0.75rem;
     /* 12px */
     color: #4a5568;
 }

 .service-item-features li::before {
     content: '✓';
     position: absolute;
     left: 0;
     top: 2px;
     color: #FF6600;
     font-weight: bold;
     font-size: 1.1rem;
 }

 .service-item-image {
     width: 100%;
     height: 100%;
     min-height: 300px;
     object-fit: cover;
     border-radius: 16px;
     box-shadow: 0 15px 35px rgba(56, 0, 107, 0.1);
 }

 .service-card h3 {
     font-size: 1.5rem;
     font-weight: 600;
     color: #38006B;
     margin-bottom: 1rem;
 }

 .service-card p {
     color: #4a5568;
     margin-bottom: 2rem;
     line-height: 1.6;
 }

 .service-features {
     list-style: none;
     text-align: left;
 }

 .service-features li {
     padding: 0.5rem 0;
     color: #4a5568;
     position: relative;
     padding-left: 1.5rem;
 }

 .service-features li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #FF6600;
     font-weight: bold;
 }

 /* Partnership Section */
 .partnership {
     padding: 6rem 0;
     background: #38006B;
     color: white;
     text-align: center;
 }

 .partnership h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 2rem;
 }

 .partnership p {
     font-size: 1.2rem;
     max-width: 600px;
     margin: 0 auto 3rem;
     opacity: 0.9;
 }

 .fedex-badge {
     display: inline-block;
     background: white;
     color: #38006B;
     padding: 1rem 2rem;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1.1rem;
 }

 /* Location Section */
 .location {
     padding: 6rem 0;
     background: #f7fafc;
     overflow: hidden;
     /* For scroll animations */
 }

 .location-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .location h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 2rem;
     color: #1a202c;
 }

 .location-info {
     font-size: 1.1rem;
     color: #4a5568;
     margin-bottom: 2rem;
 }

 .address {
     background: white;
     padding: 2rem;
     border-radius: 12px;
     border-left: 4px solid #FF6600;
 }

 .map-placeholder {
     background: #e2e8f0;
     /* bg-gray-300 */
     height: 400px;
     /* Taller map */
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #4a5568;
     font-size: 1.1rem;
     overflow: hidden;
     /* To contain the image */
 }

 .map-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Careers Section */
 .careers {
     padding: 6rem 0;
     background: white;
     overflow: hidden;
     /* For scroll animations */
 }

 .careers h2 {
     font-size: 2.5rem;
     font-weight: 700;
     text-align: center;
     margin-bottom: 4rem;
     /* More space */
     color: #1a202c;
 }

 .careers-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: start;
 }

 .careers-info {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     /* Container for text and image */
 }

 .careers-image {
     width: 100%;
     height: 300px;
     object-fit: cover;
     border-radius: 16px;
     margin-bottom: 2rem;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .benefits {
     background: #f7fafc;
     padding: 3rem;
     border-radius: 12px;
 }

 .benefits h3 {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 2rem;
     color: #38006B;
 }

 .benefits-list {
     list-style: none;
 }

 .benefits-list li {
     padding: 0.75rem 0;
     border-bottom: 1px solid #e2e8f0;
     color: #4a5568;
     position: relative;
     padding-left: 1.5rem;
 }

 .benefits-list li:last-child {
     border-bottom: none;
 }

 .benefits-list li:before {
     content: '✓';
     color: #FF6600;
     font-weight: bold;
     position: absolute;
     left: 0;
 }

 /* Form Styles */
 .form-container {
     background: white;
     padding: 3rem;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
     /* Softer shadow */
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
     color: #2d3748;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 0.75rem;
     border: 2px solid #e2e8f0;
     border-radius: 8px;
     font-size: 1rem;
     font-family: 'Inter', sans-serif;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
     /* Added box-shadow transition */
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #38006B;
     box-shadow: 0 0 0 3px rgba(56, 0, 107, 0.1);
     /* Focus ring */
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .file-input {
     position: relative;
     overflow: hidden;
     display: inline-block;
     width: 100%;
 }

 .file-input input[type=file] {
     position: absolute;
     left: -9999px;
 }

 .file-input-label {
     display: block;
     padding: 0.75rem;
     border: 2px dashed #e2e8f0;
     border-radius: 8px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     color: #4a5568;
 }

 .file-input-label:hover {
     border-color: #38006B;
     background: #f7fafc;
 }

 .file-name {
     font-size: 0.9rem;
     color: #4a5568;
     margin-top: 0.5rem;
     display: block;
 }

 .submit-button {
     width: 100%;
     background: #38006B;
     color: white;
     padding: 1rem;
     border: none;
     border-radius: 8px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
 }

 .submit-button:hover:not(:disabled) {
     background: #2d0051;
     transform: translateY(-3px) scale(1.01);
     /* Upgraded hover */
     box-shadow: 0 5px 15px rgba(56, 0, 107, 0.2);
 }

 .submit-button:disabled {
     opacity: 0.6;
     cursor: not-allowed;
 }

 /* Success Message */
 .success-message {
     display: none;
     background: #48bb78;
     /* green-500 */
     color: white;
     padding: 1rem;
     border-radius: 8px;
     margin-bottom: 1rem;
     text-align: center;
 }

 .success-message.show {
     display: block;
     animation: heroFadeUp 0.5s ease;
 }

 /* Footer Styles */
 .footer {
     background: #1a202c;
     color: white;
 }

 .footer-main {
     padding: 4rem 0 2rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
 }

 .footer-section h4 {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     color: white;
 }

 .footer-description {
     color: #a0aec0;
     line-height: 1.6;
     margin-bottom: 2rem;
 }

 .footer-social {
     display: flex;
     gap: 1rem;
 }

 .footer-social a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: #2d3748;
     border-radius: 8px;
     color: #a0aec0;
     transition: all 0.3s ease;
 }

 .footer-social a:hover {
     background: #FF6600;
     color: white;
     transform: translateY(-2px);
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.75rem;
 }

 .footer-links a {
     color: #a0aec0;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #FF6600;
 }

 /* .contact-details { */
 /* space-y: 1rem; */
 /* } */

 .contact-detail {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 1rem;
     color: #a0aec0;
 }

 .contact-icon {
     font-size: 1.1rem;
 }

 .footer-bottom {
     border-top: 1px solid #2d3748;
     padding: 1.5rem 0;
 }

 .footer-bottom-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     padding: 0 2rem;
 }

 .footer-bottom p {
     color: #a0aec0;
     font-size: 0.9rem;
 }

 .footer-bottom-links {
     display: flex;
     gap: 2rem;
 }

 .footer-bottom-links a {
     color: #a0aec0;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
 }

 .footer-bottom-links a:hover {
     color: #FF6600;
 }

 /* Location Section - Map Styling */
 .map-placeholder {
     height: 400px;
     /* Existing styles for .map-placeholder remain */
     background: #f7fafc;
     /* Keep a light background */
     box-shadow: 0 10px 30px rgba(56, 0, 107, 0.1);
     /* Use primary color for shadow effect */
 }

 /* New style for the 3D map container inside map-placeholder */
 #map-container {
     width: 100%;
     height: 100%;
     /* Ensure the THREE.js canvas fills the container */
 }

 #map-container canvas {
     display: block;
     /* Remove any default canvas margins/borders */
     border-radius: 12px;
     /* Match the container's border-radius */
 }

 /* --- New 2D Map Pin Styles --- */

 /* This creates the main "pin" shape */
 .custom-map-marker {
     width: 30px;
     height: 30px;
     border-radius: 50% 50% 50% 0;
     /* Teardrop top */
     background: #FF6600;
     /* Your Accent Color */
     position: absolute;
     transform: rotate(-45deg);
     left: 50%;
     top: 50%;
     margin: -15px 0 0 -15px;
     /* Center it */
     border: 2px solid white;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
 }

 /* This creates the inner white circle */
 .custom-map-marker::after {
     content: '';
     width: 14px;
     height: 14px;
     margin: 6px 0 0 6px;
     /* Center inside */
     background: white;
     border-radius: 50%;
     display: block;
 }

 /* This is a helper for Leaflet to position the icon correctly */
 .leaflet-marker-icon .icon-div {
     width: 30px;
     height: 30px;
     position: absolute;
     left: -15px;
     /* Half of width */
     top: -30px;
     /* Full height (to point at the ground) */
 }

 /* Make sure Leaflet popups match your brand */
 .leaflet-popup-content-wrapper {
     border-radius: 8px;
     /* Match site's border-radius */
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .leaflet-popup-content h4 {
     color: #38006B;
     /* Your Primary Color */
     margin: 0 0 10px;
     font-weight: 600;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .header-top {
         display: none;
     }

     nav {
         top: 0;
     }

     .nav-links,
     .nav-cta {
         display: none;
         /* Add .nav-cta */
     }

     /* TODO: Add mobile menu toggle */

     .hero {
         padding-top: 80px;
         text-align: center;
     }

     .hero-content {
         grid-template-columns: 1fr;
         gap: 2rem;
         padding: 3rem 0;
         /* Reduced padding */
     }

     .hero-title {
         font-size: 2.5rem;
     }

     .hero-visual {
         display: none;
         /* Hide truck on mobile for simplicity */
     }

     .about-content,
     .location-content,
     .careers-content {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .about-visual {
         order: -1;
         /* Move image above text */
         height: 300px;
     }

     .values-grid {
         grid-template-columns: 1fr;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .container {
         padding: 0 1rem;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .footer-bottom-content {
         flex-direction: column;
         text-align: center;
     }

     .footer-bottom-links {
         flex-wrap: wrap;
         justify-content: center;
     }
 }

 /* NEW Scroll Animation Styles */
 .animate-on-scroll {
     opacity: 0;
     transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
     transition-delay: var(--animation-delay, 0s);
 }

 .animate-fade-in {
     transform: translateY(10px);
     /* Slight move up */
 }

 .animate-fade-up {
     transform: translateY(30px);
 }

 .animate-slide-in-left {
     transform: translateX(-40px);
 }

 .animate-slide-in-right {
     transform: translateX(40px);
 }

 .animate-on-scroll.visible {
     opacity: 1;
     transform: translateY(0) translateX(0);
 }