@import url('https://fonts.googleapis.com/css2?family=M+PLUS+U:wght@100..900&display=swap');

body {
   
    margin: 0;
    padding: 0;
    background-color: #EAEFEF;
    color: #25343F;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 2rem 1rem;
     font-family: "IBM Plex Serif", serif;
    background-color: #BFC9D1;
}
body, p, li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
    
}
a:link {
  color: #FF9B51;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: rgb(255, 0, 43);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    color: #666;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section {
    margin-bottom: 2rem;
}

h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    font-size: 1.8rem;
}

  .custom-list { list-style: none; padding-left: 0; }
  .custom-list li { padding-left: 1rem; }
  .custom-list li::before {
    content: "→ ";
    color: green;
    margin-right: 0.5rem;
    font-weight: bold;
  }


ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 0.5rem;
}

.project, .job, .education-item {
    margin-bottom: 1.5rem;
}

.project h3, .job h3, .education-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.project p, .job p, .education-item p {
    margin: 0.5rem 0;
}

a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f8f8f8;
    font-size: 0.9rem;
    color: #666;
}
.social-icons-circular {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icons-circular a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.social-icons-circular a:hover {
    background: #00d4ff;
    color: #0f0f0f;
    border-color: #00d4ff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.social-icons-circular svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    main {
        padding: 1rem 0.5rem;
    }
}

:root {
    /* Modern Color Palette 2024-2025 */
    --primary-dark: #0f172a;
    --primary-navy: #1a2847;
    --accent-teal: #06b6d4;
    --accent-cyan: #00d9ff;
    --accent-coral: #ff6b4a;
    --accent-amber: #fbbf24;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --bg-subtle: #1e293b;
    --bg-card: #1a2332;
    --border-color: #334155;
    --success: #10b981;
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1628 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

main {
    position: relative;
    z-index: 2;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
     font-family: "M PLUS U", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sections */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding-top: var(--spacing-2xl);
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal), var(--accent-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.8;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.skill-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-subtle));
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.15);
}

.skill-card h3 {
    color: var(--accent-teal);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Experience Section */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.project-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-subtle));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-coral), var(--accent-amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.project-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.project-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tech-tags span {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--accent-cyan);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.5), rgba(30, 41, 59, 0.5));
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-subtle));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(255, 107, 74, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.testimonial-card:hover {
    border-color: var(--accent-coral);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(255, 107, 74, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 3rem;
    color: var(--accent-teal);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    font-family: Georgia, serif;
    font-weight: bold;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Education Section */
.education-item {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-subtle));
    border-left: 4px solid var(--accent-teal);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    max-width: 600px;
}

.education-item h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.education-item .university {
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.education-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-section p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-subtle));
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    color: var(--accent-teal);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    transform: translateY(-4px);
}

.social-icon:hover::before {
    opacity: 0.1;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer */
footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    padding: var(--spacing-lg) var(--spacing-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: var(--spacing-2xl);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }

    h2 {
        font-size: 1.875rem;
    }

    section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .project-header {
        flex-direction: column;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    section {
        animation: fadeInUp 0.8s ease-out backwards;
    }

    section:nth-child(1) { animation-delay: 0s; }
    section:nth-child(2) { animation-delay: 0.1s; }
    section:nth-child(3) { animation-delay: 0.2s; }
    section:nth-child(4) { animation-delay: 0.3s; }
    section:nth-child(5) { animation-delay: 0.4s; }
}