        * {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .font-display {
            font-family: 'Montserrat', 'Poppins', sans-serif;
        }
        
        /* Loading Screen Styles */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #7c2d12, #991b1b, #78350f);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loading-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #ffa500, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 3rem;
            animation: logoGlow 2s ease-in-out infinite alternate;
            width: 200px;
            height: auto;
            overflow: hidden;
        }

        .loading-logo img{
            width: 100%;
        }
        
        @keyframes logoGlow {
            from {
                filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.5));
                transform: scale(1);
            }
            to {
                filter: drop-shadow(0 0 40px rgba(255, 165, 0, 0.8));
                transform: scale(1.05);
            }
        }
        
        .loading-spinner {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(255, 255, 255, 0.1);
            border-left: 4px solid #ff6b6b;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 2rem;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loading-text {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .loading-progress {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 1rem;
        }
        
        .loading-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b, #ffa500, #ffeb3b);
            border-radius: 2px;
            animation: loadingProgress 3s ease-in-out;
            transform: translateX(-100%);
        }
        
        @keyframes loadingProgress {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(0%); }
        }
        
        .loading-dots {
            display: flex;
            gap: 8px;
        }
        
        .loading-dot {
            width: 12px;
            height: 12px;
            background: #ff6b6b;
            border-radius: 50%;
            animation: loadingDots 1.4s ease-in-out infinite both;
        }
        
        .loading-dot:nth-child(1) { animation-delay: -0.32s; }
        .loading-dot:nth-child(2) { animation-delay: -0.16s; }
        .loading-dot:nth-child(3) { animation-delay: 0s; }
        
        @keyframes loadingDots {
            0%, 80%, 100% {
                transform: scale(0);
                opacity: 0.5;
            }
            40% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .sauce-drip {
            animation: drip 3s ease-in-out infinite;
            will-change: transform;
        }
        
        @keyframes drip {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(8px) scale(1.02); }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
            will-change: transform;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            33% { transform: translateY(-8px) rotate(1deg) scale(1.05); }
            66% { transform: translateY(4px) rotate(-1deg) scale(0.98); }
        }
        
        .slide-in-left {
            animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        @keyframes slideInLeft {
            from { transform: translateX(-60px); opacity: 0; filter: blur(4px); }
            to { transform: translateX(0); opacity: 1; filter: blur(0); }
        }
        
        .slide-in-right {
            animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        @keyframes slideInRight {
            from { transform: translateX(60px); opacity: 0; filter: blur(4px); }
            to { transform: translateX(0); opacity: 1; filter: blur(0); }
        }
        
        .fade-in-up {
            animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        @keyframes fadeInUp {
            from { transform: translateY(40px); opacity: 0; filter: blur(2px); }
            to { transform: translateY(0); opacity: 1; filter: blur(0); }
        }
        
        .pulse-glow {
            animation: pulseGlow 3s ease-in-out infinite;
            will-change: box-shadow;
        }
        
        @keyframes pulseGlow {
            0%, 100% { 
                box-shadow: 0 0 30px rgba(239, 68, 68, 0.4), 0 0 60px rgba(239, 68, 68, 0.1);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 50px rgba(239, 68, 68, 0.7), 0 0 100px rgba(239, 68, 68, 0.2);
                transform: scale(1.02);
            }
        }

       .mama-tee-top-tag {
    overflow: hidden;
    width: 300px;
    height: auto;
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .mama-tee-top-tag {
        width: 270px; /* smaller width for tablets */
    }
}

/* Small devices (mobiles, 480px and up) */
@media (max-width: 480px) {
    .mama-tee-top-tag {
        width: 250px; /* smaller width for small mobiles */
    }
}

/* Extra small devices (<320px) */
@media (max-width: 320px) {
    .mama-tee-top-tag {
        width: 150px; /* tiny phones */
    }
}


        .mama-tee-top-tagb{
            overflow: hidden;
            width: 200px;
            height: auto;
        }

        .stroke-white {
                text-shadow:
                2px 0 0 white,
                -2px 0 0 white,
                0 2px 0 white,
                0 -2px 0 white,
                1px 1px 0 white,
                -1px -1px 0 white,
                1px -1px 0 white,
                -1px 1px 0 white;
        }
        
        .glass-morphism {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .leading-extra{
            line-height: 1.3 !important;
        }
        
        .text-shadow-glow {
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .text-smer{
            font-size: 10px;
        }

        .text-smar{
            font-size: 17px;
        }
        
        .smooth-scroll {
            scroll-behavior: smooth;
        }
        
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        @media (max-width: 768px) {
            .parallax-bg {
                background-attachment: scroll;
            }
             .text-smar{
            font-size: 13px;
        }
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(30px);
            animation: modalFadeIn 0.5s ease-out;
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            margin: 0;
            padding: 0;
            border-radius: 32px;
            width: 100%;
            max-width: 1200px;
            max-height: 95vh;
            overflow: hidden;
            animation: modalSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 
                0 40px 80px -20px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.9);
        }
        
        @keyframes modalSlideIn {
            from { 
                transform: translateY(100px) scale(0.8); 
                opacity: 0; 
                filter: blur(20px);
            }
            to { 
                transform: translateY(0) scale(1); 
                opacity: 1; 
                filter: blur(0);
            }
        }
        
        .modal-header {
            background: linear-gradient(135deg, #165A99 0%, #A82925 100%);
            padding: 3rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }
         .modal-head{
            background: linear-gradient(135deg, #165A99 0%, #A82925 100%);
         }
        
        .modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }
        
        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 10;
        }
        
        .modal-close:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1) rotate(90deg);
            border-color: rgba(255, 255, 255, 0.4);
        }
        
        .tutorial-hero {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index:10;
        }
        
        .recipe-icon {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            flex-shrink: 0;
            animation: float 3s ease-in-out infinite;
        }
        
        .recipe-title {
            color: white;
            margin: 0;
        }
        
        .recipe-meta {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-weight: 500;
        }

        .btn-icn{
            width: 25px;
            height: 25px;
            overflow: hidden;
        }
        .btn-icn img{
            width: 100%;
        }
                /* Modal Styles */
            .modalA {
                transition: all 0.3s ease;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                z-index: 500;
            }
            .modalA.show {
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto;
            }
            .modalA.show > div {
                transform: scale(1) !important;
            }

            /* .del-areas{
                padding-bottom: 20%;
            } */

            .del-areas::-webkit-scrollbar {
            width: 8px;
            }

            .del-areas::-webkit-scrollbar-track {
            background: #f2e4c7; /* mama-cream */
            border-radius: 8px;
            }

            .del-areas::-webkit-scrollbar-thumb {
            background: #165a99; /* mama-blue */
            border-radius: 8px;
            }

            .del-areas::-webkit-scrollbar-thumb:hover {
            background: #a82925; /* mama-red */
            }

            /* Firefox support */
            .del-areas {
            scrollbar-width: thin;
            scrollbar-color: #165a99 #f2e4c7;
            }




        
        .modal-body {
            padding: 3rem;
            color: #1f2937;
            max-height: 60vh;
            overflow-y: auto;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
        }
        
        .modal-body::-webkit-scrollbar {
            width: 5px;
        }
        
        .modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 6px;
        }
        
        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 6px;
        }
        
        .tutorial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .video-section {
            position: relative;
        }
        
        .video-container {
            position: relative;
            background: linear-gradient(135deg, #165A99 0%, #0e4578 100%);
            border-radius: 24px;
            aspect-ratio: 16/9;
            height: fit-content;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            border: none;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .video-container:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }
        
        iframe {
            border-radius: 20px;
        }
        
        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #A82925 0%, #0e4578 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.5s ease;
        }
        
        .video-container:hover .video-overlay {
            background: linear-gradient(135deg, #165A99, #A82925);
        }
        
        .play-button {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            border: 3px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            animation: playButtonPulse 3s ease-in-out infinite;
        }
        
        @keyframes playButtonPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            50% { 
                transform: scale(1.1);
                box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            }
        }
        
        .video-container:hover .play-button {
            transform: scale(1.2);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
        }
        
        .video-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .video-description {
            text-align: center;
            opacity: 0.9;
            max-width: 300px;
            line-height: 1.5;
        }
        
        .recipe-details {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .section-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .section-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #165A99, #A82925);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }
        
        .ingredient-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 0.75rem;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .ingredient-item:hover {
            background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
            border-color: #165A99;
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
        }
        
        .ingredient-name {
            font-weight: 600;
            color: #374151;
        }
        
        .ingredient-amount {
            font-weight: 700;
            color: #165A99;
            background: rgba(102, 126, 234, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
        }
        
        .instruction-step {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            margin-bottom: 1rem;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .instruction-step:hover {
            background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
            border-color: #165A99;
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(118, 75, 162, 0.15);
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #165A99, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        
        .step-text {
            font-weight: 500;
            color: #374151;
            line-height: 1.6;
            padding-top: 0.5rem;
        }
        
        .modal-actions {
            padding: 2rem 3rem 3rem;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border-top: 2px solid #e2e8f0;
        }
        
        .action-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .action-button {
            flex: 1;
            min-width: 200px;
            padding: 1rem 2rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }
        
        .action-button.primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }
        
        .action-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }
        
        .action-button.secondary {
            background: linear-gradient(135deg, #f1f5f9, #ffffff);
            color: #374151;
            border: 2px solid #e2e8f0;
        }
        
        .action-button.secondary:hover {
            background: linear-gradient(135deg, #e2e8f0, #f8fafc);
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }
        
        
        @media (max-width: 1024px) {
            .tutorial-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .modal-body {
                padding: 2rem;
            }
            
            .modal-header {
                padding: 2rem 1.5rem 1.5rem;
            }
            
            .tutorial-hero {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            
            .recipe-icon {
                width: 100px;
                height: 100px;
                font-size: 3rem;
            }
            
            .recipe-title {
                font-size: 3rem !important;
            }
        }
        
        @media (max-width: 768px) {
            .modal-content {
                width: 98%;
                margin: 1% auto;
                max-height: 98vh;
                border-radius: 24px;
            }
            
            .modal-actions {
                padding: 1.5rem 2rem 2rem;
            }
            
            .action-buttons {
                flex-direction: row;
            }
            
            .action-button {
                min-width: auto;
                width: 100%;
            }
            
            .recipe-meta {
                justify-content: center;
                gap: 1rem;
            }
            
            .meta-item {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
            .recipe-detail{
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .modal-content {
                width: 100%;
                height: 100vh;
                max-height: 100vh;
                margin: 0;
                border-radius: 0;
            }
            
            .modal-header {
                padding: 1.5rem 1rem 1rem;
                padding-top: 4rem;
            }
            
            .modal-body {
                padding: 1rem;
                max-height: calc(100vh - 50px);
                padding-bottom: 8rem !important;
            }
            
            .recipe-title {
                font-size: 1.3rem !important;
                line-height: 1.2;
            }
            
            .recipe-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.25rem;
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
            
            .section-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            
            .modal-close {
                width: 40px;
                height: 40px;
                top: 2.75rem;
                right: 0.75rem;
                font-size: 1.25rem;
            }
            
            .tutorial-hero {
                gap: 1rem;
                margin: 0;
            }
            
            .recipe-meta {
                gap: 0.5rem;
            }
            
            .meta-item {
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
            }
            
            .ingredient-item, .instruction-step {
                padding: 1rem;
                margin-bottom: 0.5rem;
            }
            
            .ingredient-name, .step-text {
                font-size: 0.7rem;
            }
            
            .ingredient-amount {
                padding: 0.375rem 0.75rem;
                font-size: 0.6rem;
                text-align: center;
            }
            
            .step-number {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            
            .video-container {
                aspect-ratio: 16/10;
            }
            
            .play-button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .video-title {
                font-size: 1rem;
            }
            
            .video-description {
                font-size: 0.7rem;
                max-width: 250px;
            }
            
            .modal-actions {
                padding: 0.5rem;
                padding-bottom: 2rem;
                position: absolute;
                bottom: 2%;
                width: 100%;
            }
            
            .action-button {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
                min-width: auto;
            }
            .tutorial-grid ul{
                font-size: 13px;
            }
        }
        
        @media (max-width: 360px) {
            .recipe-title {
                font-size: 1rem !important;
            }
            
            .recipe-icon {
                width: 50px;
                height: 50px;
                font-size: 1.75rem;
            }
            
            .modal-body {
                padding: 0.75rem;
            }
            
            .ingredient-item, .instruction-step {
                padding: 0.75rem;
            }
            
            .section-title {
                font-size: 1.125rem;
            }
        }

        
        
        /* .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
        } */

         .whatsapp-float-b {
            position: fixed;
            width: 120px;
            height: auto;
            bottom: 50px;
            right: 10px;
            color: #FFF;
            border-radius: 50px;
            z-index: 10;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-float-b img{
            width: 100%;
        }
        
        .whatsapp-float-b:hover {
            transform: scale(1.1);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .btn-hover {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-hover:hover::before {
            left: 100%;
        }

        .act-btn{
            gap: 7px;
        }
        
        .gradient-text {
            background: linear-gradient(45deg, #ef4444, #f97316, #eab308);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .flutter-icon {
            width: 24px;
            height: auto;
            display: inline-block;
            }

            .flutter-iconb {
            width: 18px;
            height: auto;
            display: inline-block;
            margin-right: 5px;
            }


                    @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .popup-enter {
            animation: slideIn 0.6s ease-out;
        }
        
        .overlay-enter {
            animation: fadeIn 0.4s ease-out;
        }
        
        .manatee-gradient {
            background: linear-gradient(135deg, #165A99 0%, #A82925 100%);
        }
        
        .ocean-gradient {
            background: linear-gradient(135deg, #165A99 0%, #A82925 50%, #ECB431 100%);
        }
        
        .floating-label {
            position: relative;
        }
        
        .floating-label input,
        .floating-label textarea,
        .floating-label select {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        
        .floating-label label {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
            pointer-events: none;
            color: #9ca3af;
            font-weight: 500;
        }
        
        .floating-label textarea + label {
            top: 1.5rem;
            transform: translateY(0);
        }
        
        .floating-label input:focus + label,
        .floating-label input:not(:placeholder-shown) + label,
        .floating-label textarea:focus + label,
        .floating-label textarea:not(:placeholder-shown) + label,
        .floating-label select:focus + label,
        .floating-label select:not([value=""]) + label {
            top: -15px;
            transform: translateY(0);
            font-size: 0.75rem;
            color: #165A99;
            background: white;
            padding: 3px;
            border-radius: 5px;
            font-weight: 600;
        }
        
        .input-valid {
            border-color: #10b981 !important;
            background-image: url("data:image/svg+xml,%3csvg width='16' height='16' fill='%2310b981' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 3rem;
        }
        
        .input-invalid {
            border-color: #ef4444 !important;
            background-image: url("data:image/svg+xml,%3csvg width='16' height='16' fill='%23ef4444' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 3rem;
        }
        
        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .error-message.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .progress-bar {
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #165A99, #ECB431);
            width: 0%;
            transition: width 0.5s ease;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        
        .shake {
            animation: shake 0.5s ease-in-out;
        }
        #manateeForm label{
            display: flex;
            align-items: center;
            gap: 4px;
        }




        