/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00b8e6, #5a4cb2);
}

/* === Navigation === */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff !important;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #6a5acd);
    transition: width 0.3s ease;
}

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

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    margin-bottom: 20px;
}

.badge-text {
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00d4ff, #6a5acd, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-word {
    display: block;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(106, 90, 205, 0.5));
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
}

.stat-label {
    color: #c0c0c0;
    font-size: 0.9rem;
}

/* === Buttons === */
.btn-primary-custom {
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid #00d4ff;
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: 600;
    color: #00d4ff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
}

.btn-outline-custom:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* === Sections Common Styles === */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #c0c0c0;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* === Services Section === */
.services-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.service-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: #00d4ff;
    margin-bottom: 25px;
    display: block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #6a5acd;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-description {
    color: #c0c0c0;
    line-height: 1.6;
}

/* === Portfolio Section === */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(106,90,205,0.03)" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.empty-state {
    padding: 60px 20px;
    text-align: center;
}

.portfolio-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7));
    border: 1px solid rgba(106, 90, 205, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(106, 90, 205, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.portfolio-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.portfolio-description {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(106, 90, 205, 0.2));
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(106, 90, 205, 0.3));
    transform: translateY(-2px);
}

.project-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary-custom.btn-sm {
    padding: 8px 20px;
}

.btn-outline-custom.btn-sm {
    padding: 6px 12px;
    border-width: 1px;
}

/* === Contact Section === */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(0,212,255,0.02)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.contact-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card-title {
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-left: 20px;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item-title {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item-text {
    color: #c0c0c0;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Form Styles === */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: #ffffff;
    outline: none;
}

.form-control::placeholder {
    color: rgba(192, 192, 192, 0.6);
}

.form-control:invalid:not(:focus) {
    border-color: rgba(244, 67, 54, 0.3);
}

.form-check {
    margin-top: 20px;
}

.form-check-input {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.form-check-input:checked {
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    border-color: #00d4ff;
}

.form-check-label {
    color: #c0c0c0;
    font-size: 0.9rem;
    margin-right: 8px;
}

.form-check-label a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-check-label a:hover {
    color: #6a5acd;
}

.form-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === Footer === */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(106, 90, 205, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: #00d4ff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(106, 90, 205, 0.4));
    color: #ffffff;
}

.contact-card .social-links {
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-card .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

/* === Floating Buttons === */
.add-project-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    transition: all 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.add-project-btn:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    color: white;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

/* === Modal Styles === */
.modal {
    backdrop-filter: blur(15px);
}

.modal-content {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.98));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    color: #ffffff;
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding: 25px 30px 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px 20px 0 0;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-body {
    padding: 30px;
    background: rgba(10, 10, 10, 0.8);
}

.modal-footer {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px 30px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 0 0 20px 20px;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.modal .form-label {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.modal .form-control {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal .form-control:focus {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.3rem rgba(0, 212, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.modal .form-control::placeholder {
    color: rgba(192, 192, 192, 0.6);
}

.modal select.form-control {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
}

.modal select.form-control option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 10px;
}

.modal select.form-control:focus {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
}

.modal-backdrop {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.8));
    backdrop-filter: blur(10px);
}

.modal-backdrop.show {
    opacity: 1;
}

.modal .btn-secondary {
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: #c0c0c0;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.modal .btn-secondary:hover {
    background: rgba(192, 192, 192, 0.2);
    border-color: rgba(192, 192, 192, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.modal .btn-primary-custom {
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.modal .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.form-group:focus-within .form-label {
    color: #6a5acd;
    transform: translateX(-5px);
}

.modal .text-muted {
    color: rgba(192, 192, 192, 0.7) !important;
    font-size: 0.85rem;
    margin-top: 5px;
}

.modal.fade .modal-content {
    transform: translateY(-50px) scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* === Animation for new projects === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-card.new-project {
    animation: fadeInUp 0.6s ease-out;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .portfolio-card,
    .contact-card {
        margin-bottom: 20px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .contact-card,
    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        font-size: 1.3rem;
        margin-left: 15px;
        width: 40px;
    }

    .form-control {
        padding: 12px 15px;
    }

    .modal-content {
        margin: 20px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .modal .form-control {
        padding: 12px 15px;
    }

    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-card {
        margin-bottom: 20px;
    }

    .portfolio-content {
        padding: 20px;
    }

    .portfolio-title {
        font-size: 1.2rem;
    }

    .project-actions {
        justify-content: center;
    }

    .empty-state {
        padding: 40px 20px;
    }
}

.loading-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-card-title,
    .contact-form-title {
        font-size: 1.3rem;
    }
}

/* === Smooth Fade & Entrance Animations === */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section,
.service-card,
.portfolio-card {
    opacity: 0;
    transform: translateY(40px);
}

/* === Fade for Messages === */
#messages .alert {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#messages .alert.fade {
    opacity: 0;
    transform: translateY(-10px);
}

/* === Scroll-to-Top Button Enhancement === */
.scroll-to-top {
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* === Project Entry Animation (already exists but enhanced) === */

.portfolio-card.new-project {
    animation: fadeInUp 0.7s ease-out forwards;
}

/* === Navbar transition improvement === */
.navbar {
    transition: background 0.4s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
