/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
}

.logo span {
    color: #4f46e5;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4f46e5;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4f46e5;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4a5568;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 70px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-icon {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #4f46e5;
    color: white;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}

.btn-secondary:hover {
    background-color: #4f46e5;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}

.btn-outline:hover {
    background-color: #4f46e5;
    color: white;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 25px 25px 15px;
    display: flex;
    align-items: center;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 32px;
}

.service-title {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 700;
}

.service-desc {
    padding: 0 25px 20px;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-list {
    padding: 0 25px;
    margin-bottom: 25px;
}

.features-list li {
    color: #475569;
    margin-bottom: 8px;
    padding-left: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #4f46e5;
    margin-right: 8px;
    font-size: 0.8rem;
}



/* Service Card Colors */
.social-marketing .icon-wrapper { background-color: #e0f2fe; color: #0369a1; }
.social-marketing .service-tag { background-color: #dbeafe; color: #1e40af; }

.web-dev .icon-wrapper { background-color: #fef3c7; color: #d97706; }
.web-dev .service-tag { background-color: #fef3c7; color: #92400e; }

.digital-tools .icon-wrapper { background-color: #fce7f3; color: #be185d; }
.digital-tools .service-tag { background-color: #fce7f3; color: #9d174d; }

.graphic-design .icon-wrapper { background-color: #dcfce7; color: #15803d; }
.graphic-design .service-tag { background-color: #dcfce7; color: #166534; }

.content-creation .icon-wrapper { background-color: #f3e8ff; color: #7c3aed; }
.content-creation .service-tag { background-color: #f3e8ff; color: #6d28d9; }

.seo .icon-wrapper { background-color: #ffe4e6; color: #e11d48; }
.seo .service-tag { background-color: #ffe4e6; color: #be123c; }

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.web-badge { background-color: #4f46e5; }
.ecommerce-badge { background-color: #10b981; }
.mobile-badge { background-color: #f59e0b; }
.cms-badge { background-color: #ec4899; }

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    padding: 5px 12px;
    background-color: #f1f5f9;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-grow: 1;
    text-align: center;
}

.live-link {
    background-color: #4f46e5;
    color: white;
}

.live-link:hover {
    background-color: #4338ca;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 2rem;
    color: #4f46e5;
    width: 60px;
    height: 60px;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.contact-item p {
    color: #64748b;
}

/* WhatsApp Section */
.whatsapp-section {
    text-align: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 50px 30px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.whatsapp-section:after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.whatsapp-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background-color: white;
    color: #25D366;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    line-height: 90px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.whatsapp-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.whatsapp-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #075E54;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #f8fafc;
}

.whatsapp-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col h3 span {
    color: #4f46e5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Lazy Loading */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}
/* ========== About/Portfolio Section ========== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234f46e5" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.intro-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #4f46e5;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.intro-card h3 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.highlight {
    color: #4f46e5;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(79, 70, 229, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.intro-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.experience-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
}

.exp-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-item i {
    font-size: 2.5rem;
    color: #4f46e5;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-item h4 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.exp-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* About Image Styles */
.about-image {
    animation: fadeInRight 1s ease;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.profile-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .profile-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ========== Skills Section ========== */
.skills-section {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-top: 60px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skills-title {
    font-size: 2.2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.skills-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
    animation: lineExpand 1s ease-out 0.5s both;
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.skills-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.skills-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Skill Item Styling */
.skill-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: skillSlideIn 0.6s ease forwards;
}

.skills-column:nth-child(2) .skill-item {
    transform: translateX(20px);
}

@keyframes skillSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered animations for skills */
.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.2s; }
.skill-item:nth-child(3) { animation-delay: 0.3s; }
.skill-item:nth-child(4) { animation-delay: 0.4s; }

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    position: relative;
    padding-left: 25px;
}

.skill-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 3px;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.skill-percent {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Skill Bar Container */
.skill-bar {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skill-progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.2) 10px,
        rgba(255, 255, 255, 0.2) 20px
    );
    opacity: 0.3;
}

/* Animated Progress Bar */
.skill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, 
        #4f46e5 0%, 
        #7c3aed 50%, 
        #ec4899 100%);
    border-radius: 6px;
    transition: width 2s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    position: relative;
    overflow: hidden;
}

.skill-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 5px,
        rgba(255, 255, 255, 0.1) 5px,
        rgba(255, 255, 255, 0.1) 10px
    );
    border-radius: 6px;
}

/* Hover Effects */
.skill-item:hover .skill-name {
    color: #4f46e5;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.skill-item:hover .skill-percent {
    background: #4f46e5;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.skill-item:hover .skill-progress {
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.7);
}

/* Add More Skills Button */
.add-skills-btn {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
}

.add-skills-btn .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.add-skills-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

.add-skills-btn .btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.add-skills-btn .btn:hover i {
    transform: rotate(90deg);
}

/* Hidden Skills */
.hidden-skills {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #e2e8f0;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-skills.show {
    display: grid;
}

/* Responsive Design */
@media (max-width: 992px) {
    .skills-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hidden-skills {
        grid-template-columns: 1fr;
    }
    
    .skills-section {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .skills-title {
        font-size: 1.8rem;
    }
    
    .skill-name {
        font-size: 1rem;
    }
    
    .skill-percent {
        font-size: 1rem;
        padding: 4px 12px;
    }
}

/* Progress Bar Glow Animation */
@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(79, 70, 229, 0.8);
    }
}

.skill-progress.animated {
    animation: progressGlow 2s infinite;
}

/* ========== Dark Mode Styles ========== */
/* ========== Dark Mode Styles ========== */
.dark-mode {
    background-color: #0f172a !important;
    color: #e2e8f0 !important;
}

.dark-mode .navbar {
    background-color: #1e293b !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.dark-mode .logo {
    color: #ffffff !important;
}

.dark-mode .logo span {
    color: #818cf8 !important;
}

.dark-mode .nav-menu a {
    color: #cbd5e1 !important;
}

.dark-mode .nav-menu a:hover,
.dark-mode .nav-menu a.active {
    color: #818cf8 !important;
}

.dark-mode .nav-menu a.active::after {
    background-color: #818cf8 !important;
}

.dark-mode .hero {
    background: linear-gradient(135deg, #3730a3 0%, #7c3aed 100%) !important;
}

.dark-mode .hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode .hero p {
    color: #e2e8f0 !important;
}

.dark-mode .hero-buttons .btn-primary {
    background-color: #818cf8 !important;
    color: #ffffff !important;
}

.dark-mode .hero-buttons .btn-primary:hover {
    background-color: #6366f1 !important;
}

.dark-mode .hero-buttons .btn-secondary {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.dark-mode .hero-buttons .btn-secondary:hover {
    background-color: #ffffff !important;
    color: #0f172a !important;
}

.dark-mode .services-section {
    background-color: #1e293b !important;
}

.dark-mode .section-title {
    color: #ffffff !important;
}

.dark-mode .section-subtitle {
    color: #cbd5e1 !important;
}

.dark-mode .service-card {
    background: #334155 !important;
    border-color: #475569 !important;
}

.dark-mode .service-title {
    color: #ffffff !important;
}

.dark-mode .service-desc {
    color: #cbd5e1 !important;
}

.dark-mode .features-list li {
    color: #cbd5e1 !important;
}

.dark-mode .features-list li i {
    color: #818cf8 !important;
}

.dark-mode .service-tag {
    color: #ffffff !important;
    font-weight: 700;
}

.dark-mode .social-marketing .service-tag { background-color: #1d4ed8 !important; }
.dark-mode .web-dev .service-tag { background-color: #b45309 !important; }
.dark-mode .digital-tools .service-tag { background-color: #be185d !important; }
.dark-mode .graphic-design .service-tag { background-color: #15803d !important; }
.dark-mode .content-creation .service-tag { background-color: #7c3aed !important; }
.dark-mode .seo .service-tag { background-color: #be123c !important; }

.dark-mode .projects-section {
    background-color: #0f172a !important;
}

.dark-mode .filter-btn {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #cbd5e1 !important;
}

.dark-mode .filter-btn:hover,
.dark-mode .filter-btn.active {
    background-color: #818cf8 !important;
    color: white !important;
    border-color: #818cf8 !important;
}

.dark-mode .project-card {
    background: #334155 !important;
}

.dark-mode .project-title {
    color: #ffffff !important;
}

.dark-mode .project-description {
    color: #cbd5e1 !important;
}

.dark-mode .tech-tag {
    background-color: #475569 !important;
    color: #e2e8f0 !important;
}

.dark-mode .live-link {
    background-color: #818cf8 !important;
    color: white !important;
}

.dark-mode .live-link:hover {
    background-color: #6366f1 !important;
}

.dark-mode .view-all .btn {
    color: #818cf8 !important;
    border-color: #818cf8 !important;
}

.dark-mode .view-all .btn:hover {
    color: #ffffff !important;
    background-color: #818cf8 !important;
}

.dark-mode .about-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
}

.dark-mode .intro-card {
    background: #334155 !important;
    border-left-color: #818cf8 !important;
}

.dark-mode .intro-card h3 {
    color: #ffffff !important;
}

.dark-mode .highlight {
    color: #818cf8 !important;
}

.dark-mode .intro-card p {
    color: #cbd5e1 !important;
}

.dark-mode .exp-item i {
    color: #818cf8 !important;
}

.dark-mode .exp-item h4 {
    color: #ffffff !important;
}

.dark-mode .exp-item p {
    color: #cbd5e1 !important;
}
.darkmode #about .section-title {
    color: #ffffff;
}

.dark-mode .about-buttons .btn-primary {
    background-color: #818cf8 !important;
    color: #ffffff !important;
}

.dark-mode .about-buttons .btn-outline {
    color: #818cf8 !important;
    border-color: #818cf8 !important;
}

.dark-mode .about-buttons .btn-outline:hover {
    background-color: #818cf8 !important;
    color: #ffffff !important;
}

.dark-mode .skills-section {
    background: #334155 !important;
}

.dark-mode .skills-title {
    color: #ffffff !important;
}

.dark-mode .skills-subtitle {
    color: #cbd5e1 !important;
}

.dark-mode .skill-name {
    color: #ffffff !important;
}

.dark-mode .skill-percent {
    color: #818cf8 !important;
    background: rgba(129, 140, 248, 0.15) !important;
}

.dark-mode .skill-bar {
    background: #475569 !important;
}

.dark-mode .skill-progress {
    background: linear-gradient(90deg, #818cf8, #c084fc) !important;
}

.dark-mode .add-skills-btn .btn {
    color: #818cf8 !important;
    border-color: #818cf8 !important;
}

.dark-mode .add-skills-btn .btn:hover {
    color: #ffffff !important;
    background-color: #818cf8 !important;
}

.dark-mode .contact-section {
    background-color: #1e293b !important;
}

.dark-mode .contact-item h3 {
    color: #ffffff !important;
}

.dark-mode .contact-item p {
    color: #cbd5e1 !important;
}

.dark-mode .whatsapp-section {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
}

.dark-mode .whatsapp-title {
    color: #ffffff !important;
}

.dark-mode .whatsapp-text {
    color: #e2e8f0 !important;
}

.dark-mode .whatsapp-button {
    background-color: white !important;
    color: #075E54 !important;
}

.dark-mode .whatsapp-button:hover {
    background-color: #f8fafc !important;
    color: #128C7E !important;
}

.dark-mode .whatsapp-note {
    color: #e2e8f0 !important;
}

.dark-mode .contact-button {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.dark-mode .contact-button:hover {
    color: #128C7E !important;
    background-color: #ffffff !important;
}

.dark-mode .footer {
    background-color: #0f172a !important;
}

.dark-mode .footer-col h3,
.dark-mode .footer-col h4 {
    color: #ffffff !important;
}

.dark-mode .footer-col h3 span {
    color: #818cf8 !important;
}

.dark-mode .footer-col a {
    color: #cbd5e1 !important;
}

.dark-mode .footer-col a:hover {
    color: #ffffff !important;
}

.dark-mode .footer-col p {
    color: #cbd5e1 !important;
}

.dark-mode .footer-bottom {
    color: #94a3b8 !important;
    border-top-color: #334155 !important;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    margin-left: 20px;
    cursor: pointer;
    font-size: 1.3rem;
    color: #fbbf24;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
}

.dark-mode-toggle:hover {
    transform: rotate(30deg);
    background: rgba(251, 191, 36, 0.2);
}

/* Light mode toggle button */
body:not(.dark-mode) .dark-mode-toggle {
    color: #4a5568;
    background: rgba(74, 85, 104, 0.1);
}

body:not(.dark-mode) .dark-mode-toggle:hover {
    background: rgba(74, 85, 104, 0.2);
}

/* Image overlay in dark mode */
.dark-mode .image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.dark-mode .overlay-content h4 {
    color: #ffffff !important;
}

.dark-mode .overlay-content p {
    color: #cbd5e1 !important;
}

/* Icon wrapper colors in dark mode */
.dark-mode .social-marketing .icon-wrapper { 
    background-color: rgba(2, 132, 199, 0.2) !important; 
    color: #38bdf8 !important; 
}

.dark-mode .web-dev .icon-wrapper { 
    background-color: rgba(245, 158, 11, 0.2) !important; 
    color: #fbbf24 !important; 
}

.dark-mode .digital-tools .icon-wrapper { 
    background-color: rgba(244, 63, 94, 0.2) !important; 
    color: #fb7185 !important; 
}

.dark-mode .graphic-design .icon-wrapper { 
    background-color: rgba(34, 197, 94, 0.2) !important; 
    color: #4ade80 !important; 
}

.dark-mode .content-creation .icon-wrapper { 
    background-color: rgba(167, 139, 250, 0.2) !important; 
    color: #a78bfa !important; 
}

.dark-mode .seo .icon-wrapper { 
    background-color: rgba(244, 63, 94, 0.2) !important; 
    color: #fb7185 !important; 
}

/* Hero icon in dark mode */
.dark-mode .hero-icon {
    color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 768px) {
    .dark-mode-toggle {
        margin-left: 15px;
        font-size: 1.1rem;
    }
}

/* ========== Hover Effects & Transitions ========== */
* {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover effects */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* Nav link hover effect */
.nav-menu a {
    position: relative;
    overflow: hidden;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4f46e5;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.dark-mode .nav-menu a::after {
    background-color: #818cf8;
}

/* Image hover effects */
.profile-img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.image-container:hover .profile-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Skill item hover effects */
.skill-item:hover .skill-name {
    transform: translateX(5px);
    color: #4f46e5;
}

.dark-mode .skill-item:hover .skill-name {
    color: #818cf8;
}

.skill-item:hover .skill-percent {
    transform: scale(1.1);
    background-color: #4f46e5;
    color: white;
}

.dark-mode .skill-item:hover .skill-percent {
    background-color: #818cf8;
}

/* WhatsApp button special effect */
.whatsapp-button {
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-button:hover::before {
    left: 100%;
}

/* Typing effect for hero text */
.hero h1 {
    overflow: hidden;
    border-right: 3px solid white;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white }
}

/* Floating animation for elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card, .project-card {
    animation: float 6s ease-in-out infinite;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Scroll progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    z-index: 1001;
    transition: width 0.3s ease;
}