/* Professional & Attractive Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --accent-purple: #a855f7;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://cdn.aiwithaman.com/webiste.png') center center / cover no-repeat;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #ffffff !important;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero h1 .gradient-text {
    color: #ffffff;
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.typing-effect {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 1.5rem 0;
    min-height: 40px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cursor {
    animation: blink 1s infinite;
    color: #ffffff;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    min-width: 160px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.about-text p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

/* Recognition Section */
.recognition-section {
    margin: 2.5rem auto 2rem;
    max-width: 800px;
}

.recognition-heading {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.certificate-container {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 153, 0, 0.2);
    border-left: 4px solid #FF9900;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.12);
    backdrop-filter: blur(10px);
}

.certificate-container:hover {
    border-color: rgba(255, 153, 0, 0.4);
    box-shadow: 0 16px 40px rgba(255, 153, 0, 0.2);
    transform: translateY(-4px);
}

.certificate-badge-icon i {
    font-size: 1.75rem;
    color: #FF9900;
    filter: drop-shadow(0 4px 8px rgba(255, 153, 0, 0.3));
}

.certificate-info h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.certificate-text p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.certificate-text p:last-child {
    margin-bottom: 0;
}

.certificate-image-wrapper {
    position: relative;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(74, 74, 74, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(74, 74, 74, 0.12);
    backdrop-filter: blur(10px);
}

.certificate-image-wrapper:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: 0 16px 40px rgba(74, 74, 74, 0.2);
}

.certificate-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.certificate-verified {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.certificate-verified i,
.certificate-verified span {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 2px solid rgba(74, 74, 74, 0.15);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(74, 74, 74, 0.08);
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(74, 74, 74, 0.2);
}

.highlight-item i {
    color: #6366f1;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Skills Section */
.skills {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.3s;
}

/* Colorful Top Borders */
.skill-card:nth-child(1)::before { background: #FF9900; }
.skill-card:nth-child(2)::before { background: #8b5cf6; }
.skill-card:nth-child(3)::before { background: #a855f7; }
.skill-card:nth-child(4)::before { background: #2496ED; }
.skill-card:nth-child(5)::before { background: #10b981; }
.skill-card:nth-child(6)::before { background: #f59e0b; }
.skill-card:nth-child(7)::before { background: #6366f1; }
.skill-card:nth-child(8)::before { background: #06b6d4; }
.skill-card:nth-child(9)::before { background: #ec4899; }

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.skill-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Colorful Icons for Each Skill */
.skill-card:nth-child(1) i { color: #FF9900; } /* AWS Orange */
.skill-card:nth-child(2) i { color: #8b5cf6; } /* Purple for AI */
.skill-card:nth-child(3) i { color: #a855f7; } /* Purple for AI Dev */
.skill-card:nth-child(4) i { color: #2496ED; } /* Docker Blue */
.skill-card:nth-child(5) i { color: #10b981; } /* Green for CI/CD */
.skill-card:nth-child(6) i { color: #f59e0b; } /* Orange for Monitoring */
.skill-card:nth-child(7) i { color: #6366f1; } /* Indigo for IaC */
.skill-card:nth-child(8) i { color: #06b6d4; } /* Cyan for Networking */
.skill-card:nth-child(9) i { color: #ec4899; } /* Pink for Scripting */

.skill-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.skill-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.skill-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 3px;
}

/* Colorful Progress Bars */
.skill-card:nth-child(1) .progress-bar { background: #FF9900; }
.skill-card:nth-child(2) .progress-bar { background: #8b5cf6; }
.skill-card:nth-child(3) .progress-bar { background: #a855f7; }
.skill-card:nth-child(4) .progress-bar { background: #2496ED; }
.skill-card:nth-child(5) .progress-bar { background: #10b981; }
.skill-card:nth-child(6) .progress-bar { background: #f59e0b; }
.skill-card:nth-child(7) .progress-bar { background: #6366f1; }
.skill-card:nth-child(8) .progress-bar { background: #06b6d4; }
.skill-card:nth-child(9) .progress-bar { background: #ec4899; }

/* Blog Section */
.blog-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
}

.blog-card-home {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.blog-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ec4899, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.blog-card-home:hover::before {
    transform: scaleX(1);
}

.blog-card-home:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.blog-icon-large i {
    font-size: 2.5rem;
    color: #FF9900;
    filter: drop-shadow(0 4px 12px rgba(255, 153, 0, 0.4));
}

.blog-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.blog-date-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.blog-platform-badge {
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: #8b5cf6;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tag {
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-tag:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    transform: translateY(-2px);
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    margin-top: auto;
}

.blog-read-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #0891b2);
}

.coming-soon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border-style: dashed;
}

.coming-soon-wrapper {
    text-align: center;
}

.coming-soon-wrapper i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.coming-soon-wrapper h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.coming-soon-wrapper p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    padding: 4rem 0;
}

.contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.social-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.social-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(74, 74, 74, 0.15);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(74, 74, 74, 0.08);
    backdrop-filter: blur(10px);
}

.social-badge:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.2);
}

.social-badge i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social-badge:hover span {
    color: var(--text-dark);
}

/* Social Icon Colors */
.social-badge .fa-youtube { color: #FF0000; }
.social-badge .fa-linkedin { color: #0A66C2; }
.social-badge .fa-github { color: #24292e; }
.social-badge .fa-calendar-check { color: var(--primary-color); }
.social-badge .fa-slack { color: #4A154B; }
.social-badge .fa-envelope { color: var(--primary-color); }

/* Footer */
footer {
    background: var(--bg-white);
    text-align: center;
    padding: 2.5rem 0;
    color: var(--text-gray);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color)) 1;
}

footer p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .social-badges {
        grid-template-columns: 1fr;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-home {
        padding: 1.5rem;
    }
    
    .certificate-container {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .recognition-section {
        margin: 2rem auto 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Particles Canvas */
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Enhanced Attractive Animations */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 74, 74, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(74, 74, 74, 0.6);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Hero Badge with Animation */
.hero-badge {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Shimmer Effect on Buttons */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

/* Animated Gradient Background for Body */
body {
    background: linear-gradient(-45deg, #f8fafc, #ffffff, #f0f9ff, #e0f7ff);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

/* Enhanced Skill Cards with Hover Glow */
.skill-card {
    position: relative;
}

/* Removed colored glow effect on hover */

/* Floating Animation for Stats */
@keyframes float-up-down {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-item:nth-child(1) {
    animation: float-up-down 3s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation: float-up-down 3s ease-in-out infinite 0.5s;
}

.stat-item:nth-child(3) {
    animation: float-up-down 3s ease-in-out infinite 1s;
}

/* Enhanced Section Titles with Animated Underline */
.section-title::after {
    animation: pulse-width 2s ease-in-out infinite;
}

@keyframes pulse-width {
    0%, 100% {
        width: 60px;
    }
    50% {
        width: 80px;
    }
}

/* Glowing Icons on Hover */
.skill-card:hover i {
    animation: icon-glow 1.5s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(74, 74, 74, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 20px rgba(74, 74, 74, 0.8));
    }
}

/* Enhanced Blog Cards with Gradient Border Animation */
.blog-card-home {
    position: relative;
}

/* Removed colored glow effect from blog cards */

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced Social Badges with Scale Effect */
.social-badge {
    position: relative;
    overflow: hidden;
}

.social-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 74, 74, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-badge:hover::before {
    width: 300px;
    height: 300px;
}

.social-badge:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Highlight Items with Slide Animation */
.highlight-item {
    position: relative;
    overflow: hidden;
}

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

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

/* Certificate Container with Enhanced Shadow */
.certificate-container {
    position: relative;
}

.certificate-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF9900, #FFB84D, #FF9900);
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
    filter: blur(12px);
}

.certificate-container:hover::after {
    opacity: 0.4;
}

/* Enhanced Progress Bars with Animation */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
    0% {
        left: -50px;
    }
    100% {
        left: 100%;
    }
}

/* Enhanced Typing Effect */
.typing-effect {
    position: relative;
    display: inline-block;
}

.typing-effect::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    animation: typing-underline 2s ease-in-out infinite;
}

@keyframes typing-underline {
    0%, 100% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(1);
    }
}

/* Enhanced Logo with Glow */
.logo-text {
    position: relative;
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(74, 74, 74, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(74, 74, 74, 0.6));
    }
}

/* Particle Effect Background */
.hero::before,
.hero::after {
    animation-duration: 12s;
}

/* Enhanced Certificate Verified Badge */
.certificate-verified {
    animation: badge-pulse 2s ease-in-out infinite;
}

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

/* Blog Tag Hover Effect */
.blog-tag {
    position: relative;
    overflow: hidden;
}

.blog-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.2), transparent);
    transition: left 0.4s;
}

.blog-tag:hover::before {
    left: 100%;
}

/* Enhanced Button Hover with Ripple */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Navbar Scroll Effect Enhancement */
.navbar {
    transition: all 0.3s ease;
}

/* Enhanced Icon Rotation on Hover */
.highlight-item:hover i,
.social-badge:hover i {
    animation: icon-rotate 0.6s ease;
}

@keyframes icon-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.2);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* Gradient Text Animation - Disabled for Professional Look */
.hero h1 .gradient-text {
    color: #ffffff;
    background: none;
}

@keyframes gradient-text-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Stat Numbers - Professional Style */
.stat-number {
    color: #ffffff;
    background: none;
}

/* Blog Read Button Enhanced */
.blog-read-btn {
    position: relative;
    overflow: hidden;
}

.blog-read-btn::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;
}

.blog-read-btn:hover::before {
    left: 100%;
}

/* Enhanced Coming Soon Card */
.coming-soon-wrapper i {
    animation: coming-soon-pulse 2s ease-in-out infinite;
}

@keyframes coming-soon-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States */
.btn:focus,
.social-badge:focus,
.nav-links a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Decorative Circles in Hero */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    top: 10%;
    right: 5%;
    animation: float-rotate 20s ease-in-out infinite;
    filter: blur(40px);
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--primary-color), var(--secondary-color));
    bottom: 10%;
    left: 5%;
    animation: float-rotate 25s ease-in-out infinite reverse;
    filter: blur(50px);
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(315deg, var(--secondary-color), var(--primary-color));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-scale 15s ease-in-out infinite;
    filter: blur(45px);
}

@keyframes float-rotate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.25;
    }
}

/* Enhanced Navbar with Gradient on Scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.15);
}

/* Magnetic Effect on Buttons */
.btn {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px) translateZ(20px);
}

/* Enhanced Card Tilt Effect */
.skill-card,
.blog-card-home,
.stat-item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Glowing Border Effect */
@keyframes border-glow {
    0%, 100% {
        border-color: rgba(74, 74, 74, 0.3);
    }
    50% {
        border-color: rgba(74, 74, 74, 0.8);
    }
}

.hero-badge {
    animation: border-glow 3s ease-in-out infinite;
}

/* Enhanced Text Shadow for Headers */
.hero h1 {
    text-shadow: 0 2px 20px rgba(74, 74, 74, 0.2);
}

.section-title {
    text-shadow: 0 2px 15px rgba(26, 26, 26, 0.1);
}

/* Sparkle Effect on Hover */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.skill-card:hover::before {
    animation: sparkle 1s ease-in-out;
}

/* Enhanced Icon Bounce */
.blog-icon-large i,
.certificate-badge-icon i {
    transition: transform 0.3s ease;
}

.blog-card-home:hover .blog-icon-large i,
.certificate-container:hover .certificate-badge-icon i {
    animation: icon-bounce 0.6s ease;
}

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

/* Gradient Overlay on Images */
.certificate-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.1), rgba(26, 26, 26, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
    pointer-events: none;
}

.certificate-image-wrapper:hover::before {
    opacity: 1;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scroll-bounce 2s ease-in-out infinite;
}

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

.scroll-indicator i {
    font-size: 2rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Rainbow Border Animation */
@keyframes rainbow-border {
    0% {
        border-image-source: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    }
    50% {
        border-image-source: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }
    100% {
        border-image-source: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    }
}

/* Enhanced About Section Background */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 74, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    right: -200px;
    animation: float-rotate 30s ease-in-out infinite;
    filter: blur(60px);
}

/* Enhanced Skills Section Background */
.skills {
    position: relative;
    overflow: hidden;
}

.skills::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -250px;
    left: -200px;
    animation: float-rotate 35s ease-in-out infinite reverse;
    filter: blur(70px);
}

/* Neon Glow Effect on Active Elements */
.nav-links a.active {
    box-shadow: 0 0 20px rgba(74, 74, 74, 0.4);
}

/* Enhanced Footer with Gradient Animation */
footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--primary-color), transparent);
    animation: footer-line 3s linear infinite;
}

@keyframes footer-line {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Parallax Effect on Scroll */
@media (prefers-reduced-motion: no-preference) {
    .hero-decoration {
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Enhanced Loading Animation */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-card,
.blog-card-home,
.highlight-item,
.social-badge {
    animation: fade-in 0.6s ease-out backwards;
}

.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }
.skill-card:nth-child(4) { animation-delay: 0.4s; }
.skill-card:nth-child(5) { animation-delay: 0.5s; }
.skill-card:nth-child(6) { animation-delay: 0.6s; }
.skill-card:nth-child(7) { animation-delay: 0.7s; }
.skill-card:nth-child(8) { animation-delay: 0.8s; }
.skill-card:nth-child(9) { animation-delay: 0.9s; }

/* Hover Lift Effect Enhancement */
.skill-card:hover,
.blog-card-home:hover,
.social-badge:hover,
.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Glitch Effect on Logo (Subtle) */
@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-1px, 1px);
    }
    40% {
        transform: translate(1px, -1px);
    }
    60% {
        transform: translate(-1px, -1px);
    }
    80% {
        transform: translate(1px, 1px);
    }
}

.logo:hover .logo-text {
    animation: glitch 0.3s ease;
}

