
.logo-text {
font-family: 'Poppins', sans-serif;
letter-spacing: -0.5px;
padding-bottom: 4px;
}

@media (max-width: 640px) {
.logo-text span {
font-size: 1.5rem;
}
}
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

.animate-wiggle:hover {
    animation: wiggle 0.4s ease-in-out;
    transform-origin: center bottom;
}

#typingName {
    border-right: 2px solid white;
    width: fit-content;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes blinkCursor {
    0% { border-right-color: white; }
    50% { border-right-color: transparent; }
    100% { border-right-color: white; }
}

#typingName {
    animation: blinkCursor 0.75s steps(1) infinite;
}

@keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

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

.animate-slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.profile {
    filter: drop-shadow(1px 1px 20px rgba(206, 251, 227, 0.7));
    transition: transform 0.3s ease;
}

.profile:hover {
    transform: scale(1.05);
}

.skill-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-card img {
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.contact-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #cefbe3;
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #18506b, #26533e);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2) rotate(5deg);
}

.header-scroll {
    background: rgba(38, 83, 62, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #cefbe3, transparent);
    border-radius: 3px;
}

.tech-tag {
    transition: all 0.2s ease;
}

.tech-tag:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.7) !important;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #0d1f18, #1a3a2e);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #cefbe3;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

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

.close-modal {
    color: #cefbe3;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #f9f871;
    transform: rotate(90deg);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.project-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #cefbe3;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.project-features {
    margin: 1.5rem 0;
}

.project-features ul {
    list-style-type: none;
    padding-left: 0;
}

.project-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.project-features li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #cefbe3;
}

.modal-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.modal-tech-tag {
    background: rgba(206, 251, 227, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.modal-tech-tag span {
    width: 8px;
    height: 8px;
    background: #cefbe3;
    border-radius: 50%;
}

.modal-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-links a {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-links .live-link {
    background: #cefbe3;
    color: #1a3a2e;
}

.modal-links .live-link:hover {
    background: #f9f871;
}

.modal-links .code-link {
    border: 1px solid #cefbe3;
    color: #cefbe3;
}

.modal-links .code-link:hover {
    background: rgba(206, 251, 227, 0.1);
}
