/* Extracted from original index.html <style> and uploaded style.css */

/* Custom styles */
        .gradient-text {
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: gradient-x 8s ease infinite;
        }

        .tech-bg {
            background-color: #0f172a;
            background-image: url('https://i.postimg.cc/zfRW4rHK/file-0000000019006246a07b39ad52a7f79e-1.png');
            background-size: 30%;
            background-position: center;
            background-repeat: repeat;
            background-blend-mode: overlay;
            background-attachment: fixed;
        }

        .glass-card {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        .neon-border {
            position: relative;
        }

        .neon-border::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(45deg, #6366f1, #8b5cf6, #f59e0b);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .code-block {
            font-family: 'Fira Code', monospace;
            background: #0f172a;
            border-left: 4px solid #6366f1;
        }

        .instagram-feed {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .instagram-post {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 1/1;
        }

        .instagram-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .instagram-post:hover img {
            transform: scale(1.05);
        }

        .instagram-post::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
            z-index: 1;
        }

        .instagram-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            color: white;
            z-index: 2;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .instagram-post:hover .instagram-caption {
            transform: translateY(0);
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transition: width 0.3s ease;
        }

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

        .active::after {
            width: 100%;
        }

        .qling-gradient {
            background: linear-gradient(135deg, #6C63FF 0%, #3A36DB 100%);
        }

        .qling-text {
            color: #6C63FF;
        }

        .qling-shadow {
            box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
        }

        .qling-card {
            border-left: 4px solid #6C63FF;
        }

        .ai-agent-card {
            position: relative;
            overflow: hidden;
        }

        .ai-agent-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(108, 99, 255, 0.1),
                rgba(108, 99, 255, 0.3),
                rgba(108, 99, 255, 0.1)
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(30deg) translate(-30%, -30%); }
            100% { transform: rotate(30deg) translate(30%, 30%); }
        }

        /* Added for new Interests section (Tailwind likely covers these) */
        .interests-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusted for potentially 4 items */
            gap: 2rem; /* Adjust gap as needed */
        }

        .interest-column {
             display: flex; /* Ensures columns take full height */
             flex-direction: column; /* Ensure content stacks vertically within */
        }

        .resume-section { /* Assuming this is similar to other section padding */
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .resume-section-content { /* Assuming this is similar to other section content wrappers */
             max-width: 7xl; /* Example max-width, adjust if needed */
             margin-left: auto;
             margin-right: auto;
        }

        .card-img-top { /* Style for embedded article image */
             max-height: 200px; /* Limit image height */
             object-fit: cover; /* Ensure image covers area */
             margin-bottom: 1rem;
             width: 100%; /* Ensure image takes full width of its container */
        }
        .card { /* Ensure card itself flexes height correctly */
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .card-body { /* Allow card body to grow */
             flex-grow: 1;
        }
        /* Added for potential Tailwind conflict avoidance/override */
        .d-flex { display: flex !important; }
        .align-items-center { align-items: center !important; }
        .mb-3 { margin-bottom: 1rem !important; }
        .text-decoration-none { text-decoration: none !important; }
        .text-muted { color: #6c757d !important; /* Adjust color as needed */ }
        .mb-0 { margin-bottom: 0 !important; }
        .mb-1 { margin-bottom: 0.25rem !important; }
        .mt-3 { margin-top: 1rem !important; }
        .mb-4 { margin-bottom: 1.5rem !important; }
        .text-end { text-align: right !important; }
        .ms-2 { margin-left: 0.5rem !important; }
        .inline-block { display: inline-block !important; }


        @media (max-width: 768px) {
            .instagram-feed {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .tech-bg {
                background-size: 70%;
            }
             .interests-container {
                grid-template-columns: 1fr; /* Stack columns on smaller screens */
            }
        }

/* Uploaded style.css content (if any) */
body {
	padding: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

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

