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

:root {
    --color-primary: #0E223E;
    --color-accent: #CEFE3B;
    --color-white: #ffffff;
    --color-gray: #e2e2e2;
    --color-gray-light: #ececf0;
    --color-gray-dark: #717182;
    --color-text: #828282;
    --font-poppins: 'Poppins', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--color-primary);
    color: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
}

.min-h-screen {
    min-height: 100vh;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.pointer-events-none {
    pointer-events: none;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.-z-10 {
    z-index: -10;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-12 {
    margin-top: 3rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-24 > * + * {
    margin-top: 6rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.leading-tight {
    line-height: 1.1;
}

.leading-relaxed {
    line-height: 1.625;
}

.font-poppins {
    font-family: var(--font-poppins);
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-\[72px\] {
    font-size: 4.5rem;
}

.text-\[#CEFE3B\] {
    color: var(--color-accent);
}

.text-white {
    color: var(--color-white);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-gray-200 {
    color: var(--color-gray);
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.bg-\[\#0E223E\] {
    background-color: var(--color-primary);
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-\[24px\] {
    border-radius: 1.5rem;
}

.rounded-\[32px\] {
    border-radius: 2rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-\[\#CEFE3B\]\/60 {
    border-color: rgba(206, 254, 59, 0.6);
}

.border-\[\#CEFE3B\]\/20 {
    border-color: rgba(206, 254, 59, 0.2);
}

.border-l-4 {
    border-left-width: 4px;
}

.border-\[\#CEFE3B\] {
    border-color: var(--color-accent);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-\[0_4px_14px_0_rgba\(206\,254\,59\,0\.39\)\] {
    box-shadow: 0 4px 14px 0 rgba(206, 254, 59, 0.39);
}

.blur-\[150px\] {
    filter: blur(150px);
}

.blur-\[120px\] {
    filter: blur(120px);
}

.blur-xl {
    filter: blur(24px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

.hover\:shadow-\[0_6px_20px_rgba\(206\,254\,59\,0\.23\)\]:hover {
    box-shadow: 0 6px 20px rgba(206, 254, 59, 0.23);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:rotate-0:hover {
    transform: rotate(0deg);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.translate-x-1\/2 {
    transform: translateX(50%);
}

.translate-y-1\/2 {
    transform: translateY(50%);
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.translate-x-full {
    transform: translateX(100%);
}

.rotate-1 {
    transform: rotate(1deg);
}

.-rotate-1 {
    transform: rotate(-1deg);
}

.max-w-\[1440px\] {
    max-width: 1440px;
}

.max-w-xl {
    max-width: 36rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.list-disc {
    list-style-type: disc;
}

.pl-4 {
    padding-left: 1rem;
}

.pl-6 {
    padding-left: 1.5rem;
}

.object-contain {
    object-fit: contain;
}

.object-cover {
    object-fit: cover;
}

.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

.overflow-hidden {
    overflow: hidden;
}

.leading-\[1\.1\] {
    line-height: 1.1;
}

.leading-none {
    line-height: 1;
}

.block {
    display: block;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(157.294deg, rgb(206, 254, 59) 21.006%, rgb(52, 199, 89) 100%);
    color: #0e223e;
    border: none;
    cursor: pointer;
    font-family: var(--font-poppins);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(206, 254, 59, 0.39);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(206, 254, 59, 0.23);
    transform: translateY(-2px);
}

/* Feature Card Styles */
.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(206, 254, 59, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(206, 254, 59, 0.15);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-glow {
    position: absolute;
    inset: 0;
    background-color: rgba(206, 254, 59, 0.2);
    border-radius: 9999px;
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Gradient background effects */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-transparent {
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(0 0 0 / 0));
}

.to-transparent {
    --tw-gradient-to: transparent;
}

.via-\[\#CEFE3B\]\/50 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(206, 254, 59, 0.5), var(--tw-gradient-to);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseSlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulseSlow 8s ease-in-out infinite;
}

/* Stagger animations */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }

    .md\:flex-row-reverse {
        flex-direction: row-reverse;
    }

    .md\:flex-nowrap {
        flex-wrap: nowrap;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:text-right {
        text-align: right;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:items-start {
        align-items: flex-start;
    }

    .md\:text-2xl {
        font-size: 1.5rem;
    }

    .md\:text-3xl {
        font-size: 1.875rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
    }

    .md\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .md\:px-20 {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .md\:gap-24 {
        gap: 6rem;
    }

    .md\:w-auto {
        width: auto;
    }

    .md\:w-1\/2 {
        width: 50%;
    }

    .md\:text-xl {
        font-size: 1.25rem;
    }

    .md\:text-sm {
        font-size: 0.875rem;
    }

    .md\:text-base {
        font-size: 1rem;
    }

    .hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lg\:text-\[72px\] {
        font-size: 4.5rem;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Mobile First & Responsive Adjustments */
@media (max-width: 767px) {
    .md\:hidden {
        display: block;
    }

    /* General Layout Padding for Mobile */
    header, section, footer {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Header */
    header {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    header .flex {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    /* Hero */
    .text-\[72px\] {
        font-size: 2.5rem; /* Down from 4.5rem */
        line-height: 1.2;
    }

    .max-w-xl {
        font-size: 1.1rem; /* Adjust paragraph size */
    }

    /* Features */
    .grid-cols-1 {
        gap: 2rem; /* Ensure space between stacked cards */
    }

    .feature-card {
        height: 250px; /* Slightly shorter on mobile */
    }

    .w-48 {
        width: 10rem; /* Smaller logos on mobile */
        height: 10rem;
    }

    /* Route Section */
    .space-y-24 > * + * {
        margin-top: 3rem; /* Reduce huge gaps */
    }

    .md\:text-6xl {
        font-size: 2.25rem; /* Smaller section titles */
    }

    .md\:text-3xl {
        font-size: 1.5rem;
    }

    .md\:text-right {
        text-align: center; /* Center text on mobile usually looks better */
    }
    
    /* Ensure text alignment in Route section is centered or natural on mobile */
    section .flex-col .text-right,
    section .flex-col-reverse .text-right {
        text-align: left;
    }

    /* Modal Mobile */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh; /* Prevent cut-off on small screens */
        overflow-y: auto; /* Allow scrolling inside modal */
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 0.5rem;
        right: 1rem;
    }
    
    /* Footer */
    footer .flex-col {
        gap: 1.5rem;
    }
}

/* Additional styles */
.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-\[-20\%\] {
    top: -20%;
}

.right-\[-10\%\] {
    right: -10%;
}

.top-\[40\%\] {
    top: 40%;
}

.bottom-\[-10\%\] {
    bottom: -10%;
}

.w-\[800px\] {
    width: 800px;
}

.h-\[800px\] {
    height: 800px;
}

.w-\[600px\] {
    width: 600px;
}

.h-\[600px\] {
    height: 600px;
}

.w-\[700px\] {
    width: 700px;
}

.h-\[700px\] {
    height: 700px;
}

.h-\[60px\] {
    height: 3.75rem;
}

.h-\[40px\] {
    height: 2.5rem;
}

.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.h-\[1px\] {
    height: 1px;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-4 {
    top: 1rem;
}

.-right-4 {
    right: -1rem;
}

.-left-4 {
    left: -1rem;
}

.-right-4 {
    right: -1rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.space-y-24 > * + * {
    margin-top: 6rem;
}

/* Image styles */
img {
    max-width: 100%;
    height: auto;
}

/* List styles */
ul {
    list-style-position: inside;
}

/* Link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Modal Styles */
.hidden {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Success Modal */
.success-modal-content {
    background: #e8eef3;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(206, 254, 59, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease-out;
    border: 2px solid #CEFE3B;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.checkmark {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke: #CEFE3B;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: #CEFE3B;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.75rem;
    color: #0E223E;
    margin-bottom: 0.75rem;
}

.success-message {
    font-family: var(--font-poppins);
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.success-btn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 1rem;
}

.modal-content {
    background: #e8eef3;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #0E223E;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #CEFE3B;
}

.modal-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.75rem;
    color: #0E223E;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    font-family: var(--font-poppins);
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.modal-form::-webkit-scrollbar {
    width: 6px;
}

.modal-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.modal-form::-webkit-scrollbar-thumb {
    background: #0E223E;
    border-radius: 3px;
}

.modal-form::-webkit-scrollbar-thumb:hover {
    background: #1a3a5c;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.modal-form .form-group label {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.85rem;
    color: #0E223E;
    letter-spacing: 0.02em;
}

.modal-form .form-group input::placeholder {
    color: #94a3b8;
}

.modal-form .form-group input {
    padding: 0.65rem 0.8rem;
    border: 1.5px solid #c5d1dc;
    border-radius: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    transition: all 0.3s;
    background-color: #fff;
    color: #0E223E;
}

.modal-form .form-group input:focus {
    border-color: #0E223E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 34, 62, 0.15);
    background-color: #fff;
}

.modal-form .form-group select {
    padding: 0.65rem 2rem 0.65rem 0.8rem;
    border: 1.5px solid #c5d1dc;
    border-radius: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    transition: all 0.3s;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230E223E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #0E223E;
}

.modal-form .form-group select:hover {
    border-color: #0E223E;
    background-color: #f8fafc;
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus {
    border-color: #0E223E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 34, 62, 0.15);
    background-color: #fff;
}

.modal-form .form-group select option {
    padding: 0.75rem 1rem;
    color: #0E223E;
    background-color: #fff;
    font-family: var(--font-poppins);
    font-size: 0.9rem;
}

.modal-form .form-group select option:hover,
.modal-form .form-group select option:focus,
.modal-form .form-group select option:checked {
    background-color: #0E223E !important;
    color: #CEFE3B !important;
}

.modal-form .form-group .error-message {
    display: block;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-family: var(--font-poppins);
}

.modal-form .form-group input.input-error,
.modal-form .form-group select.input-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.btn-modal-submit {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 0.8rem;
    border-radius: 1rem;
    background: linear-gradient(157.294deg, rgb(206, 254, 59) 21.006%, rgb(52, 199, 89) 100%);
    color: #0e223e;
    border: none;
    cursor: pointer;
    font-family: var(--font-poppins);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(206, 254, 59, 0.39);
}

.btn-modal-submit:hover {
    box-shadow: 0 6px 20px rgba(206, 254, 59, 0.23);
    transform: translateY(-2px);
}

/* Feature Modal */
.feature-modal-content {
    background: #0E223E;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(206, 254, 59, 0.3), 0 0 60px rgba(206, 254, 59, 0.15);
    max-width: 600px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
    border: 1px solid rgba(206, 254, 59, 0.3);
}

.feature-modal-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.75rem;
    color: #CEFE3B;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-modal-body {
    font-family: var(--font-poppins);
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
}

.feature-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-modal-body li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-modal-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #CEFE3B;
    font-weight: bold;
}

.feature-modal-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 1rem;
}

/* Cursor pointer for feature cards */

/* Carrusel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 34, 62, 0.7);
    color: #CEFE3B;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    font-size: 1.25rem;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.carousel-arrow:hover {
    background: rgba(206, 254, 59, 0.9);
    color: #0E223E;
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: #CEFE3B;
    transform: scale(1.2);
}

.cursor-pointer {
    cursor: pointer;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 34, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.fixed-bottom-bar.visible {
    transform: translateY(0);
}

.btn-fixed-bottom {
    background: linear-gradient(157.294deg, rgb(206, 254, 59) 21.006%, rgb(52, 199, 89) 100%);
    color: #0e223e;
    border: none;
    cursor: pointer;
    font-family: var(--font-poppins);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(206, 254, 59, 0.39);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1rem;
}

.btn-fixed-bottom:hover {
    box-shadow: 0 6px 20px rgba(206, 254, 59, 0.23);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .fixed-bottom-bar {
        padding: 0.75rem 1rem;
    }
    
    .btn-fixed-bottom {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
