/* ========================================
   GLOBAL RESET & ALIGNMENT
   ======================================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Ensure all containers align */
header,
.hero,
.as-seen-on,
section,
footer {
    width: 100%;
    box-sizing: border-box;
}

/* Consistent inner container */
.header-content,
.hero,
.as-seen-container,
.about-intro,
.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}


        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 5rem 5%;
            max-width: 1600px;
            margin: 0 auto;
            align-items: center;
            min-height: calc(100vh - 100px);
            position: relative;
        }

        /* Decorative Elements */
        .hero::before {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            border-radius: 50%;
            top: -30px;
            right: -60px;
            opacity: 0.1;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            opacity: 0.1;
            z-index: 0;
        }

        .hero-content {
            z-index: 1;
            animation: fadeInLeft 1s ease;
        }

        .hero-tag {
            display: inline-block;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 2px solid #93c5fd;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .hero-title .highlight-orange {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #1e40af;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #1e40af;
        }

        .btn-secondary:hover {
            background: #1e40af;
            color: white;
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .stat-item:nth-child(1) .stat-icon {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
        }

        .stat-item:nth-child(2) .stat-icon {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
            color: #ea580c;
        }

        .stat-item:nth-child(3) .stat-icon {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
        }

        .stat-item:nth-child(4) .stat-icon {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
            color: #ea580c;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Hero Image Section */
        .hero-image {
            position: relative;
            z-index: 1;
            animation: fadeInRight 1s ease;
        }

        .image-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .browser-mockup {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .browser-header {
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 1px solid #d1d5db;
        }

        .browser-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-red {
            background: #ef4444;
        }

        .dot-yellow {
            background: #f59e0b;
        }

        .dot-green {
            background: #10b981;
        }

        .browser-url {
            flex: 1;
            background: white;
            padding: 0.4rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            color: #6b7280;
            margin-left: 1rem;
        }

        .browser-content {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 2rem;
            min-height: 500px;
            position: relative;
        }

        .mini-nav {
            background: white;
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .mini-logo {
            font-weight: 700;
            color: #1e40af;
            font-size: 1rem;
        }

        .mini-links {
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            color: #6b7280;
        }

        .profile-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: grid;
            grid-template-columns: 1fr 250px;
            gap: 2rem;
            align-items: center;
        }

        .profile-info {
            padding-right: 1rem;
        }

        .profile-badge {
            background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
            color: #7c3aed;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .profile-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .profile-title .text-blue {
            color: #1e40af;
        }

        .profile-title .text-orange {
            color: #f97316;
        }

        .profile-description {
            font-size: 0.85rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .profile-buttons {
            display: flex;
            gap: 1rem;
        }

        .mini-btn {
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mini-btn-primary {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
        }

        .mini-btn-secondary {
            background: white;
            color: #1e40af;
            border: 1px solid #1e40af;
        }

        .profile-image-wrapper {
            position: relative;
        }

        .profile-image-frame {
            width: 220px;
            height: 280px;
            border-radius: 35px;
            background: linear-gradient(135deg, #c4b5fd 0%, #ddd6fe 100%);
            padding: 15px;
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 25px;
            object-fit: cover;
        }

        .mini-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .mini-stat {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .mini-stat-icon {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .mini-stat-number {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
        }

        .mini-stat-label {
            font-size: 0.7rem;
            color: #6b7280;
        }

        .availability-badge {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 15px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        .mini-logos {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e7eb;
        }

        .mini-logos-text {
            font-size: 0.7rem;
            color: #9ca3af;
            font-weight: 600;
        }

        .mini-logos-items {
            display: flex;
            gap: 1rem;
            opacity: 0.6;
        }

        .mini-logo-item {
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 600;
        }

        /* Decorative Shapes */
        .shape {
            position: absolute;
            opacity: 0.6;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            left: 10%;
            animation: rotate 20s linear infinite;
        }

        .shape-2 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            border-radius: 50%;
            bottom: 5%;
            right: 5%;
            animation: float 4s ease-in-out infinite;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            border: 4px solid #3b82f6;
            border-radius: 15px;
            top: 50%;
            left: 5%;
            animation: rotate 15s linear infinite reverse;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

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

        /* As Seen On Section */
        .as-seen-on {
            background: white;
            padding: 3rem 5%;
            margin-top: 4rem;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
        }

        .as-seen-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .as-seen-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .as-seen-title::before {
            content: '';
            width: 4px;
            height: 30px;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            border-radius: 2px;
        }

        .as-seen-logos {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .logo-item {
            transition: all 0.3s ease;
            opacity: 0.7;
            filter: grayscale(100%);
        }

        .logo-item:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: translateY(-5px);
        }

        .logo-item img {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        /* About Me Section */
        .about-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            top: -200px;
            left: -200px;
            animation: pulse 8s ease-in-out infinite;
        }

        .about-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
            bottom: -150px;
            right: -150px;
            animation: pulse 8s ease-in-out infinite reverse;
        }

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

        .about-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .about-content {
            animation: fadeInLeft 1s ease;
        }

        .about-tag {
            display: inline-block;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            border: 2px solid #93c5fd;
        }

        .about-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 2rem;
            position: relative;
        }

        .about-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 150px;
            height: 5px;
            background: linear-gradient(90deg, #1e40af 0%, #f97316 100%);
            border-radius: 10px;
        }

        .about-description {
            font-size: 1.15rem;
            color: #4b5563;
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .about-description strong {
            color: #1f2937;
            font-weight: 700;
            background: linear-gradient(135deg, #dbeafe 0%, transparent 100%);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
        }

        .about-highlight {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 2rem;
            border-radius: 20px;
            border-left: 5px solid #f59e0b;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
        }

        .about-highlight p {
            font-size: 1.05rem;
            color: #78350f;
            line-height: 1.8;
            margin: 0;
        }

        .about-cta {
            margin-top: 3rem;
        }

        .contact-btn {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
        }

        /* Expertise Card */
        .expertise-card {
            background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
            position: relative;
            overflow: hidden;
            animation: fadeInRight 1s ease;
            border: 3px solid transparent;
            background-clip: padding-box;
        }

        .expertise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 50%, #1e40af 100%);
        }

        .expertise-header {
            margin-bottom: 3rem;
        }

        .expertise-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .expertise-subtitle {
            color: #6b7280;
            font-size: 1rem;
        }

        .expertise-list {
            display: grid;
            gap: 1.2rem;
        }

        .expertise-item {
            background: white;
            padding: 1.3rem 1.8rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .expertise-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #7c3aed 0%, #f97316 100%);
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        .expertise-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
        }

        .expertise-item:hover::before {
            transform: scaleY(1);
        }

        .expertise-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
        }

        .expertise-item:nth-child(odd) .expertise-icon {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        }

        .expertise-item:nth-child(3n) .expertise-icon {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
        }

        .expertise-text {
            font-size: 1.05rem;
            font-weight: 600;
            color: #1f2937;
            flex: 1;
        }

        .expertise-badge {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Floating decoration elements */
        .floating-shape {
            position: absolute;
            opacity: 0.15;
            animation: floatShape 15s ease-in-out infinite;
        }

        .shape-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            top: 20%;
            right: 10%;
        }

        .shape-square {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            bottom: 15%;
            left: 8%;
            animation-delay: 2s;
        }

        @keyframes floatShape {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        /* Services Section */
        .services-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 10s ease-in-out infinite;
        }

        .services-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .services-header {
            text-align: center;
            margin-bottom: 6rem;
            animation: fadeInUp 1s ease;
        }

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

        .services-tag {
            display: inline-block;
            background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
            color: #7c3aed;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #c4b5fd;
        }

        .services-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .services-subtitle {
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            border: 2px solid transparent;
            animation: fadeInUp 1s ease;
            animation-fill-mode: both;
        }

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

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
            border-color: #c4b5fd;
        }

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

        .service-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.8rem;
        }

        .service-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            color: #7c3aed;
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-number {
            transform: rotate(10deg) scale(1.1);
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
        }

        .service-title-wrapper {
            flex: 1;
        }

        .service-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .service-description {
            color: #6b7280;
            line-height: 1.8;
            font-size: 1.02rem;
            margin-bottom: 1.8rem;
        }

        .service-features {
            display: grid;
            gap: 0.8rem;
            margin-bottom: 1.8rem;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #4b5563;
            font-size: 0.95rem;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e40af;
            font-weight: 700;
            flex-shrink: 0;
            font-size: 0.8rem;
        }

        .service-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 2px solid #f3f4f6;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }


        .service-tag {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #92400e;
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .service-link {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
            text-decoration: none;
        }

        .service-link:hover {
            transform: scale(1.15) rotate(45deg);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
        }

        /* Special highlight cards */
        .service-card:nth-child(1) {
            background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
        }

        .service-card:nth-child(4) {
            background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
        }

        /* Education Section */
        .education-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .education-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: pulse 8s ease-in-out infinite;
        }

        .education-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .education-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .section-icon {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            color: #1f2937;
        }

        .section-underline {
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
            margin: 0 auto 1rem;
            border-radius: 10px;
        }

        .education-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            justify-items: center;
        }

        .education-badge {
            background: white;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
            transition: all 0.5s ease;
            cursor: pointer;
            animation: fadeInUp 1s ease;
        }

        .education-badge::before {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .education-badge:hover::before {
            opacity: 1;
        }

        .education-badge:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
        }

        .education-badge:nth-child(1) {
            animation-delay: 0.2s;
        }

        .education-badge:nth-child(2) {
            animation-delay: 0.4s;
        }

        .education-badge:nth-child(3) {
            animation-delay: 0.6s;
        }

        .degree-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
        }

        .degree-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1f2937;
            text-align: center;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .degree-subtitle {
            font-size: 1rem;
            color: #7c3aed;
            font-weight: 600;
            text-align: center;
            margin-bottom: 0.8rem;
        }

        .degree-year {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        /* Experience Section */
        .experience-section {
            padding: 8rem 5%;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .experience-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
            animation: pulse 8s ease-in-out infinite reverse;
        }

        .experience-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .experience-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #7c3aed 0%, #f97316 100%);
            border-radius: 10px;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
            align-items: center;
            animation: fadeInUp 1s ease;
            animation-fill-mode: both;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        .timeline-item:nth-child(5) { animation-delay: 0.5s; }

        .timeline-content {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
            border-color: #c4b5fd;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            grid-column: 1;
        }

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 3;
        }

        .timeline-dot {
            grid-column: 2;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 0 0 8px white, 0 0 0 12px #c4b5fd;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 0 0 8px white, 0 0 0 12px #7c3aed;
        }

        .experience-year {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .experience-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.8rem;
        }

        .experience-company {
            color: #7c3aed;
            font-size: 1.05rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .experience-description {
            color: #6b7280;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Skills Section */
        .skills-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .skills-section::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 10s ease-in-out infinite;
        }

        .skills-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .skills-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .skills-tag {
            display: inline-block;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            color: #7c3aed;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #a78bfa;
        }

        .skills-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #1e40af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .skills-description {
            font-size: 1.15rem;
            color: #6b7280;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Tabs Navigation */
        .tabs-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .tab-button {
            background: white;
            color: #6b7280;
            padding: 1rem 2.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
        }

        .tab-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .tab-button:hover {
            border-color: #7c3aed;
            color: #7c3aed;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
        }

        .tab-button.active {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            border-color: #7c3aed;
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }


        .tab-icon {
            font-size: 1.3rem;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

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

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

        .skill-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
            border-color: #c4b5fd;
        }

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

        .skill-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .skill-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .skill-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .skill-card:hover .skill-icon {
            transform: rotate(10deg) scale(1.1);
        }

        /* Different colors for skill icons */
        .skill-icon.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
        .skill-icon.purple { background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%); }
        .skill-icon.orange { background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%); }
        .skill-icon.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
        .skill-icon.red { background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%); }
        .skill-icon.yellow { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
        .skill-icon.cyan { background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%); }

        .skill-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: #1f2937;
        }

        .skill-percentage {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .skill-progress {
            width: 100%;
            height: 12px;
            background: #f3f4f6;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .skill-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
            border-radius: 10px;
            transition: width 1.5s ease;
            position: relative;
            overflow: hidden;
        }

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

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Skills Section */
        .skills-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .skills-section::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            bottom: -200px;
            right: -200px;
            animation: pulse 10s ease-in-out infinite;
        }

        .skills-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .skills-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .skills-tag {
            display: inline-block;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            color: #7c3aed;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #a78bfa;
        }

        .skills-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #1e40af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .skills-description {
            font-size: 1.15rem;
            color: #6b7280;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Tabs */
        .skills-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .tab-button {
            background: white;
            border: 2px solid #e5e7eb;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .tab-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
        }

        .tab-button.active {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            border-color: #7c3aed;
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
            transform: translateY(-5px);
        }

        .tab-icon {
            font-size: 1.5rem;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeInUp 0.6s ease;
        }

        .tab-content.active {
            display: block;
        }

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

        .skill-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
            border-color: #c4b5fd;
        }

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

        .skill-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
        }

        .skill-card:hover .skill-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .skill-icon {
            font-size: 3rem;
        }

        .skill-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }

        .skill-bar-container {
            background: #f3f4f6;
            height: 10px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 0.8rem;
        }

        .skill-bar {
            height: 100%;
            background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
            border-radius: 10px;
            transition: width 1.5s ease;
            position: relative;
        }

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

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .skill-percentage {
            font-size: 1.1rem;
            font-weight: 700;
            color: #7c3aed;
            text-align: right;
        }

        /* Color variations for different skill categories */
        .skill-card:nth-child(4n+1) .skill-icon-wrapper {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        }

        .skill-card:nth-child(4n+2) .skill-icon-wrapper {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
        }

        .skill-card:nth-child(4n+3) .skill-icon-wrapper {
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
        }

        .skill-card:nth-child(4n+4) .skill-icon-wrapper {
            background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
        }

        /* Portfolio/Projects Section */
        .portfolio-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
            top: -300px;
            left: -300px;
            animation: pulse 12s ease-in-out infinite;
        }

        .portfolio-section::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
            bottom: -250px;
            right: -250px;
            animation: pulse 12s ease-in-out infinite reverse;
        }

        .portfolio-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .portfolio-tag {
            display: inline-block;
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
            color: #ea580c;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #fb923c;
        }

        .portfolio-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f97316 0%, #1e40af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .portfolio-subtitle {
            font-size: 1.15rem;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Filter Buttons */
        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: white;
            border: 2px solid #e5e7eb;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .filter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
            border-color: #fb923c;
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            color: white;
            border-color: #f97316;
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
            transform: translateY(-5px);
        }

        .filter-icon {
            font-size: 1.3rem;
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 3rem;
        }

        .project-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            border: 2px solid transparent;
            position: relative;
            cursor: pointer;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.2s; }
        .project-card:nth-child(3) { animation-delay: 0.3s; }
        .project-card:nth-child(4) { animation-delay: 0.4s; }
        .project-card:nth-child(5) { animation-delay: 0.5s; }
        .project-card:nth-child(6) { animation-delay: 0.6s; }

        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(249, 115, 22, 0.25);
            border-color: #fb923c;
        }

        .project-image-wrapper {
            position: relative;
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .overlay-btn {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f97316;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            transform: translateY(20px);
            opacity: 0;
        }

        .project-card:hover .overlay-btn {
            transform: translateY(0);
            opacity: 1;
        }

        .project-card:hover .overlay-btn:nth-child(1) {
            transition-delay: 0.1s;
        }

        .project-card:hover .overlay-btn:nth-child(2) {
            transition-delay: 0.2s;
        }

        .overlay-btn:hover {
            transform: scale(1.2);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
        }

        .project-content {
            padding: 2rem;
        }

        .project-category {
            display: inline-block;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .project-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .project-description {
            color: #6b7280;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tech-tag {
            background: #f3f4f6;
            color: #4b5563;
            padding: 0.4rem 0.9rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .project-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 2px solid #f3f4f6;
        }

        .project-stats {
            display: flex;
            gap: 1.5rem;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .stat-icon {
            color: #f97316;
        }

        .project-link {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
        }

        .project-link:hover {
            transform: scale(1.15) rotate(45deg);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
        }

        /* Featured Project - Full Width */
        .project-card.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .project-card.featured .project-image-wrapper {
            height: 100%;
            min-height: 450px;
        }

        .project-card.featured .project-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .project-card.featured .project-title {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
        }

        .project-card.featured .project-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #92400e;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Load More Button */
        .load-more-wrapper {
            text-align: center;
            margin-top: 4rem;
        }

        .load-more-btn {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 1rem;
        }

        .load-more-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
        }

        /* Certifications Gallery Section */
        .certifications-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .certifications-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: pulse 12s ease-in-out infinite;
        }

        .certifications-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation: pulse 12s ease-in-out infinite reverse;
        }

        .certifications-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .certifications-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .certifications-tag {
            display: inline-block;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            color: #7c3aed;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #a78bfa;
        }

        .certifications-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .certifications-subtitle {
            font-size: 1.15rem;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Certificate Gallery Grid */
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .certificate-item {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

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

        .certificate-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(124, 58, 237, 0.25);
            border-color: #c4b5fd;
        }

        .certificate-image-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .certificate-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .certificate-item:hover .certificate-image {
            transform: scale(1.1);
        }

        .certificate-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(249, 115, 22, 0.95) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
        }

        .certificate-item:hover .certificate-overlay {
            opacity: 1;
        }

        .overlay-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7c3aed;
            font-size: 2rem;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .certificate-item:hover .overlay-icon {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.1s;
        }

        .overlay-text {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            transform: translateY(20px);
            opacity: 0;
        }

        .certificate-item:hover .overlay-text {
            transform: translateY(0);
            opacity: 1;
            transition: all 0.3s ease;
            transition-delay: 0.2s;
        }

        .certificate-content {
            padding: 2rem;
        }

        .certificate-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .certificate-issuer {
            color: #7c3aed;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .certificate-date {
            color: #6b7280;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .certificate-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
            color: #ea580c;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 1200px;
            max-height: 90vh;
            animation: zoomIn 0.4s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 15px;
            box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: white;
            color: #1f2937;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-weight: 300;
        }

        .lightbox-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: #f97316;
            color: white;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: #1f2937;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .lightbox-nav:hover {
            background: #7c3aed;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        .lightbox-caption {
            text-align: center;
            color: white;
            margin-top: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Stats Section */
        .cert-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 5rem;
            padding: 3rem;
            background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
        }

        .cert-stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .cert-stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cert-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .cert-stat-label {
            color: #6b7280;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Blog/Articles Section */
        .blog-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            top: -250px;
            left: -250px;
            animation: pulse 15s ease-in-out infinite;
        }

        .blog-section::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
            bottom: -200px;
            right: -200px;
            animation: pulse 15s ease-in-out infinite reverse;
        }

        .blog-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .blog-tag {
            display: inline-block;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #93c5fd;
        }

        .blog-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1e40af 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .blog-subtitle {
            font-size: 1.15rem;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Category Filter */
        .blog-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .category-btn {
            background: white;
            border: 2px solid #e5e7eb;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .category-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
            border-color: #93c5fd;
        }

        .category-btn.active {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border-color: #1e40af;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
            transform: translateY(-5px);
        }

        /* Featured Article */
        .featured-article {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 4rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            transition: all 0.5s ease;
            border: 2px solid transparent;
            position: relative;
        }

        .featured-article::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #1e40af 0%, #f97316 100%);
        }

        .featured-article:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(30, 64, 175, 0.2);
            border-color: #93c5fd;
        }

        .featured-image-wrapper {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .featured-article:hover .featured-image {
            transform: scale(1.1);
        }

        .featured-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        }

        .featured-badge {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1f2937;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.5);
        }

        .featured-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-category {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            width: fit-content;
        }

        .featured-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }

        .featured-excerpt {
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #f3f4f6;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .meta-icon {
            color: #1e40af;
            font-size: 1.2rem;
        }

        .featured-read-more {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            width: fit-content;
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
        }

        .featured-read-more:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
        }

        /* Articles Grid */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .article-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            border: 2px solid transparent;
            cursor: pointer;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .article-card:nth-child(1) { animation-delay: 0.1s; }
        .article-card:nth-child(2) { animation-delay: 0.2s; }
        .article-card:nth-child(3) { animation-delay: 0.3s; }
        .article-card:nth-child(4) { animation-delay: 0.4s; }
        .article-card:nth-child(5) { animation-delay: 0.5s; }
        .article-card:nth-child(6) { animation-delay: 0.6s; }

        .article-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(30, 64, 175, 0.2);
            border-color: #93c5fd;
        }

        .article-image-wrapper {
            position: relative;
            height: 260px;
            overflow: hidden;
        }

        .article-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .article-card:hover .article-image {
            transform: scale(1.15) rotate(2deg);
        }

        .article-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
        }

        .article-category-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            color: #1e40af;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }

        .reading-time {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            background: rgba(30, 64, 175, 0.9);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            backdrop-filter: blur(10px);
        }

        .article-content {
            padding: 2rem;
        }

        .article-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-excerpt {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 2px solid #f3f4f6;
        }

        .article-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e5e7eb;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1f2937;
        }

        .article-date {
            font-size: 0.85rem;
            color: #9ca3af;
        }

        .article-stats {
            display: flex;
            gap: 1rem;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #6b7280;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .stat-icon {
            color: #f97316;
        }

        /* Newsletter Section */
        .newsletter-wrapper {
            margin-top: 6rem;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            border-radius: 30px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
        }

        .newsletter-wrapper::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: pulse 10s ease-in-out infinite;
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
        }

        .newsletter-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .newsletter-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }

        .newsletter-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 1.2rem 2rem;
            border-radius: 50px;
            border: 2px solid transparent;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: #fbbf24;
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
        }

        .newsletter-submit {
            background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
        }

        .newsletter-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
        }

        /* Pagination */
        .blog-pagination {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 4rem;
        }

        .pagination-btn {
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pagination-btn:hover {
            background: #1e40af;
            color: white;
            border-color: #1e40af;
            transform: translateY(-3px);
        }

        .pagination-btn.active {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border-color: #1e40af;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            animation: pulse 20s ease-in-out infinite;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
            bottom: -250px;
            left: -250px;
            animation: pulse 20s ease-in-out infinite reverse;
        }

        .testimonials-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .testimonials-tag {
            display: inline-block;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            color: #7c3aed;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #a78bfa;
        }

        .testimonials-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .testimonials-subtitle {
            font-size: 1.15rem;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Stats Bar */
        .testimonials-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
        }

        .stat-box {
            text-align: center;
            padding: 1rem;
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6b7280;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Testimonials Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
        .testimonial-card:nth-child(4) { animation-delay: 0.4s; }
        .testimonial-card:nth-child(5) { animation-delay: 0.5s; }
        .testimonial-card:nth-child(6) { animation-delay: 0.6s; }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(124, 58, 237, 0.25);
            border-color: #c4b5fd;
        }

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

        .quote-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
            transition: all 0.4s ease;
        }

        .testimonial-card:hover .quote-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #4b5563;
            margin-bottom: 2.5rem;
            font-style: italic;
        }

        .testimonial-rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 2rem;
        }

        .star {
            color: #fbbf24;
            font-size: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 2rem;
            border-top: 2px solid #f3f4f6;
        }

        .author-image-wrapper {
            position: relative;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #e5e7eb;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover .author-image {
            border-color: #7c3aed;
            transform: scale(1.05);
        }

        .verified-badge {
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            border: 3px solid white;
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.3rem;
        }

        .author-position {
            font-size: 0.95rem;
            color: #7c3aed;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .author-company {
            font-size: 0.9rem;
            color: #9ca3af;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* Featured Testimonial */
        .featured-testimonial {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            border-radius: 40px;
            padding: 4rem;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
        }

        .featured-testimonial::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            animation: pulse 15s ease-in-out infinite;
        }

        .featured-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .featured-image-section {
            text-align: center;
        }

        .featured-author-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            margin-bottom: 1.5rem;
        }

        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            backdrop-filter: blur(10px);
        }

        .featured-text-section {
            color: white;
        }

        .featured-quote-icon {
            font-size: 4rem;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .featured-text {
            font-size: 1.5rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
            font-weight: 500;
        }

        .featured-rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .featured-star {
            color: #fbbf24;
            font-size: 2rem;
        }

        .featured-author-info .author-name {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .featured-author-info .author-position {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }

        .featured-author-info .author-company {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        /* Video Testimonial */
        .video-testimonial {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 4rem;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: rgba(124, 58, 237, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.15);
            background: #7c3aed;
        }

        .play-button::before {
            content: '▶';
            color: white;
            font-size: 2.5rem;
            margin-left: 8px;
        }

        .video-info {
            padding: 2.5rem;
        }

        .video-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .video-description {
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Company Logos */
        .trusted-companies {
            text-align: center;
            margin-top: 5rem;
        }

        .trusted-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #6b7280;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .company-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .company-logos:hover {
            opacity: 1;
        }

        .company-logo {
            height: 50px;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .company-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
            top: -300px;
            left: -300px;
            animation: pulse 18s ease-in-out infinite;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
            bottom: -250px;
            right: -250px;
            animation: pulse 18s ease-in-out infinite reverse;
        }

        .contact-container {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .contact-tag {
            display: inline-block;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 2px solid #93c5fd;
        }

        .contact-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1e40af 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .contact-subtitle {
            font-size: 1.15rem;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Info Cards */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }


        .info-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
            border-color: #93c5fd;
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
            transition: all 0.4s ease;
        }

        .info-card:hover .info-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .info-content h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .info-content p {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 0.8rem;
        }

        .info-link {
            color: #1e40af;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .info-link:hover {
            gap: 0.8rem;
            color: #f97316;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .social-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
        }

        .social-btn.linkedin {
            background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
            color: white;
        }

        .social-btn.github {
            background: linear-gradient(135deg, #333 0%, #24292e 100%);
            color: white;
        }

        .social-btn.twitter {
            background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
            color: white;
        }

        .social-btn.email {
            background: linear-gradient(135deg, #ea4335 0%, #d33426 100%);
            color: white;
        }

        /* Availability Card */
        .availability-card {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            padding: 2.5rem;
            border-radius: 25px;
            color: white;
            box-shadow: 0 15px 50px rgba(16, 185, 129, 0.3);
            text-align: center;
        }

        .availability-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .availability-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
        }

        .availability-card p {
            opacity: 0.95;
            line-height: 1.7;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 2px solid #f3f4f6;
            transition: all 0.4s ease;
        }

        .contact-form-wrapper:hover {
            box-shadow: 0 30px 80px rgba(30, 64, 175, 0.15);
            border-color: #93c5fd;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-title {
            font-size: 2rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.8rem;
        }

        .form-subtitle {
            color: #6b7280;
            font-size: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 700;
            color: #374151;
            margin-bottom: 0.8rem;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 15px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            outline: none;
            background: #f9fafb;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            border-color: #1e40af;
            background: white;
            box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #9ca3af;
        }

        .form-icon {
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            pointer-events: none;
        }

        .form-group:has(.form-input:focus) .form-icon {
            color: #1e40af;
        }

        /* File Upload */
        .file-upload {
            border: 2px dashed #e5e7eb;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f9fafb;
        }

        .file-upload:hover {
            border-color: #1e40af;
            background: #eff6ff;
        }

        .file-upload-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #6b7280;
        }

        .file-upload-text {
            color: #6b7280;
            font-size: 0.95rem;
        }

        .file-upload-text strong {
            color: #1e40af;
        }

        .file-input {
            display: none;
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
            width: 100%;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .btn-icon {
            font-size: 1.3rem;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            font-weight: 600;
            margin-top: 1rem;
        }

        .success-message.show {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        /* Map Section */
        .map-section {
            margin-top: 5rem;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .map-wrapper {
            height: 450px;
            background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Quick Contact Bar */
        .quick-contact {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .quick-contact-item {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .quick-contact-item:hover {
            background: white;
            border-color: #1e40af;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
        }

        .quick-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .quick-label {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .quick-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
        }

        /* CTA Section */
        .cta-section {
            padding-bottom: 5rem;
            background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #f97316 100%);
            position: relative;
            overflow: hidden;
            margin-bottom: 3rem;  /* add this */
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            top: -400px;
            right: -400px;
            animation: pulse 20s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            bottom: -300px;
            left: -300px;
            animation: pulse 20s ease-in-out infinite reverse;
        }

        /* Floating shapes */
        .cta-shape {
            position: absolute;
            opacity: 0.1;
        }

        .cta-shape-1 {
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 50%;
            top: 10%;
            left: 5%;
            animation: float 15s ease-in-out infinite;
        }

        .cta-shape-2 {
            width: 150px;
            height: 150px;
            background: white;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            bottom: 15%;
            right: 10%;
            animation: float 12s ease-in-out infinite reverse;
        }

        .cta-shape-3 {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            top: 60%;
            left: 15%;
            animation: float 18s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: fadeInDown 0.8s ease;
        }

        .cta-badge-icon {
            font-size: 1.5rem;
            animation: bounce 2s ease-in-out infinite;
        }

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

        .cta-title {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-title span {
            background: linear-gradient(135deg, #fbbf24 0%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.2s;
            animation-fill-mode: both;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease 0.4s;
            animation-fill-mode: both;
        }

        .cta-btn-primary {
            background: white;
            color: #1e40af;
            padding: 1.5rem 4rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 800;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }

        .cta-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            gap: 1.5rem;
        }

        .cta-btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 1.5rem 4rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 800;
            border: 3px solid white;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            backdrop-filter: blur(10px);
            text-decoration: none;
        }

        .cta-btn-secondary:hover {
            background: white;
            color: #1e40af;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        .btn-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .cta-btn-primary:hover .btn-icon,
        .cta-btn-secondary:hover .btn-icon {
            transform: scale(1.2) rotate(15deg);
        }

        /* Stats Row */
        .cta-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease 0.6s;
            animation-fill-mode: both;
        }

        .cta-stat-item {
            text-align: center;
            color: white;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .cta-stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .cta-stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .cta-stat-value {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .cta-stat-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 600;
        }

        /* Features Grid */
        .cta-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease 0.8s;
            animation-fill-mode: both;
        }

        .cta-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            text-align: left;
        }

        .cta-feature:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .cta-feature-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-feature-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.8rem;
        }

        .cta-feature-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Trust Indicators */
        .cta-trust {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.8s ease 1s;
            animation-fill-mode: both;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: white;
            font-weight: 600;
        }

        .trust-icon {
            font-size: 1.8rem;
        }

        /* Urgency Banner */
        .cta-urgency {
            background: rgba(251, 191, 36, 0.2);
            border: 2px solid #fbbf24;
            border-radius: 20px;
            padding: 1.5rem 2rem;
            margin-top: 3rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .urgency-icon {
            font-size: 1.5rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            animation: pulse 25s ease-in-out infinite;
        }

        .footer::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
            bottom: -250px;
            left: -250px;
            animation: pulse 25s ease-in-out infinite reverse;
        }

        /* Footer Top */
        .footer-top {
            padding: 6rem 5%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        /* Footer Brand */
        .footer-brand {
            padding-right: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }

        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
            border: 2px solid transparent;
        }

        .footer-social-btn:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
        }

        /* Footer Links */
        .footer-column h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: #7c3aed;
            padding-left: 5px;
        }

        .footer-links a::before {
            content: '→';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        /* Newsletter */
        .footer-newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-newsletter h3 {
            margin-bottom: 1rem;
        }

        .newsletter-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-input {
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-input:focus {
            border-color: #7c3aed;
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
        }

        .newsletter-privacy {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 0.5rem;
        }

        /* Footer Middle */
        .footer-middle {
            padding: 3rem 5%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-stats {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .footer-stat-item {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .footer-stat-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
        }

        .footer-stat-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .footer-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .footer-stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 2.5rem 5%;
            position: relative;
            z-index: 1;
        }

        .footer-bottom-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .footer-copyright a {
            color: #7c3aed;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #f97316;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #7c3aed;
        }

        .back-to-top {
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 3rem 5%;
            }

            .hero-title {
                font-size: 3rem;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .nav-links {
                gap: 1.5rem;
            }

            .shape-1, .shape-2, .shape-3 {
                display: none;
            }

            .browser-mockup {
                transform: scale(0.95);
            }

            .mini-nav {
                flex-direction: column;
                gap: 0.5rem;
            }

            .profile-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .profile-image-wrapper {
                margin: 0 auto;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .hero-buttons {
                flex-direction: column;
            }

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

            .browser-mockup {
                transform: scale(0.85);
            }

            .mini-links {
                display: none;
            }

            .mini-stats {
                grid-template-columns: 1fr;
            }

            .mini-logos {
                flex-direction: column;
                text-align: center;
            }

            .availability-badge {
                right: 50%;
                transform: translateX(50%);
            }

            .as-seen-container {
                flex-direction: column;
                gap: 2rem;
            }

            .as-seen-logos {
                justify-content: center;
                gap: 2rem;
            }

            .logo-item img {
                height: 35px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-title {
                font-size: 2.5rem;
            }

            .expertise-card {
                padding: 2rem;
            }

            .expertise-title {
                font-size: 1.8rem;
            }

            .expertise-item {
                padding: 1rem 1.3rem;
            }

            .floating-shape {
                display: none;
            }

            .services-title {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                padding: 2rem;
            }

            .service-number {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

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

            .service-footer {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

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

            .education-badge {
                width: 240px;
                height: 240px;
            }

            .degree-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }

            .degree-title {
                font-size: 1.5rem;
            }

            .timeline::before {
                left: 40px;
            }

            .timeline-item {
                grid-template-columns: 80px 1fr;
                gap: 1.5rem;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                grid-column: 2;
            }

            .timeline-dot {
                grid-column: 1;
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .experience-title {
                font-size: 1.3rem;
            }

            .skills-title {
                font-size: 2.5rem;
            }

            .tabs-nav {
                gap: 0.5rem;
            }

            .tab-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

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

            .skill-card {
                padding: 1.5rem;
            }

            .skill-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .skill-name {
                font-size: 1.1rem;
            }

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

            .portfolio-filters {
                gap: 0.5rem;
            }

            .filter-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .project-card.featured {
                grid-template-columns: 1fr;
            }

            .project-card.featured .project-image-wrapper {
                min-height: 300px;
            }

            .project-card.featured .project-content {
                padding: 2rem;
            }

            .project-card.featured .project-title {
                font-size: 1.8rem;
            }

            .certifications-title {
                font-size: 2.5rem;
            }

            .certificates-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cert-stats {
                grid-template-columns: repeat(2, 1fr);
                padding: 2rem;
            }

            .lightbox-nav {
                display: none;
            }

            .lightbox-close {
                top: -60px;
                right: 50%;
                transform: translateX(50%);
            }

            .blog-title {
                font-size: 2.5rem;
            }

            .blog-categories {
                gap: 0.5rem;
            }

            .category-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .featured-article {
                grid-template-columns: 1fr;
            }

            .featured-image-wrapper {
                height: 300px;
            }

            .featured-content {
                padding: 2rem;
            }

            .featured-title {
                font-size: 1.8rem;
            }

            .featured-meta {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .articles-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .newsletter-wrapper {
                padding: 3rem 2rem;
            }

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

            .newsletter-form {
                flex-direction: column;
            }

            .testimonials-title {
                font-size: 2.5rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .featured-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .featured-testimonial {
                padding: 2.5rem;
            }

            .featured-text {
                font-size: 1.2rem;
            }

            .company-logos {
                gap: 2rem;
            }

            .contact-title {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper {
                padding: 2rem;
            }

            .info-card {
                padding: 2rem;
            }

            .quick-contact {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 2.5rem;
            }

            .cta-subtitle {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 1.3rem 2rem;
            }

            .cta-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .cta-features {
                grid-template-columns: 1fr;
            }

            .cta-trust {
                flex-direction: column;
                gap: 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-brand {
                padding-right: 0;
            }

            .footer-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

/* ========================================
   MOBILE FIXES - FORCE CORRECT BEHAVIOR
   ======================================== */

/* Mobile Menu - Override with !important */
@media (max-width: 968px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        height: 100vh !important;
        width: 75% !important;
        max-width: 350px !important;
        background: white !important;
        flex-direction: column !important;
        padding: 6rem 2rem 2rem !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    /* Hero Section Mobile */
    .hero {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        padding: 3rem 5% !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .hero-image img {
        max-width: 350px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .stats {
        grid-template-columns: 1fr !important;
    }
}


/* ========================================
   FIX: PREVENT HORIZONTAL SCROLL
   ======================================== */


@media (max-width: 968px) {
    /* Hide or minimize decorative circles */
    .hero::before {
        width: 120px !important;
        height: 120px !important;
        top: -20px !important;
        left: -30px !important;
        opacity: 0.2 !important;
    }

    .hero::after {
        width: 100px !important;
        height: 100px !important;
        bottom: -20px !important;
        right: -30px !important;
        opacity: 0.2 !important;
    }
}

/* Mobile only - prevent circle overflow */
@media (max-width: 968px) {
    .hero {
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    /* Hide circles completely on small mobile */
    .hero::before,
    .hero::after {
        display: none !important;
    }

    /* OR keep very small
    .hero::before {
        width: 100px !important;
        height: 100px !important;
        top: -50px !important;
        left: -50px !important;
    }

    .hero::after {
        width: 80px !important;
        height: 80px !important;
        bottom: -40px !important;
        right: -40px !important;
    }
    */
}

/* Alternative decorative shapes */
.shape {
    display: none !important;  /* Hide any other shapes */
}

@media (max-width: 968px) {
    .shape-1,
    .shape-2,
    .shape-3 {
        display: none !important;
    }
}

/* ========================================
   FOOTER SECTION - COMPLETE CSS
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #e5e7eb;
    padding: 4rem 0 0;
    margin-top: 5rem;
    position: relative;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Footer Top - 4 Columns */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    margin-bottom: 1.5rem;
}

/* Column 1: About/Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #3b82f6;
}

/* Footer CTA Button */
.footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3b82f6;
}

.footer-bottom-links span {
    color: #4b5563;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* ========================================
   RESPONSIVE - FOOTER
   ======================================== */

@media (max-width: 968px) {
    .footer {
        margin-top: 3rem;
        padding: 3rem 0 0;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column:first-child {
        grid-column: 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        padding: 0 4%;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-logo .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-contact li,
    .footer-description {
        font-size: 0.9rem;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    }
}

/* ========================================
/* ========================================
   FIX: HERO IMAGE SIZE - 450px x 550px
   ======================================== */

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Main wrapper - LARGER SIZE */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 450px;  /* Fixed width */
    height: 550px; /* Fixed height */
}

/* The image - EXACT SIZE */
.hero-image-wrapper img {
    width: 450px;   /* Exact width */
    height: 550px;  /* Exact height */
    object-fit: cover;  /* Cover the area nicely */
    object-position: center;  /* Center the image */
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(30, 64, 175, 0.3),
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(30, 64, 175, 0.05);
    position: relative;
    z-index: 10;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.02) translateY(-5px);
}

/* Glow - sized to wrapper */
.hero-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #3b82f6, #f97316);
    border-radius: 30px;
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Vector elements - adjusted for larger image */
.vector-element {
    position: absolute;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.vector-element-1 {
    top: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 20px;
    opacity: 0.2;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.vector-element-2 {
    bottom: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 50%;
    opacity: 0.15;
    animation-delay: 2s;
}

.vector-element-3 {
    top: 50%;
    right: -70px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 15px;
    opacity: 0.2;
    transform: rotate(30deg);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotate, 0deg));
    }
}

/* Tech icons - positioned around larger image */
.tech-icon {
    position: absolute;
    width: 55px;  /* Slightly larger */
    height: 55px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    font-size: 1.6rem;
    animation: bounce 3s ease-in-out infinite;
    pointer-events: none;
}

/* Left side icons */
.tech-icon-1 {
    top: 15%;
    left: -80px;
    animation-delay: 0s;
}

.tech-icon-2 {
    top: 45%;
    left: -85px;
    animation-delay: 1s;
}

.tech-icon-3 {
    top: 75%;
    left: -80px;
    animation-delay: 2s;
}

/* Right side icons */
.tech-icon-4 {
    top: 15%;
    right: -80px;
    animation-delay: 0.5s;
}

.tech-icon-5 {
    top: 45%;
    right: -85px;
    animation-delay: 1.5s;
}

.tech-icon-6 {
    top: 75%;
    right: -80px;
    animation-delay: 2.5s;
}

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

/* Badges - positioned on larger image */
.hero-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge::before {
    content: '✨';
    font-size: 1.2rem;
}

.experience-badge {
    position: absolute;
    bottom: 35px;
    right: 35px;
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 15;
    text-align: center;
}

.experience-badge .number {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.experience-badge .label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

/* Rotating border - larger */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border: 3px solid transparent;
    border-radius: 30px;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #f97316, #fb923c) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 5;
    animation: rotate-border 8s linear infinite;
}

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

/* Dots pattern */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #3b82f6 2px, transparent 2px);
    background-size: 20px 20px;
    bottom: -50px;
    right: -50px;
    z-index: 2;
    opacity: 0.3;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .hero-image-wrapper {
        width: 400px;
        height: 490px;
    }

    .hero-image-wrapper img {
        width: 400px;
        height: 490px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 968px) {
    .hero-image {
        padding: 1rem;
        order: 1;
    }

    .hero-image-wrapper {
        width: 350px;
        height: 430px;
    }

    .hero-image-wrapper img {
        width: 350px;
        height: 430px;
    }

    .tech-icon {
        display: none;
    }

    .vector-element {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-image-wrapper {
        width: 300px;
        height: 370px;
    }

    .hero-image-wrapper img {
        width: 300px;
        height: 370px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }

    .experience-badge {
        padding: 1rem 1.25rem;
    }

    .experience-badge .number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        width: 280px;
        height: 345px;
    }

    .hero-image-wrapper img {
        width: 280px;
        height: 345px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
        top: 15px;
        left: 15px;
    }

    .experience-badge {
        padding: 0.85rem 1rem;
        bottom: 25px;
        right: 25px;
    }

    .experience-badge .number {
        font-size: 1.5rem;
    }

    .experience-badge .label {
        font-size: 0.75rem;
    }

    .hero-image-wrapper::after {
        display: none;
    }
}
/* ========================================
   ALIGNMENT FIX FOR HEADER & HERO SECTION
   ======================================== */

/* Reset - ensuring no default margins/paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ========================================
   CONSISTENT CONTAINER SYSTEM
   ======================================== */

/* Wrapper for nav to ensure it doesn't affect alignment */
nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Inner container for nav content */
nav > .nav-container,
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 1600px;
    margin: 0 auto;
    width: calc(100% - 10%); /* This creates 5% padding on each side */
}

nav.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HERO SECTION - MATCHING ALIGNMENT
   ======================================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1600px;
    width: calc(100% - 10%); /* Same as nav */
    margin: 0 auto;
    padding: 5rem 0; /* Vertical padding only */
    align-items: center;
    min-height: calc(100vh - 100px);
    position: relative;
}

/* ========================================
   ALTERNATIVE FIX: Using padding instead
   ======================================== */

/* If the above doesn't work perfectly, use this approach: */
.hero-alternative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 5%; /* Match nav horizontal padding */
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
    min-height: calc(100vh - 100px);
    position: relative;
    box-sizing: border-box;
}

/* Ensure nav also uses the same approach */
nav.alternative {
    padding: 1.5rem 5%;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ========================================
   RESPONSIVE ALIGNMENT
   ======================================== */

@media (max-width: 1600px) {
    nav,
    .hero {
        width: calc(100% - 8%);
    }
}

@media (max-width: 968px) {
    nav,
    .hero {
        width: calc(100% - 8%);
        padding-left: 4%;
        padding-right: 4%;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    nav,
    .hero {
        width: calc(100% - 6%);
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media (max-width: 480px) {
    nav,
    .hero {
        width: calc(100% - 4%);
        padding-left: 2%;
        padding-right: 2%;
    }
}

/* ========================================
   DEBUGGING - Visual Alignment Check
   ======================================== */

/* Add these temporarily to visually see alignment */
nav.debug {
    outline: 2px solid red;
}

.hero.debug {
    outline: 2px solid blue;
}

/* Both outlines should align perfectly when debug classes are added */

/* ========================================
   FULL WIDTH HEADER FIX
   ======================================== */

/* Navigation - Full Width Background */
nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: none;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Constrain content on very large screens */
@media (min-width: 1540px) {
    nav {
        padding-left: calc((100% - 1600px) / 2);
        padding-right: calc((100% - 1600px) / 2);
    }
    
    nav.scrolled {
        padding-left: calc((100% - 1600px) / 2);
        padding-right: calc((100% - 1600px) / 2);
    }
}

/* ========================================
   ALTERNATIVE: Wrapper Approach
   ======================================== */

/* If you want to add a wrapper, use this HTML structure:
   <nav>
       <div class="nav-wrapper">
           <!-- All nav content here -->
       </div>
   </nav>
*/

nav.full-width {
    width: 100%;
    padding: 1.5rem 0;
    max-width: none;  /* Remove max-width from nav */
    margin: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    width: calc(100% - 10%);
    margin: 0 auto;
}

/* ========================================
   HERO SECTION - Keep aligned with content
   ======================================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
    max-width: 1600px;
    width: calc(100% - 10%);  /* Matches nav content width */
    margin: 0 auto;
    align-items: center;
    min-height: calc(100vh - 100px);
    position: relative;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    nav,
    .nav-wrapper {
        width: calc(100% - 8%);
    }
    
    nav.full-width {
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    nav,
    .nav-wrapper {
        width: calc(100% - 6%);
    }
}

@media (max-width: 480px) {
    nav,
    .nav-wrapper {
        width: calc(100% - 4%);
    }
}
/* Remove white gap before footer */
section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

footer,
.footer {
    margin-top: 0 !important;
}

body {
    margin-bottom: 0 !important;
}

/* ====================================================================
   PROFESSIONAL PROJECTS SECTION - EXACT CLASS NAME MATCH
   Copy this ENTIRE CSS and REPLACE the existing <style> section
   ==================================================================== */

/* ========================================
   PORTFOLIO SECTION - MAIN CONTAINER
   ======================================== */
.portfolio-section {
    padding: 5rem 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    position: relative !important;
}

.portfolio-container {
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* ========================================
   PORTFOLIO HEADER
   ======================================== */
.portfolio-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.portfolio-tag {
    display: inline-block !important;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
    color: #ea580c !important;
    padding: 0.6rem 1.8rem !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 1rem !important;
}

.portfolio-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.portfolio-subtitle {
    font-size: 1.15rem !important;
    color: #64748b !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
}

/* ========================================
   FILTER BUTTONS
   ======================================== */
.portfolio-filters {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 3rem !important;
}

.filter-btn {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.filter-btn:hover {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
    color: #1e40af !important;
    transform: translateY(-2px) !important;
}

.filter-btn.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
    color: white !important;
    border-color: #1e40af !important;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25) !important;
}

.filter-icon {
    font-size: 1.2rem !important;
}

/* ========================================
   PROJECTS GRID
   ======================================== */
.projects-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-bottom: 3rem !important;
}

/* ========================================
   PROJECT CARD
   ======================================== */
.project-card {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid #f1f5f9 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.project-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #3b82f6 !important;
}

.project-card.featured {
    border-color: #f59e0b !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2) !important;
}

.project-card.featured:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3) !important;
}

/* Hidden state for filtering */
.project-card[style*="display: none"] {
    display: none !important;
}

.project-card.hidden {
    display: none !important;
}

/* ========================================
   PROJECT IMAGE
   ======================================== */
.project-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 280px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.project-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
    display: block !important;
}

.project-card:hover .project-image {
    transform: scale(1.1) !important;
}

/* ========================================
   PROJECT OVERLAY
   ======================================== */
.project-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.project-card:hover .project-overlay {
    opacity: 1 !important;
}

.overlay-btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.overlay-btn:hover {
    background: white !important;
    transform: scale(1.15) !important;
}

/* ========================================
   PROJECT CONTENT
   ======================================== */
.project-content {
    padding: 1.8rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.featured-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
    color: #ea580c !important;
    padding: 0.4rem 1rem !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    border: 2px solid #fed7aa !important;
}

.project-category {
    display: inline-block !important;
    background: #eff6ff !important;
    color: #1e40af !important;
    padding: 0.4rem 1rem !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.project-title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
}

.project-card:hover .project-title {
    color: #3b82f6 !important;
}

.project-description {
    font-size: 0.95rem !important;

    color: #64748b !important;
    line-height: 1.7 !important;
    margin-bottom: 1.2rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* ========================================
   TECH STACK
   ======================================== */
.project-tech {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
    margin-bottom: 1.2rem !important;
}

.tech-tag {
    background: #f1f5f9 !important;
    color: #475569 !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.tech-tag:hover {
    background: #dbeafe !important;
    color: #1e40af !important;
}

/* ========================================
   PROJECT FOOTER
   ======================================== */
.project-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 1rem !important;
    border-top: 2px solid #f1f5f9 !important;
}

.project-stats {
    display: flex !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
}

.stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-size: 0.9rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

.stat-icon {
    font-size: 1.1rem !important;
}

.project-link {
    color: #3b82f6 !important;
    transition: transform 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
}

.project-card:hover .project-link {
    transform: translateX(5px) !important;
}

/* ========================================
   LOAD MORE BUTTON
   ======================================== */
.load-more-wrapper {
    text-align: center !important;
    margin-top: 3rem !important;
}

.load-more-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 3rem !important;
    border-radius: 50px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25) !important;
}

.load-more-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.35) !important;
}

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

.project-card {
    animation: fadeInUp 0.6s ease forwards !important;
}

.project-card:nth-child(1) { animation-delay: 0.1s !important; }
.project-card:nth-child(2) { animation-delay: 0.2s !important; }
.project-card:nth-child(3) { animation-delay: 0.3s !important; }
.project-card:nth-child(4) { animation-delay: 0.4s !important; }
.project-card:nth-child(5) { animation-delay: 0.5s !important; }
.project-card:nth-child(6) { animation-delay: 0.6s !important; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2.5rem !important;
    }
    
    .portfolio-subtitle {
        font-size: 1rem !important;
    }
    
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .portfolio-filters {
        gap: 0.8rem !important;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
    
    .project-image-wrapper {
        height: 240px !important;
    }
}

@media (max-width: 480px) {
    .portfolio-container {
        padding: 0 1rem !important;
    }
    
    .portfolio-title {
        font-size: 2rem !important;
    }
    
    .project-content {
        padding: 1.5rem !important;
    }
    
    .project-image-wrapper {
        height: 200px !important;
    }
}

/* ========================================
   FORCE VISIBILITY (Override any conflicts)
   ======================================== */
.project-card,
.project-card .project-content,
.project-card .project-image-wrapper,
.project-card .project-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Certificate Images - Object-fit Cover for Uniform Grid */
        .certificate-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            object-position: center;
            border-radius: 12px 12px 0 0;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .certificate-item:hover .certificate-image {
            transform: scale(1.05);
        }
        
        /* Lightbox Modal Styles */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            padding: 50px 20px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.95);
            cursor: zoom-out;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 95%;
            max-height: 90vh;
            object-fit: contain;
            animation: zoomIn 0.3s ease;
            cursor: default;
        }
        
        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #fff;
            font-size: 50px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 10000;
        }
        
        .lightbox-close:hover,
        .lightbox-close:focus {
            color: #f97316;
        }
        
        .lightbox-caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #fff;
            padding: 20px 0;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .lightbox-content {
                max-width: 100%;
            }
            
            .lightbox-close {
                font-size: 35px;
                top: 10px;
                right: 20px;
            }
        }

/* ========================================
   TESTIMONIALS SECTION - COMPACT & ATTRACTIVE
   ======================================== */

.testimonials-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 2px solid #fbbf24;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Bar - Compact */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #7c3aed;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

/* Testimonials Grid - Compact Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: #7c3aed;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.star {
    display: inline-block;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f3f4f6;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.2rem;
}

.author-position {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 4%;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}/* ========================================
   BLOG SECTION - MODERN DESIGN
   ======================================== */
.blog-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.blog-container {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-tag {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #bfdbfe;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Blog Filter Buttons */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #e2e8f0;
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.blog-filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12), 0 4px 12px rgba(59, 130, 246, 0.08);
    border-color: #bfdbfe;
    color: #1e40af;
}

.blog-filter-btn.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-color: #1e40af;
    color: white;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25), 0 4px 12px rgba(30, 64, 175, 0.15);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

/* Featured Post (First Post) */
.blog-post-card.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #f1f5f9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    padding: 0;
}

.featured-post .blog-image-wrapper {
    height: 100%;
    min-height: 400px;
}

.featured-post .blog-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post .blog-title-text {
    font-size: 2rem;
}

.featured-post .blog-excerpt {
    font-size: 1.1rem;
}

/* Regular Blog Post Card */
.blog-post-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #f1f5f9;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-post-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 56px rgba(59, 130, 246, 0.15), 0 8px 28px rgba(59, 130, 246, 0.08);
    border-color: #dbeafe;
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px solid #fb923c;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: #c2410c;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    z-index: 2;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
    border: 2px solid #bfdbfe;
}

.blog-title-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-excerpt {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.blog-meta-icon {
    font-size: 1rem;
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
    margin-top: 1rem;
    width: fit-content;
}

.blog-read-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.35);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25), 0 4px 12px rgba(30, 64, 175, 0.15);
    text-decoration: none;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.35), 0 8px 20px rgba(30, 64, 175, 0.2);
}

/* Empty State */
.blog-empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #f1f5f9;
    border-radius: 28px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.empty-text {
    font-size: 1.1rem;
    color: #64748b;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .blog-post-card.featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post .blog-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        gap: 0.8rem;
    }
    
    .blog-filter-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
}