@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --text-color: #ffffff;
    --muted-text: #b8b8b8;

    --hover-color: #d9ff00;

    --bg-color: #080b0a;
    --secondary-bg-color: #111510;
    --card-bg: #101410;

    --big-font: 2.5rem;
    --normal-font: 2rem;
    --norma-font: 2rem;
    --h2-font: 3rem;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


/* =========================================================
   HERO / TOP AREA
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(5, 8, 7, 0.86),
            rgba(5, 8, 7, 0.86)
        ),
        url("images/bg.png");

    background-size:
        65px 65px,
        65px 65px,
        cover,
        cover;

    background-position:
        center,
        center,
        center,
        center;

    background-repeat:
        repeat,
        repeat,
        no-repeat,
        no-repeat;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: relative;
    z-index: 2000;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 10%;
}


/* =========================================================
   LOGO
========================================================= */

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;

    opacity: 0;
    animation: slideRight 0.8s ease forwards;
    animation-delay: 0.1s;
}

.dg-badge {
    width: 48px;
    height: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: transparent;
    color: var(--hover-color);

    border: 2px solid var(--hover-color);
    border-radius: 10px;

    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;

    flex-shrink: 0;
}

.logo {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--hover-color);
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.navlist {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navlist li {
    list-style: none;
}

.navlist a {
    position: relative;

    display: block;

    color: var(--text-color);

    font-size: 14px;
    font-weight: 500;

    padding: 10px 18px;

    transition: color 0.3s ease;

    opacity: 0;

    animation: slideTop 0.5s ease forwards;
}

.navlist a:hover {
    color: var(--hover-color);
}

.navlist a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: var(--hover-color);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.navlist a:hover::after {
    width: 35%;
}


/* =========================================================
   MOBILE MENU ICON
========================================================= */

.menu-icon,
#menu-icon {
    display: none;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    cursor: pointer;

    background: transparent;
    color: var(--hover-color);

    border: 1px solid var(--hover-color);
    border-radius: 8px;

    font-size: 1.35rem;
    line-height: 1;

    position: relative;
    z-index: 2100;
}


/* =========================================================
   HOME SECTION
========================================================= */

.home {
    min-height: calc(100vh - 85px);
    width: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 5%;
}

.home-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;
}


/* =========================================================
   HOME HEADING
========================================================= */

.home-content h1 {
    color: var(--text-color);

    font-size: var(--big-font);
    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 15px;

    text-align: center;

    opacity: 0;

    animation: slideBottom 0.5s ease forwards;
    animation-delay: 0.8s;
}

#typing-name {
    color: var(--hover-color);
}

#typing-name::after {
    content: "|";

    color: var(--hover-color);

    margin-left: 2px;

    animation: blink 0.7s infinite;
}


/* =========================================================
   CHANGING ROLE
========================================================= */

.change-text {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin: 0 0 15px;

    font-size: 1.35rem;
    font-weight: 600;

    text-align: center;

    opacity: 0;

    animation: slideBottom 0.5s ease forwards;
    animation-delay: 1s;
}


/* "And I'm a" */

.change-text h3 {
    display: inline-flex;

    align-items: center;

    margin: 0;

    color: var(--text-color);

    font-size: inherit;
    font-weight: 600;

    white-space: nowrap;
}


/* Changing word container */

.change-text h3:nth-child(2) {
    position: relative;

    height: 30px;

    min-width: 230px;

    margin-left: 0;

    display: flex;

    align-items: center;

    justify-content: flex-start;
}


/* Individual words */

.change-text .word {
    position: absolute;

    left: 0;
    top: 0;

    display: flex;
    align-items: center;

    opacity: 0;

    color: var(--hover-color);

    white-space: nowrap;

    transform-style: preserve-3d;
}


/* Individual letters */

.change-text .word .letter {
    display: inline-block;

    transform-origin: center center 25px;

    backface-visibility: hidden;
}


/* Letter leaving */

.change-text .word .letter.out {
    transform: rotateX(90deg);

    transition:
        transform 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}


/* Letter entering */

.change-text .word .letter.in {
    transform: rotateX(0deg);

    transition:
        transform 0.38s ease;
}


/* Letter behind */

.change-text .word .letter.behind {
    transform: rotateX(-90deg);
}


/* =========================================================
   HOME DESCRIPTION
========================================================= */

.home-content p {
    width: 100%;
    max-width: 700px;

    color: var(--text-color);

    line-height: 1.7;

    font-size: 0.95rem;

    text-align: center;

    margin: 0 auto 25px;

    opacity: 0;

    animation: slideLeft 0.5s ease forwards;
    animation-delay: 0.7s;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-box {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    margin-top: 5px;
}

.btn,
.btn-box a.btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-width: 150px;
    min-height: 45px;

    padding: 11px 22px;

    background: transparent;

    color: var(--hover-color);

    border: 2px solid var(--hover-color);

    border-radius: 6px;

    font-family: inherit;

    font-size: 0.95rem;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.btn:hover,
.btn-box a.btn:hover {
    background: var(--hover-color);

    color: var(--bg-color);

    transform: translateY(-2px);
}


/* =========================================================
   SECOND BUTTON
========================================================= */

.btn-box a.btn:nth-child(2) {
    background: transparent;

    color: var(--text-color);

    border-color: var(--text-color);
}

.btn-box a.btn:nth-child(2):hover {
    background: var(--text-color);

    color: var(--bg-color);
}


/* =========================================================
   PROFILE IMAGE
========================================================= */

.home-image {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-top: 5px;
}

.profile-image {
    width: 190px;
    height: 190px;

    margin: 0 auto;

    border-radius: 50%;

    overflow: hidden;

    border: 3px solid var(--text-color);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.profile-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.profile-image:hover {
    transform: scale(1.03);

    border-color: var(--hover-color);
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 100px 8%;

    color: var(--text-color);

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 50% 45%,
            rgba(217, 255, 0, 0.12) 0%,
            rgba(217, 255, 0, 0.06) 20%,
            rgba(217, 255, 0, 0.02) 38%,
            transparent 60%
        ),
        linear-gradient(
            135deg,
            #000000 0%,
            #050706 45%,
            #000000 100%
        );

    background-size:
        65px 65px,
        65px 65px,
        cover,
        cover;

    background-position:
        center,
        center,
        center,
        center;

    background-repeat:
        repeat,
        repeat,
        no-repeat,
        no-repeat;
}

.about-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    flex-direction: row;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image,
.about .img-about {
    width: 48%;

    display: flex;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.about-image .image-box,
.about .img-about {
    width: 100%;
    max-width: 560px;

    border-radius: 10px;

    overflow: hidden;

    background: transparent;

    box-shadow: none;
}

.about-image .image-box img,
.about .img-about img {
    width: 100%;
    max-width: 100%;

    height: auto;

    display: block;

    filter: none;
}


/* =========================================================
   REMOVE IMAGE GLOW
========================================================= */

.image-glow {
    display: none !important;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
    width: 52%;
    max-width: 620px;
}

.about-content > span,
.about-content span {
    color: var(--text-color);

    font-size: 0.8rem;
    font-weight: 400;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   ABOUT MAIN HEADING
========================================================= */

.about-content h2 {
    color: var(--hover-color);

    font-weight: 700;

    font-size: 2.2rem;

    line-height: 1.25;

    margin: 0 0 15px;

    text-shadow: none;
}

.about-content span {
    display: block;

    color: var(--text-color);

    margin-top: 5px;

    letter-spacing: 0;

    text-transform: none;

    font-size: inherit;
}


/* =========================================================
   ABOUT SUB HEADING
========================================================= */

.about-content h3 {
    color: var(--text-color);

    font-weight: 600;

    font-size: 1.5rem;

    margin-bottom: 0.5rem;

    text-shadow: none;
}


/* =========================================================
   ABOUT DESCRIPTION
========================================================= */

.about-content p,
.about-content > p {
    color: var(--text-color);

    font-size: 1rem;
    font-weight: 400;

    line-height: 1.7;

    margin-bottom: 1.5rem;
}


/* =========================================================
   ABOUT TITLE LINE
========================================================= */

.title-line {
    width: 80px;
    height: 2px;

    background: var(--hover-color);

    margin: 15px 0 30px;

    box-shadow: none;
}


/* =========================================================
   ABOUT INFO BADGES
========================================================= */

.info-about1,
.info-about2,
.info-about3 {
    position: absolute;

    width: 90px;
    height: 90px;

    padding: 10px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: var(--bg-color);

    color: var(--text-color);

    border: 1px solid var(--hover-color);

    outline: 2px solid var(--bg-color);

    border-radius: 50%;

    z-index: 100;

    box-shadow: none;

    animation: morph 6s linear infinite;
}

.info-about1 {
    left: 10%;
    top: 34%;
}

.info-about2 {
    left: 66%;
    top: 15%;
}

.info-about3 {
    left: 61%;
    top: 70%;
}

.img-about span {
    color: var(--hover-color);

    font-size: 1rem;
    font-weight: 600;

    text-shadow: none;
}


/* =========================================================
   ABOUT EXPERTISE
========================================================= */

.about-skills-section {
    width: 100%;

    margin-top: 45px;
}

.about-skills-header {
    width: 100%;

    text-align: center;

    margin-bottom: 35px;
}

.about-skills-header span {
    display: block;

    color: var(--hover-color);

    font-size: 0.75rem;
    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.about-skills-header h3 {
    margin: 0;

    color: var(--text-color);

    font-size: 1.8rem;
    font-weight: 600;

    text-align: center;
}


/* =========================================================
   DEVELOPMENT + DESIGN
========================================================= */

.about-skills {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;

    justify-content: center;
}

.about-skill-box {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;
}

.about-skill-box h3 {
    margin: 0 0 15px;

    color: var(--text-color);

    font-size: 1.2rem;
    font-weight: 600;
}

.about-skill-icon {
    width: 70px;
    height: 60px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: transparent;

    border: 1px solid var(--text-color);

    border-radius: 8px;

    margin-bottom: 15px;

    box-shadow: none;
}

.about-skill-icon i {
    color: var(--hover-color);

    font-size: 1.7rem;

    text-shadow: none;

    filter: none;
}

.about-skill-box p {
    max-width: 300px;

    margin: 0;

    color: var(--text-color);

    font-size: 0.95rem;
    font-weight: 400;

    line-height: 1.6;

    text-align: left;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    min-height: 100vh;

    padding: 100px 8%;

    background:
        linear-gradient(
            135deg,
            rgba(3, 5, 4, 0.88),
            rgba(8, 11, 10, 0.78),
            rgba(17, 22, 17, 0.88)
        ),
        url("images/bg.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

.main-text {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto 2.5rem;

    text-align: center;

    color: var(--hover-color);
}

.main-text h2 {
    color: var(--text-color);

    font-size: 45px;
    font-weight: 700;

    margin-bottom: 18px;

    letter-spacing: 1px;
}

.main-text-line {
    width: 80px;
    height: 2px;

    margin: 0 auto 20px;

    background: var(--hover-color);
}

.main-text span {
    display: block;

    color: var(--text-color);

    font-size: 0.8rem;
    font-weight: 300;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 6px;
}

.section-sevices,
.section-services {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: center;
    align-items: stretch;

    flex-wrap: wrap;

    gap: 2rem;
}

.section-sevices .service-box,
.section-services .service-box,
.service-box {
    flex: 1 1 20rem;

    padding: 2rem 1.5rem;

    text-align: center;

    background: var(--secondary-bg-color);

    border: 1px solid #2b302c;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);

    border-color: var(--hover-color);
}

.service-box .service-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 10px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: transparent;

    color: var(--hover-color);

    border: 2px solid var(--hover-color);

    border-radius: 50%;

    font-size: 2rem;
}

.service-box h3 {
    color: var(--text-color);

    margin-top: 10px;

    font-size: 1.35rem;

    font-weight: 600;
}

.service-box p {
    margin: 0.6rem 0 0;

    color: var(--text-color);

    font-size: 0.9rem;

    line-height: 1.6;
}


/* =========================================================
   SKILLS
========================================================= */

.skills {
    margin: 0;

    min-height: 100vh;

    padding: 100px 8%;

    background:
        linear-gradient(
            135deg,
            #030504 0%,
            #080b0a 45%,
            #121a13 100%
        );

    color: var(--text-color);
}

.skill-main {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    row-gap: 30px;
    column-gap: 50px;

    margin-bottom: 2rem;

    text-align: center;
}

.skill-main .skill-left h3,
.skill-main .skill-right h3 {
    color: var(--hover-color);

    font-size: var(--normal-font);

    margin-bottom: 25px;
}

.skill-bar {
    margin-bottom: 2rem;
}

.skill-left .skill-bar .info {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 0 10px;

    color: var(--text-color);
}

.skill-left .skill-bar .info p,
.skill-left .skill-bar .info span {
    color: var(--text-color);
}

.skill-left .skill-bar .bar {
    width: 100%;
    height: 10px;

    background: var(--bg-color);

    border: 1px solid #303630;

    border-radius: 25px;

    margin-top: 10px;

    position: relative;

    overflow: hidden;
}

.skill-bar .bar span {
    width: 50%;
    height: 100%;

    position: absolute;

    left: 0;
    top: 0;

    background: var(--hover-color);

    border-radius: 25px;

    box-shadow: none;
}

.skill-bar .bar .html {
    width: 80%;
    animation: html 2s ease;
}

.skill-bar .bar .css {
    width: 70%;
    animation: css 3s ease;
}

.skill-bar .bar .python {
    width: 70%;
    animation: python 3s ease;
}

.skill-bar .bar .php {
    width: 65%;
    animation: php 4s ease;
}

.skill-bar .bar .javascript {
    width: 60%;
    animation: javascript 4s ease;
}


/* =========================================================
   PROFESSIONAL SKILLS
========================================================= */

.professional {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.box {
    position: relative;

    margin: 10px 0;

    min-height: 120px;
}

.box .text {
    text-align: center;

    color: var(--text-color);

    font-size: 1rem;
}

.box .text big {
    display: block;

    letter-spacing: 1px;

    font-size: 1.1rem;
    font-weight: 600;

    position: absolute;

    top: 40%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.circle {
    width: 100%;
    height: 120px;

    display: flex;

    justify-content: center;
    align-items: center;
}

.circle .points {
    width: 2px;
    height: 10px;

    background: var(--bg-color);

    position: absolute;

    border-radius: 3px;

    transform:
        rotate(calc(var(--i) * var(--rot)))
        translateY(-45px);
}

.points.marked {
    background: var(--hover-color);

    animation: none;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    padding: 100px 10%;

    background-color: var(--bg-color);

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    background-position: center;
}

.contact-header,
.contact-container {
    position: relative;

    z-index: 2;
}

.contact-header {
    text-align: center;

    margin-bottom: 60px;
}

.contact-header h2 {
    color: var(--text-color);

    font-size: 48px;
    font-weight: 700;

    margin-bottom: 18px;

    letter-spacing: -1px;
}

.contact-title-line {
    width: 80px;
    height: 2px;

    margin: 0 auto 25px;

    background: var(--hover-color);
}

.contact-header p {
    color: var(--text-color);

    font-size: 17px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-card {
    width: 100%;

    padding: 28px;

    margin-bottom: 35px;

    background: var(--secondary-bg-color);

    border: 1px solid #2b302c;

    border-radius: 16px;

    box-shadow: none;
}

.quote-icon {
    color: var(--hover-color);

    font-size: 52px;

    line-height: 35px;

    font-weight: 700;

    margin-bottom: 15px;
}

.testimonial-text {
    margin: 0 0 25px;

    color: var(--text-color);

    font-size: 13px;

    line-height: 1.7;
}

.testimonial-person {
    display: flex;

    align-items: center;

    gap: 12px;
}

.person-avatar {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 50%;

    overflow: hidden;

    border: 1px solid var(--hover-color);
}

.person-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.testimonial-person h4 {
    margin: 0 0 3px;

    color: var(--text-color);

    font-size: 13px;

    font-weight: 600;
}

.testimonial-person span {
    color: var(--hover-color);

    font-size: 10px;
}


/* =========================================================
   CONTACT CONTAINER
========================================================= */

.contact-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: start;
}

.contact-info > h3 {
    color: var(--text-color);

    font-size: 30px;

    margin-bottom: 38px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 32px;
}

.contact-icon {
    width: 35px;
    min-width: 35px;

    display: flex;

    justify-content: center;
    align-items: center;
}

.contact-icon i {
    color: var(--hover-color);

    font-size: 26px;

    text-shadow: none;
}

.contact-text h4 {
    color: var(--text-color);

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-color);

    font-size: 16px;

    margin: 0;
}


/* =========================================================
   FOLLOW ME
========================================================= */

.follow-section {
    margin-top: 48px;
}

.follow-section h3 {
    color: var(--text-color);

    font-size: 20px;

    margin-bottom: 22px;
}

.contact-social-icons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.contact-social-icons a {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: var(--hover-color);

    border: 1px solid var(--hover-color);

    border-radius: 8px;

    font-size: 22px;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-social-icons a:hover {
    background: var(--hover-color);

    color: var(--bg-color);

    transform: translateY(-3px);
}

.contact-social-icons .github,
.contact-social-icons .linkedin,
.contact-social-icons .facebook,
.contact-social-icons .twitter,
.contact-social-icons .instagram,
.contact-social-icons .whatsapp {
    background: transparent;

    color: var(--hover-color);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    width: 100%;
}

.form-group {
    width: 100%;

    margin-bottom: 28px;
}

.form-group label {
    display: block;

    font-size: 16px;

    font-weight: 500;

    color: var(--text-color);

    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid #343a36;

    border-radius: 9px;

    background: #0d1110;

    color: var(--text-color);

    font-family: inherit;

    font-size: 16px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.form-group input {
    height: 58px;

    padding: 0 20px;
}

.form-group textarea {
    min-height: 180px;

    padding: 18px 20px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9a9a;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--hover-color);

    background: #0b0f0d;

    box-shadow: none;
}


/* =========================================================
   SEND MESSAGE BUTTON
========================================================= */

.send-message-btn {
    width: 100%;
    height: 58px;

    border: 2px solid var(--hover-color);

    border-radius: 8px;

    background: transparent;

    color: var(--hover-color);

    font-family: inherit;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.send-message-btn:hover {
    background: var(--hover-color);

    color: var(--bg-color);

    transform: translateY(-2px);

    box-shadow: none;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;

    width: 100%;

    padding: 28px 10%;

    background: var(--bg-color);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.footer-content p {
    margin: 0;

    color: var(--text-color);

    font-size: 14px;

    letter-spacing: 0.2px;
}

.footer-links {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;
}

.footer-links a {
    color: var(--text-color);

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-links span {
    color: #666d67;
}

.footer-links a:hover {
    color: var(--hover-color);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    header {
        padding: 18px 6%;
    }

    section {
        padding: 80px 6%;
    }

    .home {
        padding-left: 6%;
        padding-right: 6%;
    }

    .about-container {
        gap: 40px;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .contact-section {
        padding: 80px 6%;
    }

    .contact-container {
        gap: 50px;
    }
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    header {
        position: relative;

        padding: 15px 5%;
    }


    /* -----------------------------------------------------
       MENU BUTTON
    ----------------------------------------------------- */

    .menu-icon,
    #menu-icon {
        display: flex;
    }


    /* -----------------------------------------------------
       MOBILE NAV - HIDDEN BY DEFAULT
    ----------------------------------------------------- */

    .navlist {
        display: none !important;

        position: absolute;

        top: calc(100% + 10px);

        left: 5%;
        right: 5%;

        width: auto;

        padding: 18px 15px;

        background: #080b0a;

        border: 1px solid var(--text-color);

        border-radius: 18px;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        z-index: 2050;
    }


    /* -----------------------------------------------------
       MOBILE NAV - OPEN
    ----------------------------------------------------- */

    .navlist.active {
        display: flex !important;
    }

    .navlist li {
        width: 100%;

        margin: 0;
    }

    .navlist a {
        width: 100%;

        padding: 17px 18px;

        color: var(--text-color);

        font-size: 1rem;

        font-weight: 600;

        opacity: 1;

        animation: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .navlist li:last-child a {
        border-bottom: none;
    }

    .navlist a::after {
        display: none;
    }

    .navlist a:hover {
        color: var(--hover-color);
    }


    /* =====================================================
       MOBILE HOME
    ===================================================== */

    .home {
        min-height: calc(100vh - 75px);

        display: flex;

        flex-direction: column;

        justify-content: flex-start;

        align-items: center;

        text-align: center;

        padding: 45px 6% 60px;

        gap: 0;
    }


    /*
       IMPORTANT:
       Desired order:

       NAME
       ROLE
       DESCRIPTION
       BUTTONS
       IMAGE
    */

    .home-content {
        width: 100%;
        max-width: 650px;

        display: flex;

        flex-direction: column;

        align-items: center;

        order: 1;
    }

    .home-image {
        order: 2;

        width: 100%;

        margin-top: 0;

        margin-bottom: 0;
    }


    /* -----------------------------------------------------
       MOBILE NAME
    ----------------------------------------------------- */

    .home-content h1 {
        width: 100%;

        font-size: 2.1rem;

        line-height: 1.25;

        margin-bottom: 20px;

        text-align: center;
    }


    /* -----------------------------------------------------
       MOBILE ROLE
    ----------------------------------------------------- */

    .change-text {
        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-wrap: nowrap;

        gap: 5px;

        margin: 0 0 15px;

        font-size: 1.1rem;

        text-align: center;
    }

    .change-text h3 {
        font-size: inherit;

        white-space: nowrap;
    }

    .change-text h3:nth-child(2) {
        position: relative;

        min-width: 240px;

        height: 28px;

        margin-left: 0;

        justify-content: flex-start;
    }


    /* -----------------------------------------------------
       MOBILE DESCRIPTION
    ----------------------------------------------------- */

    .home-content p {
        width: 100%;

        max-width: 95%;

        margin: 0 auto 25px;

        text-align: center;

        font-size: 0.88rem;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       MOBILE BUTTONS
    ----------------------------------------------------- */

    .btn-box {
        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 15px;

        margin: 0 auto 0;

        flex-wrap: nowrap;
    }

    .btn,
    .btn-box a.btn {
        flex: 1;

        min-width: 0;

        height: 45px;

        min-height: 45px;

        padding: 8px 10px;

        font-size: 0.8rem;
    }


    /* -----------------------------------------------------
       MOBILE PROFILE IMAGE
    ----------------------------------------------------- */

    .home-image {
        margin-top: 0;
    }

    .profile-image {
        width: 165px;
        height: 165px;

        margin: 0 auto;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about-section {
        min-height: auto;

        padding: 80px 6%;
    }

    .about-container {
        flex-direction: column;

        gap: 45px;

        align-items: center;
    }

    .about-image,
    .about .img-about {
        width: 100%;

        max-width: 600px;

        order: 1;
    }

    .about-content {
        width: 100%;

        max-width: 600px;

        order: 2;

        text-align: center;
    }

    .about-content > span,
    .about-content span {
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 1.35rem;
    }

    .about-content p,
    .about-content > p {
        font-size: 0.92rem;

        line-height: 1.7;
    }

    .title-line {
        margin: 15px auto 30px;
    }


    /* =====================================================
       ABOUT SKILLS
    ===================================================== */

    .about-skills-section {
        margin-top: 40px;
    }

    .about-skills-header {
        margin-bottom: 30px;
    }

    .about-skills-header h3 {
        font-size: 1.5rem;
    }

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

        gap: 30px;
    }

    .about-skill-box {
        align-items: center;

        text-align: center;
    }

    .about-skill-box h3 {
        font-size: 1.05rem;
    }

    .about-skill-box p {
        font-size: 0.85rem;

        text-align: center;
    }

    .about-skill-icon {
        width: 60px;
        height: 55px;
    }

    .about-skill-icon i {
        font-size: 1.4rem;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services {
        padding: 80px 6%;
    }

    .section-sevices,
    .section-services {
        gap: 1.2rem;
    }

    .section-sevices .service-box,
    .section-services .service-box,
    .service-box {
        flex: 1 1 100%;
    }


    /* =====================================================
       SKILLS
    ===================================================== */

    .skills {
        padding: 80px 6%;
    }

    .skill-main {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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


    /* =====================================================
       CONTACT
    ===================================================== */

    .contact-section {
        padding: 80px 6%;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

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

    .contact-header h2 {
        font-size: 40px;
    }

    .contact-header p {
        font-size: 16px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    header {
        padding: 14px 5%;
    }

    .dg-badge {
        width: 43px;
        height: 35px;

        font-size: 15px;
    }

    .logo {
        font-size: 22px;
    }

    .menu-icon,
    #menu-icon {
        width: 42px;
        height: 42px;

        font-size: 1.2rem;
    }


    /* -----------------------------------------------------
       MOBILE NAV
    ----------------------------------------------------- */

    .navlist {
        top: calc(100% + 8px);

        right: 4%;
        left: 4%;

        padding: 15px 12px;

        border-radius: 16px;
    }

    .navlist a {
        padding: 16px 15px;

        font-size: 0.95rem;
    }


    /* =====================================================
       SMALL PHONE HOME
    ===================================================== */

    .home {
        padding: 45px 5% 50px;
    }

    .home-content h1 {
        font-size: 1.75rem;

        line-height: 1.25;

        margin-bottom: 20px;
    }

    .change-text {
        font-size: 1rem;

        gap: 4px;
    }

    .change-text h3:nth-child(2) {
        min-width: 210px;

        height: 25px;
    }

    .home-content p {
        max-width: 95%;

        font-size: 0.82rem;

        line-height: 1.7;

        margin-bottom: 25px;
    }


    /* -----------------------------------------------------
       BUTTONS
    ----------------------------------------------------- */
    .btn-box {
        width: 50px;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .btn,
    .btn-box a.btn {
        flex: 1;
        min-width: 0;
        height: 42px;
        min-height: 22px;
        padding: 9px 8px;
        font-size: 0.72rem;
    }


    /* -----------------------------------------------------
       PROFILE IMAGE
    ----------------------------------------------------- */

    .home-image {
        margin-top: 0;
    }

    .profile-image {
        width: 145px;
        height: 145px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about-section {
        padding: 60px 5%;
    }

    .about-content h2 {
        font-size: 1.55rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .about-content p,
    .about-content > p {
        font-size: 0.88rem;
    }

    .about-image .image-box,
    .about .img-about {
        max-width: 100%;
    }


    /* =====================================================
       ABOUT SKILLS
    ===================================================== */

    .about-skills-section {
        margin-top: 35px;
    }

    .about-skills-header {
        margin-bottom: 25px;
    }

    .about-skills-header span {
        font-size: 0.7rem;
    }

    .about-skills-header h3 {
        font-size: 1.3rem;
    }

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

        gap: 20px;
    }

    .about-skill-box h3 {
        font-size: 0.95rem;
    }

    .about-skill-icon {
        width: 55px;
        height: 50px;

        margin-bottom: 12px;
    }

    .about-skill-icon i {
        font-size: 1.3rem;
    }

    .about-skill-box p {
        font-size: 0.76rem;

        line-height: 1.5;

        text-align: center;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services {
        padding: 65px 5%;
    }

    .main-text {
        margin-bottom: 2rem;
    }

    .main-text h2 {
        font-size: 1.7rem;
    }

    .service-box {
        padding: 1.7rem 1rem;
    }

    .service-icon {
        width: 62px;
        height: 62px;

        font-size: 1.6rem;
    }

    .service-box h3 {
        font-size: 1.2rem;
    }

    .service-box p {
        font-size: 0.84rem;
    }

   

    /* =====================================================
       SKILLS
    ===================================================== */

    .skills {
        padding: 65px 5%;
    }

    .skill-main .skill-left h3,
    .skill-main .skill-right h3 {
        font-size: 1.7rem;
    }

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


    /* =====================================================
       CONTACT
    ===================================================== */

    .contact-section {
        padding: 65px 5%;
    }

    .contact-header h2 {
        font-size: 34px;
    }

    .contact-header p {
        font-size: 15px;
    }

    .contact-info > h3 {
        font-size: 25px;
    }

    .contact-text h4 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .contact-social-icons a {
        width: 48px;
        height: 48px;

        font-size: 19px;
    }

    .testimonial-card {
        padding: 22px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        padding: 25px 5%;
    }

    .footer-content {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }
}


/* =========================================================
   DESKTOP ONLY
========================================================= */

@media (min-width: 769px) {

    .menu-icon,
    #menu-icon {
        display: none !important;
    }

    .navlist {
        display: flex !important;
    }

    /* Desktop About:
       IMAGE LEFT | CONTENT RIGHT */

    .about-container {
        flex-direction: row;

        align-items: center;

        justify-content: space-between;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* =========================================================
   SKILL BAR ANIMATIONS
========================================================= */

@keyframes html {
    0% {
        width: 0;
    }

    100% {
        width: 80%;
    }
}

@keyframes css {
    0% {
        width: 0;
    }

    100% {
        width: 70%;
    }
}

@keyframes python {
    0% {
        width: 0;
    }

    100% {
        width: 70%;
    }
}

@keyframes php {
    0% {
        width: 0;
    }

    100% {
        width: 65%;
    }
}

@keyframes javascript {
    0% {
        width: 0;
    }

    100% {
        width: 60%;
    }
}


/* =========================================================
   ABOUT SHAPE ANIMATION
========================================================= */

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

    30% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    60% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    80% {
        border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
    }
}


/* =========================================================
   FINAL THEME SAFETY
   WHITE + LEMON ONLY
   NO GLOW
========================================================= */

.image-glow,
.neon-box-shadow {
    box-shadow: none !important;

    filter: none !important;
}

.home-image .image-box {
    border: 2px solid var(--text-color);

    box-shadow: none !important;
}

.about-image .image-box,
.about .img-about {
    border-color: var(--text-color);

    box-shadow: none !important;
}

.about-content h2,
.main-text h2,
.skill-main .skill-left h3,
.skill-main .skill-right h3 {
    color: var(--hover-color);

    text-shadow: none !important;
}

.about-content h3,
.about-content p,
.service-box h3,
.service-box p,
.skill-box h3,
.skill-box p {
    color: var(--text-color);
}

.title-line,
.skill-line {
    background: var(--hover-color);

    box-shadow: none !important;
}

.service-icon,
.skill-icon {
    color: var(--hover-color);

    border-color: var(--hover-color);

    box-shadow: none !important;
}



/* =========================================================
   FINAL MOBILE FIX
   HOME + MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    header {
        width: 100%;
        padding: 15px 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 2000;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .dg-badge {
        width: 43px;
        height: 35px;
        font-size: 15px;
        border-radius: 10px;
    }

    .logo {
        font-size: 22px;
    }


    /* -----------------------------------------------------
       MENU ICON
    ----------------------------------------------------- */

    .menu-icon,
    #menu-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;

        margin-left: auto;

        background: transparent;
        color: var(--hover-color);

        border: 1px solid var(--hover-color);
        border-radius: 8px;

        font-size: 1.3rem;
        line-height: 1;

        cursor: pointer;

        position: relative;
        z-index: 3000;
    }


    /* -----------------------------------------------------
       MOBILE NAVIGATION
    ----------------------------------------------------- */

    .navlist {
        display: none !important;

        position: absolute;

        top: calc(100% + 10px);
        left: 5%;
        right: 5%;

        width: auto;

        padding: 12px;

        background: #080b0a;

        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 15px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        z-index: 2500;
    }

    .navlist.active {
        display: flex !important;
    }

    .navlist li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .navlist a {
        display: block;

        width: 100%;

        padding: 15px 16px;

        color: #ffffff;

        font-size: 0.95rem;
        font-weight: 600;

        opacity: 1;

        animation: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navlist li:last-child a {
        border-bottom: none;
    }

    .navlist a::after {
        display: none;
    }

    .navlist a:hover {
        color: var(--hover-color);
    }


    /* -----------------------------------------------------
       HOME SECTION
    ----------------------------------------------------- */

    .home {
        width: 100%;
        min-height: calc(100vh - 75px);

        display: flex;
        flex-direction: column;

        justify-content: flex-start;
        align-items: center;

        text-align: center;

        padding: 45px 5% 60px;

        gap: 0;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       HOME CONTENT
    ----------------------------------------------------- */

    .home-content {
        width: 100%;
        max-width: 700px;

        display: flex;
        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        text-align: center;

        margin: 0 auto;
    }


    /* -----------------------------------------------------
       PROFILE IMAGE
       IMPORTANT: IMAGE COMES LAST
    ----------------------------------------------------- */

    .home-content .home-image {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2px;
        margin-bottom: 20px;
    }


    /* -----------------------------------------------------
       MAIN HEADING
    ----------------------------------------------------- */

    .home-content h1 {
        order: 1;
        width: 100%;
        margin: 0 0 20px;
        padding: 0;
        color: var(--text-color);
        font-size: 2.05rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
        opacity: 1;
        animation: slideBottom 0.5s ease forwards;
    }

    #typing-name {
        color: var(--hover-color);
    }


    /* -----------------------------------------------------
       CHANGING ROLE
    ----------------------------------------------------- */

    .change-text {
        order: 2;

        width: 100%;

        margin: 0 0 15px !important;
        padding: 0;

        display: flex;

        justify-content: center;
        align-items: center;

        flex-wrap: nowrap;

        gap: 6px;

        font-size: 1.05rem;

        font-weight: 600;

        text-align: center;

        opacity: 1;

        animation: slideBottom 0.5s ease forwards;

        overflow: visible;
    }


    /* "And I'm a" */

    .change-text h3 {
        display: inline-flex;

        align-items: center;

        justify-content: center;

        width: auto;

        margin: 0 !important;

        padding: 0;

        color: #ffffff;

        font-size: inherit;

        line-height: 1.2;

        white-space: nowrap;
    }


    /*
       CHANGING WORD CONTAINER
    */

    .change-text h3:nth-child(2) {
        position: relative;

        display: block;

        width: 225px;
        min-width: 225px;

        height: 30px;

        margin: 0;

        padding: 0;

        text-align: left;

        overflow: visible;
    }


    /* -----------------------------------------------------
       CHANGING WORDS
    ----------------------------------------------------- */

    .change-text .word {
        position: absolute;

        left: 0;
        top: 0;

        display: flex;

        align-items: center;

        height: 30px;

        color: var(--hover-color);

        white-space: nowrap;

        opacity: 0;

        transform-style: preserve-3d;
    }


    .change-text .word .letter {
        display: inline-block;

        transform-origin: center center 25px;

        backface-visibility: hidden;

        -webkit-backface-visibility: hidden;
    }


    .change-text .word .letter.out {
        transform: rotateX(90deg);

        transition:
            transform 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
    }


    .change-text .word .letter.in {
        transform: rotateX(0deg);

        transition:
            transform 0.38s ease;
    }


    .change-text .word .letter.behind {
        transform: rotateX(-90deg);
    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .home-content p {
        order: 3;

        width: 100%;

        max-width: 95%;

        margin: 0 auto 25px;

        padding: 0;

        color: #ffffff;

        font-size: 0.88rem;

        line-height: 1.7;

        text-align: center;

        opacity: 1;

        animation: slideLeft 0.5s ease forwards;
    }


    /* -----------------------------------------------------
       BUTTONS
    ----------------------------------------------------- */

    .home-content .btn-box {
        order: 4;

        width: 100%;

        max-width: 400px;

        margin: 0 auto 5px;

        padding: 0;

        display: flex;

        justify-content: center;
        align-items: center;

        gap: 10px;

        flex-wrap: nowrap;
    }


    .home-content .btn,
    .home-content .btn-box a.btn {
        flex: 1 1 0;

        width: 50%;

        min-width: 0;

        height: 50px;
        min-height: 50px;

        padding: 8px 10px;

        display: flex;

        justify-content: center;
        align-items: center;

        background: transparent;

        color: var(--hover-color);

        border: 2px solid var(--hover-color);

        border-radius: 6px;

        font-size: 0.78rem;

        font-weight: 700;

        white-space: nowrap;
    }


    /* SECOND BUTTON */

    .home-content .btn-box a.btn:nth-child(2) {
        color: #ffffff;

        border-color: #ffffff;

        background: transparent;
    }


    .home-content .btn-box a.btn:nth-child(2):hover {
        background: #ffffff;

        color: var(--bg-color);
    }


    /* -----------------------------------------------------
       SOCIAL ICONS
    ----------------------------------------------------- */

    .home-content .social-icons {
        order: 6;

        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        margin: 25px auto 0;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    header {
        padding: 14px 5%;
    }

    .dg-badge {
        width: 43px;
        height: 35px;

        font-size: 15px;
    }

    .logo {
        font-size: 22px;
    }

    .menu-icon,
    #menu-icon {
        width: 42px;
        height: 42px;

        font-size: 1.2rem;
    }


    /* -----------------------------------------------------
       HOME
    ----------------------------------------------------- */

    .home {
        padding: 38px 5% 50px;
    }


    /* -----------------------------------------------------
       HEADING
    ----------------------------------------------------- */

    .home-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }


    /* -----------------------------------------------------
       ROLE
    ----------------------------------------------------- */

    .change-text {
        font-size: 1rem;
        gap: 5px;
        margin-bottom: 15px;
    }

    .change-text h3:nth-child(2) {
        width: 210px;
        min-width: 210px;

        height: 28px;
    }

    .change-text .word {
        height: 28px;
    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .home-content p {
        max-width: 94%;

        font-size: 0.82rem;

        line-height: 1.7;

        margin-bottom: 25px;
    }


    /* -----------------------------------------------------
       BUTTONS
    ----------------------------------------------------- */

    .home-content .btn-box {
        width: 100%;

        gap: 10px;
    }

    .home-content .btn,
    .home-content .btn-box a.btn {
        height: 48px;
        min-height: 48px;

        padding: 7px 6px;

        font-size: 0.72rem;
    }


   

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .home {
        padding-left: 4%;
        padding-right: 4%;
    }

    .home-content h1 {
        font-size: 1.55rem;
    }

    .change-text {
        font-size: 0.92rem;
    }

    .change-text h3:nth-child(2) {
        width: 190px;
        min-width: 190px;
    }

    .home-content p {
        font-size: 0.78rem;
    }

    .home-content .btn,
    .home-content .btn-box a.btn {
        font-size: 0.68rem;
    }

    .home-content .profile-image {
        width: 135px;
        height: 135px;
    }
}