﻿@layer utilities {
    .content-auto {
        content-visibility: auto;
    }

    .text-shadow {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .transition-custom {
        transition: all 0.3s ease;
    }

    .scrollbar-hide::-webkit-scrollbar {
        display: none;
    }

    .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
  
}
mail{
    margin:0 auto;
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.skill-bar {
    position: relative;
    height: 8px;
    border-radius: 4px;
    background-color: #E2E8F0;
    overflow: hidden;
}

.skill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #3B82F6;
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
    width: 0;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.05);
}