/* =========================================
   Google Fonts
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* =========================================
   CSS Variables
========================================= */
:root{
   /* ========== Main colors (HSL - hue, saturation, and lightness) ========== */

   /* Blue - hsl(217, 85%, 74%); */
   /* Purple - hsl(245, 54%, 74%); */
   /* Teal - hsl(181, 47%, 49%); */
   /* Yellow - hsl(65, 60%, 70%); */
   /* Green - hsl(162, 60%, 65%); */
   /* Red - hsl(356, 67%, 70%); */
   /* Pink - hsl(330, 73%, 72%); */
   /* Security Blue - hsl(230, 75%, 62%); */

   --hue: 230; 
   --sat: 75%; 
   --light: 62% ;

   --primary-color: hsl(var(--hue), var(--sat), var(--light)); /*pimary*/
   --white-color: hsl(var(--hue), 45%, 98%) ; /* white */
   --dark-color: hsl(var(--hue), 26%, 12%) ; /* dark */
   --text-color: hsl(var(--hue), 25%, 92%);
   --title-color: hsl(var(--hue), 30%, 96%);
   --container-color: hsl(var(--hue), 28%, 18%);

   /* ======= Changeable colors for dark/light themes ======= */
   --color-01: hsl(var(--hue), var(--sat), var(--light));
   --color-02: hsl(var(--hue), 45%, 98%) ; /* white to dark */
   --color-03: hsl(var(--hue), 26%, 12%) ; /* dark to white */
   --color-04: hsl(var(--hue), 12%, 65%) ; /* light-gray to dark-gray */
   --color-05: hsl(var(--hue), 26%, 12%) ; /* dark to primary */

   --body-color: hsl(var(--hue), 35%, 8%); /* deep security blue background */
   --hover-color: hsl(var(--hue), var(--sat), calc(var(--light) + 8%)) ;

   /* ======= Background colors ======= */
   --bottom-nav-bg: hsl(var(--hue), 32%, 25% / .65) ;
   --card-bg: linear-gradient(120deg, hsl(var(--hue), 54%, 74% /.15), hsl(var(--hue), 54%, 74% / .05)) ;
   --modal-backdrop-bg: hsl(var(--hue), 54%, 74% /.1) ;
   --footer-bg: linear-gradient(360deg, hsl(var(--hue), 54%, 74% /.15), hsl(var(--hue), 54%, 74% / .1)) ;

   --scrollbar-color: hsl(var(--hue), 25%, 20%) ;
   --scrollbar-thumb: hsl(var(--hue), var(--sat), var(--light)) ;
   --scrollbar-thumb-hover: hsl(var(--hue), var(--sat), calc(var(--light) - 7%)) ;

   /* ======= Font and typography ======= */
   --body-font-family: "Inter", sans-serif ;
   
   /* ======= Font sizes ======= */
   --h1-font-size: 2.85rem; 
   --h2-font-size: 2.25rem;  
   --h3-font-size: 1.97rem;
   --h4-font-size: 1.43rem ;
   --h5-font-size: 1.13rem ;

   --xlarge-font-size: 1.48rem;
   --large-font-size: 1.23rem;
   --medium-font-size: 1.18rem;
   --base-font-size: 1.1rem;
   --small-font-size:1.07rem;
   --tiny-font-size: 0.98rem;
   
   /* ======= Font weights ======= */
   --font-light: 300;
   --font-regular: 400;
   --font-medium: 500;
   --font-semi-bold: 600;
   --font-bold: 700;

   /* ======= Layering order(z-index) ======= */
   --z-minus: -1 ;
   --z-base: 0;
   --z-low: 1;
   --z-high:10 ;
   --z-content: 100;
   --z-tooltip: 1000;
   --z-fixed: 1100 ;
   --z-overlay: 1110 ;
   --z-modal:1990 ;
   --z-max: 9999 ;
}

[data-theme="light"] {
    --body-color: hsl(0, 0%, 98%);
    --text-color: hsl(var(--hue), 18%, 18%);
    --title-color: hsl(var(--hue), 22%, 16%);
    --container-color: hsl(var(--hue), 38%, 92%);
    --color-02: hsl(var(--hue), 12%, 14%);
    --color-03: hsl(var(--hue), 22%, 16%);
    --color-04: hsl(var(--hue), 10%, 38%);
    --color-05: hsl(var(--hue), 18%, 18%);
    --bottom-nav-bg: hsl(var(--hue), 38%, 92% / 0.9);
    --card-bg: linear-gradient(120deg, hsl(var(--hue), 54%, 74% / .08), hsl(var(--hue), 54%, 74% / .02));
    --footer-bg: linear-gradient(360deg, hsl(var(--hue), 54%, 74% / .1), hsl(var(--hue), 54%, 74% / .05));
    --hover-color: hsl(var(--hue), var(--sat), calc(var(--light) - 15%));
    --scrollbar-color: hsl(var(--hue), 20%, 85%);
    --scrollbar-thumb: hsl(var(--hue), 38%, 60%);
    --scrollbar-thumb-hover: hsl(var(--hue), 38%, 52%);
}


/* =========================================
   2. BASE STYLES
========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font-family);
}

body {
    background: var(--body-color);
    color: var(--text-color);
    transition: .3s;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(var(--hue), var(--sat), var(--light), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--hue), 100%, 60%, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(var(--hue), var(--sat), var(--light), 0.05) 0%, transparent 50%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: var(--z-minus);
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(var(--hue), 100%%, 60%%, 0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
    z-index: var(--z-minus);
    pointer-events: none;
    opacity: 0.5;
}

/* ============================================
   FLOATING BACKGROUND ORBS
   ============================================ */

.background-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-minus);
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--hue), 100%, 60%, 0.6), rgba(var(--hue), 100%, 60%, 0.1));
    top: 10%;
    left: 10%;
    animation: orb1Motion 25s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--hue), 90%, 70%, 0.5), rgba(var(--hue), 90%, 70%, 0.08));
    bottom: 15%;
    right: 10%;
    animation: orb2Motion 30s ease-in-out infinite;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--hue), 100%, 50%, 0.4), rgba(var(--hue), 100%, 50%, 0.05));
    top: 50%;
    right: 20%;
    animation: orb3Motion 28s ease-in-out infinite;
}

ul, li { list-style: none; }
a { text-decoration: none; color: inherit; }

/* Utility Class */
.sue-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   3. HEADER STYLES (This was missing!)
========================================= */
.sue-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: 20px 0;
    background: transparent;
}

.sue-header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.sue-logo a {
    color: var(--title-color);
    font-size: 1.5rem;
    font-weight: var(--font-semi-bold);
}

/* Header Buttons Group */
.header-btns {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

/* "Let's Talk" Button */
.sue-main-btn {
    border: 1px solid var(--text-color);
    padding: 8px 24px;
    border-radius: 50px;
    transition: .3s;
}

.sue-main-btn a {
    color: var(--title-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

.sue-main-btn:hover {
    background: var(--white-color);
    border-color: var(--white-color);
}

.sue-main-btn:hover a {
    color: var(--body-color);
}

/* Icons in Header */
.lets-talk-icon, .theme-btn {
    color: var(--title-color);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
}

.lets-talk-icon { display: none; }

.theme-btn {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    transition: .3s;
    background: transparent;
}

.theme-btn i {
    line-height: 1;
}

.theme-btn .sun-icon { display: none; }
.theme-btn .moon-icon { display: inline-flex; }

[data-theme="light"] .theme-btn .sun-icon { display: inline-flex; }
[data-theme="light"] .theme-btn .moon-icon { display: none; }

.theme-btn:hover {
    background: var(--hover-color);
    color: var(--body-color);
    border-color: var(--hover-color);
}

/* =========================================
   3.5 HERO SECTION
========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-top: 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 360px;
    height: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Hero Text Content */
.hero-text {
    grid-column: 2;
    text-align: left;
}

.greeting {
    color: var(--color-04);
    font-size: var(--large-font-size);
    font-weight: var(--font-regular);
    margin-bottom: 10px;
}

.hero-name {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    font-weight: var(--font-bold);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
}

.hero-subtitle {
    color: var(--color-04);
    font-size: var(--large-font-size);
    margin-bottom: 30px;
    font-weight: var(--font-light);
}

.hero-tag {
    color: var(--primary-color);
    font-size: var(--medium-font-size);
    font-weight: var(--font-semi-bold);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.hero-role {
    color: var(--title-color);
    font-size: var(--h4-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 8px;
}

.hero-desc {
    color: var(--color-04);
    font-size: var(--small-font-size);
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 520px;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--body-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: var(--font-semi-bold);
    font-size: var(--small-font-size);
    transition: .3s;
    border: 2px solid var(--primary-color);
}

.hero-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Scroll Down Section */
.scroll-down {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: var(--color-04);
}

.scroll-down span {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    letter-spacing: 2px;
}

.scroll-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Social Links */
.social-links {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.social-links .follow-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: var(--color-04);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    letter-spacing: 2px;
}

.social-links .social-divider {
    width: 1px;
    height: 60px;
    background: var(--color-04);
}

.social-links a {
    color: var(--color-04);
    font-size: 1.3rem;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* =========================================
   4. ABOUT SECTION
========================================= */
.about-section {
    min-height: 100vh;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    font-weight: var(--font-bold);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--color-04);
    font-size: var(--medium-font-size);
    font-weight: var(--font-regular);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-left {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: .3s;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro {
    margin-bottom: 0;
}

.about-heading {
    font-size: var(--h4-font-size);
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-heading .highlight {
    color: var(--primary-color);
}

.about-text {
    color: var(--color-04);
    font-size: var(--base-font-size);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-text strong {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: .3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(88, 165, 255, 0.15);
}

.stat-number {
    font-size: var(--h3-font-size);
    color: var(--primary-color);
    font-weight: var(--font-bold);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--color-04);
    font-size: var(--tiny-font-size);
    font-weight: var(--font-medium);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* About Actions */
.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    transition: .3s;
    display: inline-block;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--body-color);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.secondary-btn {
    background: transparent;
    color: var(--title-color);
    border: 2px solid var(--text-color);
}

.secondary-btn:hover {
    background: var(--hover-color);
    color: var(--body-color);
    border-color: var(--hover-color);
}

/* Focus Areas */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.focus-card {
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.03), rgba(var(--hue), var(--sat), var(--light), 0.01));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.35);
    border-radius: 28px;
    padding: 40px 35px;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.focus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--hue), 100%, 60%, 0.6);
    box-shadow: 0 15px 50px rgba(var(--hue), var(--sat), var(--light), 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.focus-card:hover::before {
    opacity: 1;
}

.focus-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color), hsl(var(--hue), var(--sat), calc(var(--light) + 5%)));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(var(--hue), var(--sat), var(--light), 0.3);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-icon i {
    font-size: 1.8rem;
    color: var(--body-color);
}

.focus-card:hover .focus-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(var(--hue), var(--sat), var(--light), 0.45);
}

.focus-title {
    font-size: var(--h5-font-size);
    color: var(--title-color);
    font-weight: var(--font-bold);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.focus-desc {
    color: var(--color-04);
    font-size: var(--small-font-size);
    line-height: 1.75;
    font-weight: 400;
}

/* =========================================
   5. RESUME SECTION
========================================= */
.resume-section {
    min-height: 100vh;
    padding: 100px 0;
}

/* Resume Tabs */
.resume-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.resume-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--color-04);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: .3s;
}

.resume-tab i {
    font-size: 1.2rem;
}

.resume-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.resume-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--body-color);
}

/* Resume Content */
.resume-content {
    position: relative;
}

.resume-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.resume-tab-content.active {
    display: block;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.3);
    border: 3px solid var(--body-color);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -80px;
    left: auto;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -80px;
}

.timeline-icon i {
    font-size: 1.3rem;
    color: var(--body-color);
}

.timeline-content {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: .3s;
}

.timeline-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.15);
    transform: translateY(-3px);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: var(--body-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: var(--tiny-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: var(--h5-font-size);
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 6px;
}

.timeline-institution {
    color: var(--color-04);
    font-size: var(--tiny-font-size);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--color-04);
    font-size: var(--tiny-font-size);
    line-height: 1.6;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    color: var(--color-04);
    font-size: var(--tiny-font-size);
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.timeline-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.timeline-list li strong {
    color: var(--title-color);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.03), rgba(var(--hue), var(--sat), var(--light), 0.01));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.25);
    border-radius: 24px;
    padding: 35px;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.skill-category:hover {
    border-color: rgba(var(--hue), 100%, 60%, 0.5);
    box-shadow: 0 12px 40px rgba(var(--hue), var(--sat), var(--light), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.skill-category:hover::before {
    opacity: 1;
}

.skill-category-title {
    font-size: var(--h5-font-size);
    color: var(--title-color);
    font-weight: var(--font-bold);
    margin-bottom: 22px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.skill-category-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.skill-category:hover .skill-category-title {
    color: var(--primary-color);
}

.skill-category:hover .skill-category-title i {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 15px rgba(var(--hue), var(--sat), var(--light), 0.6);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    display: inline-block;
    background: rgba(var(--hue), var(--sat), var(--light), 0.12);
    border: 1.5px solid rgba(var(--hue), 100%, 60%, 0.3);
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: 22px;
    font-size: var(--tiny-font-size);
    font-weight: var(--font-semi-bold);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.skill-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), hsl(var(--hue), var(--sat), calc(var(--light) + 3%)));
    color: var(--body-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(var(--hue), var(--sat), var(--light), 0.3);
    transform: translateY(-3px);

    border-color: var(--primary-color);
}

/* =========================================
   PROJECTS SECTION
========================================= */

.projects-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(var(--hue), var(--sat), var(--light), 0.05));
}

.projects-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.carousel-btn {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.20), rgba(var(--hue), var(--sat), var(--light), 0.12));
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.45);
    border-radius: 12px;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    flex-shrink: 0;
    overflow: hidden;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    backdrop-filter: blur(12px);
}

.carousel-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--hue), 100%, 60%, 0.25), transparent 75%);
    opacity: 0;
    transition: opacity .3s ease;
}

.carousel-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left .5s ease;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), hsl(var(--hue), var(--sat), calc(var(--light) + 8%)));
    color: var(--body-color);
    box-shadow: 0 12px 35px rgba(var(--hue), var(--sat), var(--light), 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: scale(1.12) translateY(-2px);
    border-color: var(--primary-color);
    backdrop-filter: blur(18px);
}

.carousel-btn:hover::before {
    opacity: 1;
}

.carousel-btn:hover::after {
    left: 100%;
}

.carousel-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.projects-container {
    flex: 1;
    display: grid;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    align-items: center;
}

.project-card {
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.10), rgba(var(--hue), var(--sat), var(--light), 0.03));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.28);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeIn .5s ease-out;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease, transform .4s cubic-bezier(0.4, 0, 0.2, 1), border-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--hue), 100%, 60%, 0.20), transparent);
    transition: left .6s ease;
    opacity: 0;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--hue), 100%, 60%, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.project-card:hover::before {
    left: 100%;
    opacity: 1;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    left: auto;
    top: auto;
    height: auto;
    transform: translateY(0);
    backdrop-filter: blur(25px);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--hue), 100%, 60%, 0.6);
    box-shadow: 0 20px 60px rgba(var(--hue), var(--sat), var(--light), 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
}

.project-image {
    display: none;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.project-card.active .project-title {
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.project-card.active .project-subtitle {
    animation: slideInLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.project-card.active .project-desc {
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.project-title {
    font-size: var(--h3-font-size);
    color: var(--title-color);
    font-weight: var(--font-bold);
    margin: 0;
    background: linear-gradient(135deg, var(--title-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.project-card.active .project-title {
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.project-subtitle {
    font-size: var(--small-font-size);
    color: var(--primary-color);
    font-weight: var(--font-bold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: slideInLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.project-card.active .project-subtitle {
    animation: slideInLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.project-subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(var(--hue), var(--sat), var(--light), 0.6);
    animation: float 2s ease-in-out infinite;
}

.project-desc {
    color: var(--color-04);
    font-size: var(--small-font-size);
    line-height: 1.85;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(var(--hue), 100%, 60%, 0.15);
    border-bottom: 1px solid rgba(var(--hue), 100%, 60%, 0.15);
    opacity: 0;
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    backdrop-filter: blur(10px);
}

.project-card.active .project-desc {
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.project-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.18), rgba(var(--hue), var(--sat), var(--light), 0.10));
    border: 1.5px solid rgba(var(--hue), 100%, 60%, 0.35);
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: 24px;
    font-size: var(--tiny-font-size);
    font-weight: var(--font-semi-bold);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.4s ease-out;
    opacity: 0;
    backdrop-filter: blur(10px);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
    animation: slideInRight 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    opacity: 0;
}

.project-card.active .project-tags {
    animation: slideInRight 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    opacity: 1;
}

.project-card.active .project-tag {
    opacity: 1;
}

.project-card.active .project-tag:nth-child(1) { animation-delay: 0.45s; }
.project-card.active .project-tag:nth-child(2) { animation-delay: 0.50s; }
.project-card.active .project-tag:nth-child(3) { animation-delay: 0.55s; }
.project-card.active .project-tag:nth-child(4) { animation-delay: 0.60s; }

.project-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(var(--hue), 100%, 60%, 0.15);
    transition: left .4s ease;
}

.project-tag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--hue), 100%, 60%, 0.1), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}

.project-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), hsl(var(--hue), var(--sat), calc(var(--light) + 5%)));
    color: var(--body-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(var(--hue), var(--sat), var(--light), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.08);
    backdrop-filter: blur(15px);
}

.project-tag:hover::before {
    left: 100%;
}

.project-tag:hover::after {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    flex-wrap: wrap;
    animation: slideInLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--small-font-size);
    font-weight: var(--font-bold);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.18), rgba(var(--hue), var(--sat), var(--light), 0.08));
    border: 1.5px solid rgba(var(--hue), 100%, 60%, 0.40);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
    opacity: 0;
    backdrop-filter: blur(12px);
}

.project-card.active .project-link:nth-child(1) { animation-delay: 0.60s; opacity: 1; }
.project-card.active .project-link:nth-child(2) { animation-delay: 0.70s; opacity: 1; }

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--hue), 100%, 60%, 0.2), transparent);
    transition: left .5s ease;
}

.project-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(var(--hue), 100%, 60%, 0.15), transparent 75%);
    opacity: 0;
    transition: opacity .3s ease;
}

.project-link:hover {
    color: var(--title-color);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), hsl(var(--hue), var(--sat), calc(var(--light) + 8%)));
    box-shadow: 0 12px 35px rgba(var(--hue), var(--sat), var(--light), 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.08);
    backdrop-filter: blur(18px);
}

.project-link:hover::before {
    left: 100%;
}

.project-link:hover::after {
    opacity: 1;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    animation: slideInLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(var(--hue), var(--sat), var(--light), 0.2);
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.3);
    cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.4s ease-out;
}

.indicator:nth-child(1) { animation-delay: 0.85s; }
.indicator:nth-child(2) { animation-delay: 0.90s; }
.indicator:nth-child(3) { animation-delay: 0.95s; }
.indicator:nth-child(4) { animation-delay: 1.00s; }
.indicator:nth-child(5) { animation-delay: 1.05s; }
.indicator:nth-child(6) { animation-delay: 1.10s; }

.indicator.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(var(--hue), var(--sat), var(--light), 0.4);
    transform: scale(1.3);
    animation: shimmer 2s ease-in-out infinite;
}

.indicator:hover {
    background: rgba(var(--hue), var(--sat), var(--light), 0.4);
    transform: scale(1.15);
}

/* =========================================
   6. BOTTOM NAVIGATION
========================================= */

.sue-main-btn a {
    color: var(--title-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

.sue-main-btn:hover {
    background: var(--white-color);
    border-color: var(--white-color);
}

.sue-main-btn:hover a {
    color: var(--body-color);
}

/* Icons in Header */
.lets-talk-icon, .theme-btn {
    color: var(--title-color);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex; /* Ensures icons align properly */
}

.lets-talk-icon { display: none; } /* Usually hidden on desktop */

/* =========================================
   4. BOTTOM NAVIGATION
========================================= */
.bottom-nav-container {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-fixed);
    width: auto;
}

/* --- The Menu List --- */
.bottom-nav .menu {
    background: var(--bottom-nav-bg);
    backdrop-filter: blur(10px);
    padding: 16px 35px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    display: none;
    align-items: center;
    column-gap: 25px;
}

/* Active State (Added by JS) */
.bottom-nav.active .menu {
    display: flex;
    animation: fadeUp 0.3s ease;
}

/* Menu Icons */
.bottom-nav .menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bottom-nav .menu li a i {
    color: var(--text-color);
    font-size: 1.4rem;
    padding: 10px;
    border-radius: 50%;
    transition: .3s;
}

.bottom-nav .menu li:hover a i {
    color: var(--body-color);
    background: var(--hover-color);
}

.bottom-nav .menu .current i {
    color: var(--body-color);
    background: var(--primary-color);
}

/* Labels - Always visible */
.bottom-nav .menu li a span {
    position: absolute;
    top: -45px;
    background: var(--primary-color);
    color: var(--body-color);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: var(--tiny-font-size);
    font-weight: var(--font-medium);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    white-space: nowrap;
}

.bottom-nav .menu li:hover a span {
    opacity: 1;
    top: -55px;
}

/* =========================================
   5. SHOW / HIDE BUTTONS
========================================= */

/* The "Wiggle" Button (Visible when menu is closed) */
.menu-show-btn {
    width: 85px;
    height: 50px;
    background: var(--bottom-nav-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
    cursor: pointer;
    
    /* Animation */
    animation: wiggle 3s linear infinite;
}

/* Hide the Show button when menu is Active */
.bottom-nav.active ~ .menu-show-btn,
.bottom-nav.active .menu-show-btn {
    display: none;
}

/* Show the show button by default */
.menu-show-btn {
    display: flex;
}

.menu-show-btn .bar-01, .menu-show-btn .bar-02 {
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    transition: .3s;
}

.menu-show-btn:hover .bar-01, .menu-show-btn:hover .bar-02 {
    background: var(--hover-color);
}

/* The "Hide" Arrow Button */
.bottom-nav .menu-hide-btn {
    display: none;
}

/* =========================================
   6. ANIMATIONS
========================================= */
@keyframes wiggle {
    0%, 5% { transform: rotate(0); }
    15% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    25% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    35% { transform: rotate(-5deg); }
    40%, 100% { transform: rotate(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(88, 165, 255, 0.5); }
    50% { text-shadow: 0 0 18px rgba(88, 165, 255, 0.85); }
}

@keyframes fadeLoop {
    0% { opacity: 0; }
    20% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes blinkCaret {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   BACKGROUND ANIMATIONS
   ============================================ */

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(30px);
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-30px);
    }
}

@keyframes orb1Motion {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -40px);
    }
    50% {
        transform: translate(20px, 40px);
    }
    75% {
        transform: translate(-40px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes orb2Motion {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-35px, 25px);
    }
    50% {
        transform: translate(35px, -30px);
    }
    75% {
        transform: translate(-20px, -40px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes orb3Motion {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(40px, 20px);
    }
    50% {
        transform: translate(-30px, -35px);
    }
    75% {
        transform: translate(25px, 35px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        box-shadow: 0 0 0 rgba(var(--hue), 100%, 60%, 0), inset 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(var(--hue), 100%, 60%, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 rgba(var(--hue), 100%, 60%, 0), inset 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-glow {
    animation: glow 2.2s ease-in-out infinite;
}

.animate-fade-loop {
    animation: fadeLoop 3.4s ease-in-out infinite;
}

.typewriter::after {
    content: '|';
    position: absolute;
    right: -12px;
    top: 0;
    font-size: inherit;
    color: var(--primary-color);
    animation: blinkCaret 1s step-end infinite;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* Tablet & iPad (768px - 1024px) */
@media (max-width: 1024px) {
    .sue-container {
        max-width: 95%;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px;
    }

    .hero-image {
        order: 1;
        margin: 0 auto;
    }

    .hero-text {
        order: 2;
        text-align: center;
    }

    .social-links {
        order: 3;
        position: relative;
        left: 0;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .social-divider {
        width: 60px;
        height: 2px;
    }

    .scroll-down {
        display: none;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .about-right {
        order: 2;
    }

    .about-left {
        order: 1;
    }

    /* Timeline */
    .timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }

    .timeline-icon {
        left: 0 !important;
        right: auto !important;
    }

    /* Skills Grid */
    .skills-grid {
        grid-template-columns: 1fr;
    }

    /* Focus Areas */
    .focus-areas {
        grid-template-columns: 1fr;
    }

    /* Projects */
    .project-card {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 30px !important;
    }

    .projects-carousel {
        gap: 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --big-font-size: 2.5rem;
        --h1-font-size: 2rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --h4-font-size: 1.125rem;
        --h5-font-size: 1rem;
    }

    .sue-container {
        max-width: 90%;
    }

    /* Header */
    .sue-header .inner {
        padding: 15px 0;
    }

    .sue-logo a span {
        font-size: 1.5rem;
    }

    .lets-talk-btn {
        display: none;
    }

    .lets-talk-icon {
        display: flex;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: var(--h2-font-size);
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-image img {
        max-width: 280px;
    }

    .hero-name {
        font-size: 2.2rem;
    }

    .hero-tag {
        font-size: var(--small-font-size);
    }

    .social-links {
        gap: 15px;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-heading {
        font-size: var(--h3-font-size);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-actions {
        flex-direction: column;
        gap: 15px;
    }

    .about-btn {
        width: 100%;
        text-align: center;
    }

    .about-image-wrapper img {
        max-width: 300px;
    }

    /* Focus Areas */
    .focus-areas {
        margin-top: 40px;
    }

    .focus-card {
        padding: 30px 25px;
    }

    .focus-icon {
        width: 60px;
        height: 60px;
    }

    .focus-icon i {
        font-size: 1.6rem;
    }

    /* Resume Section */
    .resume-section {
        padding: 60px 0;
    }

    .resume-tabs {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .resume-tab {
        width: 100%;
        justify-content: center;
    }

    .resume-content {
        margin-top: 30px;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 70px !important;
        margin-bottom: 40px;
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
    }

    .timeline-icon i {
        font-size: 1.1rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-title {
        font-size: var(--small-font-size);
    }

    .timeline-institution,
    .timeline-desc {
        font-size: var(--tiny-font-size);
    }

    /* Skills */
    .skill-category {
        padding: 25px 20px;
    }

    .skill-category-title {
        font-size: var(--small-font-size);
    }

    .skill-tag {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    /* Projects */
    .projects-section {
        padding: 60px 0;
    }

    .projects-carousel {
        flex-direction: column;
        gap: 30px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .project-card {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 25px !important;
    }

    .project-image img {
        height: 250px;
    }

    .project-title {
        font-size: var(--h4-font-size);
    }

    .project-desc {
        font-size: var(--tiny-font-size);
    }

    /* Bottom Navigation */
    .bottom-nav-container {
        bottom: 20px;
        right: 20px;
    }

    .menu {
        gap: 8px;
    }

    .menu-item a {
        padding: 12px;
    }

    .menu-item span {
        display: none;
    }

    .menu-item i {
        font-size: 1.3rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --big-font-size: 2rem;
        --h1-font-size: 1.75rem;
        --h2-font-size: 1.35rem;
    }

    .sue-container {
        max-width: 92%;
    }

    /* Hero */
    .hero-image img {
        max-width: 240px;
    }

    .hero-name {
        font-size: 1.8rem;
    }

    /* Focus Cards */
    .focus-card {
        padding: 25px 20px;
    }

    .focus-icon {
        width: 55px;
        height: 55px;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px !important;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
    }

    .timeline-icon i {
        font-size: 1rem;
    }

    .timeline-content {
        padding: 18px;
    }

    /* Skills */
    .skill-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    /* Projects */
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .project-image img {
        height: 200px;
    }

    .project-title {
        font-size: var(--h5-font-size);
    }

    .project-desc {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .project-tag {
        font-size: 0.65rem;
        padding: 6px 12px;
    }

    /* Stats Grid */
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   ANIMATED CUSTOM CURSOR
   ============================================ */

* {
    cursor: none !important;
}

html {
    cursor: none !important;
    scroll-behavior: smooth;
}

body {
    cursor: none !important;
}

/* Ensure all interactive elements don't show default cursor */
a,
button,
input,
textarea,
select,
[role="button"],
[onclick],
.clickable,
.project-link,
.cert-link,
.project-tag,
.skill-tag,
.carousel-btn,
.indicator,
.theme-btn,
.menu-item,
.project-card,
.cert-card,
.skill-item {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: var(--z-max);
    display: none;
}

.custom-cursor.active {
    display: block;
}

.cursor-body {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2.5px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 10px rgba(var(--hue), var(--sat), var(--light), 0.6),
        0 0 20px rgba(var(--hue), var(--sat), var(--light), 0.3),
        inset 0 0 10px rgba(var(--hue), var(--sat), var(--light), 0.2);
    transition: all 0.1s ease-out;
}

.cursor-core {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 8px rgba(var(--hue), var(--sat), var(--light), 0.8),
        0 0 15px rgba(var(--hue), var(--sat), var(--light), 0.5);
    animation: corePulse 2s ease-in-out infinite;
}

.cursor-trail {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(var(--hue), var(--sat), var(--light), 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(var(--hue), var(--sat), var(--light), 0.2);
    animation: trailFloat 0.6s ease-out forwards;
}

/* Cursor glow effect on click */
.custom-cursor.click-effect::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2.5px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cursorClick 0.6s ease-out forwards;
}

/* Cursor on hover interactive elements */
.custom-cursor.hover-interactive .cursor-body {
    width: 40px;
    height: 40px;
    border-width: 3px;
    box-shadow: 
        0 0 15px rgba(var(--hue), var(--sat), var(--light), 0.8),
        0 0 30px rgba(var(--hue), var(--sat), var(--light), 0.4),
        inset 0 0 15px rgba(var(--hue), var(--sat), var(--light), 0.3);
}

.custom-cursor.hover-interactive .cursor-core {
    width: 12px;
    height: 12px;
    box-shadow: 
        0 0 12px rgba(var(--hue), var(--sat), var(--light), 1),
        0 0 20px rgba(var(--hue), var(--sat), var(--light), 0.6);
}

/* ============================================
   CURSOR ANIMATIONS
   ============================================ */

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 8px rgba(var(--hue), var(--sat), var(--light), 0.8),
            0 0 15px rgba(var(--hue), var(--sat), var(--light), 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 
            0 0 12px rgba(var(--hue), var(--sat), var(--light), 1),
            0 0 25px rgba(var(--hue), var(--sat), var(--light), 0.7);
    }
}

@keyframes trailFloat {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@keyframes cursorClick {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(var(--hue), var(--sat), var(--light), 0.8);
    }
    100% {
        opacity: 0;
        box-shadow: 0 0 0 20px rgba(var(--hue), var(--sat), var(--light), 0);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(var(--hue), var(--sat), var(--light), 0.03));
    border-top: 1px solid rgba(var(--hue), 100%, 60%, 0.15);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(var(--hue), 100%, 60%, 0.08);
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.footer-logo .highlight {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-tagline {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-description {
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-social {
    text-align: right;
}

.footer-social-title {
    color: var(--title-color);
    font-size: 0.85rem;
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    opacity: 0.8;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-social-links a {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.08), rgba(var(--hue), var(--sat), var(--light), 0.02));
    border: 1px solid rgba(var(--hue), 100%, 60%, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-links a i {
    position: relative;
    z-index: 1;
}

.footer-social-links a:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--hue), var(--sat), var(--light), 0.25);
}

.footer-social-links a:hover::before {
    opacity: 1;
}

.footer-social-links a:hover i {
    color: var(--body-color);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
}

.footer-copyright {
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.9rem;
    text-align: center;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 25px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        text-align: left;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-social-links {
        flex-wrap: wrap;
    }
}

/* ============================================
   CERTIFICATIONS SECTION (MOVED FROM certifications.css)
   ============================================ */

.certifications-section {
    padding: 80px 0;
    position: relative;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--hue), 100%, 60%, 0.3), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--title-color);
    opacity: 0.7;
    margin-top: 10px;
    font-size: var(--small-font-size);
}

.certifications-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Certifications Group */
.certifications-group {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.in-progress-group {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.group-title i {
    font-size: 1.5rem;
}

/* Certifications Grid */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Certification Card */
.cert-card {
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.10), rgba(var(--hue), var(--sat), var(--light), 0.03));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.25);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.cert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--hue), 100%, 60%, 0.08), transparent 75%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.cert-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--hue), 100%, 60%, 0.15), transparent);
    transition: left .6s ease;
}

.cert-card:hover {
    border-color: rgba(var(--hue), 100%, 60%, 0.45);
    backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(var(--hue), var(--sat), var(--light), 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card:hover::after {
    left: 100%;
}

/* Cert Header */
.cert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.20), rgba(var(--hue), var(--sat), var(--light), 0.10));
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.40);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all .3s ease;
}

.cert-icon.in-progress {
    animation: spin 2s linear infinite;
}

.cert-card:hover .cert-icon {
    background: linear-gradient(135deg, var(--primary-color), hsl(var(--hue), var(--sat), calc(var(--light) + 8%)));
    color: var(--body-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Status Badge */
.cert-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-semi-bold);
    white-space: nowrap;
}

.cert-status.in-progress-status {
    background: rgba(var(--hue), var(--sat), var(--light), 0.15);
    border-color: rgba(var(--hue), 100%, 60%, 0.4);
    color: var(--primary-color);
}

.cert-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Cert Title */
.cert-title {
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    line-height: 1.4;
    transition: all .3s ease;
}

.cert-card:hover .cert-title {
    color: var(--primary-color);
}

/* Cert Issuer */
.cert-issuer {
    font-size: var(--small-font-size);
    color: var(--title-color);
    opacity: 0.8;
    transition: all .3s ease;
}

.cert-card:hover .cert-issuer {
    color: var(--primary-color);
}

/* Cert Meta */
.cert-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--title-color);
    opacity: 0.7;
}

.cert-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cert-meta i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Cert Link */
.cert-link {
    align-self: flex-start;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-semi-bold);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}

.cert-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(var(--hue), var(--sat), var(--light), 0.12);
    transition: left .3s ease;
    z-index: -1;
}

.cert-link:hover {
    color: var(--body-color);
    background: var(--primary-color);
    transform: translateX(4px);
}

.cert-link:hover::before {
    left: 100%;
}

/* Continuous Learning */
.continuous-learning {
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.12), rgba(var(--hue), var(--sat), var(--light), 0.05));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.30);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.continuous-learning::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--hue), 100%, 60%, 0.08), transparent 75%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.continuous-learning::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--hue), 100%, 60%, 0.15), transparent);
    transition: left .6s ease;
}

.continuous-learning:hover {
    border-color: rgba(var(--hue), 100%, 60%, 0.45);
    backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(var(--hue), var(--sat), var(--light), 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.continuous-learning:hover::before {
    opacity: 1;
}

.continuous-learning:hover::after {
    left: 100%;
}

.learning-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all .3s ease;
}

.continuous-learning:hover .learning-icon {
    transform: scale(1.15) rotate(5deg);
}

.continuous-learning h3 {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    margin-bottom: 12px;
    transition: all .3s ease;
}

.continuous-learning:hover h3 {
    color: var(--primary-color);
}

.continuous-learning p {
    color: var(--title-color);
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animation: Spin */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation: Pulse */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   RESPONSIVE DESIGN - CERTIFICATIONS
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .certifications-section {
        padding: 60px 0;
    }

    .cert-card {
        padding: 25px;
    }

    .certs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Mobile (max-width 768px) */
@media (max-width: 768px) {
    .certifications-section {
        padding: 50px 0;
    }

    .certs-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cert-card {
        padding: 22px;
    }

    .group-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .continuous-learning {
        padding: 30px;
    }

    .learning-icon {
        font-size: 2.5rem;
    }

    .continuous-learning h3 {
        font-size: 1.2rem;
    }
}

/* Small Mobile (max-width 480px) */
@media (max-width: 480px) {
    .certifications-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: var(--small-font-size);
    }

    .cert-card {
        padding: 18px;
        gap: 14px;
    }

    .cert-title {
        font-size: 1rem;
    }

    .group-title {
        font-size: 1rem;
    }

    .cert-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cert-status {
        width: 100%;
        justify-content: center;
    }

    .continuous-learning {
        padding: 25px 20px;
    }

    .learning-icon {
        font-size: 2rem;
    }

    .continuous-learning h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   CONTACT SECTION (MOVED FROM contact.css)
   ============================================ */

.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--hue), 100%, 60%, 0.3), transparent);
}

.contact-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    margin-top: 50px;
}

/* LEFT SIDE - CONTACT INFO */

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-section-title {
    font-size: 0.75rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 20px;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.05), rgba(var(--hue), var(--sat), var(--light), 0.02));
    border: 1.5px solid rgba(var(--hue), 100%, 60%, 0.15);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--hue), 100%, 60%, 0.08), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover {
    border-color: rgba(var(--hue), 100%, 60%, 0.35);
    box-shadow: 0 5px 20px rgba(var(--hue), var(--sat), var(--light), 0.15);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.15), rgba(var(--hue), var(--sat), var(--light), 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
}

.contact-text {
    flex: 1;
    min-width: 0;
}

.contact-text h5 {
    font-size: 0.7rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.contact-value {
    color: var(--title-color);
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-send {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: var(--font-semi-bold);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-send i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-send:hover {
    color: var(--hover-color);
}

.contact-send:hover i {
    transform: translate(2px, -2px);
}

.contact-social {
    margin-top: 26px;
}

.contact-social .contact-section-title {
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icon {
    width: 52px;
    height: 52px;
    background: rgba(38, 44, 68, 0.85);
    border: 1px solid rgba(var(--hue), 100%, 60%, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--hue), var(--sat), var(--light), 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    border-color: rgba(var(--hue), 100%, 60%, 0.3);
    background: rgba(50, 58, 88, 0.95);
    transform: translateY(-1px);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: var(--primary-color);
}

/* RIGHT SIDE - CONTACT FORM */

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(var(--hue), var(--sat), var(--light), 0.08), rgba(var(--hue), var(--sat), var(--light), 0.02));
    border: 2px solid rgba(var(--hue), 100%, 60%, 0.2);
    border-radius: 24px;
    padding: 55px 50px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--hue), 100%, 60%, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-form-wrapper:hover::before {
    opacity: 1;
}

.form-title {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.form-title .highlight {
    color: var(--primary-color);
}

.form-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.75;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 22px;
    background: rgba(var(--hue), var(--sat), var(--light), 0.03);
    border: 1.5px solid rgba(var(--hue), 100%, 60%, 0.15);
    border-radius: 10px;
    color: var(--title-color);
    font-size: 0.95rem;
    font-family: var(--body-font-family);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-color);
    opacity: 0.45;
}

.form-input:focus {
    border-color: var(--primary-color);
    background: rgba(var(--hue), var(--sat), var(--light), 0.05);
    box-shadow: 0 0 0 3px rgba(var(--hue), var(--sat), var(--light), 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    padding: 17px 38px;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: var(--body-color);
    font-size: 0.95rem;
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 8px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    background: var(--hover-color);
    box-shadow: 0 8px 25px rgba(var(--hue), var(--sat), var(--light), 0.35);
    transform: translateY(-2px);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: left;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-status.success::before {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-status.error::before {
    content: '✕';
    font-size: 1.2rem;
    font-weight: bold;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN - CONTACT */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-wrapper {
        max-width: 100%;
    }

    .contact-form-wrapper {
        padding: 40px;
    }
}

/* Mobile (max-width 768px) */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-intro h3 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .contact-item {
        padding: 18px;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

/* Small Mobile (max-width 480px) */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-intro h3 {
        font-size: 1.3rem;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .form-description {
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}