* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html {
    overflow-x: hidden;
}

body {
    background-color: white;
    overflow-x: hidden;
    min-height: 100%;
    margin: 0;
    padding-top: 80px;
}

img {
    -webkit-user-drag: none;
}

header {
    width: 100%;
}

/* Nav-Bar */
.nav-bar {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #272626;
    border-radius: 10px;

    transition: top .3s ease;
}

.nav-bar.hide {
    transform: translateY(-100%);
}

/* logo */
.logo img {
    max-height: 3.125rem;
    display: block;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}

.logo img:hover {
    transform: scale(1.05);
}

/* nav-bar links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

/* Links styling */
.nav-links a {
    position: relative;
    color: rgb(12, 207, 158);
    text-decoration: none;
    font-size: 1.125rem;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #0ccf9e;
    transition: all .3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation Bar Hover Effect */
.nav-links a:hover {
    color: rgb(236, 73, 73);
}


/* about section */
.about-section {
    display: flex;
    justify-content: center;
    margin: 90px;
    gap: 50px;
}

.image {
    overflow: hidden;
    border-radius: 3px;
}

.image img {
    -webkit-user-drag: none;
    cursor: pointer;
    width: 100%;
    margin: 20px;
    border-radius: 3px;
    filter: grayscale(3);
    transition: .5s ease;
}

.image img:hover {
    transform: scale(1.10);
    filter: grayscale(0);
}

.text h1 {
    font-size: 60px;
    color: black;
    font-family: 'Montserrat', sans-serif;
    text-decoration: underline wavy;
    text-decoration-color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 10px;
    transition: text-decoration .4s ease-in-out;
}

.text h1:hover {
    /* text-decoration: underline wavy; */
    text-decoration-color: #0ccf9e;
}

.text p {
    font-size: 18px;
    color: #333;
    font-weight: 500px;
    font-family: "Roboto", sans-serif;
    padding-bottom: 20px;
    line-height: 1.5;
}

.hire-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    border: 2px solid #000000;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 550;
    transition: all .3s ease;
    margin-top: 200px;
}

.hire-btn:hover {
    background-color: #ffffff;
    color: #000000;
}


/* page section */
.page-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F3;
    padding: 50px 50px 70px 50px;
    gap: 50px;
    margin-top: 20px;
}

.main-heading h1 {
    position: relative;
    text-align: left;
    align-items: center;
    padding-top: 25px;
    font-size: 42px;
    font-family: "Poppins", sans-serif;
    line-height: 1.1;
}

.main-heading h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 4px;
    width: 100%;
    background-color: #0ccf9e;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .3s ease-in-out;
}

.main-heading h1:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.text1 {
    height: 126px;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text1 h1 {
    text-align: center;
    color: #111111;
    line-height: 1.2;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
}

.text1 p {
    text-align: center;
    color: #666666;
    font-size: 14px;
    line-height: 1.3;
    font-family: "Roboto", sans-serif;
    padding: 25px;
}

/* profiles section */
.other-profiles {
    margin: 100px 50px 100px 50px;
}

.other-profiles h1 {
    position: relative;
    color: #111111;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    width: 271px;
}

.other-profiles h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 5px;
    width: 100%;
    background-color: #0ccf9e;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.other-profiles h1:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* .other-profiles h1:hover{
    text-decoration: underline wavy #0ccf9e;
} */

.profiles {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.profiles img {
    -webkit-user-drag: none;
    display: inline;
    height: 60px;
    filter: grayscale(2);
    transition: all .3s ease-in-out;
}

.profiles img:hover {
    transform: translateY(-15px) scale(1.05);
    filter: grayscale(0);
}

.profiles .linkedin-logo {
    height: 90px;
}

.profiles .behance-logo {
    height: 60px;
}

.profiles .dribble-logo {
    height: 70px;
}

/* Footer */
footer {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
}


footer {
    background-color: #222020;
    padding-top: 50px;
}

.footer-container {
    width: 100%;
    max-width: 75rem;
    margin: auto;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 33.3%;
}

#email {
    color: #fff;
    cursor: pointer;
}

.footer-content p {
    width: 190px;
    margin: auto;
    padding: 7px;
    padding-left: 29px;
}

.links1 {
    margin-right: 29px;
}

.footer-content h3 {
    font-size: 1.25rem;
    color: #0ccf9e;
    margin-bottom: 15px;
    text-align: center;
}

.footer-content ul {
    text-align: center;
    list-style: none;
}

.list {
    padding: 0;
}

.list li {
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
}

.list li::before {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #0ccf9e;
    transition: .5s;
}

.list li:hover::before {
    width: 70px;
}

.social-icons {
    text-align: center;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    text-align: center;
    padding: 5px;
}

.social-icons i {
    color: white;
    font-size: 25px;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #0ccf9e;
}

.social-icons i:hover {
    color: #0ccf9e;
}

.bottom-bar {
    background-color: #0ccf9e;
    padding: 10px 0;
    text-align: center;
    margin-top: 50px;
}

.bottom-bar p {
    color: #343434;
    margin: 0;
    font-size: 16px;

    padding: 7px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

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

    body {
        padding-top: 0;
    }


    /* ================= NAVBAR ================= */

    .nav-bar {
        top: 6px;
        left: 6px;
        right: 6px;

        width: calc(100% - 12px);
        height: 65px;

        padding: 8px 16px;
        margin: 0;

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

        background: rgba(39, 38, 38, 0.94);
        border-radius: 10px;

        z-index: 99999;

        transition:
            transform 0.45s cubic-bezier(.4, 0, .2, 1),
            background 0.3s ease;
    }

    /* Navbar hide on scroll */

    .nav-bar.hide {
        transform: translateY(-110%);
    }

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

    .logo {
        display: flex;
        align-items: center;
        height: 100%;
        z-index: 100001;
    }

    .logo img {
        width: auto;
        height: 48px;
        max-height: 48px;

        display: block;

        object-fit: contain;

        transition: transform 0.3s ease;
    }

    .logo img:hover {
        transform: scale(1.03);
    }


    /* ================= HAMBURGER ================= */

    .menu-toggle {
        width: 42px;
        height: 42px;

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

        gap: 6px;

        cursor: pointer;

        z-index: 100001;

        background: transparent;
        border: none;
    }

    .menu-toggle span {
        display: block;

        width: 29px;
        height: 3px;

        border-radius: 10px;

        background: #0ccf9e;

        transition:
            transform 0.35s ease,
            opacity 0.25s ease,
            width 0.35s ease;
    }


    /* Hamburger -> X */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


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

    .nav-links {
        position: fixed;

        top: 76px;
        left: 6px;
        right: 6px;

        width: calc(100% - 12px);

        min-height: 0;
        height: auto;

        margin: 0;
        padding: 30px 20px;

        display: flex;
        flex-direction: column;

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

        gap: 0;

        list-style: none;

        background: rgba(40, 40, 40, 0.52);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border: 1px solid rgba(255, 255, 255, 0.15);

        border-radius: 14px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px) scale(0.98);

        pointer-events: none;

        overflow: hidden;

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.4s cubic-bezier(.2, .8, .2, 1);
    }


    /* Open menu */

    .nav-links.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0) scale(1);

        pointer-events: auto;
    }


    /*GLASS SHINE*/

    .nav-links::before {
        content: "";

        position: absolute;

        top: -95%;
        left: -80%;

        width: 45%;
        height: 220%;

        background: linear-gradient(110deg,
                transparent,
                rgba(255, 255, 255, 0.04),
                rgba(255, 255, 255, 0.25),
                rgba(255, 255, 255, 0.06),
                transparent);

        transform: rotate(20deg) translateX(-100%);

        pointer-events: none;

        opacity: 0;
    }


    /* Shine ONLY when dropdown is open */

    .nav-links.active::before {
        opacity: 1;

        animation: glassShine 2.8s ease-in-out infinite;
    }


    /* Glass Shine Animation */

    @keyframes glassShine {

        0% {
            transform: rotate(20deg) translateX(-180%);
        }

        55% {
            transform: rotate(20deg) translateX(380%);
        }

        100% {
            transform: rotate(20deg) translateX(380%);
        }

    }


    /* ================= NAV ITEMS ================= */

    .nav-links li {
        width: auto;

        margin: 0;
        padding: 0;

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

        position: relative;
        z-index: 2;
    }

    .nav-links li+li {
        margin-top: 22px;
    }


    /* ================= NAV LINKS ================= */

    .nav-links a {
        position: relative;

        display: inline-block;

        padding: 4px 0;

        color: #0ccf9e;

        font-family: "Roboto", sans-serif;

        font-size: 17px;

        font-weight: 700;

        text-decoration: none;

        transition: color 0.25s ease;
    }


    /* Green underline exactly under text */

    .nav-links a::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: 0;

        width: 0%;
        height: 2px;

        background: #0ccf9e;

        transition: width 0.3s ease;
    }


    /* Hover */

    .nav-links a:hover {
        color: #ec4949;
    }

    .nav-links a:hover::after {
        width: 100%;
    }


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

    .about-section {
        width: 100%;

        margin: 90px 0 40px 0;
        padding: 0 25px;

        display: flex;
        flex-direction: column;

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

        gap: 25px;
    }

    .image {
        width: 100%;
        max-width: 420px;

        margin: 0;

        overflow: hidden;
        border-radius: 5px;
    }

    .image img {
        width: 100%;
        height: auto;

        margin: 0;

        display: block;

        border-radius: 5px;
    }

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

        text-align: center;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text {
        width: 100%;
    }

    .text h1 {
        font-size: 42px;

        text-align: center;

        padding-bottom: 12px;
    }

    .text p {
        width: 100%;

        font-size: 16px;

        line-height: 1.6;

        text-align: center;

        padding: 0 5px 18px;
    }

    .hire-btn {
        margin-top: 10px;

        padding: 11px 27px;

        font-size: 15px;
    }


    /* ================= CREATIVE APPROACH ================= */

    .page-section {
        width: 100%;

        padding: 45px 25px 55px;

        margin-top: 20px;

        display: flex;
        flex-direction: column;

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

        gap: 28px;

        text-align: center;
    }

    .main-heading {
        width: 100%;

        display: flex;
        justify-content: center;
    }

    .main-heading h1 {
        width: 100%;

        padding-top: 0;

        font-size: 34px;

        text-align: center;

        line-height: 1.2;
    }

    .main-heading h1::after {
        left: 15%;
        width: 70%;
    }

    .text1 {
        width: 100%;
        height: auto;

        max-width: 500px;

        text-align: center;
    }

    .text1 h1 {
        font-size: 23px;
    }

    .text1 p {
        font-size: 14px;

        line-height: 1.5;

        padding: 10px 5px 0;
    }


    /* ================= PROFILES ================= */

    .other-profiles {
        width: 100%;

        margin: 60px 0;

        padding: 0 25px;

        text-align: center;
    }

    .other-profiles h1 {
        width: 100%;

        font-size: 34px;

        text-align: center;
    }

    .other-profiles h1::after {
        left: 20%;
        width: 60%;
    }

    .profiles {
        display: inline-flex;

        padding: 35px 10px 10px;

        margin: 0 8px;

        vertical-align: middle;
    }

    .profiles img {
        max-width: 90px;

        height: 50px;
    }

    .profiles .linkedin-logo {
        height: 65px;
    }

    .profiles .behance-logo {
        height: 50px;
    }

    .profiles .dribble-logo {
        height: 55px;
    }


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

    footer {
        width: 100%;

        padding-top: 40px;

        overflow: hidden;
    }

    .footer-container {
        width: 100%;

        padding: 0 20px;

        display: flex;
        flex-direction: column;

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

        gap: 35px;
    }

    .footer-content {
        width: 100%;

        text-align: center;
    }

    .footer-content h3 {
        font-size: 19px;

        margin-bottom: 12px;
    }

    .footer-content p {
        width: auto;

        margin: 0;

        padding: 5px 0;

        text-align: center;

        font-size: 14px;
    }

    #email {
        text-decoration: none;
    }

    .links1 {
        margin: 0;
        padding: 0;
    }

    .footer-content ul {
        margin: 0;
        padding: 0;
    }

    .links1 li {
        margin: 0;
        padding: 0;
        line-height: 1.4;
    }

    .links1 li+li {
        margin-top: 0;
    }

    .links1 a {
        display: inline-block;

        padding: 2px 0;

        font-size: 14px;
    }


    /* ================= SOCIAL ICONS ================= */

    .social-icons {
        display: flex;

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

        gap: 8px;

        margin: 0;
        padding: 0;
    }

    .social-icons li {
        display: flex;

        padding: 0;
        margin: 0;
    }

    .social-icons i {
        font-size: 22px;

        transition: none;
    }

    .social-icons i:hover {
        color: white;

        transform: none;

        transition: none;
    }


    /* ================= BOTTOM BAR ================= */

    .bottom-bar {
        width: 100%;

        margin-top: 35px;

        padding: 9px 10px;
    }

    .bottom-bar p {
        font-size: 13px;

        padding: 5px;

        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .nav-bar {
        height: 65px;

        padding: 7px 14px;
    }

    .logo img {
        height: 46px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 27px;
        height: 3px;
    }

    .nav-links {
        top: 76px;

        padding: 28px 15px;
    }

    .nav-links li+li {
        margin-top: 20px;
    }

    .nav-links a {
        font-size: 16px;
    }


    .about-section {
        margin-top: 85px;

        padding: 0 18px;

        gap: 22px;
    }

    .text h1 {
        font-size: 36px;
    }

    .text p {
        font-size: 15px;

        line-height: 1.55;
    }


    .page-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .main-heading h1 {
        font-size: 29px;
    }

    .text1 h1 {
        font-size: 21px;
    }


    .other-profiles {
        padding: 0 18px;
    }

    .other-profiles h1 {
        font-size: 30px;
    }

    .profiles {
        margin: 0 4px;
    }

    .profiles img {
        max-width: 75px;
    }

    .profiles .linkedin-logo {
        height: 58px;
    }

    .profiles .behance-logo {
        height: 45px;
    }

    .profiles .dribble-logo {
        height: 50px;
    }


    .footer-container {
        padding: 0 15px;

        gap: 30px;
    }

    .social-icons {
        gap: 6px;
    }

    .social-icons i {
        font-size: 20px;
    }
}