@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #0D0D0D;
    --color-surface: #1A1A1A;
    --color-surface-hover: #242424;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-text: #F5F5F5;
    --color-text-soft: #9A9A9A;
    --color-primary: #00D4FF;
    --color-primary-deep: #0099CC;
    --color-accent: #7B61FF;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.55);
    --glow: 0 0 28px rgba(0, 212, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --font-display: "Fraunces", serif;
    --font-body: "Inter", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    background:
        radial-gradient(circle at 15% 0%, rgba(68, 0, 255, 0.233), transparent 45%),
        radial-gradient(circle at 85% 100%, rgba(123, 97, 255, 0.274), transparent 45%),
        var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.65;
    padding-top: 150px;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    padding: 15px 24px;
    color: var(--color-text);
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--color-primary);
}

nav h1 {
    margin-left: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: 50px;
    list-style-type: none;
    padding: 0;
    align-items: center;
    gap: 80px;
    font-size: 20px;
    font-weight: bold;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

#description-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    scroll-margin-top: 80px;
    min-height: calc(100vh - 150px);
    box-sizing: border-box;
}

.description h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.description h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-soft);
    margin-bottom: 18px;
}

.description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-soft);
    max-width: 520px;
}

.description {
    flex: 1;
}

.profile-image {
    width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md), var(--glow);
}

.internship-statement {
    display: inline-block;
    font-weight: 600;
    background-color: rgba(50, 53, 51, 0.185);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.432);
    margin-top: 40px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.internship-statement::before {
    content: "●";
    color: #22c55e;
    margin-right: 8px;
    font-size: 1rem;
    vertical-align: middle;
}

#skills-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#skills-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    text-align: center;
    margin-bottom: 40px;
}

#skills-section h2 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-soft);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 40px;
}

#skills-section h2::before,
#skills-section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.langauges-skills-grid,
.frameworks-skills-grid,
.tools-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
}

.skills-card {
    background: var(--color-surface);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 50px;
    width: 120px;
    height: 120px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.skills-card svg {
    width: 50px;
    height: 50px;
    display: block;
}

.skills-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

#modal-icon svg {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: block;
}

.skills-card:hover {
    transform: translateY(-8px) scale(1.06);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--glow);
}

.card-name {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

span {
    font-size: 20px;
    color: var(--color-text);
}

.skills-card:hover .card-name {
    opacity: 1;
    visibility: visible;
}

#skill-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

#skill-modal.open {
    display: flex;
}

.modal-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-text-soft);
}

#modal-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 1rem;
}

#modal-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 4px;
}

#modal-level {
    font-size: 14px;
    color: var(--color-text-soft);
    margin: 0 0 1rem;
}

#modal-desc {
    font-size: 14px;
    color: var(--color-text-soft);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.bar-track {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
}

.bar-fill {
    height: 6px;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width 0.4s ease;
}

#projects-section {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#projects-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 55px auto;
    padding: 0 40px;
}

.project-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card h2 {
    font-family: var(--font-display);
    font-weight: 600;
    text-align: center;
}

.project-card button {
    background: rgb(8, 8, 175);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    margin-top: auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project-card button:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
    font-size: 30px;
    justify-content: center;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--glow);
}

#experience-section {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#experience-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    text-align: center;
}

#experience-section h2 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-soft);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 40px;
}

#experience-section h2::before,
#experience-section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.experience-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin: 0;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 55px auto;
    padding: 0 40px;
}

.certificates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 55px auto;
    padding: 0 40px;
}

.experience-card,
.certificates-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.experience-card:hover,
.certificates-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.date {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.certificateSQL {
    display: block;
    width: 450px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.certificateSQL:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md), var(--glow);
}

#contactme-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#contactme-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 40px;
}

.contactme-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contactme-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contactme-card h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 32px;
    margin: 0;
}

.contactme-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    font-size: 55px;
}

i:hover {
    cursor: pointer;
}

.resumeButton {
    background: rgb(20, 20, 119);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.resumeButton:hover {@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #0D0D0D;
    --color-surface: #1A1A1A;
    --color-surface-hover: #242424;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-text: #F5F5F5;
    --color-text-soft: #9A9A9A;
    --color-primary: #00D4FF;
    --color-primary-deep: #0099CC;
    --color-accent: #7B61FF;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.55);
    --glow: 0 0 28px rgba(0, 212, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --font-display: "Fraunces", serif;
    --font-body: "Inter", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 212, 255, 0.08), transparent 45%),
        radial-gradient(circle at 85% 100%, rgba(123, 97, 255, 0.06), transparent 45%),
        var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.65;
    padding-top: 150px;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    padding: 15px 24px;
    color: var(--color-text);
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--color-primary);
}

nav h1 {
    margin-left: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: 50px;
    list-style-type: none;
    padding: 0;
    align-items: center;
    gap: 80px;
    font-size: 20px;
    font-weight: bold;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

#description-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    scroll-margin-top: 80px;
    min-height: calc(100vh - 150px);
    box-sizing: border-box;
}

.description h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.description h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-soft);
    margin-bottom: 18px;
}

.description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-soft);
    max-width: 520px;
}

.description {
    flex: 1;
}

.profile-image {
    width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md), var(--glow);
}

#skills-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#skills-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    text-align: center;
    margin-bottom: 40px;
}

#skills-section h2 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-soft);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 40px;
}

#skills-section h2::before,
#skills-section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.langauges-skills-grid,
.frameworks-skills-grid,
.tools-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
}

.skills-card {
    background: var(--color-surface);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 50px;
    width: 120px;
    height: 120px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.skills-card svg {
    width: 50px;
    height: 50px;
    display: block;
}

.skills-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

#modal-icon svg {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: block;
}

.skills-card:hover {
    transform: translateY(-8px) scale(1.06);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--glow);
}

.card-name {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

span {
    font-size: 20px;
    color: var(--color-text);
}

.skills-card:hover .card-name {
    opacity: 1;
    visibility: visible;
}

#skill-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

#skill-modal.open {
    display: flex;
}

.modal-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-text-soft);
}

#modal-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 1rem;
}

#modal-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 4px;
}

#modal-level {
    font-size: 14px;
    color: var(--color-text-soft);
    margin: 0 0 1rem;
}

#modal-desc {
    font-size: 14px;
    color: var(--color-text-soft);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.bar-track {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
}

.bar-fill {
    height: 6px;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width 0.4s ease;
}

#projects-section {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#projects-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 55px auto;
    padding: 0 40px;
}

.project-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card h2 {
    font-family: var(--font-display);
    font-weight: 600;
    text-align: center;
}

.project-card button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    margin-top: auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project-card button:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
    font-size: 30px;
    justify-content: center;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--glow);
}

#experience-section {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#experience-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    text-align: center;
}

#experience-section h2 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-soft);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 40px;
}

#experience-section h2::before,
#experience-section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.experience-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin: 0;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 55px auto;
    padding: 0 40px;
}

.certificates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 55px auto;
    padding: 0 40px;
}

.experience-card,
.certificates-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.experience-card:hover,
.certificates-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.date {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.certificateSQL {
    display: block;
    width: 450px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.certificateSQL:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md), var(--glow);
}

#contactme-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

#contactme-section h1 {
    padding-top: 0px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 40px;
}

.contactme-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contactme-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contactme-card h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 32px;
    margin: 0;
}

.contactme-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    font-size: 55px;
}

i:hover {
    cursor: pointer;
}

.resumeButton {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.resumeButton:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.email-icon {
    transition: transform 0.4s ease, color 0.3s ease;
    color: var(--color-primary);
}

.email-icon:hover {
    transform: translateY(-4px) scale(1.15);
    color: var(--color-accent);
}

.linkedin-icon {
    transition: transform 0.4s ease, color 0.3s ease;
    color: #6FA8FF;
}

.linkedin-icon:hover {
    transform: translateY(-4px) scale(1.15);
    color: var(--color-accent);
}

.github-icon {
    transition: transform 0.4s ease, color 0.3s ease;
    color: var(--color-text);
}

.github-icon:hover {
    transform: translateY(-4px) scale(1.15);
    color: var(--color-accent);
}

#githubSkill-icon {
    color: white;
}

footer {
    padding: 20px;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-soft);
    text-align: center;
    margin-top: 60px;
}

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

/* Large screens - make contact card bigger */
@media (min-width: 1200px) {
    .contactme-grid {
        max-width: 900px;
    }
    .contactme-card {
        padding: 5rem 6rem;
    }
    .contactme-card h2 {
        font-size: 42px;
    }
    .contactme-icons {
        gap: 90px;
        font-size: 70px;
    }
    .resumeButton {
        padding: 14px 36px;
        font-size: 18px;
    }
}

@media (max-width: 1440px) {
    #description-container {
        gap: 60px;
        padding: 0 30px;
    }
    .description h1 {
        font-size: 50px;
    }
    .profile-image {
        width: 320px;
    }
    #skills-section,
    #projects-section,
    #experience-section,
    #contactme-section {
        padding: 0 30px;
    }
    #skills-section h1,
    #projects-section h1,
    #experience-section h1,
    #contactme-section h1 {
        font-size: 50px;
    }
    .projects-grid {
        gap: 20px;
    }
    nav ul {
        gap: 60px;
        margin-right: 30px;
    }
}

@media (max-width: 900px) {
    body {
        padding-top: 100px;
    }
    nav {
        flex-wrap: wrap;
        padding: 10px;
    }
    nav h1 {
        font-size: 22px;
        margin-left: 10px;
    }
    nav ul {
        gap: 15px;
        margin-right: 15px;
        font-size: 14px;
    }
    #description-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin: 20px auto;
        padding: 0 20px;
        min-height: auto;
    }
    .description h1,
    .name {
        font-size: 40px;
    }
    .description h3 {
        font-size: 18px;
    }
    .description p {
        max-width: none;
    }
    .profile-image {
        width: 250px;
        order: -1;
    }
    #skills-section h1,
    #projects-section h1,
    #experience-section h1,
    #contactme-section h1 {
        font-size: 36px;
        padding-top: 0px;
    }
    #skills-section,
    #projects-section,
    #experience-section,
    #contactme-section {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        scroll-margin-top: 90px;
    }
    .skills-card {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    .skills-card svg {
        width: 36px;
        height: 36px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    .experience-grid,
    .certificates-grid {
        padding: 0 20px;
    }
    .certificateSQL {
        width: 100%;
    }
    .contactme-icons {
        gap: 30px;
        font-size: 32px;
    }
    .contactme-card {
        padding: 2rem;
    }
    .contactme-grid {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .name,
    .description h1 {
        font-size: 32px;
    }
    nav ul {
        gap: 12px;
        margin-right: 20px;
        font-size: 12px;
    }
    .profile-image {
        margin-top: 25px;
        width: 180px;
    }
    .card-name {
        font-size: 15px;
    }
}
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.email-icon {
    transition: transform 0.4s ease, color 0.3s ease;
    color: var(--color-primary);
}

.email-icon:hover {
    transform: translateY(-4px) scale(1.15);
    color: var(--color-accent);
}

.linkedin-icon {
    transition: transform 0.4s ease, color 0.3s ease;
    color: #6FA8FF;
}

.linkedin-icon:hover {
    transform: translateY(-4px) scale(1.15);
    color: var(--color-accent);
}

.github-icon {
    transition: transform 0.4s ease, color 0.3s ease;
    color: var(--color-text);
}

.github-icon:hover {
    transform: translateY(-4px) scale(1.15);
    color: var(--color-accent);
}

#githubSkill-icon {
    color: white;
}

footer {
    padding: 20px;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-soft);
    text-align: center;
    margin-top: 60px;
}

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

/* Large screens - make contact card bigger */
@media (min-width: 1200px) {
    .contactme-grid {
        max-width: 900px;
    }
    .contactme-card {
        padding: 5rem 6rem;
    }
    .contactme-card h2 {
        font-size: 42px;
    }
    .contactme-icons {
        gap: 90px;
        font-size: 70px;
    }
    .resumeButton {
        padding: 14px 36px;
        font-size: 18px;
    }
}

@media (max-width: 1440px) {
    #description-container {
        gap: 60px;
        padding: 0 30px;
    }
    .description h1 {
        font-size: 50px;
    }
    .profile-image {
        width: 320px;
    }
    #skills-section,
    #projects-section,
    #experience-section,
    #contactme-section {
        padding: 0 30px;
    }
    #skills-section h1,
    #projects-section h1,
    #experience-section h1,
    #contactme-section h1 {
        font-size: 50px;
    }
    .projects-grid {
        gap: 20px;
    }
    nav ul {
        gap: 60px;
        margin-right: 30px;
    }
}

@media (max-width: 900px) {
    body {
        padding-top: 100px;
    }
    nav {
        flex-wrap: wrap;
        padding: 10px;
    }
    nav h1 {
        font-size: 22px;
        margin-left: 10px;
    }
    nav ul {
        gap: 15px;
        margin-right: 15px;
        font-size: 14px;
    }
    #description-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin: 20px auto;
        padding: 0 20px;
        min-height: auto;
    }
    .description h1,
    .name {
        font-size: 40px;
    }
    .description h3 {
        font-size: 18px;
    }
    .description p {
        max-width: none;
    }
    .profile-image {
        width: 250px;
        order: -1;
    }
    #skills-section h1,
    #projects-section h1,
    #experience-section h1,
    #contactme-section h1 {
        font-size: 36px;
        padding-top: 0px;
    }
    #skills-section,
    #projects-section,
    #experience-section,
    #contactme-section {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        scroll-margin-top: 90px;
    }
    .skills-card {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    .skills-card svg {
        width: 36px;
        height: 36px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    .experience-grid,
    .certificates-grid {
        padding: 0 20px;
    }
    .certificateSQL {
        width: 100%;
    }
    .contactme-icons {
        gap: 30px;
        font-size: 32px;
    }
    .contactme-card {
        padding: 2rem;
    }
    .contactme-grid {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .name,
    .description h1 {
        font-size: 32px;
    }
    nav ul {
        gap: 12px;
        margin-right: 20px;
        font-size: 12px;
    }
    .profile-image {
        margin-top: 25px;
        width: 180px;
    }
    .card-name {
        font-size: 15px;
    }
}