@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root
{
    --bg-black-900:#f2f2fc;
    --bg-black-100:#fdf9ff;
    --bg-black-50:#e8dfec;
    --text-black-900:#302e4d;
    --text-black-700:#504e70;
}
body.dark 
{
    --bg-black-900:#151515;
    --bg-black-100:#222222;
    --bg-black-50:#393939;
    --text-black-900:#ffffff;
    --text-black-700:#e9e9e9;
}
body
{
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-black-900);
    color: var(--text-black-700);
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Enhanced browser theme integration */
    scroll-behavior: smooth;
}

/* Prevent flash of unstyled content */
html, body {
    background-color: var(--bg-black-900);
}
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced browser theme integration styles */
html {
    /* Smooth scrolling for better theme integration */
    scroll-behavior: smooth;
    /* Prevent horizontal scroll */
    overflow-x: hidden;
}

/* Enhanced focus styles for better accessibility and theme integration */
*:focus {
    outline: 2px solid var(--skin-color);
    outline-offset: 2px;
}

/* Smooth transitions for theme color changes */
.section,
.aside,
.modal-content,
.intro-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced mobile browser integration */
@media (max-width: 767px) {
    body {
        /* Prevent zoom on input focus for better mobile experience */
        -webkit-text-size-adjust: 100%;
        /* Enhanced touch feedback */
        -webkit-tap-highlight-color: rgba(236, 24, 57, 0.1);
    }
    
    /* Smooth pull-to-refresh experience */
    .section {
        /* Prevent overscroll for better theme integration */
        overscroll-behavior: contain;
    }
}
*
{
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}
::before,::after
{
    box-sizing: border-box;
}
ul
{
    list-style: none;
}
.section
{
    background: var(--bg-black-900);
    min-height: 100vh;
    display: block;
    padding: 0 30px;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 270px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s ease;
}
.section.back-section
{
    z-index: 1;
}
.section.active
{
    z-index: 2;
    opacity: 1;
    visibility: visible;
    animation: slideSection 0.5s ease;
}

/* Ensure home section is visible immediately on page load */
.section#home.active
{
    opacity: 1;
    visibility: visible;
    animation: none;
}
@keyframes slideSection
{
    0%
    {
        transform: translateX(50px);
        opacity: 0;
    }
    100%
    {
        transform: translateX(0%);
        opacity: 1;
    }
}
.hidden
{
    display: none !important;
}




.padd-15
{
    padding-left: 15px;
    padding-right: 15px;
}
.container
{
    max-width: 1100px;
    width: 100%;
    margin: auto;
}
.section .container
{
    padding-top: 60px;
    padding-bottom: 120px; /* Increased bottom padding for mobile browser toolbar */
}
.section-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}
.section-title h2
{
    font-size: 40px;
    color: var(--text-black-900);
    font-weight: 700;
    position: relative;
}
.section-title h2::before
{
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}
.section-title h2::after
{
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.row
{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}
.btn
{
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background: var(--skin-color);
    transition: all 0.3s ease;
}
.btn:hover
{
    transform: scale(1.05);
}
.shadow-dark
{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}
/* aside */
.aside
{
    width: 270px;
    background: var(--bg-black-100);
    position: fixed;
    left: 0;
    top: 0;
    padding: 30px;
    height: 100%;
    border-right: 1px solid var(--bg-black-50);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}
.aside .logo
{
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    text-transform: capitalize;
    width: 100%;
    text-align: center;
}
.aside .logo a
{
    color: var(--text-black-900);
    font-weight: 700;
    padding: 10px 15px;
    font-size: 20px;
    letter-spacing: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    width: 100%;
}
.aside .logo a:hover {
    transform: translateY(-3px);
}
.aside .logo a:hover .logo-symbol {
    transform: scale(1.15);
}
.aside .logo a:hover .logo-aura {
    opacity: 1;
    transform: scale(1.2);
}
.aside .logo a:hover .logo-text-line1,
.aside .logo a:hover .logo-text-line2 {
    transform: translateX(5px) scale(1.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aside .logo a:hover .logo-text-line1::before,
.aside .logo a:hover .logo-text-line2::before {
    left: 100%;
}

.aside .logo a:hover .logo-letter {
    transform: scale(1.1);
    color: #ffffff;
}
.aside .logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aside .logo-symbol {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--skin-color) 0%, color-mix(in srgb, var(--skin-color) 80%, #000) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}
.aside .logo-symbol::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 50%;
    z-index: 1;
}
.aside .logo-letter {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
    letter-spacing: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aside .logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--skin-color) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    filter: blur(8px);
    animation: auraPulse 3s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
.aside .logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.aside .logo-text-line1,
.aside .logo-text-line2 {
    font-family: 'Climate Crisis', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--skin-color) 0%, color-mix(in srgb, var(--skin-color) 80%, #000) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1;
    transform-origin: center center;
    overflow: hidden;
}

.aside .logo-text-line1::before,
.aside .logo-text-line2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}
.aside .logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--skin-color), transparent);
    transition: width 0.3s ease;
}
.aside .logo a::before
{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--skin-color);
    border-left: 5px solid var(--skin-color);
    bottom: 0;
    left: 15px;
}
.aside .logo a::after
{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    top: 0;
    right: 15px;
}
.aside .nav-toggler
{
    height: 40px;
    width: 45px;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    position: fixed;
    left: 300px;
    top: 20px;
    border-radius: 5px;
    background: var(--bg-black-100);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}
.aside .nav-toggler span
{
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    display: inline-block;
    position: relative;
}
.aside .nav-toggler.open span
{
    background-color: transparent;
}
.aside .nav-toggler span::before
{
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: -6px;
    left: 0;
}
.aside .nav-toggler.open span::before
{
    transform: rotate(45deg);
    top: 0;
}
.aside .nav-toggler span::after
{
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: 6px;
    left: 0;
}
.aside .nav-toggler.open span::after
{
    transform: rotate(-45deg);
    top: 0;
}
.aside .nav
{
    margin-top: 50px;
}
.aside .nav li
{
    margin-bottom: 20px;
    display: block;
}
.aside .nav li a
{
    font-size: 16px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid var(--bg-black-50);
    color: var(--text-black-900);
    padding: 5px 15px;
}
.aside .nav li a.active
{
    color: var(--skin-color);
}
.aside .nav li a i
{
    margin-right: 15px;
}
/* home */
.home
{
    min-height: 100vh;
    display: flex;
    color: var(--text-black-900);
    padding: 80px 0 40px 0;
    background: var(--bg-black-900);
    align-items: flex-start;
    justify-content: center;
}
.home .container
{
    padding: 0 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.home .row
{
    margin: 0 -15px;
    display: flex;
    justify-content: center;
}
.home .home-info
{
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Responsive card styles */
.intro-card
{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 1200px) {
    .intro-card {
        width: 75%;
        max-width: 1000px;
    }
}

@media (min-width: 1400px) {
    .intro-card {
        width: 70%;
        max-width: 1100px;
    }
}

@media (min-width: 1600px) {
    .intro-card {
        width: 65%;
        max-width: 1200px;
    }
}

/* Border effect consistency */
.intro-card::after
{
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    z-index: -1;
    border-radius: 31px;
    background: linear-gradient(45deg,
        var(--skin-color),
        rgba(255, 255, 255, 0.3),
        var(--bg-black-50),
        rgba(255, 255, 255, 0.2)
    );
    transition: all 0.5s ease;
    box-sizing: border-box;
}

/* Ensure border effect is consistent across screen sizes */
@media (min-width: 1200px) {
    .intro-card::after {
        border-width: 4px;
    }
}

@media (min-width: 1400px) {
    .intro-card::after {
        border-width: 4px;
    }
}

/* Intro Card Styles */
.intro-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    transition: all 1s ease;
    z-index: 1;
    pointer-events: none;
}

.intro-card:hover::before
{
    left: 100%;
}

.intro-card:hover::after
{
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.intro-card:hover
{
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    
    filter: 
        drop-shadow(0 15px 30px rgba(0, 0, 0, 0.07))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.intro-card .hello
{
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-black-900);
}

.intro-card .hello .name
{
    color: var(--skin-color);
    font-weight: 700;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.15),
        -2px -2px 4px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.intro-card .my-profession
{
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.intro-card .my-profession::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,
        var(--skin-color),
        var(--text-black-700)
    );
    border-radius: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Add text shadow to description */
.intro-card .description
{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-shadow: 
        0.5px 0.5px 1px rgba(0, 0, 0, 0.05),
        -0.5px -0.5px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-black-700);
}

/* Hover effects for text elements */
.intro-card:hover .hello,
.intro-card:hover .my-profession,
.intro-card:hover .description
{
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        -2px -2px 4px rgba(255, 255, 255, 0.2);
}

.intro-card:hover .hello .name
{
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.25),
        -3px -3px 6px rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.intro-card:hover .my-profession::after
{
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

.intro-card h3
{
    margin-bottom: 15px;
    color: var(--text-black-900);
    font-weight: 600;
}

.intro-card .hello
{
    font-size: 24px;
    margin-bottom: 10px;
}

.intro-card .my-profession
{
    font-size: 28px;
    margin-bottom: 20px;
}

.intro-card .description
{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-black-700);
}

.intro-card .btn
{
    margin-top: 20px;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 80%, rgba(255, 255, 255, 0.2));
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.intro-card .btn:hover
{
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 90%, rgba(255, 255, 255, 0.3));
}

/* Profile Image Styling */
.profile-badge {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: var(--skin-color);
    padding: 4px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.profile-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.profile-badge:hover {
    transform: scale(1.08);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: var(--skin-color);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Card Structure Styling */
.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-body {
    text-align: center;
    margin-bottom: 25px;
}

.card-footer {
    text-align: center;
}

.card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    color: var(--text-black-700);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--skin-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
    box-shadow: 0 0 20px var(--skin-color);
    opacity: 0;
}

.social-link:hover::before {
    transform: scale(1);
    box-shadow: 0 0 25px var(--skin-color);
    opacity: 0.1;
}

.social-link:hover {
    color: var(--skin-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-color: var(--skin-color);
    z-index: 10;
}

.social-link i {
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--text-black-700);
}

.social-link:hover i {
    transform: scale(1.1);
    color: var(--skin-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.primary-btn {
    background: var(--skin-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.2));
    transition: left 0.5s ease;
}

.primary-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--skin-color);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(0, 0, 0, 0.1);
    background: var(--text-black-700);
    border: 1px solid var(--skin-color);
}

.primary-btn:hover::after {
    opacity: 0.3;
}

.primary-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(2px);
}

.secondary-btn {
    background: transparent;
    color: var(--skin-color);
    border: 2px solid var(--skin-color);
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--skin-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.secondary-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--skin-color);
    border-radius: 27px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary-btn:hover::before {
    left: 0;
}

.secondary-btn:hover {
    background: var(--skin-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(0, 0, 0, 0.1);
    border-color: var(--skin-color);
}

.secondary-btn:hover::after {
    opacity: 0.3;
}

.secondary-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.secondary-btn:hover i {
    transform: translateX(2px);
}

/* Homepage Style Switcher */
.home-style-switcher
{
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}

.home-style-switcher.open
{
    transform: translateX(-25px);
}

.home-style-switcher .s-icon
{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.home-style-switcher .s-icon i
{
    line-height: 40px;
}

.home-style-switcher .style-switcher-toggler
{
    top: 0;
}

.home-style-switcher .day-night
{
    top: 55px;
}

.home-style-switcher h4
{
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.home-style-switcher .colors
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-style-switcher .colors span
{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.home-style-switcher .color-1
{
    background: #ec1839;
}

.home-style-switcher .color-2
{
    background: #fa5b0f;
}

.home-style-switcher .color-3
{
    background: #37b182;
}

.home-style-switcher .color-4
{
    background: #1854b4;
}

.home-style-switcher .color-5
{
    background: #f021b2;
}

/* Dark mode adjustments */
body.dark .intro-card
{
    background: var(--bg-black-100);
    border-color: var(--bg-black-50);
}

body.dark .intro-card::after
{
    border-color: var(--skin-color);
}

body.dark .intro-card h3
{
    color: var(--text-black-900);
}

body.dark .intro-card .description
{
    color: var(--text-black-700);
}

h3.hello
{
    font-size: 28px;
    margin: 15px 0;
}
h3.hello span
{
    font-family: 'Clicker Script' , cursive;
    font-size: 30px;
    font-weight: 700;
    color: var(--skin-color);
}
h3.my-profession
{
    font-size: 30px;
    margin: 15px 0;
}
.typing
{
    color: var(--skin-color);
}
.home-info p
{
    margin-bottom: 70px;
    font-size: 20px;
    color: var(--text-black-700);
}
.home .home-img
{
    flex: 0 0 40%;
    max-width: 40%;
    text-align: center;
    position: relative;
}
.home-img::after
{
    content: '';
    position: absolute;
    height: 80px;
    width: 80px;
    border-bottom: 10px solid var(--skin-color);
    border-right: 10px solid var(--skin-color);
    right: 20px;
    bottom: -40px;
}
.home-img::before
{
    content: '';
    position: absolute;
    height: 80px;
    width: 80px;
    border-top: 10px solid var(--skin-color);
    border-left: 10px solid var(--skin-color);
    left: -20px;
    top: -40px;
}
.home .home-img img
{
    margin: auto;
    border-radius: 5px;
    height: 400px;
}
/* About */
.about .about-content
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text h3
{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-black-900);
}
.about .about-content .about-text h3 span
{
    color: var(--skin-color);
}
.about .about-content .about-text p
{
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
}
.about .about-content .personal-info
{
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;
}
.about .about-content .personal-info .info-item
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .personal-info .info-item p
{
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-black-900);
    border-bottom: 1px solid var(--bg-black-50);
}
.about .about-content .personal-info .info-item p span
{
    font-weight: 400;
    color: var(--text-black-700);
    margin-left: 4px;
    display: inline-block;
}

.about .about-content .personal-info .info-item p a {
    font-weight: 400;
    color: var(--skin-color);
    margin-left: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about .about-content .personal-info .info-item p a:hover {
    color: var(--text-black-900);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.about .about-content .personal-info .buttons
{
    margin-top: 50px;
}
.about .about-content .personal-info .buttons .btn
{
    margin-top: 10px;
}

/* Hire Me Button Styling */
.about .about-content .personal-info .buttons .primary-btn {
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 80%, rgba(255, 255, 255, 0.2));
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about .about-content .personal-info .buttons .primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 90%, rgba(255, 255, 255, 0.3));
}

.about .about-content .personal-info .buttons .primary-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.about .about-content .personal-info .buttons .primary-btn:hover i {
    transform: translateX(3px);
}
.about .about-content .skills
{
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 40px;
}
.about .about-content .skills .skill-item
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .skills .skill-item h5
{
    line-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-black-900);
    text-transform: capitalize;
}
.about .about-content .skills .skill-item .progress
{
    background-color: var(--bg-black-50);
    height: 7px;
    border-radius: 4px;
    width: 100%;
    position: relative;
}
.about .about-content .skills .skill-item
{
    margin-bottom: 25px;
}
.about .about-content .skills .skill-item .progress .progress-in
{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background-color: var(--skin-color);
}
.about .about-content .skills .skill-item .skill-percent
{
    position: absolute;
    right: 0;
    color: var(--text-black-900);
    top: -40px;
    font-weight: 400;
    line-height: 40px;
}
.about .about-content .education,
.about .about-content .experience
{
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30px;
}
.about .about-content h3.title 
{
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-black-900);
}
.about .about-content .timeline-box
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .timeline
{
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1;
    border-radius: 20px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    overflow: visible;
}
.about .about-content .timeline .timeline-item
{
    position: relative;
    padding-left: 50px;
    padding-bottom: 60px;
    transition: all 0.3s ease;
}

.about .about-content .timeline .timeline-item:hover {
    transform: translateX(5px);
}
.about .about-content .timeline .timeline-item:last-child
{
    padding-bottom: 0;
}
.about .about-content .timeline .timeline-item::before
{
    content: '';
    width: 2px;
    position: absolute;
    height: 100%;
    left: 15px;
    top: 0;
    background: linear-gradient(
        to bottom,
        var(--skin-color),
        var(--bg-black-50),
        var(--skin-color)
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about .about-content .timeline .circle-dot
{
    position: absolute;
    left: 8px;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 80%, rgba(255, 255, 255, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.about .about-content .timeline .timeline-item:hover .circle-dot {
    transform: scale(1.2);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.about .about-content .timeline .timeline-date
{
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--skin-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about .about-content .timeline .timeline-item:hover .timeline-date {
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.about .about-content .timeline .timeline-date .fa 
{
    margin-right: 5px;
}
.about .about-content .timeline .timeline-title
{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 18px;
    text-transform: capitalize;
    color: var(--text-black-900);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about .about-content .timeline .timeline-item:hover .timeline-title {
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.about .about-content .timeline .timeline-text
{
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
    color: var(--text-black-700);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about .about-content .timeline .timeline-item:hover .timeline-text {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Timeline Section Enhancements */
.timeline-section {
    margin-top: 60px;
}

.timeline-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.tab-btn {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black-700);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--skin-color);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--skin-color);
    transform: translateY(-2px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Removed the underline effect from active tabs */

/* Removed tabIndicator animation - no longer needed */

.tab-btn.active i {
    transform: scale(1.1);
}

.timeline-content {
    width: 100%;
    position: relative;
    min-height: 400px;
}

.timeline-box {
    width: 100%;
}

.timeline-tab-content {
    display: none;
    animation: fadeInUp 0.6s ease-out;
    min-height: 300px;
}

.timeline-tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Timeline Tabs */
@media (max-width: 767px) {
    .timeline-tabs {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        position: relative;
        z-index: 10;
    }
    
    .tab-btn {
        width: auto;
        min-width: 120px;
        max-width: 140px;
        padding: 12px 20px;
        font-size: 0.9rem;
        flex: 1;
        max-width: 140px;
    }
    
    .timeline-content {
        padding: 0 5px;
        min-height: 400px;
        position: relative;
    }
    
    .timeline-tab-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .timeline-tab-content.active {
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    
    .about .about-content .timeline {
        padding: 30px 10px;
        margin-bottom: 20px;
        margin-left: 2px;
        margin-right: 2px;
    }
    
    .about .about-content .timeline .timeline-item {
        padding-left: 40px;
        padding-bottom: 40px;
    }
    
    .about .about-content .timeline .timeline-text {
        padding: 15px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .timeline-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .about .about-content .timeline-box {
        margin-bottom: 30px;
    }
}

/* Skills Slider Styles */
.skills-slider {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: visible;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    border: 3px solid transparent;
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto;
    min-height: 450px;
    padding: 30px;
}

.skills-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.slider-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.slide {
    display: none;
    flex: 0 0 100%;
    min-height: 450px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-radius: 25px;
    transform: translateX(100%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.slide.active {
    display: block;
    transform: translateX(0);
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

/* Slide content styling */
.slide-header {
    text-align: center;
    margin-bottom: 15px;
    padding: 20px 0;
}

.slide-header h3 {
    color: var(--text-black-900);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    margin: 0;
}

.slide-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.skill-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 15px;
    min-height: 180px;
    width: 100%;
}

.skill-tools a {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-black-700);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    max-width: 200px;
    overflow: visible;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.skill-tools a:hover {
    background: transparent;
    color: var(--skin-color);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide.active .skill-tools span {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: calc(var(--index) * 0.1s);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-header {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.slide-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.slide-header h3 {
    color: var(--text-black-900);
    font-size: 28px;
    font-weight: 700;
    position: relative;
    margin: 0;
    margin: 0;
}

/* Removed the thin line under slide headers */

.slide-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.skill-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.skill-tools span {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-black-700);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.skill-tools span:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav {
    display: none;
}

.nav-btn {
    display: none;
}

.slider-navigation {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    z-index: 100;
}

.slider-arrow {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-black-700);
    font-size: 16px;
    pointer-events: auto !important;
    z-index: 101;
}

.slider-arrow:hover {
    color: var(--skin-color);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-arrow:disabled:hover {
    color: var(--text-black-700);
    transform: none;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 100;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.pagination-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: auto !important;
    z-index: 100;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.pagination-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.3s ease;
}

.pagination-dot:hover::before {
    left: 100%;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important;
    z-index: 101;
    cursor: pointer;
}

.pagination-dot.active {
    background: var(--skin-color);
    border-color: var(--skin-color);
    transform: scale(1.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--skin-color-rgb), 0.5);
    pointer-events: auto !important;
    z-index: 102;
    cursor: pointer;
}

.pagination-dot.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.pagination-dot.active:hover {
    background: var(--skin-color);
    border-color: var(--skin-color);
    transform: scale(1.5);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4), 0 0 25px rgba(var(--skin-color-rgb), 0.6);
    pointer-events: auto !important;
    z-index: 103;
    cursor: pointer;
}

/* About Card Styles */
.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1)
    );
    transition: all 0.5s ease;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: inherit;
    border: 4px solid transparent;
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1;
    transition: all 0.5s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover::after {
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1.2;
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 -10px 20px rgba(0, 0, 0, 0.05),
        inset 0 10px 20px rgba(255, 255, 255, 0.15);
    
    filter: 
        drop-shadow(0 15px 30px rgba(0, 0, 0, 0.07))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

/* About card header span styling */
.about-card h2 span {
    color: var(--skin-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-card:hover h2 span {
    color: var(--skin-color);
    text-shadow: 0 0 10px rgba(var(--skin-color-rgb), 0.3);
}

/* service */
.service .container
{
    padding-bottom: 40px;
}
.service .service-item
{
    margin-bottom: 30px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.service .service-item .service-item-inner
{
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.service .service-item .service-item-inner:hover
{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service .service-item .service-item-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    transition: all 0.6s ease;
    z-index: 1;
}

.service .service-item .service-item-inner:hover::before {
    left: 100%;
}
.service .service-item .service-item-inner .icon 
{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}
.service .service-item .service-item-inner .icon .fa
{
    font-size: 35px;
    line-height: 76px;
    color: var(--skin-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.service .service-item .service-item-inner:hover .icon
{
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 80%, rgba(255, 255, 255, 0.2));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.service .service-item .service-item-inner:hover .icon .fa
{
    font-size: 30px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.service .service-item .service-item-inner h4
{
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-black-900);
    font-weight: 700;
    text-transform: capitalize;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service .service-item .service-item-inner:hover h4 {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.service .service-item .service-item-inner p
{
    font-size: 16px;
    color: var(--text-black-700);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service .service-item .service-item-inner:hover p {
    transform: translateY(-2px);
}
/* portfolio */
.portfolio .container
{
    padding-bottom: 40px;
}
.portfolio .portfolio-heading
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
}
.portfolio .portfolio-heading h2
{
    color: var(--skin-color);
    font-weight: 500;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    border: 3px solid transparent;
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    z-index: -1;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Portfolio Slider */
.portfolio-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-slide {
    display: none;
    animation: slideFadeIn 0.5s ease-in-out;
}

.portfolio-slide.active {
    display: block;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.project-preview {
    display: flex;
    gap: 40px;
    align-items: center;
}

.project-images {
    flex: 0 0 50%;
    position: relative;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.project-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.1);
    border-color: var(--skin-color);
}

.project-info {
    flex: 1;
    padding: 20px 0;
}

.project-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 8px;
}

.project-category {
    color: var(--skin-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    color: var(--text-black-700);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tech-tag {
    background: var(--bg-black-50);
    color: var(--text-black-700);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--bg-black-100);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--skin-color);
    color: white;
    transform: translateY(-2px);
}

.view-project-btn {
    background: linear-gradient(135deg, var(--skin-color), #ff6b6b);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(var(--skin-color-rgb, 255, 107, 107), 0.3);
}

.view-project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--skin-color-rgb, 255, 107, 107), 0.4);
}

.view-project-btn i {
    font-size: 16px;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
}

.nav-btn {
    background: var(--bg-black-50);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-black-700);
}

.nav-btn:hover {
    background: var(--skin-color);
    color: white;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.dot:hover::before {
    left: 100%;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dot.active {
    background: var(--skin-color);
    border-color: var(--skin-color);
    transform: scale(1.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--skin-color-rgb), 0.5);
}

.dot.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.portfolio .portfolio-item
{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 30px;
}
.portfolio .portfolio-item-inner
{
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--bg-black-50);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio .portfolio-item-inner .portfolio-img
{
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-item-inner .portfolio-img img
{
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio .portfolio-item-inner:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--skin-color-rgb, 255, 107, 107), 0.9), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item-inner:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item-inner:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.portfolio-info p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.portfolio-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: white;
    color: var(--skin-color);
    transform: scale(1.1);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    animation: modalFadeIn 0.3s ease-out;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-black-100);
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    width: 1200px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-black-50);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-black-700);
    z-index: 10;
}

.modal-close:hover {
    background: var(--skin-color);
    color: white;
    transform: scale(1.1);
}

.modal-project {
    display: none;
    padding: 40px;
}

.modal-project.active {
    display: block;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 8px;
}

.project-subtitle {
    color: var(--skin-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body {
    display: flex;
    gap: 40px;
}

.project-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.website-preview {
    width: 100%;
}

.browser-frame {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
}

.browser-header {
    background: #e0e0e0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-buttons {
    display: flex;
    gap: 8px;
}

.browser-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.browser-btn.red { background: #ff5f56; }
.browser-btn.yellow { background: #ffbd2e; }
.browser-btn.green { background: #27ca3f; }

.browser-url {
    background: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    font-family: 'Courier New', monospace;
    flex: 1;
    text-align: center;
}

.browser-content {
    position: relative;
    overflow: hidden;
}

.website-screenshot {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.website-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.browser-content:hover .website-overlay {
    opacity: 1;
}

.visit-website-btn {
    background: var(--skin-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.visit-website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.website-screenshots {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.screenshot-item {
    background: var(--bg-black-50);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bg-black-100);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--skin-color);
}

.screenshot {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.screenshot-caption {
    padding: 10px;
    background: var(--bg-black-50);
    color: var(--text-black-700);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid var(--bg-black-100);
}

.dashboard-preview,
.ecommerce-preview {
    flex: 0 0 50%;
}

.dashboard-screenshot,
.ecommerce-screenshot {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-details {
    flex: 1;
}

.detail-section {
    margin-bottom: 30px;
    position: relative;
}

.detail-section::before {
    display: none !important;
}

.detail-section h3::before {
    display: none !important;
}

.project-details .detail-section::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
}

.project-details .detail-section h3::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
}

.modal-project .detail-section::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
}

.modal-project .detail-section h3::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
}

/* Target all elements within project modals that might have timeline-like styling */
.project-modal .detail-section,
.project-modal .detail-section *,
.modal-project .detail-section,
.modal-project .detail-section * {
    position: relative !important;
}

.project-modal .detail-section::before,
.project-modal .detail-section *::before,
.modal-project .detail-section::before,
.modal-project .detail-section *::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
    position: static !important;
}

/* Specifically override any timeline inheritance */
.project-modal .detail-section,
.modal-project .detail-section {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.project-modal .detail-section h3,
.modal-project .detail-section h3 {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Target all elements within project details to remove any inherited styling */
.project-modal .detail-section p,
.project-modal .detail-section ul,
.project-modal .detail-section li,
.modal-project .detail-section p,
.modal-project .detail-section ul,
.modal-project .detail-section li {
    padding-left: 0 !important;
    margin-left: 0 !important;
    border-left: none !important;
    position: relative !important;
}

.project-modal .detail-section p::before,
.project-modal .detail-section ul::before,
.project-modal .detail-section li::before,
.modal-project .detail-section p::before,
.modal-project .detail-section ul::before,
.modal-project .detail-section li::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
}

/* Remove any inherited border or background from feature lists */
.project-modal .feature-list,
.modal-project .feature-list {
    padding-left: 0 !important;
    margin-left: 0 !important;
    border-left: none !important;
}

.project-modal .feature-list li,
.modal-project .feature-list li {
    padding-left: 0 !important;
    margin-left: 0 !important;
    border-left: none !important;
    position: relative !important;
}

.project-modal .feature-list li::before,
.modal-project .feature-list li::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
}

.detail-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3 i {
    color: var(--skin-color);
    font-size: 18px;
}

.detail-section p {
    color: var(--text-black-700);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-black-700);
}

.feature-list li i {
    color: var(--skin-color);
    font-size: 14px;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 10px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-item {
    background: var(--bg-black-50);
    color: var(--text-black-700);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--bg-black-100);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-black-50);
    border-radius: 12px;
    border: 1px solid var(--bg-black-100);
}

.result-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--skin-color);
    margin-bottom: 8px;
}

.result-label {
    font-size: 14px;
    color: var(--text-black-700);
    line-height: 1.4;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: var(--bg-black-50);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--bg-black-100);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--skin-color);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item h4 i {
    color: var(--skin-color);
    font-size: 14px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-black-700);
    line-height: 1.5;
    margin: 0;
}
/* contact */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    border: 3px solid transparent;
    border-image: linear-gradient(45deg,
        var(--skin-color),
        var(--bg-black-50),
        var(--text-black-700),
        var(--bg-black-900)
    ) 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-title
{
    color: var(--skin-color);
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-sub-title
{
    color: var(--text-black-700);
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact .contact-info-item
{
    flex: 0 0 300px;
    max-width: 300px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--skin-color-rgb, 255, 107, 107), 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-inner:hover::before {
    opacity: 1;
}

.contact-info-inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--skin-color);
}

.contact .contact-info-item .icon
{
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact .contact-info-item .icon .fa
{
    font-size: 30px;
    color: var(--skin-color);
    transition: all 0.3s ease;
}

.contact-info-inner:hover .icon .fa {
    transform: scale(1.1);
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact .contact-info-item h4
{
    font-size: 18px;
    font-weight: 600;
    color: var(--text-black-900);
    text-transform: capitalize;
    margin: 0 0 8px;
}
.contact .contact-info-item p
{
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-black-700);
    font-weight: 400;
    margin: 0;
}

.contact .contact-info-item p a {
    color: var(--text-black-700);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact .contact-info-item p a:hover {
    color: var(--skin-color);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    text-decoration: none;
    color: inherit;
}

.contact-form-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-black-50);
}

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

.contact-form-header .contact-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-form-header .contact-sub-title {
    font-size: 14px;
    margin-bottom: 0;
}

.contact .contact-form
{
    flex: 0 0 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact .contact-form .col-6
{
    flex: 0 0 50%;
    max-width: 50%;
}
.contact .contact-form .col-12
{
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .contact-form .form-item
{
    margin-bottom: 25px;
}
.contact .contact-form .form-item .form-control
{
    width: 100%;
    height: 55px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    font-size: 16px;
    color: var(--text-black-700);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact .contact-form .form-item .form-control:focus
{
    outline: none;
    border-color: var(--skin-color);
    box-shadow: 0 0 0 3px rgba(var(--skin-color-rgb, 255, 107, 107), 0.1), 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.contact .contact-form .form-item textarea.form-control
{
    height: 120px;
    resize: vertical;
}

.contact .contact-form .btn
{
    height: 55px;
    padding: 0 40px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 80%, rgba(255, 255, 255, 0.2));
    color: #ffffff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact .contact-form .btn::before {
    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 0.5s ease;
}

.contact .contact-form .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact .contact-form .btn:hover::before {
    left: 100%;
}

.contact .contact-form .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--skin-color), var(--skin-color) 90%, rgba(255, 255, 255, 0.3));
}

.contact .contact-form .btn:hover::after {
    opacity: 1;
}

.contact .contact-form .btn i {
    margin-right: 0;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact .contact-form .btn:hover i {
    transform: translateX(3px);
}
@media (max-width:1199px)
{
    .section .container
    {
        padding-top: 70px;
        padding-bottom: 150px; /* Extra space for mobile browser toolbar on smaller screens */
    }
    .aside
    {
        left: -270px;
        width: 270px;
        z-index: 1000;
    }
    .aside.open 
    {
        left: 0;
    }
    .aside .nav-toggler
    {
        display: flex;
        left: 30px;
    }
    .aside .nav-toggler.open 
    {
        left: 300px;
    }
    .section
    {
        left: 0;
    }
    .section.open 
    {
        left: 270px;
    }
    .about .about-content .personal-info .info-item p span 
    {
        display: block;
        margin-left: 0;
    }
    .aside .logo a {
        gap: 10px;
        padding: 10px 15px;
    }
    .aside .logo-icon {
        width: 40px;
        height: 40px;
    }
    .aside .logo-symbol {
        width: 35px;
        height: 35px;
    }
    .aside .logo-letter {
        font-size: 22px;
    }
    .aside .logo-text-line1,
    .aside .logo-text-line2 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .aside .logo a:hover .logo-text-line1,
    .aside .logo a:hover .logo-text-line2 {
        transform: translateX(5px) scale(1.15);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .aside .logo a:hover .logo-text-line1::before,
    .aside .logo a:hover .logo-text-line2::before {
        left: 100%;
    }
}
@media (max-width:1050px)
{
    .contact .contact-info-item
    {
        flex: 0 0 280px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .portfolio .portfolio-item,
    .service .service-item
    {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .home .home-info
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home .home-img
    {
        display: none;
    }
    
    /* Increase spacing for about page buttons on medium screens */
    .about .about-content .personal-info .buttons
    {
        margin-top: 70px;
    }
    
    /* Skills slider on its own line for medium screens */
    .skills-slider {
        margin: 30px auto;
        max-width: 100%;
        width: 100%;
        padding: 25px;
        position: relative;
    }
    

    
    /* Ensure pagination is visible on medium screens */
    .slider-pagination {
        bottom: -45px;
    }
    
    /* Ensure slider navigation is visible on medium screens */
    .slider-navigation {
        bottom: -50px;
        left: 0;
        right: 0;
        transform: none;
        justify-content: center;
        gap: 18px;
        padding: 0 18px;
        z-index: 100;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .slider-arrow {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 101;
    }
}
@media (max-width:767px)
{
    /* Container padding for mobile */
    .section .container {
        padding: 0 5px;
    }
    
    /* Mobile Navigation - Full Page */
    .aside
    {
        left: -100vw;
        width: 100vw;
        z-index: 1000;
    }
    .aside.open 
    {
        left: 0;
    }
    .aside .nav-toggler.open 
    {
        left: 30px;
    }
    .section.open 
    {
        left: 0;
    }
    
    .contact .contact-form .col-6,
    .portfolio .portfolio-item,
    .service .service-item,
    .about .about-content .experience,
    .about .about-content .education,
    .about .about-content .skills,
    .about .about-content .personal-info
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .contact .contact-info-item
    {
        flex: 0 0 260px;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center skills slider on mobile screens */
    .skills-slider {
        margin: 30px auto;
        max-width: 100%;
        padding: 20px;
        position: relative;
        overflow: visible;
        margin-bottom: 100px;
    }
    

    
    /* Ensure navigation is visible on mobile */
    .slider-navigation {
        bottom: -50px;
        left: 0;
        right: 0;
        transform: none;
        justify-content: center;
        gap: 15px;
        padding: 0 15px;
        z-index: 100;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 101;
    }
    
    .slider-pagination {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        z-index: 101;
    }
    
    .pagination-dot {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 101;
    }
    
    /* Adjust slide padding for mobile */
    .slide {
        padding: 20px;
        min-height: 400px;
    }
    
    /* Adjust homepage spacing for mobile */
    .home {
        padding: 50px 0 100px 0; /* Increased bottom padding for mobile browser toolbar */
    }
    
    .portfolio-card,
    .contact-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .portfolio .portfolio-item {
        margin-bottom: 20px;
    }
    
    .portfolio .container {
        padding-bottom: 100px;
    }
    
    .contact-info-inner {
        padding: 20px 15px;
    }
    
    .contact .contact-form {
        padding: 20px;
    }
    
    /* Portfolio Slider Mobile */
    .project-preview {
        flex-direction: column;
        gap: 20px;
    }
    
    .project-images {
        flex: none;
        width: 100%;
    }
    
    .main-image {
        height: 200px;
    }
    
    .project-thumbnails {
        /* Enable horizontal scrolling on mobile */
        display: flex;
        gap: 10px;
        margin-top: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 5px; /* Space for potential scrollbar */
    }
    
    /* Hide scrollbar for webkit browsers */
    .project-thumbnails::-webkit-scrollbar {
        display: none;
    }
    
    /* Ensure thumbnails don't shrink */
    .project-thumbnails .thumbnail {
        flex-shrink: 0;
        width: 80px;
        height: 60px;
        min-width: 80px;
        min-height: 60px;
    }
    
    .project-info h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .project-category {
        text-align: center;
    }
    
    .project-description {
        text-align: center;
    }
    
    .project-tech {
        justify-content: center;
    }
    
    .view-project-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    /* Portfolio slider navigation mobile visibility */
    .slider-nav {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        z-index: 100;
        margin-bottom: 80px;
        padding-bottom: 20px;
    }
    
    .slider-nav .nav-btn {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 101;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .slider-nav .dot {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 101;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Modal Mobile */
    .project-modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 100%;
        max-height: 100vh;
        margin: 20px 0 0 0;
        border-radius: 15px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 60px;
        /* Enhanced mobile modal */
        position: relative;
        z-index: 1001;
    }
    
    .modal-body {
        flex-direction: column;
        gap: 20px;
    }
    
    .project-showcase {
        flex-direction: column;
        gap: 20px;
    }
    
    .website-preview,
    .dashboard-preview,
    .ecommerce-preview {
        flex: none;
        width: 100%;
    }
    
    .website-screenshot,
    .dashboard-screenshot,
    .ecommerce-screenshot {
        height: 250px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-header h2 {
        font-size: 24px;
        margin-top: 0;
        padding-top: 10px;
    }
    
    .modal-project {
        padding: 20px;
    }
    
    .modal-header {
        margin-top: 0;
        padding-top: 10px;
        position: sticky;
        top: 0;
        background: var(--bg-black-900);
        z-index: 100;
    }
    
    .modal-close {
        top: 75px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
        /* Enhanced mobile touch target */
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        z-index: 1000;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .website-screenshots {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .screenshot {
        height: 150px;
    }
    
    .screenshot-caption {
        padding: 12px;
        font-size: 13px;
    }
    
    /* Enhanced mobile horizontal scrolling for project thumbnails */
    .project-thumbnails {
        /* Ensure smooth scrolling on all mobile devices */
        scroll-snap-type: x mandatory;
        /* Add visual indicator for scrollable content */
        position: relative;
    }
    
    .project-thumbnails .thumbnail {
        scroll-snap-align: start;
        /* Enhanced touch interaction */
        touch-action: pan-x;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Add subtle gradient indicators for scrollable content */
    .project-thumbnails::before,
    .project-thumbnails::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        pointer-events: none;
        z-index: 1;
    }
    
    .project-thumbnails::before {
        left: 0;
        background: linear-gradient(to right, rgba(242, 242, 252, 0.8), transparent);
    }
    
    .project-thumbnails::after {
        right: 0;
        background: linear-gradient(to left, rgba(242, 242, 252, 0.8), transparent);
    }
    
    /* Dark mode support for gradient indicators */
    body.dark .project-thumbnails::before {
        background: linear-gradient(to right, rgba(21, 21, 21, 0.8), transparent);
    }
    
    body.dark .project-thumbnails::after {
        background: linear-gradient(to left, rgba(21, 21, 21, 0.8), transparent);
    }
}

/* Medium screens - full width layout */
@media (max-width: 1050px) and (min-width: 768px) {
    .skills-slider {
        margin: 30px auto;
        max-width: 100%;
        width: 100%;
        padding: 20px;
        position: relative;
    }
    
    .slider-navigation {
        bottom: -50px;
        left: 0;
        right: 0;
        transform: none;
        justify-content: center;
        gap: 15px;
        padding: 0 15px;
        z-index: 100;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        position: absolute;
        width: 100%;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 101;
        flex-shrink: 0;
    }
    
    .slider-pagination {
        bottom: -50px;
        left: 0;
        right: 0;
        transform: none;
        justify-content: center;
        gap: 10px;
        padding: 0 15px;
        z-index: 100;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        position: absolute;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    
    .pagination-dot {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 100;
        width: 12px;
        height: 12px;
        flex-shrink: 0;
        margin: 2px;
    }
    
    /* Ensure slide content is properly positioned */
    .slide {
        min-height: 450px;
        padding: 20px;
    }
    
    .slide-header {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .slide-body {
        gap: 15px;
    }
    
    .skill-tools {
        min-height: 200px;
        padding: 20px;
    }
    
    /* Ensure slider content has proper height */
    .slider-content {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 450px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .project-modal {
        padding: 5px;
    }
    
    .modal-content {
        border-radius: 10px;
    }
    
    .modal-project {
        padding: 15px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .skills-slider {
        margin: 20px auto;
        padding: 15px;
        position: relative;
    }
    
    .slider-navigation {
        bottom: -50px;
        left: 0;
        right: 0;
        transform: none;
        justify-content: center;
        gap: 12px;
        padding: 0 12px;
        z-index: 100;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 101;
    }
    
    .slider-pagination {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        z-index: 101;
        gap: 8px;
    }
    
    .pagination-dot {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 101;
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .pagination-dot:hover,
    .pagination-dot:active {
        transform: scale(1.2);
    }
    
    .slider-arrow:hover,
    .slider-arrow:active {
        transform: scale(1.1);
    }
    
    /* Ensure navigation is always visible on mobile */
    .skills-slider .slider-navigation,
    .skills-slider .slider-pagination,
    .skills-slider .slider-arrow,
    .skills-slider .pagination-dot {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Touch-friendly improvements */
    .slider-arrow,
    .pagination-dot {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }
    

    
    .slide {
        padding: 15px;
        min-height: 350px;
    }
    
    .slider-navigation {
        bottom: -50px;
        left: 0;
        right: 0;
        transform: none;
        justify-content: center;
        gap: 12px;
        padding: 0 12px;
        z-index: 100;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Image Expansion Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 40, 0.85);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.image-modal.active {
  display: flex;
  opacity: 1;
}
.image-modal-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 40, 0.85);
  z-index: 1;
}
.image-modal-content {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 24px 24px 16px 24px;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalFadeIn 0.3s;
}
.image-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.3);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}
.image-modal-close:hover {
  background: var(--skin-color);
  color: #fff;
}
#expanded-image {
  max-width: 80vw;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  background: #fff;
  object-fit: contain;
  margin-top: 24px;
}

/* ===== Footer Styles ===== */
footer {
    background: var(--bg-black-900);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--bg-black-50);
}

.footer-content {
    text-align: center;
    color: var(--text-black-700);
}

.footer-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-content p:first-child {
    font-weight: 600;
    color: var(--text-black-900);
}

.footer-content nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-content nav ul li a {
    color: var(--text-black-700);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-content nav ul li a:hover {
    color: var(--skin-color);
}

@media (max-width: 767px) {
    footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-content nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content p {
        font-size: 14px;
    }
}

/* ============================== PRIVACY POLICY STYLES ============================ */
.privacy-policy {
    /* Use same styling as other sections */
}

.privacy-policy-content {
    max-width: 100%;
    margin: 0 auto;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-black-50);
}

.privacy-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-black-900);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--skin-color), var(--text-black-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-black-700);
    font-style: italic;
    font-size: 1rem;
}

.privacy-section {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--skin-color-rgb, 255, 107, 107), 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-section:hover::before {
    opacity: 1;
}

.privacy-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--skin-color);
}

.privacy-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--skin-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.privacy-section h4::before {
    content: '';
}

.privacy-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-black-900);
    margin: 20px 0 10px 0;
    padding-left: 15px;
    border-left: 3px solid var(--skin-color);
    position: relative;
    z-index: 1;
}

.privacy-section p {
    color: var(--text-black-700);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.privacy-section ol {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
    position: relative;
    z-index: 1;
    counter-reset: privacy-counter;
}

.privacy-section li {
    color: var(--text-black-700);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.privacy-section ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--skin-color);
    font-size: 0.8rem;
    background: linear-gradient(135deg, var(--skin-color), var(--text-black-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section ol li {
    counter-increment: privacy-counter;
}

.privacy-section ol li::before {
    content: counter(privacy-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--skin-color);
    font-weight: 600;
    background: linear-gradient(135deg, var(--skin-color), var(--text-black-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section a {
    color: var(--skin-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    position: relative;
    z-index: 1;
}

.privacy-section a:hover {
    color: var(--text-black-900);
    border-bottom-color: var(--skin-color);
    text-shadow: 0 0 5px rgba(var(--skin-color-rgb, 236, 24, 57), 0.3);
}

.privacy-footer {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-black-900);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.privacy-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--skin-color-rgb, 255, 107, 107), 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-footer:hover::before {
    opacity: 1;
}

.privacy-footer:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--skin-color);
}

.privacy-footer p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Privacy Policy Responsive Design */
@media (max-width: 768px) {
    .privacy-policy {
        /* Use standard section padding */
    }
    
    .privacy-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .privacy-header h3 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .privacy-section h4 {
        font-size: 1.3rem;
    }
    
    .privacy-section h5 {
        font-size: 1.1rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .privacy-header h3 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 15px;
    }
    
    .privacy-section h4 {
        font-size: 1.2rem;
    }
}

/* ============================== PRIVACY POLICY LINK STYLES ============================ */
.privacy-policy-link {
    margin-top: 40px;
    text-align: center;
}

.privacy-link-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-text {
    color: var(--text-black-700);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.privacy-link {
    color: var(--skin-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--text-black-900);
    text-decoration: underline;
}

/* Privacy Policy Link Responsive */
@media (max-width: 768px) {
    .privacy-policy-link {
        margin-top: 30px;
    }
    
    .privacy-link-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .privacy-text {
        font-size: 0.95rem;
    }
    
    .privacy-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privacy-link-container {
        padding: 15px;
        margin: 0 10px;
    }
    
    .privacy-text {
        font-size: 0.9rem;
    }
    
    .privacy-link {
        font-size: 0.85rem;
    }
}