/*======================================
    //--//-->   ABOUT
    ======================================*/
html {

    scroll-behavior: smooth;
}

body {

    overflow-x: hidden;
}

.about-mf .box-shadow-full {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.about-mf .about-img {
    margin-bottom: 2rem;
}

.about-mf .about-img img {
    margin-left: 10px;
}


.skill-mf .progress {
    /* background-color: #cde1f8; */
    margin: .5rem 0 1.2rem 0;
    border-radius: 0;
    height: .7rem;
}

.skill-mf .progress .progress-bar {
    height: .7rem;
    background-color: #ffbd39;
}

/* Animation styles */
#typing-animation {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(20, end) infinite;
}

#typing-animation:before {
    content: "";
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #ccc;
    animation: typing-cursor 0.5s ease-in-out infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes typing-cursor {
    from {
        width: 5px;
    }

    to {
        width: 0;
    }
}


/* project image zoom effect */

.zoom-effect {
    overflow: hidden;
    transition: transform 0.3s ease-out;
}

.zoom-effect:hover {
    transform: scale(1.1);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo {
    width: 95px;
    height: auto;
    object-fit: contain;
}

/* =========================
     MODERN HAMBURGER NAVBAR
    ========================= */

.custom-navbar {
    position: fixed;

    top: px;
    left: 20px;
    right: 20px;

    height: 100px;

    padding: 0 42px;

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

    z-index: 9999;

    border-radius: 34px;

    transition: all 0.4s ease;

    background: rgba(10, 10, 10, 0.18);

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

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

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 210px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.menu-btn {
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10001;
}

.menu-btn:hover {
    transform: scale(1.08);
}

/* FULLSCREEN MENU */

.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10000;
    transition: 0.5s ease;

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

    padding: 60px 80px;
    overflow: hidden;
}

/* OPEN MENU */

.fullscreen-menu.active {
    right: 0;
}

/* LEFT SIDE */

.menu-left {
    width: 42%;
    color: white;
    padding-left: 0px;
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.menu-profile {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
}

.menu-logo {

    width: 200px;

    height: auto;

    object-fit: contain;

    margin-bottom: 24px;

    margin-left: -6px;

    display: block;
}

.menu-content a:hover {
    color: white;
    transform: translateX(-8px);
}

.menu-left h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 45px;
    max-width: 520px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.menu-info p {
    font-size: 18px;
    color: #9c9c9c;
    letter-spacing: 0.3px;
    width: 100%;
}

.menu-info {
    width: 100%;
}

/* RIGHT SIDE */

.menu-content a {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    color: #a8a8a8;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.menu-content {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 22px;
    padding-right: 60px;
}

.menu-content a:hover {
    color: white;
    transform: translateX(-10px);
}

/* CLOSE BUTTON */

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 55px;
    cursor: pointer;
}

/* MOBILE */

@media(max-width:768px) {

    .custom-navbar {
        width: 94%;
        padding: 16px 20px;
        top: 12px;
    }

    .logo-img {
        width: 158px;
    }

    .logo-text {
        font-size: 16px;
    }

    .menu-btn {
        font-size: 34px;
    }

}


.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* MOBILE */



.menu-info {
    margin-top: 20px;
}

.menu-info p {
    font-size: 15px;
    color: #8d8d8d;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.menu-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 35px;
}



.menu-content a:hover {
    color: white;
    transform: translateX(-12px);
}


.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    justify-content: flex-start;
}

.social-icons a {
    width: 42px;
    height: 42px;

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

    border-radius: 50%;

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

    color: white;

    font-size: 22px;

    text-decoration: none;

    transition: all 0.35s ease;

    background: rgba(255, 255, 255, 0.02);

    backdrop-filter: blur(10px);
}

.social-icons a:hover {

    transform: translateY(-6px);

    background: white;

    color: black;

    border-color: white;

    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.home-slider .slider-item .one-third {
    background-position: center;
    transform: scale(1.00);
    pointer-events: none;
}

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

.modern-about-section {

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

    padding: 120px 8%;

    background: black;
}

.about-heading {

    color: white;

    font-size: 72px;

    font-weight: 700;

    margin-bottom: 80px;

    font-family: 'Poppins', sans-serif;

    position: relative;

    display: inline-block;
}

.about-heading::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 90px;
    height: 4px;

    background: #ffbd39;

    border-radius: 20px;
}

/* MAIN FLEX */

.about-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 90px;
}

/* IMAGE SIDE */

.about-image-box {

    width: 42%;

    display: flex;

    justify-content: center;
}

.about-image {

    width: 380px;
    height: 380px;

    object-fit: cover;

    border-radius: 50%;

    filter: grayscale(100%) brightness(0.9);

    transition:
        filter 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.6s ease;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);

    cursor: pointer;
}

/* HOVER EFFECT */

.about-image:hover {

    filter: grayscale(0%) brightness(1);

    transform: scale(1.04);

    box-shadow:
        0 0 45px rgba(255, 189, 57, 0.18),
        0 20px 80px rgba(0, 0, 0, 0.55);
}

/* RIGHT TEXT */

.about-content {

    width: 50%;
}

.about-content h2 {

    color: #ffbd39;

    font-size: 28px;

    font-weight: 600;

    margin-bottom: 28px;

    font-family: 'Poppins', sans-serif;
}

.about-content p {

    color: #bdbdbd;

    font-size: 20px;

    line-height: 1.9;

    font-family: 'Poppins', sans-serif;
}

/* MOBILE */

@media(max-width:768px) {

    .modern-about-section {

        padding: 100px 7%;
    }

    .about-heading {

        font-size: 48px;

        margin-bottom: 50px;
    }

    .about-container {

        flex-direction: column;

        gap: 50px;

        text-align: center;
    }

    .about-image-box,
    .about-content {

        width: 100%;
    }

    .about-image {

        width: 260px;
        height: 260px;
    }

    .about-content p {

        font-size: 17px;
    }

}




/* IMAGE SLIDER */
/* =========================
      EXPERIENCE SECTION
========================= */

.experience-section {

    width: 100%;

    padding: 120px 0;

    background: black;

    overflow: hidden;
}

/* TITLE */

.experience-title {

    color: white;

    font-size: 64px;

    font-weight: 700;

    margin-bottom: 70px;

    padding-left: 8%;

    font-family: 'Poppins', sans-serif;

    position: relative;
}

.experience-title::after {

    content: "";

    position: absolute;

    left: 8%;
    bottom: -14px;

    width: 100px;
    height: 4px;

    background: #ffbd39;

    border-radius: 20px;
}

/* SLIDER */

.logo-slider {

    width: 100%;

    overflow: hidden;

    position: relative;
}

/* TRACK */

.logo-track {

    display: flex;

    align-items: center;

    gap: 35px;

    width: max-content;

    animation: scrollLogos 22s linear infinite;
}

/* CARD */

.logo-card {

    min-width: 320px;

    height: 200px;

    padding: 25px;

    border-radius: 28px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

/* LOGO IMAGE */

.logo-card img {

    width: 80%;

    height: 80%;

    object-fit: contain;
}

/* HOVER */

.logo-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 15px 45px rgba(255, 189, 57, 0.15);
}

/* AUTO SCROLL */

@keyframes scrollLogos {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* MOBILE FIX */

@media(max-width:768px) {

    .experience-section {

        padding: 100px 0;
    }

    .experience-title {

        font-size: 46px;

        margin-bottom: 50px;

        padding-left: 7%;
    }

    .logo-track {

        gap: 20px;
    }

    .logo-card {

        min-width: 220px;

        height: 140px;

        border-radius: 22px;

        padding: 18px;
    }

    .logo-card img {

        width: 85%;

        height: 85%;
    }

}


/* =========================
      ACHIEVEMENTS SECTION
========================= */

.achievements-section {

    width: 100%;

    padding: 120px 8%;

    background: black;
}

/* TITLE */

.achievements-title {

    color: white;

    font-size: 64px;

    font-weight: 700;

    margin-bottom: 70px;

    position: relative;

    display: inline-block;

    font-family: 'Poppins', sans-serif;
}

.achievements-title::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -14px;

    width: 100px;
    height: 4px;

    background: #ffbd39;

    border-radius: 20px;
}

/* GRID */

.achievements-container {

    display: grid;

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

    gap: 35px;
}

/* CARD */

.achievement-card {

    position: relative;

    padding: 45px;

    border-radius: 32px;

    background: rgba(255, 255, 255, 0.05);

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

    backdrop-filter: blur(16px);

    overflow: hidden;

    transition:
        transform 0.5s ease,
        background 0.5s ease,
        box-shadow 0.5s ease;
}

/* HOVER */

.achievement-card:hover {

    transform: translateY(-12px);

    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 15px 50px rgba(255, 189, 57, 0.12);
}

/* NUMBER */

.achievement-number {

    font-size: 72px;

    font-weight: 700;

    color: rgba(255, 189, 57, 0.15);

    margin-bottom: 20px;

    font-family: 'Poppins', sans-serif;
}

/* HEADING */

.achievement-card h3 {

    color: white;

    font-size: 30px;

    margin-bottom: 20px;

    font-weight: 600;

    font-family: 'Poppins', sans-serif;
}

/* TEXT */

.achievement-card p {

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.9;

    font-family: 'Poppins', sans-serif;
}

/* MOBILE */

@media(max-width:768px) {

    .achievements-section {

        padding: 100px 7%;
    }

    .achievements-title {

        font-size: 46px;

        margin-bottom: 50px;
    }

    .achievements-container {

        grid-template-columns: 1fr;
    }

    .achievement-card {

        padding: 35px;
    }

    .achievement-number {

        font-size: 52px;
    }

    .achievement-card h3 {

        font-size: 24px;
    }

    .achievement-card p {

        font-size: 16px;
    }

}


/* HOVER EFFECT */

.achievement-card:hover .achievement-slider img {

    transform: scale(1.02);
}

/* =========================
      ACHIEVEMENT SLIDER
========================= */

.achievement-slider {

    width: 100%;

    height: 340px;

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    margin-bottom: 35px;
}

/* ALL IMAGES */

.achievement-slider img {

    position: absolute;

    width: 100%;
    height: 100%;

    left: 0;
    top: 0;

    object-fit: cover;

    opacity: 0;

    animation: fadeSlider 8s infinite;

    transition: transform 0.5s ease;
}

/* HOVER EFFECT */

.achievement-card:hover .achievement-slider img {

    transform: scale(1.03);
}

/* IMAGE TIMINGS */

.achievement-slider img:nth-child(1) {
    animation-delay: 0s;
}

.achievement-slider img:nth-child(2) {
    animation-delay: 1s;
}

.achievement-slider img:nth-child(3) {
    animation-delay: 2s;
}

.achievement-slider img:nth-child(4) {
    animation-delay: 3s;
}

.achievement-slider img:nth-child(5) {
    animation-delay: 4s;
}

.achievement-slider img:nth-child(6) {
    animation-delay: 5s;
}

.achievement-slider img:nth-child(7) {
    animation-delay: 6s;
}

.achievement-slider img:nth-child(8) {
    animation-delay: 7s;
}

/* FADE ANIMATION */

@keyframes fadeSlider {

    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .achievement-slider {

        height: 240px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .achievement-slider {

        height: 240px;
    }

    .slides img {

        height: 240px;
    }

}

/* =========================
   HERO KNOW MORE BUTTON
========================= */

.hero-scroll-wrapper {

    margin-top: 28px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

/* BUTTON */

.know-more-btn {

    width: 190px;

    height: 58px;

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

    border-radius: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 16px;

    letter-spacing: 2px;

    font-weight: 600;

    text-decoration: none;

    font-family: 'Poppins', sans-serif;

    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    background: rgba(255, 255, 255, 0.02);

    backdrop-filter: blur(10px);
}

.know-more-btn:hover {

    transform: translateY(-6px);

    border-color: #ffbd39;

    color: #ffbd39;

    box-shadow: 0 10px 35px rgba(255, 189, 57, 0.18);
}

/* MOUSE ICON */

.scroll-mouse {

    width: 24px;

    height: 38px;

    border: 2px solid rgba(255, 255, 255, 0.55);

    border-radius: 25px;

    margin-top: 28px;

    position: relative;
}

/* SCROLL DOT */

.scroll-mouse::before {

    content: "";

    position: absolute;

    top: 10px;

    left: 50%;

    width: 4px;

    height: 8px;

    background: white;

    border-radius: 20px;

    transform: translateX(-50%);

    animation: scrollAnim 1.6s infinite;
}

/* ANIMATION */

@keyframes scrollAnim {

    0% {
        opacity: 0;
        top: 10px;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 28px;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .hero-scroll-wrapper {

        margin-top: 28px;
    }

    .know-more-btn {

        width: 220px;

        height: 68px;

        font-size: 18px;

        letter-spacing: 2px;
    }

    .scroll-mouse {

        width: 28px;

        height: 46px;

        margin-top: 40px;
    }
}

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

@media(max-width:768px) {

    .fullscreen-menu {

        flex-direction: column;

        justify-content: flex-start;

        align-items: flex-start;

        padding: 35px 28px;

        overflow-y: auto;
    }

    .menu-left {

        width: 100%;

        margin-top: 20px;
    }

    .menu-profile {

        width: 90px;

        height: 90px;

        margin-bottom: 20px;
    }

    .menu-left h2 {

        font-size: 26px;

        line-height: 1.15;

        margin-bottom: 25px;

        max-width: 100%;
    }

    .menu-info p {

        font-size: 15px;

        line-height: 1.7;
    }

    .menu-content {

        width: 100%;

        align-items: flex-start;

        margin-top: 35px;

        gap: 14px;

        padding-right: 0;
    }

    .menu-content a {

        font-size: 24px;

        line-height: 1.1;
    }

    .close-btn {

        top: 18px;

        right: 22px;

        font-size: 34px;
    }

    .social-icons {

        margin-top: 22px;

        gap: 10px;
    }
}

/* =========================
   PROJECTS SECTION
========================= */

.projects-section {
    width: 100%;
    padding: 120px 7%;
    background: #000;
    color: white;
}

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

.projects-heading {
    text-align: center;
    margin-bottom: 70px;
}

.projects-tag {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.projects-heading h2 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.projects-heading h2 span {
    color: #fbbf24;
}

.projects-text {
    max-width: 700px;
    margin: auto;
    color: #9ca3af;
    line-height: 1.8;
    font-size: 17px;
}

.projects-line {
    width: 120px;
    height: 5px;
    background: #fbbf24;
    margin: 35px auto 0;
    border-radius: 20px;
}

/* =========================
   PROJECTS GRID
========================= */

.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: stretch;
}

/* =========================
   PROJECT CARD
========================= */

.project-card {

    background: #070707;

    border-radius: 30px;

    overflow: hidden;

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

    transition: 0.45s ease;

    display: flex;

    flex-direction: column;

    height: 100%;
}

.project-card:hover {

    transform: translateY(-10px);

    border-color: rgba(255, 189, 57, 0.25);

    box-shadow:
        0 20px 50px rgba(255, 189, 57, 0.08);
}

/* IMAGE */

.project-image {

    width: 100%;

    height: 240px;

    overflow: hidden;

    padding: 18px;
}

.project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 22px;

    transition: 0.5s ease;
}

.project-card:hover img {

    transform: scale(1.05);
}

/* CONTENT */

.project-content {

    padding: 10px 24px 28px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;
}

/* SMALL TAG */

.project-tag {

    color: #ffbd39;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-weight: 600;

    margin-bottom: 14px;
}

/* TITLE */

.project-content h3 {

    font-size: 24px;

    font-weight: 700;

    line-height: 1.35;

    color: white;

    margin-bottom: 18px;
}

/* DESCRIPTION */

.project-content p {

    color: #9ca3af;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 28px;
}

/* BUTTONS */

.project-buttons {

    display: flex;

    gap: 14px;

    margin-top: auto;
}

/* VISIT BUTTON */

.visit-btn {

    padding: 13px 24px;

    background: #ffbd39;

    color: black;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.visit-btn:hover {

    transform: translateY(-3px);

    background: white;
}

/* SOURCE CODE BUTTON */

.code-btn {

    padding: 13px 24px;

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

    color: white;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.code-btn:hover {

    border-color: #ffbd39;

    color: #ffbd39;

    transform: translateY(-3px);
}


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

.modern-footer {

    width: 100%;

    padding: 22px 5%;

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

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: black;
}

/* LEFT */

.footer-left {

    color: rgba(255, 255, 255, 0.38);

    font-size: 13px;

    font-weight: 400;

    letter-spacing: 0.3px;

    font-family: 'Poppins', sans-serif;
}

/* RIGHT */

.footer-right {

    display: flex;

    align-items: center;

    gap: 18px;
}

.footer-right a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

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

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(255, 255, 255, 0.55);

    text-decoration: none;

    font-size: 16px;

    transition: 0.35s ease;

    background: rgba(255, 255, 255, 0.015);
}

.footer-right a:hover {

    transform: translateY(-3px);

    color: #ffbd39;

    border-color: rgba(255, 189, 57, 0.25);

    background: rgba(255, 189, 57, 0.05);
}

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

@media(max-width:768px) {

    .modern-footer {

        flex-direction: column;

        gap: 25px;

        text-align: center;
    }

    .footer-left {

        line-height: 1.8;
    }

}

.skills-section {
    width: 85%;
    margin: auto;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.skills-card {
    width: 100%;
    max-width: 580px;
    height: 560px;

    padding: 28px;

    border-radius: 32px;

    background:
        linear-gradient(135deg,
            #17152b,
            #080814);

    border: 1px solid rgba(255, 255, 255, .08);



    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    gap: 30px;

    min-height: 650px;
}

.skills-grid {
    display: grid;

    grid-template-columns: repeat(5, 80px);

    gap: 22px;
    width: fit-content;
    margin: 0 auto;
    justify-items: center;
    margin-bottom: 40px;
}

.skill {
    width: 72px;
    height: 72px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .04);

    border:
        1px solid rgba(255, 255, 255, .08);

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

    font-size: 2rem;

    transition: .4s ease;
}

.skill:hover {
    transform: translateY(-6px) scale(1.08);

    box-shadow:
        0 0 15px rgba(0, 229, 255, .25),
        0 0 35px rgba(139, 92, 246, .15);
}

.skills-card h3 {
    position: absolute;
    bottom: 40px;
    left: 30px;

    color: white;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -2px;
    max-width: 380px;
}


.skills-info {
    flex: 1;
}

.skills-text {
    color: #8d8d8d;
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    gap: 60px;
}

.stat h2 {
    color: white;
    font-size: 4rem;
    margin-bottom: 10px;
}

.stat span {
    color: #888;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 25px;
}

.stat-card {
    height: 220px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    padding: 35px;

    backdrop-filter: blur(10px);

    transition: .4s ease;

    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top left,
            rgba(0, 255, 255, .12),
            transparent 55%);

    opacity: 0;

    transition: .4s;
    background:
        radial-gradient(circle,
            rgba(0, 255, 255, .15),
            transparent 70%);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, .3);

    box-shadow:
        0 0 30px rgba(0, 255, 255, .12);
}

.stat-card h2 {
    font-size: 4rem;
    font-weight: 700;

    color: #00F5FF;

    margin-bottom: 12px;

    text-shadow:
        0 0 20px rgba(0, 255, 255, .4);
}

.stat-card p {
    color: #9f9f9f;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}



.skills-card::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background:
        radial-gradient(circle,
            rgba(128, 0, 255, .18),
            transparent 70%);

    top: -150px;
    left: -100px;

    animation: glowMove 8s ease infinite;
    background:
        radial-gradient(circle,
            rgba(140, 0, 255, .25),
            transparent 70%);
}

@keyframes glowMove {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.skill {
    animation: float 4s ease-in-out infinite;
}

.skill:nth-child(2) {
    animation-delay: .3s;
}

.skill:nth-child(3) {
    animation-delay: .6s;
}

.skill:nth-child(4) {
    animation-delay: .9s;
}

.skill:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 25px;
    text-align: center;
    padding-top: 20px;
}

.card-content h3 {
    color: white;

    font-size: 3.2rem;

    line-height: 0.95;

    margin-bottom: 18px;
    background: linear-gradient(90deg,
            #ffffff,
            #00e5ff,
            #8b5cf6);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 3rem;
    font-weight: 700;
}

.card-content p {
    color: #8d8d8d;

    font-size: .95rem;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-top: 15px;
    color: #8a8a8a;
    font-size: 1rem;
    letter-spacing: 1px;
}


.card-content h3 {
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 18px;
    max-width: 400px;
}

.card-content p {
    font-size: .95rem;
    color: #8d8d8d;
    letter-spacing: 1px;
}

.skill:hover {
    transform:
        translateY(-8px) scale(1.08);

    border-color: #00e5ff;

    box-shadow:
        0 0 20px rgba(0, 229, 255, .3),
        0 0 40px rgba(0, 229, 255, .15);
}

.skill {
    animation: float 4s ease-in-out infinite;
}

.skill:nth-child(odd) {
    animation-delay: .8s;
}

.skill:nth-child(3n) {
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}


.skills-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(6, 6, 18, .7) 75%,
            rgba(6, 6, 18, .95) 100%);

    pointer-events: none;
}

.card-content {
    z-index: 10;

}

.skills-grid {
    z-index: 5;
    position: relative;
}

.card-divider {
    width: 100%;
    height: 1px;

    background:
        rgba(255, 255, 255, .08);
}

.skills-layout {
    display: grid;

    grid-template-columns: 460px 1fr;

    gap: 40px;

    align-items: start;
}

.stat-card {
    backdrop-filter: blur(20px);

    transition: .4s ease;
}

.stat-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 0 40px rgba(0, 255, 255, .15);
}

.skill {
    width: 72px;
    height: 72px;
}

.skill img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.skill:hover {
    transform: translateY(-6px) scale(1.08);

    box-shadow:
        0 0 15px rgba(0, 229, 255, .25),
        0 0 35px rgba(139, 92, 246, .15);
}

.skill:nth-child(1) {
    box-shadow: 0 0 25px rgba(97, 218, 251, .25);
}

.skill:nth-child(6) {
    box-shadow: 0 0 25px rgba(255, 153, 0, .25);
}

.skill:nth-child(10) {
    box-shadow: 0 0 25px rgba(0, 255, 127, .25);
}

.skills-card {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.skill {
    color: white;
}

.skill img {
    width: 38px;
    height: 38px;
    transition: 0.4s ease;
    object-fit: contain;
}

.skill img.github,
.skill img.vercel {
    filter: invert(1);
}

.skill:hover img {
    transform: scale(1.15) rotate(5deg);
}

.skill:hover {
    border-color: #00e5ff;
    box-shadow:
        0 0 20px rgba(0, 229, 255, .25);
}

.white-icon {
    filter: brightness(0) invert(1);
}

.logo-slider-wrapper {
    position: relative;
    overflow: hidden;
}

/* Left fade */
.logo-slider-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 10;
    pointer-events: none;

    background: linear-gradient(to right,
            #000 0%,
            rgba(0, 0, 0, 0) 100%);
}

/* Right fade */
.logo-slider-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 10;
    pointer-events: none;

    background: linear-gradient(to left,
            #000 0%,
            rgba(0, 0, 0, 0) 100%);
}

.logo-slider-wrapper::before {
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, .95) 20%,
            rgba(0, 0, 0, .7) 50%,
            rgba(0, 0, 0, 0) 100%);
}

.logo-slider-wrapper::after {
    background: linear-gradient(-90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, .95) 20%,
            rgba(0, 0, 0, .7) 50%,
            rgba(0, 0, 0, 0) 100%);
}

.logo-slider-wrapper {
    overflow: hidden;

    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);

    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

/* CONTACT PAGE */

.contact-section {
    min-height: 100vh;
    background: #000;
    padding: 180px 7%;
}

.contact-title {
    text-align: center;
    color: #fff;
    font-size: 64px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;

}

.contact-container {
    max-width: 1400px;
    margin: auto;
    width: 90%;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.contact-info,
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    backdrop-filter: blur(10px);
    padding: 40px;
}

/* Hide scrollbar completely */
textarea::-webkit-scrollbar {
    display: none;
}

.contact-info {
    padding: 40px;
}

.info-block {
    margin-bottom: 35px;
    overflow: hidden;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-size: 18px;
    white-space: nowrap;
}

.info-block a,
.info-block p {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
}

.contact-form {
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-group {
    width: 100%;
    margin-bottom: 35px;
}

.input-group label {
    color: white;
    display: block;
    margin-bottom: 10px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    height: 60px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    color: white;
    padding: 0 20px;
    font-size: 1rem;
}

.input-group textarea {
    width: 100%;
    height: 220px;

    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;

    color: white;
    padding: 20px;

    font-size: 18px;

    resize: none;
    overflow: hidden;
}

.send-btn {
    background: white;
    color: black;
    border: none;
    padding: 16px 35px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.send-btn:hover {
    transform: translateY(-3px);
}

html,
body {
    overflow-x: hidden;
}

/* MOBILE */

@media(max-width: 900px) {

    .contact-title {
        font-size: 3rem;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

}

input::placeholder,
textarea::placeholder {
    color: #6b7280;
    font-size: 18px;
}

.contact-subtitle {
    display: block;
    width: 100%;
    text-align: center !important;
    margin: 30px auto !important;
    width: 100%;
    font-size: 20px;
    color: #b3b3b3;
    line-height: 1.7;

}

.contact-info,
.contact-form {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 28px;
    backdrop-filter: blur(12px);
}

.button-wrapper {
    display: flex;
    justify-content: center;
    /* center button */
    margin-top: 30px;
}

.send-btn {
    background: #ffffff;
    color: #000000;

    width: 200px;
    height: 56px;

    border: none;
    border-radius: 18px;

    font-size: 17px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    cursor: pointer;

    transition: all .3s ease;
    white-space: nowrap;
    box-shadow:
        0 10px 30px rgba(255, 255, 255, .08);
}

.send-btn:hover {
    transform: translateY(-2px);
    background: #f5f5f5;

}

.send-btn i {
    font-size: 18px;
}


html,
body {
    overflow-x: hidden;
}

.info-block h3 i {
    color: #ffffff;
    margin-right: 12px;
    font-size: 20px;
}

.info-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    white-space: nowrap;
}

.phone-icon {
    color: #22c55e;
    /* Green */
    font-size: 28px;
    margin-right: 12px;
}

.contact-heading {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 18px;
}

/* FORCE FIX */

.contact-form input {
    width: 100%;
    height: 70px;

    background: #111;
    color: white;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;

    padding: 0 25px;

    font-size: 20px;
}

.contact-form textarea {
    width: 100%;

    min-height: 280px;
    /* height */
    height: 280px;

    background: #111;
    color: white;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;

    padding: 25px;

    resize: none;
    overflow: hidden;

    font-size: 20px;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
}

.input-group {
    width: 100%;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.contact-link span {
    flex-shrink: 0;
}

.bottom-text {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-subtitle {
    text-align: center;
    max-width: 900px;
}

.contact-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 35px;

    max-width: 1400px;
    margin: auto;
}

/* LEFT BOX */
.contact-info {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 32px;

    padding: 40px;

    height: fit-content;
}

/* RIGHT BOX */
.contact-form {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 32px;

    padding: 40px;
}

.message-box {
    background: #111;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 25px;

    margin-top: 20px;
}

input,
textarea {
    background: #111;

    border: 1px solid rgba(255, 255, 255, .12);

    color: white;
}

.contact-info:hover,
.contact-form:hover {
    border-color: rgba(255, 255, 255, .25);

    transform: translateY(-3px);

    transition: .3s ease;
}

.required {
    color: #ef4444;
}

.send-btn {
    width: 220px !important;
    height: 55px !important;
    font-size: 18px !important;
}

.button-wrapper {
    width: auto !important;
    display: inline-block !important;
}

textarea {
    width: 100% !important;
    min-width: 100% !important;
    height: 280px !important;
}

.input-group {
    width: 100% !important;
}

.contact-form {
    width: 100% !important;
}

.message-group {
    width: 100%;
    margin-top: 20px;
}

.message-group textarea {
    width: 100%;
    height: 300px;
}

.contact-info,
.contact-form {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 50px rgba(0, 0, 0, 0.6);

    transition: all .3s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 255, 255, 0.15);
}

.contact-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2px;

    margin-bottom: 10px;
}

.send-btn {
    width: 240px;
    height: 60px;

    border-radius: 18px;

    font-size: 18px;
    font-weight: 600;

    background: white;
    color: black;

    transition: .3s ease;
}

.send-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(255, 255, 255, .15);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: rgba(255, 255, 255, .35);

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, .05);
}

/* ==========================
   PROJECTS MOBILE FIX
========================== */

@media (max-width:768px) {

    .projects-container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .project-card {
        width: 100% !important;
    }

    .project-image {
        height: 220px !important;
    }

    .project-content h3 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .project-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    .project-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .visit-btn,
    .code-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width:992px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
}

/* FORCE MOBILE STACK */

@media only screen and (max-width: 768px) {

    .skills-section,
    .skills-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 30px !important;
    }

    .skills-card,
    .skills-info {
        width: 100% !important;
        max-width: 100% !important;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .stat-card {
        width: 100% !important;
        min-width: unset !important;
    }

    .skills-text {
        text-align: center;
    }
}



.show-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    background: #ffbd39;
    color: black;
    font-weight: 600;
    cursor: pointer;
}

.achievement-modal {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .9);

    backdrop-filter: blur(10px);

    z-index: 99999;

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

    padding: 40px;
}

.modal-content {
    width: 90%;
    max-width: 1300px;

    height: 85vh;
    overflow-y: auto;

    background: #0a0a0a;

    border-radius: 30px;

    padding: 40px;

    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;

    font-size: 40px;
    color: white;
    cursor: pointer;
}

.modal-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

@media(max-width:768px) {
    .modal-achievements {
        grid-template-columns: 1fr;
    }
}

.modal-achievements .achievement-card {
    width: 100%;
    margin: 0;
}

.modal-achievements .achievement-slider {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.modal-achievements .achievement-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}