@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #e3edf7;
    --gradient-white-bg: linear-gradient(0deg, #fff 0%, #edf4fa 51%, #e5eef7 100%);
    --gradient-color-bg: linear-gradient(180deg, rgba(247, 1, 120, 1)0%,
            rgba(160, 8, 156, 1)51%,
            rgba(99, 13, 178, 1)100%);
    --main-color: #e6006d;
    --font-color: #90979f;
    --hover-box-shadow: rgba(0, 0, 0, 0.19)0px 10px 20px,
        rgba(0, 0, 0, 0.23)0px 6px 6px;
    --gradient-white-bg2: linear-gradient(98deg, #e5eef7 0%, #fff 100%);
}

a {
    text-decoration: none;
    color: #000;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    overflow-x: hidden;
}

header {
    padding: 15px 8%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-white-bg);
    z-index: 100;
    transition: .3s;
}

header .logo {
    font-size: 1.7rem;
    font-weight: 700;
}

span {
    background: var(--gradient-color-bg);
    -webkit-background-clip: text;
    color: transparent;
}

ul.navlist {
    display: flex;
}

.navlist li {
    margin: 0 1rem;
}

.navlist li a {
    display: inline-flex;
    font-weight: 600;
}

.navlist li a:hover,
.navlist li a.active {
    background: var(--gradient-color-bg);
    -webkit-background-clip: text;
    color: transparent;
}

.right-header {
    display: flex;
    align-items: center;
    justify-content: end;
    grid-gap: .8rem;
}

.btn {
    background: var(--gradient-color-bg);
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: 500;
    transition: all .3s ease;
}

.btn:hover,
.btn-box .d-CV:hover {
    box-shadow: var(--hover-box-shadow);
}

.menu-icon {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    /* background: blue; */
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before {
    content: "";
    display: none;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: #000;
    margin: 6px 0;
    transition: .4s;
}

.menu-icon.active::before {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-icon.active::after {
    transform: rotate(45deg)translate(-8px, -8px);
}

.menu-icon.active .bar {
    opacity: 0;
}


/* About Us Extra */


/* BUTTONS */
.about-btn {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.about-btn button {
    padding: 12px 22px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    background: #ffffff;
    color: #ec4899;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
    transition: 0.3s;
}

.about-btn button.active,
.about-btn button:hover {
    background: #ec4899;
    color: #ffffff;
}

/* CONTENT */
.content-btn .content {
    display: none;
}

.content-btn .content.active {
    display: block;
    animation: fade 0.4s ease;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TEXT BOX */
.text-box1 {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.text-box1 p {
    font-size: 16px;
    color: #be185d;
    font-weight: 600;
}

.text-box1 span {
    font-size: 14px;
    color: #374151;
}

/* TIMELINE */
.timeline-box {
    position: relative;
    padding-left: 35px;
    max-width: 800px;
}

.timeline-box::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ec4899, #f9a8d4);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item .dot1 {
    position: absolute;
    left: -1px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: #ec4899;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fce7f3;
}

.timeline-item .dotcontinue {
    position: absolute;
    left: -1px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: #00fd37;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #44b105;
}



.timeline-content {
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
    transition: 0.3s;
}

.timeline-content:hover {
    transform: translateY(-4px);
}

.timeline-content h4 {
    margin-bottom: 6px;
    color: #be185d;
    font-size: 16px;
}

.timeline-content p {
    font-size: 14px;
    color: #374151;
}

.timeline-content small {
    color: #ec4899;
    font-weight: 600;
}






/* ==================== home section css code ============================ */
section {
    padding: 90px 8%;
}

.home {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 4em;
    background: var(--gradient-white-bg2);
}

.hero-info {
    margin-top: 3rem;
}

.hero-info h3 {
    color: var(--font-color);
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.hero-info h1 {
    font-size: 3.5rem;
}

.text-animate {
    width: 22.8rem;
    position: relative;
}

.text-animate h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 0.1vw #770753;
    background: var(--gradient-color-bg);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: 0 0;
    transition: .6s;
    letter-spacing: 2px;
    animation: moveText 3s linear infinite;
    animation-delay: 2s;
}

.text-animate h2::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -3px;
    width: 0;
    height: 70%;
    border-right: 2px solid var(--main-color);
    animation: moveCursorText 3s linear infinite;
    animation-delay: 2s;
}


.hero-info p {
    font-size: .9rem;
    color: var(--font-color);
    line-height: 1.5rem;
}

.btn-box {
    display: flex;
    justify-content: space-between;
    width: 320px;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.btn-box .btn {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.btn-box .d-CV {
    background: var(--gradient-white-bg2);
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    color: #000;
    box-shadow: rgba(60, 64, 67, 0.3)0px 1px 2px 0,
        rgba(60, 64, 67, 0.15)0px 2px 6px 2px;
    transition: all .3s ease;
}

.social-media {
    display: flex;
    justify-content: space-between;
    width: 220px;
    height: 45px;
}

.social-media a {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    color: var(--main-color);
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    border-radius: 50%;
    z-index: 1;
}


.social-media a:hover {
    background: var(--gradient-color-bg);
    color: #fff;
}

.bg-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 9px;
}

.bg-icon span {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animate 1s linear infinite;
}

.img-hero {
    position: relative;
    animation: floatImage 4s ease-in-out infinite;
    animation-delay: 3s;
}

.img-hero img {
    position: relative;
    width: 400px;
    border-radius: 2000px;
    height: 490px;
    z-index: 10;
}

.rotate-text {
    position: absolute;
    top: 4%;
    left: -53px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 2rem;
}

.rotate-text span {
    position: relative;
    width: 442px;
    height: 442px;
    background: red;
    border: 6px solid #eaeef0;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

.rotate-text span::before {
    content: "";
    position: absolute;
    inset: 20px;
    background: #00aaff;
    border-radius: 50%;
    z-index: 1;
}

.rotate-text span i {
    position: absolute;
    inset: 0;
    background: var(--gradient-color-bg);
    filter: blur(5px);
    animation: animate 2s linear infinite;
}


.rotate-text .text {
    position: absolute;
    width: 490px;
    height: 490px;
    background: #f2f6fb;
    border-radius: 50%;
    box-shadow: 0 1px 6px 5.94px rgba(0, 0, 0, 0.2);
    animation: rotateText 30s linear infinite;
}

.text b {
    position: absolute;
    transform-origin: 0 247px;
    display: block;
    top: 0;
    left: 50%;
    font-size: 1.2rem;
}

/* ==================== About section css code ============================ */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.about .about-img {
    position: relative;
}

.about .about-img .aboutHero {
    width: 40vw;
    height: auto;
}

.about-img .ring {
    position: absolute;
    top: 22%;
    right: 1%;
}

.about-img .circle {
    position: absolute;
    top: 0%;
    left: 0%;
}


.about-content {
    padding: 3rem 0;
}

.about-content h2 {
    color: var(--main-color);
}

.about-content h3 {
    font-size: 2.1rem;
    line-height: 3rem;
    margin: .5rem 0;
}

.about-content p {
    color: var(--font-color);
}

.text-box p {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-btn {
    margin: .8rem 0;
}

.about-btn button,
.cvContent a {
    background: var(--gradient-white-bg2);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    box-shadow: rgba(60, 64, 67, 0.3)0px 1px 2px 0,
        rgba(60, 64, 67, 0.15)0px 2px 6px 2px;
    margin-right: .5rem;
    cursor: pointer;
    transition: all .3s ease;
}


.about-btn button.active {
    background: var(--gradient-color-bg);
    color: #ffff;
}

.text-box {
    margin: .8rem 0;
}

.content-btn>.content:not(:first-child) {
    display: none;
}

.about-btn button:hover {
    box-shadow: var(--hover-box-shadow);
}

.cvContent {
    margin-top: 1.5rem;
}

/* ==================== Services section css code ============================ */
.services {
    position: relative;
}

.main-text {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.main-text .heading {
    color: var(--main-color);
}

.main-text span {
    color: var(--font-color);
    font-weight: 200;
    text-transform: uppercase;
}

.allServices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.servicesItem {
    box-shadow: rgba(0, 0, 0, 0.1)0px 1px 3px 0,
        rgba(0, 0, 0, 0.06)0px 1px 2px 0px;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: var(--gradient-white-bg2);
    text-align: center;
}

.icon-services {
    display: inline-flex;
    position: relative;
}

.icon-services i {
    box-shadow: rgba(0, 0, 0, 0.1)0px 1px 3px 0,
        rgba(0, 0, 0, 0.06)0px 1px 2px 0px;
    padding: .5rem;
    border-radius: 50%;
    background: var(--gradient-color-bg);
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    z-index: 1;
}

.servicesItem:hover i {
    outline: 1px solid var(--main-color);
    transform: scale(1.2);
}

.icon-services span {
    position: absolute;
    width: 80px;
    height: 80px;
    left: -5px;
    top: -5px;
    background: var(--gradient-color-bg);
    border-radius: 50%;
    animation: animate 1s linear infinite;
}

.servicesItem h3 {
    margin: 1rem 0 0.5rem;
}

.servicesItem p {
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: var(--font-color);
}

.readMore {
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0, 0, 0, 0.1)0px 1px 3px 0,
        rgba(0, 0, 0, 0.06)0px 1px 2px 0px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-right: .8rem;
    cursor: pointer;
}

.proposal {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0, 0, 0, 0.1)0px 1px 3px 0,
        rgba(0, 0, 0, 0.06)0px 1px 2px 0px;
    margin-top: 8rem;
    border-radius: 10px;
    padding: 0rem 2rem;
    z-index: 1;
}

.proposal img {
    width: 40vw;
    height: auto;
    margin: -4rem 0 0;
    z-index: 2;
}

.services .text-box span {
    font-size: 1.2rem;
    font-weight: 600;
}

.services .text-box h3 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-weight: 800;
}

.services .text-box .btn {
    padding: 10px 20px;
}


.services .showcase .ring {
    width: 100px;
    height: auto;
    position: absolute;
    top: 2%;
    left: -3%;
}

.services .showcase .circle {
    position: absolute;
    width: 70px;
    height: auto;
    top: 2%;
    right: 6%;
    filter: blur(3px);
}

.services .showcase .circle2 {
    position: absolute;
    width: 40px;
    height: auto;
    filter: blur(3px);
}

.services .showcase .circle3 {
    position: absolute;
    width: 70px;
    height: auto;
    filter: blur(3px);
    bottom: 36%;
    left: 22%;
}

.services .showcase .half-ring {
    position: absolute;
    width: 120px;
    height: auto;
    bottom: 4%;
    right: 6%;
}


/* ==================== Services section css code ============================ */
.fillter-buttons {
    text-align: center;
    padding: .5rem;
    margin-bottom: 2rem;
}

.fillter-buttons button {
    background: var(--gradient-white-bg2);
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    color: #000;
    box-shadow: rgba(60, 64, 67, 0.3)0px 1px 2px 0,
        rgba(60, 64, 67, 0.15)0px 2px 6px 2px;
    margin-right: .5rem;
    cursor: pointer;
    transition: all .3s ease;
}

.fillter-buttons button:hover,
button.mixitup-control-active {
    background: var(--gradient-color-bg);
    color: #fff;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 1rem;
}

.portfolio-img img {
    display: block;
    width: 100%;
    height: 160px;
    transition: .3s;
}

.portfolio-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: .5rem;
    box-shadow: rgba(0, 0, 0, 0.18)0px 2px 4px;
    background: var(--gradient-white-bg2);
    border-radius: 10px;
    transition: all .3s ease;
}

.portfolio-content {
    width: 100%;
    padding-left: .5rem;
    padding-bottom: .5rem;
}

.portfolio-img {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

.portfolio-content a.readMore {
    padding: 8px 12px;
    font-size: .8rem;
}

.portfolio-content p {
    font-size: .9rem;
    color: var(--font-color);
    margin: .5rem 0 1rem 0;
}


/* ==================== certificate section ============================ */


.certificate {
    padding: 80px 8%;
    color: #fff;
}

.main-text {
    text-align: center;
    margin-bottom: 50px;
}

.main-text span {
    color: #94a3b8;
    font-size: 1rem;
}

/* Carousel */
.carousel-container {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    display: flex;
    gap: 25px;
}

/* Certificate Card */
.certificate {
    padding: 90px 8%;
    color: #fff;
}

/* Section Title */
.main-text {
    text-align: center;
    margin-bottom: 60px;
}



.main-text span {
    color: #94a3b8;
    font-size: 1.05rem;
    display: block;
    margin-top: 8px;
}

/* Carousel */
.carousel-container {
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

/* Certificate Card */
.cert-card {
    position: relative;
    min-width: 270px;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(14px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition:
        transform 0.45s cubic-bezier(.4, 0, .2, 1),
        box-shadow 0.45s ease;
}

/* Glow Border Effect */
.cert-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Image */
.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Overlay */
.cert-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top,
            rgba(2, 6, 23, 0.95),
            rgba(2, 6, 23, 0.4),
            transparent);
    color: #e5e7eb;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.45s ease;
}

/* Hover Effects */
.cert-card:hover {
    transform: translateY(-14px) scale(1.05);
    box-shadow:
        0 25px 60px rgba(56, 189, 248, 0.45),
        0 0 40px rgba(129, 140, 248, 0.25);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card:hover img {
    transform: scale(1.08);
}

.cert-card:hover .cert-overlay {
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .certificate {
        padding: 70px 6%;
    }

    .cert-card {
        min-width: 230px;
        height: 330px;
    }

    .main-text .heading {
        font-size: 2.1rem;
    }
}



/* ==================== Blog section css code ============================ */

.blog-box {
    padding: .5rem !important;
}

.blog {
    position: relative;
}

.cards {
    padding: 1rem .1rem;
}

.card {
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0, 0, 0, 0.18)0px 2px 4px;
    padding: 1rem;
    border-radius: 10px;
}

.card-top {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
    display: block;
}

.card:hover img {
    transform: scale(1.1);
}

.card-info {
    padding-bottom: .5rem;
}

.card-info h2 {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.data {
    display: block;
    margin: .2rem 0;
}

.card .excerpt {
    color: var(--font-color);
    margin-bottom: 1.5rem;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 3rem;
}

.swiper-pagination-bullet {
    height: 10px !important;
    width: 30px !important;
    border-radius: 25px !important;
    background: var(--gradient-color-bg) !important;
}

.blog .showcase img {
    position: absolute;
    width: 90px;
    height: 90px;
}

.blog .showcase .circle {
    filter: blur(3px);
}

.blog .showcase .ring {
    top: 0;
    left: -1%;
}

.blog .showcase .half-ring {
    top: 10%;
    right: 10%;
}

.blog .showcase .second-circle {
    top: 30%;
    left: 2%;
    filter: blur(1px);
}


/* ==================== Contact section css code ============================ */

.contactSkills {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contact-info,
.skills {
    width: 100%;
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0, 0, 0, 0.18)0px 2px 4px;
    padding: 1rem;
    border-radius: 10px;
}


.contact-info input,
.contact-info form textarea {
    width: 100%;
}

.contact-info form input,
.contact-info form textarea {
    /* width: 100%; */
    padding: .8rem;
    border: 2px solid #e8e1e1;
    margin: .5rem 0;
    background: #e8f1f9;
    border-radius: 5px;
    outline: none;
    transition: .3s;
}

.contact-info form .input-box {
    display: flex;
    justify-content: space-between;
}

.input-box input {
    width: 49%;
}

form input:focus,
form textarea:focus {
    filter: brightness(100%);
    background: #d2e9ff;
    border: 2px solid #f8caca;
}

form textarea {
    resize: none;
}

form .btn {
    padding: 15px 20px;
    cursor: pointer;
    border: none;
}

/* ==================== Skills section css code ============================ */

.skillBox {
    padding: 0 1rem 1rem;
}

.skillBox .main-text {
    margin-bottom: 1rem;
}

.skill-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    justify-content: center;
    grid-gap: 2.5rem;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.outer-circle {
    width: 170px;
    height: 170px;
    position: relative;
    margin-bottom: 1rem;
    padding: 20px;
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25)0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3)0px 3px 7px -3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    box-shadow: rgba(204, 219, 232)3px 3px 6px 0px inset,
        rgba(255, 255, 255, 0.5)-3px -3px 6px 1px inset;
}

.outer-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.outer-circle svg circle {
    fill: none;
    stroke-width: 15px;
    stroke: url(#GradientColor);
    stroke-linecap: round;
    stroke-dasharray: 465;
    stroke-dashoffset: 464;
}

.outer-circle h2.counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: .9rem;
    font-weight: 400;
}

h2.counter span {
    font-size: 1.7rem;
}

.sk-title {
    font-size: 1rem;
    font-weight: 500;
}

/*======================= footer ============================ */
footer {
    text-align: center;
    margin: 0 8%;
    padding: 2rem 0;
    border-top: 2px solid #e8e1e1;
}


#progress {
    position: fixed;
    /* background: #194eb9; */
    z-index: 1000;
    bottom: 60px;
    right: 10px;
    width: 50px;
    height: 50px;
    display: none;
    place-items: center;
    border-radius: 50%;
    color: #1d002c;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25)0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3)0px 30px 60px -30px,
        rgba(10, 37, 64, 0.35)0px -2px 6px 0px inset;
}


#progress-value {
    display: grid;
    height: calc(100% - 12px);
    width: calc(100% - 12px);
    background: var(--gradient-color-bg);
    border-radius: 50%;
    color: #fff;
    place-items: center;
    font-size: 25px;
}



















/*======================= @keyframes ============================ */

@keyframes moveText {

    0%,
    10%,
    100% {
        background-position: -24rem 0;
    }

    65%,
    85% {
        background-position: 0rem 0;
    }
}

@keyframes moveCursorText {

    0%,
    10%,
    100% {
        width: 0;
    }

    65%,
    78%,
    85% {
        width: 100%;
        opacity: 1;
    }

    75%,
    85% {
        opacity: 0;
    }
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateText {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes progress {
    to {
        stroke-dashoffset: var(--target);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-22px);
    }

    100% {
        transform: translateY(0);
    }
}




/*======================= BrakPoints ============================ */

@media(max-width:1200px) {
    html {
        font-size: 95%;
    }
}

@media(max-width:991px) {

    header,
    section,
    footer {
        padding-left: 3%;
        padding-right: 3%;
    }

    .home,
    .portfolio-box {
        flex-direction: column-reverse;
    }

    .about,
    .contactSkills {
        flex-direction: column;
    }

    .about .about-img .aboutHero {
        width: 100%;
    }

    .proposal img {
        width: 52vw;
    }

    .portfolio-img img {
        width: 100%;
        height: 100%;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .img-hero {
        margin-top: 3rem;
    }
}

@media(max-width:768px) {
    .proposal {
        display: none;
    }

    .menu-icon .bar,
    .menu-icon::after,
    .menu-icon::before {
        display: block;
    }

    ul.navlist {
        position: absolute;
        top: -1000px;
        transition: all .3s ease;
        width: 100%;
        text-align: center;
        display: block;
        background: var(--gradient-white-bg);
        left: 0;
        border-top: 2px solid rgba(248, 202, 202, .7);
    }

    ul.navlist a {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .navlist.active {
        top: 100%;
    }

    .overlay {
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        position: fixed;
        background: rgba(0, 0, 0, 0.5);
        z-index: 8;
        opacity: 0;
        transform: .3s;
        pointer-events: none;
    }

    body.open .overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .btn {
        padding: 10px;
    }

    .home {
        grid-gap: 0;
    }

    .fillter-buttons button {
        padding: 10px;
        font-size: .8rem;
    }
}

@media(max-width:530px) {
    html {
        font-size: 80%;
    }

    section {
        padding: 50px 3%;
    }

    .contact-info form .input-box {
        display: block;
    }

    .input-box input {
        width: 100%;
    }

    .rotate-text {
        display: none;
    }

    .img-hero img {
        width: 100%;
    }

    .text-animate {
        width: 23.8rem;
    }

    .btn-box {
        width: 266px;
        margin-bottom: 3rem;
    }

    .about-btn button {
        padding: 10px 15px;
    }

    .fillter-buttons {
        display: grid;
        grid-gap: 1rem;
    }

    .fillter-buttons button {
        width: 100%;
        padding: 13px;
    }
}




.btn-wrapper {
    --width: 220px;
    --height: 60px;
    --padding: 8px;
    --border-radius: 24px;
    --dot-size: 8px;
    --btn-color: #e4e4e4;
    --hue: 325deg;
    --animation-duration: 1.2s;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--width);
    height: var(--height);
    border-radius: var(--border-radius);
    border: none;

    background-color: #00000008;

    box-shadow:
        1px 1px 2px 0 #fffd,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        2px 2px 8px #0001 inset;

    transition: box-shadow 50ms linear;

    perspective: 150px;
    perspective-origin: center;

    user-select: none;
    z-index: 1;
}

.btn1 {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.25em;
    text-align: left;
    padding: 0 var(--height) 0 calc(var(--padding) * 2);

    width: calc(100% - 2 * var(--padding));
    height: calc(100% - 2 * var(--padding));
    border-radius: calc(var(--border-radius) - var(--padding));
    border: none;
    cursor: pointer;

    background: linear-gradient(#fff2, #0001), var(--btn-color);

    box-shadow:
        1px 1px 2px -1px #fff inset,
        0 2px 1px #00000010,
        0 4px 2px #00000010,
        0 8px 4px #00000010,
        0 16px 8px #00000010,
        0 32px 16px #00000010;

    transition:
        transform 0.25s cubic-bezier(0.25, 1.5, 0.5, 2.2),
        box-shadow 0.25s cubic-bezier(0.25, 1.5, 0.5, 1),
        filter 0.3s cubic-bezier(0.25, 1.5, 0.5, 1);
    will-change: transform, filter;

    z-index: 2;
}

.btn-txt {
    display: inline-block;

    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", "Manrope", sans-serif;

    color: #5550;
    background-image: linear-gradient(#000a, #555);
    background-clip: text;
    filter: drop-shadow(0 1px 0px #fff) drop-shadow(0 -1px 0px #0005);
}

.disclaimer-txt {
    position: absolute;
    left: var(--border-radius);
    bottom: -24px;
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: 12px;
    color: #0009;
}

.dot {
    position: absolute;
    top: calc(50% - var(--dot-size) / 2);
    right: calc(var(--height) / 2 - var(--padding) / 2);
    width: var(--dot-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: hsla(var(--hue), 0%, 50%, 0.1);

    border: 1px solid hsla(var(--hue), 0%, 60%, 0.6);
    box-sizing: border-box;

    box-shadow:
        1px 1px 2px -1px #fffe inset,
        0 2px 1px #00000010,
        0 4px 2px #00000010,
        0 8px 4px #00000010;

    pointer-events: none;
    z-index: 3;
}

.dot ::before {
    content: "";
    position: absolute;
    top: calc(var(--padding) / -2);
    left: calc(var(--padding) / -2);
    width: calc(100% + var(--padding));
    height: calc(100% + var(--padding));
    border-radius: inherit;
    background-color: #0006;
    mask-image: radial-gradient(circle at 50% 60%, transparent 50%, black);
}

.dot ::after {
    content: "";
    position: absolute;
    top: calc(var(--padding) / -2);
    left: calc(var(--padding) / -2);
    width: calc(100% + var(--padding));
    height: calc(100% + var(--padding));
    border-radius: inherit;
    background-color: #0000;

    box-shadow:
        0 0 10px 2px hsla(var(--hue), 80%, 50%, 0.3),
        0 0 20px 10px hsla(var(--hue), 80%, 50%, 0.5),
        0 0 50px 20px hsla(var(--hue), 80%, 50%, 0.5),
        0 0 16px 1px hsla(var(--hue), 100%, 60%, 0.9) inset;

    opacity: 0;
}

.pulse {
    transition: transform 200ms ease-in;

    &.dot {
        animation: bg-anim var(--animation-duration) ease-in-out infinite;
    }

    &::after {
        animation: opacity-anim var(--animation-duration) ease-in-out infinite;
    }
}

@keyframes bg-anim {

    0%,
    100% {
        background-color: hsla(var(--hue), 50%, 50%, 0);
    }

    50% {
        background-color: hsla(var(--hue), 100%, 50%, 1);
    }
}

@keyframes opacity-anim {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.btn1:hover,
.btn1:focus-visible {
    filter: drop-shadow(var(--padding) 0 var(--padding) hsla(var(--hue), 70%, 60%, 0.6));
    transform: translate3d(0, -2px, 2px);

    .btn-txt {
        background-color: hsla(var(--hue), 50%, 50%, 1);
        background-image: none;
    }

    .pulse {

        &.dot {
            animation: none;
            background-color: hsla(var(--hue), 100%, 50%, 1);
        }

        &::after {
            animation: none;
            opacity: 1;
        }
    }
}

.btn1:focus-visible {
    outline: 2px dashed hsla(var(--hue), 70%, 40%, 1);
    outline-offset: var(--padding);
}

.btn1:active {
    filter: drop-shadow(var(--padding) 0 var(--padding) hsla(var(--hue), 100%, 50%, 1));
    transform: translate3d(0, 0, -4px);

    .btn-txt {
        background-color: hsla(var(--hue), 50%, 50%, 1);
    }

    ~.dot {
        animation-play-state: paused;
        background-color: hsla(var(--hue), 100%, 50%, 1);
    }


}

/* Wrapper */
.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    flex-wrap: wrap;
}

/* Card */
.stat-box {
    background: #ffffff;
    width: 220px;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.15);
    animation: fadeUp 1s ease forwards;
}

/* Number */
.stat-num {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: scaleIn 1.6s ease-out forwards;
}

/* Plus */
.stat-plus {
    font-size: 42px;
    font-weight: 700;
    color: #22c55e;
    margin-left: 4px;
}

/* Label */
.stat-box p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #475569;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stat-box {
        width: 100%;
        max-width: 300px;
    }
}

/* Section */
.portfolio-section {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Portfolio Card */
.portfolio-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    transition: transform 0.3s ease;
}

.portfolio-box:hover {
    transform: translateY(-6px);
}

/* Content */
.portfolio-content {
    flex: 1;
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.portfolio-content h3:hover {
    color: #7c3aed;
}

.portfolio-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 18px;
}

/* Buttons */
.readMore {
    display: inline-block;
    margin-right: 12px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.readMore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.35);
}

/* Image */
.portfolio-img {
    flex: 0.9;
}

.portfolio-img img {
    width: 100%;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 45px rgba(124, 58, 237, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .portfolio-box {
        flex-direction: column;
    }
}

.fade {
    animation: fadeText 0.6s ease-in-out;
}

@keyframes fadeText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}