/*
  The CSS provided here is primarily using Tailwind CSS classes.
  To use this CSS, you would typically include Tailwind CSS in your project.
  If you're not using Tailwind, you would need to convert these classes
  into standard CSS properties.

  Below are some key Tailwind classes explained for clarity.
*/

/* General Section Styling */
.py-20 {
    padding-top: 5rem; /* 80px */
    padding-bottom: 5rem; /* 80px */
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-emerald-900 {
    --tw-gradient-from: #064e3b var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(6 78 59 / 0%) var(--tw-gradient-to-position);
}

.via-emerald-800 {
    --tw-gradient-to: rgb(4 90 69 / 0%) var(--tw-gradient-to-position);
    --tw-gradient-via: #047857 var(--tw-gradient-via-position);
}

.to-emerald-900 {
    --tw-gradient-to: #064e3b var(--tw-gradient-to-position);
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* Background Pattern */
.absolute {
    position: absolute;
}

.inset-0 {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.opacity-10 {
    opacity: 0.1;
}

/* Container */
.container {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem; /* 16px */
    padding-right: 1rem; /* 16px */
}

.z-10 {
    z-index: 10;
}

/* Text Content */
.max-w-4xl {
    max-width: 56rem; /* 896px */
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.mb-12 {
    margin-bottom: 3rem; /* 48px */
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem; /* 8px */
}

.px-4 {
    padding-left: 1rem; /* 16px */
    padding-right: 1rem; /* 16px */
}

.py-2 {
    padding-top: 0.5rem; /* 8px */
    padding-bottom: 0.5rem; /* 8px */
}

.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.rounded-full {
    border-radius: 9999px;
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}

.font-medium {
    font-weight: 500;
}

.mb-6 {
    margin-bottom: 1.5rem; /* 24px */
}

.w-4 {
    width: 1rem; /* 16px */
}

.h-4 {
    height: 1rem; /* 16px */
}

.text-4xl {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
}

.md\:text-5xl {
    /* On medium screens and up */
    font-size: 3rem; /* 48px */
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.text-gold-300 {
    color: #fcd34d;
}

.text-xl {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
}

.text-emerald-100 {
    color: #d1fae5;
}

.max-w-3xl {
    max-width: 48rem; /* 768px */
}

.leading-relaxed {
    line-height: 1.625;
}

/* Feature Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-3 {
    /* On medium screens and up */
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem; /* 32px */
}

.w-16 {
    width: 4rem; /* 64px */
}

.h-16 {
    height: 4rem; /* 64px */
}

.rounded-2xl {
    border-radius: 1rem; /* 16px */
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.mb-4 {
    margin-bottom: 1rem; /* 16px */
}

.w-8 {
    width: 2rem; /* 32px */
}

.h-8 {
    height: 2rem; /* 32px */
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}

.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem; /* 8px */
}

.text-emerald-200 {
    color: #a7f3d0;
}

/* Form Section */
.p-8 {
    padding: 2rem; /* 32px */
}

.md\:p-12 {
    /* On medium screens and up */
    padding: 3rem; /* 48px */
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse))); /* 24px */
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    /* On small screens and up */
    flex-direction: row;
}

.gap-4 {
    gap: 1rem; /* 16px */
}

.flex-1 {
    flex: 1 1 0%;
}

.left-4 {
    left: 1rem; /* 16px */
}

.top-1\/2 {
    top: 50%;
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.text-gray-400 {
    color: #9ca3af;
}

.w-5 {
    width: 1.25rem; /* 20px */
}

.h-5 {
    height: 1.25rem; /* 20px */
}

.pl-12 {
    padding-left: 3rem; /* 48px */
}

.h-14 {
    height: 3.5rem; /* 56px */
}

.bg-white\/90 {
    background-color: rgb(255 255 255 / 0.9);
}

.border-0 {
    border-width: 0px;
}

.text-gray-900 {
    color: #111827;
}

.placeholder\:text-gray-500::placeholder {
    color: #6b7280;
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}

/* Button */
.inline-flex {
    display: inline-flex;
}

.justify-center {
    justify-content: center;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-gold-500 {
    --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(234 179 8 / 0%) var(--tw-gradient-to-position);
}

.to-gold-600 {
    --tw-gradient-to: #d97706 var(--tw-gradient-to-position);
}

.hover\:from-gold-600:hover {
    --tw-gradient-from: #d97706 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(217 119 6 / 0%) var(--tw-gradient-to-position);
}

.hover\:to-gold-700:hover {
    --tw-gradient-to: #b45309 var(--tw-gradient-to-position);
}

.px-8 {
    padding-left: 2rem; /* 32px */
    padding-right: 2rem; /* 32px */
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.underline {
    text-decoration-line: underline;
}

.hover\:text-gold-200:hover {
    color: #fde68a;
}

/* Bottom Text */
.mt-8 {
    margin-top: 2rem; /* 32px */
}

/* Floating Decorative Elements */
.top-1\/4 {
    top: 25%;
}

.left-10 {
    left: 2.5rem; /* 40px */
}

.w-2 {
    width: 0.5rem; /* 8px */
}

.h-2 {
    height: 0.5rem; /* 8px */
}

.bg-gold-400 {
    background-color: #fbbf24;
}

.rounded-full {
    border-radius: 9999px;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.top-1\/3 {
    top: 33.333333%;
}

.right-20 {
    right: 5rem; /* 80px */
}

.w-1 {
    width: 0.25rem; /* 4px */
}

.h-1 {
    height: 0.25rem; /* 4px */
}

.bg-emerald-300 {
    background-color: #6ee7b7;
}

.delay-1000 {
    animation-delay: 1000ms;
}

.bottom-1\/4 {
    bottom: 25%;
}

.left-1\/4 {
    left: 25%;
}

.w-1\.5 {
    width: 0.375rem; /* 6px */
}

.h-1\.5 {
    height: 0.375rem; /* 6px */
}

.delay-500 {
    animation-delay: 500ms;
}

.bottom-1\/3 {
    bottom: 33.333333%;
}

.right-1\/3 {
    right: 33.333333%;
}

.bg-emerald-400 {
    background-color: #34d399;
}

.delay-1500 {
    animation-delay: 1500ms;
}
.rounded-3xl {
    border-radius: 1.5rem; /* which is equivalent to 24px */
}