body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.full-height-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(181,208,207,0.3) 100%);
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.bounce-hover:hover {
    animation: bounce 0.5s;
}

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

.pulse-hover:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.about-bg {
    background-color: #e0f7fa;
}

.accent-color {
    color: #00bcd4;
}

.dark-text {
    color: #263238;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-link {
    position: relative;
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #81dbdf;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.active::after {
    width: 100%;
}

@media (max-width: 1023px) {
    .bg-gradient-to-br {
        background: linear-gradient(to bottom, #b2ebf2, #f5e8da);
    }
    
    .full-height-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .full-height-section {
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 4rem;
    }
}

#typewriter {
    border-right: 2px solid white;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        border-color: white;
    }
    51%, 100% {
        border-color: transparent;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #0891b2, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .brand-statement .flex {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-statement img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(-5px); }
}

.animate-fade-in-out {
    animation: fadeInOut 4s ease-in-out infinite;
}

@supports not (backdrop-filter: blur(10px)) {
    .backdrop-blur-sm {
        background-color: rgba(255, 255, 255, 0.9);
    }
}