body {
    background-color: #0f172a;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}
        
.gradient-text {
    background: linear-gradient(135deg, #67b49b 0%, #582737 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
        
.glass-card {
    background: rgba(26, 54, 45, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(103, 180, 155, 0.1);
}
        
.glow {
    box-shadow: 0 0 40px rgba(88, 39, 55, 0.3);
}
        
.nav-link {
    position: relative;
}
        
.nav-link::after {
    content: '';
    position: absolute;width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #67b49b;
    transition: width 0.3s ease;
}
        
.nav-link:hover::after {
    width: 100%;
}
        
.project-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
        
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(88, 39, 55, 0.4);
}
        
.btn-primary {
    background: linear-gradient(135deg, #582737 0%, #381b24 100%);
    transition: all 0.3s ease;
}
        
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 39, 55, 0.5);
}
        
.btn-secondary {
    border: 1px solid rgba(103, 180, 155, 0.3);
    transition: all 0.3s ease;
}
        
.btn-secondary:hover {
    background: rgba(103, 180, 155, 0.1);
    border-color: #67b49b;
}
        
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
        
.floating {
    animation: float 6s ease-in-out infinite;
}
        
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
 }
        
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
        
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
        
.tag {
    background: rgba(88, 39, 55, 0.3);
    border: 1px solid rgba(88, 39, 55, 0.5);
}
        
.input-field {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(103, 180, 155, 0.2);
    transition: all 0.3s ease;
}
        
.input-field:focus {
    outline: none;
    border-color: #67b49b;
    box-shadow: 0 0 0 3px rgba(103, 180, 155, 0.1);
}
        
.stat-card {
    background: linear-gradient(135deg, rgba(26, 54, 45, 0.6) 0%, rgba(42, 88, 74, 0.4) 100%);
}

.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px 10px;
    padding: 40px;
    width: 100%;
}

.wavy-circle {
    width: 100px;
    height: 100px;
    background: rgba(26, 54, 45, 0.4);
    border: 1px solid rgba(103, 180, 155, 0.1);
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    position: relative;
    animation: float 3s ease-in-out infinite, wavy 8s linear infinite;
    box-shadow: 0 10px 30px rgba(26, 61, 46, 0.3);
    align-items: center;
    justify-content: center;
}

.wavy-circle:hover {
    transition: all 0.3s ease;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 39, 55, 0.4);
}

@keyframes wavy {
    0% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
    25% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
    50% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
    75% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
    100% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
}

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

        /* Stagger animations for organic feel */
.wavy-circle:nth-child(1) { animation-delay: 0s, 0s; }
.wavy-circle:nth-child(2) { animation-delay: 0.5s, 0.5s; }
.wavy-circle:nth-child(3) { animation-delay: 1s, 1s; }
.wavy-circle:nth-child(4) { animation-delay: 0.3s, 0.3s; }
.wavy-circle:nth-child(5) { animation-delay: 0.8s, 0.8s; }
.wavy-circle:nth-child(6) { animation-delay: 1.3s, 1.3s; }
.wavy-circle:nth-child(7) { animation-delay: 0.6s, 0.6s; }
.wavy-circle:nth-child(8) { animation-delay: 1.1s, 1.1s; }
.wavy-circle:nth-child(9) { animation-delay: 0.2s, 0.2s; }
.wavy-circle:nth-child(10) { animation-delay: 0.7s, 0.7s; }

        /* Position circles to match image layout */
.wavy-circle:nth-child(1) { grid-column: 1; grid-row: 1; }
.wavy-circle:nth-child(2) { grid-column: 3; grid-row: 1; }
.wavy-circle:nth-child(3) { grid-column: 5; grid-row: 1; }
.wavy-circle:nth-child(4) { grid-column: 2; grid-row: 2; }
.wavy-circle:nth-child(5) { grid-column: 4; grid-row: 2; }
.wavy-circle:nth-child(6) { grid-column: 1; grid-row: 3 }
.wavy-circle:nth-child(7) { grid-column: 3; grid-row: 3; }
.wavy-circle:nth-child(8) { grid-column: 5; grid-row: 3; }
.wavy-circle:nth-child(9) { grid-column: 2; grid-row: 4; }
.wavy-circle:nth-child(10) { grid-column: 4; grid-row: 4; }

/* .down-arrow {
    bottom: -88px;
} */