@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

        :root {
            --brand-gray: #f8fafc;
            --brand-dark: #1e293b;
            --brand-blue: #3b82f6;
              --brand-blue-light: #3b82f6;   /* lighter hover blue */

            --brand-blue-dark: #1e40af;
            --brand-accent: #facc15;
            --beige-bg: #fdfaf6;
            --beige-card: #ffffff;
            --dark-text: #111827;
            --light-text: #4b5563;
            --accent: #8b5cf6;
            --border-color: #e5e7eb;
            --glass-border: rgba(39, 33, 33, 0.3);
            --brand-purple: #7B45FF;
            --brand-purple-dark: #6237cc;
            --brand-purple-light: #f3f0ff;
            --gray-800: #1F2937;
            --gray-700: #374151;
            --gray-600: #4B5563;
            --gray-500: #6B7280;
            --gray-300: #D1D5DB;
            --gray-200: #E5E7EB;
            --gray-100: #F3F4F6;
            --gray-50: #F9FAFB;
  --beige-bg: #fdfaf6;
            --dark-text: #111827;
            --light-text: #4b5563;
            --accent: #8b5cf6;
            --card-bg: #ffffff;
        }
 .page-container {
            height: 100vh;
            scroll-snap-align: start;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        .page-content {
            transform: translateY(-40px) scale(1.02);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
            width: 90%;
            max-width: 1024px;
            height: 80vh;
            max-height: 700px;
        }
        .page-container.is-visible .page-content {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
        
      
      body {
    font-family: 'Inter', sans-serif;
    background: url("https://marketplace.canva.com/EAD2962NKnQ/2/0/1600w/canva-rainbow-gradient-pink-and-purple-virtual-background-_Tcjok-d9b4.jpg") no-repeat center center fixed;
    background-size: cover;
    color: var(--brand-dark);
}

.nav-link-hover {
    position: relative;
    overflow: hidden;
}

.nav-link-hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transition: width 0.3s ease-in-out;
}

.nav-link-hover:hover::after {
    max-width: 100%;
}

        .text-brand-blue { color: var(--brand-blue); }
        .text-brand-blue-dark { color: var(--brand-blue-dark); }
        .bg-brand-blue { background-color: var(--brand-blue); }
        .bg-brand-blue-dark { background-color: var(--brand-blue-dark); }
        .bg-brand-accent { background-color: var(--brand-accent); }
        .text-brand-accent { color: var(--brand-accent); }

        

        .glass-card {
            background-color: var(--header-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
    /* Logo Rail Animation */
      @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
      }
      .scrolling-logos {
        animation: scroll 40s linear infinite;
      }
        /* Extraordinary Animations */
        @keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline span {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
}

.headline span:nth-child(1) {
  animation-delay: 0.1s; /* WELCOME TO */
}

.headline span:nth-child(2) {
  animation-delay: 0.4s; /* AWM LOGISTICS */
}

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotateX(90deg);
            }
            to {
                opacity: 1;
                transform: rotateX(0);
            }
        }
        .animate-float {
            animation: float 5s ease-in-out infinite;
        }

        .animate-fadeIn { animation: fadeIn 1.2s ease-in-out; }
        .animate-slideUp { animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .animate-scaleIn { animation: scaleIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .animate-rotateIn { animation: rotateIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

        .animated {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .animated.active {
            opacity: 1;
            transform: translateY(0) scale(1) rotateX(0);
        }

       
        
        .stack-container {
            padding-bottom: 25rem;
        }
        .stacking-card {
            position: -webkit-sticky;
            position: sticky;
            padding: 2.5rem;
            border-radius: 1.5rem;
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            margin-bottom: 1.5rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 400px;
        }
        .stacking-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.5) 100%);
            border-radius: 1.5rem;
            z-index: 1;
        }
        .stacking-card > * {
            position: relative;
            z-index: 2;
        }
        .stacking-card:last-child {
            margin-bottom: 0;
        }

        .stacking-card:nth-of-type(1) { top: 6rem; z-index: 1; }
        .stacking-card:nth-of-type(2) { top: 7rem; z-index: 2; }
        .stacking-card:nth-of-type(3) { top: 8rem; z-index: 3; }
        .stacking-card:nth-of-type(4) { top: 9rem; z-index: 4; }
        .stacking-card:nth-of-type(5) { top: 10rem; z-index: 5; }
        .stacking-card:nth-of-type(6) { top: 11rem; z-index: 6; }
        .stacking-card:nth-of-type(7) { top: 12rem; z-index: 7; }
        .stacking-card:nth-of-type(8) { top: 13rem; z-index: 8; }
        .stacking-card:nth-of-type(9) { top: 14rem; z-index: 9; }


       
        
    /* For modern browsers */
body::-webkit-scrollbar {
    width: 0px;  /* removes scrollbar space */
    background: transparent;
}
html {
    scroll-behavior: smooth;
}
      body {
        font-family: 'Poppins', sans-serif;
        background-color: #f8fafc;
        background-image: linear-gradient(120deg, #f5f3ff, #fdf2f8);
      }
      .form-group { position: relative; margin-top: 1.5rem; }
      .form-input { width: 100%; border: 1px solid #d1d5db; border-radius: 0.5rem; padding: 1rem; background-color: #f9fafb; color: #111827; transition: border-color 0.2s; }
      .form-input:focus { outline: none; border-color: #4f46e5; box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2); }
      .form-label { position: absolute; left: 1rem; top: 1rem; color: #6b7280; pointer-events: none; transition: all 0.2s ease-out; background-color: #f9fafb; padding: 0 0.25rem; }
      .form-input:focus + .form-label,
      .form-input:not(:placeholder-shown) + .form-label { top: -0.75rem; left: 0.75rem; font-size: 0.875rem; color: #4f46e5; }
      textarea.form-input { min-height: 120px; }
      .spinner { animation: spin 1s linear infinite; }
      @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
      @keyframes scroll-vertical {
        from {
          transform: translateY(0);
        }
        to {
          transform: translateY(-50%);
        }
      }

      /* 
        'alternate' reverses the animation direction on each cycle.
        This creates the "to-and-fro" effect.
      */
      .animate-scroll-up {
        animation: scroll-vertical 60s linear infinite alternate;
      }

      /*
        'alternate-reverse' does the same but starts in the reverse direction.
        This keeps the two rails moving opposite to each other.
      */
      .animate-scroll-down {
        animation: scroll-vertical 60s linear infinite alternate-reverse;
      }

      .grid-background {
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
            linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
        background-size: 4rem 4rem;
      }
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slideInFromLeft 1s ease-out forwards;
}/* Custom Animations */
      @keyframes scroll-down {
        0% { transform: translateY(0); }
        100% { transform: translateY(-50%); }
      }
      .animate-scroll-down {
        animation: scroll-down 60s linear infinite;
      }
      @keyframes scroll-up {
        0% { transform: translateY(-50%); }
        100% { transform: translateY(0); }
      }
      .animate-scroll-up {
        animation: scroll-up 60s linear infinite;
      }

      @keyframes slide-in {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .animate-slide-in {
        animation: slide-in 0.7s ease-out forwards;
      }