* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #4f46e5, #7c3aed, #db2777);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4f46e5;
        }



body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.section-padding {
    padding: 5rem 1.5rem;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.skill-bar {
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.skill-progress {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transition: width 1.5s ease-in-out;
}

.blog-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

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

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag-angular {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.tag-node {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.tag-spring {
    background-color: #dcfce7;
    color: #166534;
}

.nav-link {
    position: relative;
}

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

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

input {
    color: #374151 !important;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

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

.blog-body {
    overflow-y: auto;
    padding: 1.5rem;
}

.blog-body h1,
.blog-body h2,
.blog-body h3,
.blog-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #111827;
}

.blog-body p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.blog-body ul {
    margin: 0.5rem 0 1rem 1.25rem;
    color: #4b5563;
    list-style: disc;
}

.blog-body pre {
    background: #0f172a;
    color: #e5e7eb;
    padding: 1rem;
    border-radius: 12px;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.blog-body code {
    background: #eef2ff;
    color: #312e81;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
}

/* Testimonials Slider */
.testimonials-track {
    will-change: transform;
}

.testimonial-slider {
    padding: 2rem 0;
}

.testimonial-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    transform: scale(1.2);
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 1rem;
    }
}
