/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --bg-primary: #0a0f0d;
    --bg-secondary: #0d1a14;
    --bg-card: rgba(16, 36, 26, 0.55);
    --bg-card-hover: rgba(22, 50, 36, 0.7);
    --green-primary: #1db954;
    --green-secondary: #1ed760;
    --green-glow: rgba(29, 185, 84, 0.25);
    --green-dark: #145a2e;
    --text-primary: #e8f5e9;
    --text-secondary: #a5c4ad;
    --text-muted: #6b8f73;
    --border-color: rgba(29, 185, 84, 0.15);
    --border-hover: rgba(29, 185, 84, 0.4);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --radius-full: 50%;
    --shadow-glow: 0 0 30px rgba(29, 185, 84, 0.15);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slide: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below content but above background */
    pointer-events: none; /* Allows clicking through unless we want interaction everywhere */
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--green-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-primary);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background: rgba(10, 15, 13, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-pills {
    display: flex;
    gap: 8px;
    list-style: none;
    background: rgba(16, 36, 26, 0.5);
    padding: 5px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
}

.nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    background: none;
    white-space: nowrap;
}

.nav-pill:hover {
    color: var(--text-primary);
    background: rgba(29, 185, 84, 0.08);
}

.nav-pill.active {
    color: var(--bg-primary);
    background: var(--green-primary);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.35);
}




/* ===== PAGE CONTAINER ===== */
.slides-wrapper {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
}

.slide {
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.slide-inner {
    width: 90vw;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 0 80px;
}



/* ===== SECTION TITLE ===== */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.section-divider .divider-line {
    width: 40px;
    height: 3px;
    background: var(--green-primary);
    border-radius: 2px;
}

.section-divider h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* ===== HERO / HOME SECTION ===== */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: calc(100vh - 80px);
    position: relative;
}

/* Two-column top row: text left, photo space right */
.hero-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin-bottom: 28px;
}

/* Intro block — left aligned */
.hero-intro-block {
    flex: 1.2;
    max-width: 750px;
}

.hero-greeting {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.hero-name-large {
    font-family: 'Outfit', sans-serif;
    font-size: 5.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.hero-name-accent {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-aspiration {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.typed-text {
    color: var(--green-secondary);
    font-weight: 700;
    text-shadow: 0 0 18px rgba(29, 185, 84, 0.35);
}

.hero-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--green-primary);
    color: var(--bg-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    border: 2px solid var(--green-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--green-primary);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
    transform: translateY(-2px);
}

/* Hero social icons */
.hero-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
    background: rgba(29, 185, 84, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.3);
}

/* Right side photo rendering */
.hero-photo-space {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.photo-wrapper {
    position: relative;
    border-radius: var(--radius-full);
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
}

.photo-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, var(--green-primary), transparent 70%);
    opacity: 0.35;
    filter: blur(25px);
    z-index: -1;
    animation: glow-pulse 3s infinite ease-in-out;
}

@keyframes glow-pulse {
    0% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.08); opacity: 0.45; }
    100% { transform: scale(1); opacity: 0.25; }
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--green-primary);
    box-shadow: 0 0 30px rgba(29, 185, 84, 0.45);
    transition: var(--transition-smooth);
}

.profile-photo:hover {
    transform: scale(1.03);
    border-color: var(--green-secondary);
    box-shadow: 0 0 50px rgba(29, 185, 84, 0.7);
}

/* Tech / Tool strip  */
.hero-tools {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 36px;
}

.tool-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 0.78rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tool-badge:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Hero tagline area */
.hero-tagline-area {
    margin: 40px auto 0;
    max-width: 850px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    align-self: center;
}

.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.hero-tagline-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* ===== SKILLS SECTION ===== */
.skills-marquee-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
    position: relative;
    z-index: 5;
}

/* Add a subtle fadetout on edges of screen for smooth entry/exit */
.skills-marquee-wrapper::before,
.skills-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.skills-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.skills-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-row {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;
    min-width: 100%;
    justify-content: space-around;
}

.right-to-left .marquee-content {
    animation: scroll-left 35s linear infinite;
}

.left-to-right .marquee-content {
    animation: scroll-right 35s linear infinite;
}

/* Pause animation on hover */
.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}

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

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

.skill-tag-large {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 1.15rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.skill-tag-large:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
    background: var(--bg-card-hover);
    box-shadow: 0 0 25px rgba(29, 185, 84, 0.3);
    transform: translateY(-4px) scale(1.05);
}

/* ===== SKILLS INFO GRID ===== */
.skills-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
    align-items: stretch;
}

.info-card, .globe-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card:hover, .globe-card:hover {
    border-color: rgba(29, 185, 84, 0.5);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.header-indicator {
    width: 6px;
    height: 30px;
    background: var(--green-primary);
    border-radius: var(--radius-pill);
    box-shadow: 0 0 15px var(--green-primary);
}

.info-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.highlight {
    color: var(--green-primary);
    font-weight: 600;
}

.summary-text-full {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.summary-text-full p {
    margin-bottom: 18px;
}

.summary-text-full p:last-child {
    margin-bottom: 0;
}

.summary-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.bullet-icon {
    color: var(--green-primary);
    flex-shrink: 0;
}

/* ===== PROFILE CARD & FEATURES ===== */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    border-color: rgba(29, 185, 84, 0.5);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.profile-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 10px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.feature-item:hover .feature-icon {
    background: var(--green-primary);
    color: var(--bg-primary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

.feature-details {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.45;
}



/* ===== PROJECTS SECTION ===== */
.projects-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 20px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.project-visual {
    height: 50%;
    width: 100%;
    background: rgba(29, 185, 84, 0.04);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    mix-blend-mode: screen; /* Gives it that translucent cyber projection feel */
    transition: var(--transition-smooth);
    filter: saturate(1.2) brightness(0.9);
}

.project-card:hover .project-img {
    transform: scale(1.05);
    opacity: 1;
    filter: saturate(1.4) brightness(1.1);
}

.project-content {
    flex: 1;
    height: 50%;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-secondary));
    transition: width 0.5s ease;
}

.project-card:hover::after {
    width: 100%;
}

.project-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.project-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-badge {
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: rgba(29, 185, 84, 0.12);
    border: 1px solid rgba(29, 185, 84, 0.2);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.project-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.project-subtitle {
    font-size: 0.78rem;
    color: var(--green-primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.project-bullets {
    list-style: none;
    margin-bottom: auto; /* pushes link to bottom */
}

.project-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.project-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.25);
    color: var(--green-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    align-self: flex-start;
    margin-top: 10px;
}

.project-link:hover {
    background: var(--green-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

/* ===== EXPERIENCE / EDUCATION SECTION ===== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-primary), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 28px;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: var(--green-primary);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 12px rgba(29, 185, 84, 0.4);
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(6px);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.timeline-subtitle {
    font-size: 0.88rem;
    color: var(--green-primary);
    margin-bottom: 4px;
    font-weight: 500;
}

.timeline-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-bullets {
    list-style: none;
    margin-top: 10px;
}

.timeline-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green-primary);
}

/* Certificates subsection */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cert-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.cert-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(29, 185, 84, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--green-primary);
}

.cert-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cert-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--green-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Left Side - Stacked Cards */
.contact-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card-stacked {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.contact-card-stacked:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-icon.email {
    background: rgba(234, 67, 53, 0.15);
    color: #ea4335;
}

.contact-card-icon.linkedin {
    background: rgba(10, 102, 194, 0.15);
    color: #0a66c2;
}

.contact-card-icon.github {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-card-icon.phone {
    background: rgba(29, 185, 84, 0.15);
    color: var(--green-primary);
}

.contact-card-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Right Side - Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 15, 13, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(165, 196, 173, 0.4);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--green-primary);
    color: var(--bg-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background: var(--green-secondary);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
    transform: translateY(-2px);
}

/* ===== SLIDE INDICATOR DOTS ===== */
.slide-dots {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 999;
    background: rgba(10, 15, 13, 0.7);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slide-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--green-primary);
    box-shadow: 0 0 12px rgba(29, 185, 84, 0.4);
}

/* ===== FADE-IN ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING BACKGROUND ELEMENTS ===== */
.bg-orb {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--green-primary);
    top: -100px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.bg-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--green-dark);
    bottom: 10%;
    left: -80px;
    animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, 30px);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-top-row {
        flex-direction: column;
        gap: 24px;
    }

    .hero-intro-block {
        max-width: 100%;
    }

    .hero-photo-space {
        display: none;
    }

    .hero-name-large {
        font-size: 3.5rem;
    }

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

    .nav-pills {
        gap: 4px;
    }

    .nav-pill {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .slide-inner {
        padding: 30px 20px 80px;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .hero-name-large {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 10px 16px;
    }

    .project-card {
        padding: 22px;
    }
}

/* ===== ACHIEVEMENTS / BADGES GRID ===== */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 20px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 30px -10px rgba(29, 185, 84, 0.2);
}

.cert-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: rgba(29, 185, 84, 0.08);
    color: var(--green-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.cert-info h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cert-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    .cert-card {
        padding: 24px;
    }
}