:root {
    --bg-dark: #1a1533;
    --text-white: #ffffff;
    --accent-yellow: #d4ff00;
    --accent-orange: #ff4d29;
    --accent-blue: #8ee3ef;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
}

.logo { display: flex; align-items: center; }
.logo h1 { font-size: 1.2rem; margin: 0; }
.logo p { font-size: 0.8rem; margin: 0; opacity: 0.8; }
.dot { height: 12px; width: 12px; background: var(--accent-yellow); border-radius: 50%; margin-right: 10px; }

nav a { color: white; text-decoration: none; margin-left: 20px; font-size: 0.9rem; }

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    gap: 50px;
    padding: 0 10%;
}

.profile-pic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-container { max-width: 500px; }
.bio-container h1 { font-size: 4rem; margin-bottom: 10px; }


.button-group { display: flex; gap: 15px; margin-top: 30px; }
.btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    color: black;
    transition: transform 0.2s;
}

.btn:hover { transform: scale(1.1); }
.yellow { background-color: #FFCDA2 ; }
.orange { background-color: #893168 ; }
.blue { background-color: #989FCE; }

/* Footer */
footer {
    display: flex;
    justify-content: space-around;
    padding: 40px 10%;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-item h4 { margin-bottom: 5px; font-size: 1rem; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1533;
    line-height: 1.6;
}

header {
    background: #2d3436;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Project Grid Layout */
.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* Project Card */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
	color: black;
}

/* --- Animations --- */

/* 1. Lift and Glow on Hover */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-image {
    height: 180px;
    background: #dfe6e9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
	object-fit: contain;
}   



}
/* 2. Text Overlay Animation */
.card-image::after {
    content: "View Project";
    position: absolute;
    background: rgba(9, 132, 227, 0.9);
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-image::after {
    opacity: 1;
}

/* Content Styling */
.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin: 0 0 0.5rem 0;
    color: #0984e3;
}

.tags {
    margin-top: 1rem;
}

.tag {
    display: inline-block;
    background: #e1f5fe;
    color: #0288d1;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 5px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.resume-container {
    max-width: 1450px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
	color: black;
}

/* Sidebar Styling */
.sidebar {
    flex: 0 0 300px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 30px;
}

aside {
	max-height:500px;
}

.sidebar h2 {
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 15px;
    margin-top: 30px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    letter-spacing: 1px;
}

.contact-info p, .skills-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    list-style: none;
}

/* Main Content Styling */
.main-content {
    flex: 1;
    padding: 40px;
}

header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1.1;
}

header p {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 5px;
}

section {
    margin-bottom: 30px;
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-transform: uppercase;
    border-left: 5px solid var(--accent-color);
    padding-left: 10px;
}

.job, .edu {
    margin-bottom: 20px;
}

.job-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.company-name, .dates {
    color: #777;
    font-style: italic;
    font-size: 0.9rem;
}

.job-desc {
    margin-top: 8px;
    padding-left: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .resume-container {
        flex-direction: column;
    }
    
    .sidebar {
        text-align: center;
    }
    
    .sidebar h2 {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Background Decoration */
.background-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    animation: move 10s infinite alternate;
}

@keyframes move {
    from { transform: translate(-20%, -20%); }
    to { transform: translate(30%,  30%); }
}

/* Container Design */
.contact-container {
    display: flex;
    width: 900px;
    max-width: 95%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	align-items: Center;
	justify-content: Center;
	transform: translate(90%, 60%);
}

/* Left Side: Info */
.contact-info {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.info-item i {
    margin-right: 15px;
    color: #818cf8;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: 0.3s;
    opacity: 0.6;
}

.social-links a:hover {
    opacity: 1;
    color: #818cf8;
    transform: translateY(-3px);
}

/* Right Side: Form */
.contact-form {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    color: #fff;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #818cf8;
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    padding: 15px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #4f46e5;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        padding: 30px;
    }
}