@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&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: 'Poppins', sans-serif;
}
*
{
    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: 1;
}

.hidden
{
    display: none !important;

}

.main-content
{
    padding-left: 270px;
    background: var(--bg-black-900);
}

.padd-15
{
    padding-left: 15px;
    padding-right: 15px;
}

.container
{
    max-width: 1100px;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.section .container
{
    padding-top: 60px;
    padding-bottom: 70px;
}

.section-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}

.section-title h2
{
    font-size: 40px;
    color: var(--text-black-700);
    font-weight: 700;
    position: relative;
}
.section-title h2::before
{
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: var(--skin-color);
    top: 100%;
    left: 0;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 4px;
    background-color: var(--skin-color);
    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;
    white-space: nowrap;
    display: inline-block;
    background: var(--skin-color);
    transition: all 0.3s ease;
    border: none;
}

.btn:hover
{
    opacity: 0.85;
}
/*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: 100;
}
.aside .logo
{
    position: absolute;
    top: 50px;
    font-size:30px;
    text-transform:capitalize ;
}
.aside .logo a{
    color: var(--text-black-900);
    font-weight: 700;
    padding: 15px 20px;
    font-size: 30px;
    letter-spacing: 5px;
    position: relative;

}

.aside .logo a span{
    font-family: 'Clicker Script', cursive;
    font-size: 40px;

}

.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: 0;
}

.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: 0;
}

.nav-toggler
{
    height: 38px;
    width: 38px;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    border-radius: 5px;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-toggler span
{
    height: 2px;
    width: 18px;
    background-color: var(--skin-color);
    display: inline-block;
    position: relative;
}

.nav-toggler span::before
{
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: -6px;
    left: 0;
}
.nav-toggler span::after
{
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: 6px;
    left: 0;
}

.aside .nav
{
    margin-top: 50px;
}

.aside .nav li{
    margin-bottom: 20px;
    /* background: red; */
    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);
}
.home .home-info
{
    flex: 0 0 60%;
    max-width: 60%;
}

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-social
{
    display: flex;
    gap: 12px;
    margin: 20px 0 30px;
}

.home-social a
{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--skin-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--skin-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.home-social a:hover
{
    background: var(--skin-color);
    color: white;
}
.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-right: 10px solid var(--skin-color);
    border-bottom: 10px solid var(--skin-color);
    right: 30px;
    bottom: -30px;
}
.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: 30px;
    top: -30px;
}

.home .home-img img 
{
    height: 300px;
    width: 300px;
}


/* About */

.about-bio
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
}

.about-bio-top
{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.about-avatar
{
    display: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--skin-color);
    flex-shrink: 0;
}

.about-bio h3
{
    font-size: 26px;
    font-weight: 700;
    color: var(--text-black-900);
    margin-bottom: 6px;
}

.about-bio h3 span
{
    color: var(--skin-color);
}

.about-bio h4
{
    font-size: 16px;
    font-weight: 500;
    color: var(--skin-color);
    margin-bottom: 15px;
}

.about-bio p
{
    font-size: 15px;
    line-height: 26px;
    color: var(--text-black-700);
    margin-bottom: 25px;
}

.about-bio .buttons
{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.edu-exp-row
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.education,
.experience
{
    flex: 0 0 48%;
    max-width: 48%;
    margin-top: 0;
}

.about .about-content h3.title,
.education h3.title,
.experience h3.title
{
    font-size: 24px;
    color: var(--text-black-900);
    font-weight: 700;
    margin-bottom: 30px;
}

.about .about-content .timeline-box,
.timeline-box
{
    flex: 0 0 100%;
    max-width: 100%;
}

.about .about-content .timeline,
.timeline
{
    background-color: var(--bg-black-100);
    padding: 30px 15px;
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    width: 100%;
    position: relative;
}

.shadow-dark
{
    box-shadow: 0 0 20px rgba(48,46,77,0.15);
}

.timeline .timeline-item
{
    position: relative;
    padding-left: 30px;
    padding-bottom: 50px;
}

.timeline .timeline-item:last-child
{
    padding-bottom: 0;
}

.timeline .timeline-item::before
{
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    left: 7px;
    top: 0;
    background-color: var(--skin-color);
}

.timeline .circle-dot
{
    position: absolute;
    left: 0;
    top: 5px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: var(--skin-color);
}

.timeline .timeline-date
{
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-black-700);
}

.timeline .timeline-title
{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-black-900);
}

.timeline .timeline-text
{
    font-size: 14px;
    color: var(--text-black-700);
    line-height: 22px;
}

/* Skills Section */
.skills-content
{
    flex: 0 0 100%;
    max-width: 100%;
}

.skills-group-title
{
    font-size: 18px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 15px;
    margin-top: 10px;
    padding-left: 15px;
    border-left: 4px solid var(--skin-color);
}

.skill-card
{
    flex: 0 0 16.66%;
    max-width: 16.66%;
    margin-bottom: 20px;
}

.skill-card-inner
{
    background-color: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.skill-card-inner:hover
{
    transform: translateY(-5px);
}

.skill-card-inner img
{
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.skill-card-inner span
{
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-black-900);
}

/* Projects Section */
.project-item
{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.project-inner
{
    background-color: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    overflow: hidden;
}

.project-img
{
    position: relative;
    overflow: hidden;
    background: var(--bg-black-50);
}

.project-img img
{
    width: 100%;
    height: 160px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}



.project-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(236, 24, 57, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}



.project-link
{
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--skin-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.project-link:hover
{
    transform: scale(1.1);
}

.project-info
{
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.project-title
{
    font-size: 17px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 6px;
}

.project-desc
{
    font-size: 14px;
    color: var(--text-black-700);
    line-height: 22px;
    margin-bottom: 12px;
}

.project-tags
{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.project-tags span
{
    font-size: 11px;
    font-weight: 500;
    background: var(--bg-black-50);
    color: var(--text-black-700);
    padding: 3px 10px;
    border-radius: 20px;
}

.project-status
{
    background: #27ae60;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.project-btns
{
    display: flex;
    gap: 10px;
    justify-content: center;
}

.project-btn
{
    font-size: 13px;
    padding: 8px 22px;
    flex: 1;
    text-align: center;
}

.project-btn.outline
{
    background: transparent;
    border: 2px solid var(--skin-color);
    color: var(--skin-color);
}

.projects.section, .achievements.section
{
    min-height: auto;
    padding-bottom: 60px;
}
.achievement-item
{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 30px;
    box-sizing: border-box;
    display: flex;
}

.achievement-inner
{
    background-color: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}



.achievement-img
{
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.achievement-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}



.achievement-info
{
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.achievement-icon
{
    width: 45px;
    height: 45px;
    background: var(--skin-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.achievement-icon i
{
    font-size: 18px;
    color: white;
}

.achievement-info h4
{
    font-size: 17px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 5px;
}

.achievement-info span
{
    font-size: 13px;
    color: var(--skin-color);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.achievement-info p
{
    font-size: 14px;
    color: var(--text-black-700);
    line-height: 22px;
}

/* Contact Section */
.contact-info,
.contact-form
{
    flex: 0 0 50%;
    max-width: 50%;
}

.contact-info h3,
.contact-form h3
{
    font-size: 22px;
    font-weight: 700;
    color: var(--text-black-900);
    margin-bottom: 15px;
}

.contact-info > p
{
    font-size: 14px;
    color: var(--text-black-700);
    line-height: 24px;
    margin-bottom: 25px;
}

.contact-details
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail-item
{
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 14px 18px;
}

.contact-detail-icon
{
    width: 42px;
    height: 42px;
    background: var(--skin-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i
{
    font-size: 16px;
    color: white;
}

.contact-detail-label
{
    display: block;
    font-size: 12px;
    color: var(--text-black-700);
    margin-bottom: 2px;
}

.contact-detail-value
{
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-black-900);
}

.contact-form form
{
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 15px 20px;
}

.form-group
{
    margin-bottom: 10px;
}

.form-group label
{
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea
{
    width: 100%;
    padding: 10px 15px;
    background: var(--bg-black-900);
    border: 1px solid var(--bg-black-50);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-black-900);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus
{
    border-color: var(--skin-color);
}

.form-group textarea
{
    height: 75px;
    resize: vertical;
}

.mobile-fixed-btns { display: none; }

/* Footer */
.footer
{
    background: var(--bg-black-100);
    border-top: 1px solid var(--bg-black-50);
    padding: 20px 30px;
    text-align: center;
}

.footer .container
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 0;
    padding-bottom: 0;
}

.footer p
{
    font-size: 14px;
    color: var(--text-black-700);
}

.footer p span
{
    color: var(--skin-color);
    font-weight: 600;
}

.footer-social
{
    display: flex;
    gap: 10px;
}

.footer-social a
{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--skin-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--skin-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover
{
    background: var(--skin-color);
    color: white;
}

/* Mobile Topbar */
.mobile-topbar
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: rgba(253, 249, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 223, 236, 0.7);
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 200;
}
body.dark .mobile-topbar
{
    background: rgba(21, 21, 21, 0.55);
    border-bottom: 1px solid rgba(57, 57, 57, 0.7);
}
.mobile-logo { display: flex; align-items: center; }
.mobile-logo a { color: var(--text-black-900); font-weight: 700; font-size: 20px; letter-spacing: 3px; }
.mobile-logo a span { font-family: 'Clicker Script', cursive; font-size: 26px; color: var(--skin-color); }

/* Nav Overlay */
.nav-overlay
{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}
.nav-overlay.active
{
    display: block;
}

/* Style Switcher */
.switcher-btns
{
    position: fixed;
    right: 0;
    top: 10%;
    z-index: 102;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.style-switcher{
    position: fixed;
    right: 40px;
    top: 10%;
    z-index: 101;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    padding: 15px;
    width: 200px;
    transform: translateX(calc(100% + 40px));
    transition: all 0.3s ease;
    border-radius: 5px 0 0 5px;
}
.style-switcher.open{
    transform: translateX(0);
}
.style-switcher .s-icon,
.switcher-btns .s-icon
{
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 18px;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    color: var(--text-black-900);
}
.style-switcher .style-switcher-toggler{
    /* top handled by switcher-btns flex */
}
.style-switcher .day-night{
    /* top handled by switcher-btns flex */
    position: static;
    right: auto;
}
.style-switcher h4{
    font-size: 13px;
    font-weight: 600;
    color: var(--text-black-900);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.style-switcher .colors{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.style-switcher .colors li{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
}
.style-switcher .colors .color-1{ background: #ec1839; }
.style-switcher .colors .color-2{ background: #2196f3; }
.style-switcher .colors .color-3{ background: #72b626; }
.style-switcher .colors .color-4{ background: #ffb400; }
.style-switcher .colors .color-5{ background: #e91e63; }

/* =====================
   RESPONSIVE - TABLET
   max-width: 1199px
===================== */
@media (max-width: 1199px)
{
    .aside
    {
        left: -270px;
        transition: left 0.3s ease;
    }
    .aside.open
    {
        left: 0;
    }
    .mobile-topbar { display: flex; }
    .nav-toggler   { display: flex; }
    .aside .logo   { display: none; }
    .aside
    {
        left: -270px;
        transition: left 0.3s ease;
        top: 55px;
        height: calc(100% - 55px);
        z-index: 150;
    }
    .aside.open { left: 0; }
    .main-content { padding-left: 0; padding-top: 55px; }
    .section { padding: 0 20px; }
    .section .container { padding-top: 40px; padding-bottom: 50px; }
    /* Home */
    .home .home-info
    {
        flex: 0 0 55%;
        max-width: 55%;
    }
    .home .home-img
    {
        flex: 0 0 45%;
        max-width: 45%;
    }
    .home .home-img img
    {
        height: 260px;
        width: 260px;
    }
    h3.hello { font-size: 24px; }
    h3.my-profession { font-size: 26px; }
    /* About */
    .education,
    .experience
    {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    /* Skills */
    .skill-card
    {
        flex: 0 0 25%;
        max-width: 25%;
    }
    /* Projects & Achievements */
    .project-item,
    .achievement-item
    {
        flex: 0 0 50%;
        max-width: 50%;
    }
    /* Contact */
    .contact-info,
    .contact-form
    {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    /* Style switcher */
    .style-switcher
    {
        top: 10%;
    }
}

/* =====================
   RESPONSIVE - MOBILE
   max-width: 767px
===================== */
@media (max-width: 767px)
{
    .section
    {
        padding: 0 12px;
        min-height: auto;
    }
    .home
    {
        min-height: calc(100vh - 55px);
        align-items: center;
    }
    .section .container
    {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-title
    {
        margin-bottom: 25px;
    }
    .section-title h2
    {
        font-size: 26px;
    }
    /* Home */
    .home .row
    {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    .home .home-info,
    .home .home-img
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home .home-img
    {
        margin-bottom: 30px;
    }
    .home .home-img img
    {
        height: 200px;
        width: 200px;
    }
    .home .home-img { height: 230px; }
    .home-img::before { left: calc(50% - 100px - 15px); top: -15px; }
    .home-img::after  { right: calc(50% - 100px - 15px); bottom: -8px; top: auto; }
    h3.hello { font-size: 16px; }
    h3.hello span { font-size: 18px; }
    h3.my-profession { font-size: 18px; }
    .home-social
    {
        justify-content: center;
    }
    .home-info .btn
    {
        font-size: 14px;
        padding: 10px 24px;
    }
    /* About */
    .about-avatar { display: block; }
    .about-bio-top
    {
        align-items: center;
    }
    .about-bio h3 { font-size: 18px; }
    .about-bio h4 { font-size: 12px; margin-bottom: 0; }
    .about-bio p  { font-size: 13px; line-height: 22px; margin-bottom: 15px; }
    .education h3.title,
    .experience h3.title
    {
        font-size: 17px;
        margin-bottom: 12px;
    }
    .timeline { padding: 18px 12px; }
    .timeline .timeline-item { padding-left: 24px; padding-bottom: 25px; }
    .timeline .timeline-date  { font-size: 11px; }
    .timeline .timeline-title { font-size: 13px; }
    .timeline .timeline-text  { font-size: 12px; line-height: 20px; }
    .education,
    .experience
    {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    /* Skills */
    .skill-card
    {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        margin-bottom: 12px;
    }
    .skill-card-inner
    {
        padding: 10px 6px;
    }
    .skill-card-inner img
    {
        width: 32px;
        height: 32px;
        margin-bottom: 5px;
    }
    .skill-card-inner span { font-size: 11px; }
    .skills-group-title
    {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 10px;
        padding-left: 10px;
    }
    /* Projects & Achievements */
    .project-item,
    .achievement-item
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /* Contact */
    .contact-info,
    .contact-form
    {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    .contact-info h3,
    .contact-form h3
    {
        font-size: 18px;
    }
    .style-switcher
    {
        display: none;
    }
    .switcher-btns
    {
        display: none;
    }
    .style-switcher.open
    {
        display: block;
        transform: translateX(0);
        right: 40px;
        bottom: 69px;
        top: auto;
        border-radius: 5px;
        width: auto;
        white-space: nowrap;
        padding: 10px 12px;
    }
    .style-switcher.open h4 { display: none; }
    .style-switcher.open .colors
    {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .style-switcher .s-icon { display: none; }
    .mobile-fixed-btns
    {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        bottom: 20px;
        right: 0;
        z-index: 200;
    }
    .mobile-fixed-btn
    {
        width: 40px;
        height: 40px;
        background: var(--bg-black-100);
        border: 1px solid var(--bg-black-50);
        border-radius: 5px 0 0 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        color: var(--text-black-900);
    }
    .footer
    {
        padding: 16px 12px;
    }
    .footer .container
    {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .footer p
    {
        font-size: 12px;
    }
    .footer-social a
    {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* =====================
   RESPONSIVE - SMALL MOBILE
   max-width: 480px
===================== */
@media (max-width: 480px)
{
    .skill-card
    {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 10px;
    }
    .skill-card-inner
    {
        padding: 10px 8px;
    }
    .skill-card-inner img
    {
        width: 30px;
        height: 30px;
    }
    .skill-card-inner span { font-size: 11px; }
    .skills-group-title { font-size: 13px; }
    .btn
    {
        font-size: 13px;
        padding: 9px 20px;
    }
    h3.hello { font-size: 15px; }
    h3.hello span { font-size: 16px; }
    h3.my-profession { font-size: 16px; }
    .home .home-img img
    {
        height: 170px;
        width: 170px;
    }
}