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

* {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: rgb(51, 49, 49);
    color: white;
    overflow-x: hidden;
}

#content {
    display: none;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
}

/* Header Styles */
header {
    width: 97%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: linear-gradient(to right, rgba(255, 21, 138, 0.606), rgba(248, 122, 248, 0.638));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 245, 245, 0.502);
    border-radius: 40px;
    z-index: 1;
    margin: 10px;
    animation: nav-intro 1s ease forwards;
}

@keyframes nav-intro {
    0% {
        opacity: 0;
        transform: translateY(-100px)
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

nav {
    width: 96%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20% 50%;
    background: linear-gradient(to right, violet, indigo);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    padding: 0 20px;
    font-size: 14px;
    transition: 0.4s ease;
}

nav ul li a:hover {
    color: #ff99cc;
    border-bottom: 2px solid #f989c1;
}

nav button {
    padding: 15px;
    border-radius: 20px;
    background-color: #ff1ad5;
    border: none;
    cursor: pointer;
}

nav #menu {
    display: none;
}

nav #menu ul {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 5px;
}

nav #menu li {
    width: 25px;
    height: 4px;
    background-color: black;
    margin: 3px;
}

#close {
    display: none;
}

/* Home Section */
.home {
    width: 100%;
    min-height: 110vh;
    display: flex;
    align-items: center;
    background-color: rgb(51, 49, 49);
}

.homepage {
    width: 100%;
    min-height: 110vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: hidden;
    padding: 0 20px;
    gap: 20px;
}

.home .container {
    width: 20%;
    flex-grow: 1;
    flex-basis: 200px;
}

.home .box-cont {
    background-color: rgba(245, 245, 245, 0.073);
    border-radius: 20px;
    padding: 10px;
    animation: box-cont 1s linear forwards;
}

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

.home .box-cont .box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .box-cont .box .circle {
    width: 20px;
    height: 20px;
    background: linear-gradient(to left, pink, rgb(245, 60, 245));
    border-radius: 50%;
    margin: 5px;
}

.home .box-cont .box label {
    font-weight: bold;
}

.home .box-cont .img {
    width: 100%;
    height: 260px;
}

.home .box-cont .img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
}

.home .box-cont p {
    font-size: 13px;
}

.home .likes {
    margin: 10px;
    display: flex;
    align-items: center;
}

.home .box-cont .likes i {
    padding: 10px;
    font-size: 20px;
    border-radius: 50%;
    margin: 5px;
    color: white;
    background: linear-gradient(to left, pink, rgb(245, 60, 245));
}

.home .contact-cont {
    padding: 5px;
    animation: box-cont 1s linear forwards;
}

.home .contact-cont p {
    font-size: 13px;
}

.home .main-cont {
    width: 55%;
    height: 500px;
    border-radius: 20px;
    animation: main-intro 1s linear forwards;
    flex-basis: 200px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.home .main-cont img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes main-intro {
    0% {
        opacity: 0;
        scale: 0;
    }
    50% {
        scale: 1.05;
    }
    100% {
        opacity: 1;
    }
}

.home .main-cont .myname {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background-color: rgba(162, 162, 162, 0.476);
    backdrop-filter: blur(18px);
    padding: 18px;
    border: 1px solid rgba(245, 245, 245, 0.819);
    border-radius: 20px;
    box-shadow: 0 0px 10px #80808065;
    width: 70%;
}

.home .myname h1 {
    font-size: 2.5rem;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 10px 10px #80808065;
}

.home .myname p {
    color: #4a4a4a;
}

.home .myname a {
    padding: 10px;
    width: 50%;
    border: 1px solid #f5f5f57f;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    background: rgb(255, 58, 255);
    transition: 0.4s ease;
    text-align: center;
}

.home .myname a:hover {
    background-color: rgb(255, 26, 213)
}

.home .myname .btn {
    background-color: black;
    border: 1px solid rgba(23, 22, 22, 0.895);
    margin-left: 10px;
}

.home .myname .btn:hover {
    background-color: rgb(52, 52, 52);
}

.animated-text {
    background: linear-gradient(to right, fuchsia, hotpink, hotpink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    overflow: hidden;
    white-space: nowrap;
    font-weight: bold;
    border-right: 2px solid #333;
    animation: typing 4s steps(40) infinite, blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent
    }
    50% {
        border-color: #333;
    }
}

.home .right {
    background-color: #f5f5f513;
    padding: 10px;
    border-radius: 20px;
    animation: right-intro 1s linear forwards;
}

@keyframes right-intro {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.home .right p {
    font-size: 13px;
}

.home .right .socialmedia-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 30px;
    padding: 10px;
}

.home .right .socialmedia-icons i {
    padding: 10px;
    font-size: 20px;
    margin: 5px;
    color: white;
    border-radius: 50%;
    background: linear-gradient(to left, pink, rgb(245, 60, 245));
}

.home .right img {
    height: 240px;
    width: 100%;
    background: linear-gradient(30deg, rgb(255, 157, 255), rgb(245, 60, 245));
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.home .right button {
    padding: 8px 50px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    background: rgb(255, 58, 255);
    transition: 0.4s ease;
    width: 100%;
    color: white;
    cursor: pointer;
}

.home .right button:hover {
    background-color: rgb(255, 26, 213)
}

/* Service Section */
.service {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(51, 49, 49);
}

.service h1 {
    text-align: center;
    font-size: 3rem;
}

.service .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    counter-reset: card;
    padding: 40px;
}

.service .container .box-service {
    background-color: #5b5b5b43;
    margin: 20px;
    padding: 15px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.service .container .box-service.show {
    opacity: 1;
    transform: translateY(0);
}

.service .container .box-service::before {
    counter-increment: card;
    content: counter(card) ".";
    position: absolute;
    top: 15px;
    left: 15px;
    color: #00bbff;
    opacity: 0.2;
}

.service .container .box-service:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.493);
    transform: translateY(-20px);
}

.service .box-service img {
    width: 50%;
    height: 150px;
    border-radius: 10px;
}

.service .box-service label {
    font-weight: bold;
    font-size: 20px;
    text-align: left;
}

.service .box-service p {
    font-size: 13px;
    color: #d6d6d6;
}

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

.moreservice {
    width: 90%;
    background-color: #5b5b5b43;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px;
    opacity: 0;
    transform: translateY(30px);
    scale: 0.8;
    transition: all 0.6s ease;
}

.moreservice.show {
    opacity: 1;
    transform: translateY(0);
    scale: 1;
}

.moreservice label {
    font-weight: bold;
    font-size: 18px;
}

.moreservice p {
    width: 350px;
    font-size: 13px;
}

.moreservice .srv-list {
    display: flex;
    flex-wrap: wrap;
    margin: 7px 0;
}

.moreservice .srv-list ul {
    font-size: 13px;
    margin: 0 30px;
}

.moreservice button {
    padding: 8px 50px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    background: rgb(255, 26, 213);
    transition: 0.4s ease;
    cursor: pointer;
}

.moreservice button:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.588);
    transform: rotatez(5deg);
}

/* About Section */
.about {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    overflow: hidden;
}

.aboutme {
    opacity: 0;
    transform: translatex(-50px);
    transition: all 1s ease;
}

.aboutme.show {
    opacity: 1;
    transform: translatex(0);
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about .aboutme h1 {
    width: 400px;
    background: linear-gradient(to right, fuchsia, hotpink, hotpink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 3rem;
    line-height: 1;
}

.about .aboutme p {
    width: 600px;
    font-size: 14px;
    color: #d6d6d6;
}

.about .aboutme a {
    padding: 10px 80px;
    border-radius: 5px;
    background: linear-gradient(to left, #ff1ad5, orange);
}

.about .aboutme a:hover {
    animation: btn 4s linear infinite;
}

@keyframes btn {
    100% {
        filter: hue-rotate(360deg);
    }
}

.about .aboutme-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    margin: 20px;
    overflow: hidden;
    transition: all 1s ease;
}

.aboutme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.aboutme-image.show {
    opacity: 1;
    transform: translatex(0);
}

/* Projects Section */
.projects {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to top, #33313100, #333131, #333131, #333131, #333131, #333131, #33313100);
    position: relative;
}

.projects h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 30px;
}


.section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


/* Alternative Coming Soon Badge (if used as status-badge) */
.tag.status-badge, .coming-soon{
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Project Description Styles */
.project-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6c757d;
    margin: 0.5rem 0 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .project-title {
        font-size: 1.125rem;
    }
    
    .coming-soon {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Animation for Coming Soon Badge (optional) */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.coming-soon {
    animation: pulse 2s ease-in-out infinite;
}

.projects .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Box Styles */
.projects .container .box {
    background-color: #5b5b5b43;
    padding: 15px;
    border-radius: 20px;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.projects .container .box.show {
    opacity: 1;
    transform: translateY(0px);
}

.projects .container .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Feature 1: Shine Effect */
.projects .container .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.projects .container .box:hover::before {
    left: 100%;
}

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    aspect-ratio: 16/9;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.box:hover .image-container img {
    transform: scale(1.1);
}

/* Feature 8: Skeleton Loader */
.skeleton-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    z-index: 1;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Feature 3: Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.box:hover .image-overlay {
    opacity: 1;
}

.quick-view {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.box:hover .quick-view {
    transform: translateY(0);
}

.quick-view:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 58, 255, 0.4);
}

/* Feature 2: Project Tags */
.project-tags {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-end;
}

.tag {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* Project Label */
.projects .container .box .label {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 10px 0 5px;
    color: white;
    position: relative;
    z-index: 1;
}

/* Project Description */
.projects .container .box p {
    color: #d6d6d6;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Feature 4: Project Stats */
.project-stats {
    display: flex;
    gap: 20px;
    margin: 10px 0 15px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #f0f0f0;
}

.stat i {
    color: var(--accent);
    font-size: 0.9rem;
}

.stat span {
    font-weight: 500;
}

/* Feature 2: Project Links */
.project-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.box:hover .project-links {
    opacity: 1;
    transform: translateY(0);
}

.project-links a {
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    flex: 1;
    justify-content: center;
}

.project-links a i {
    font-size: 0.8rem;
}

.project-links a:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-color: transparent;
    transform: translateY(-2px);
}

/* Feature 7: Project Modal */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.project-modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: rgb(51, 49, 49);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow-y: auto;
    animation: modalPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 4px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.modal-body {
    color: white;
}

.modal-body img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, fuchsia, hotpink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-body .modal-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #d6d6d6;
    margin-bottom: 20px;
}

.modal-body .modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.modal-body .detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-body .detail-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body .detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.modal-body .modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.modal-body .modal-tag {
    padding: 5px 15px;
    background: rgba(255, 58, 255, 0.2);
    border: 1px solid rgba(255, 58, 255, 0.3);
    border-radius: 25px;
    font-size: 0.8rem;
    color: white;
}

.modal-body .modal-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.modal-body .modal-link {
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal-body .modal-link.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
}

.modal-body .modal-link.secondary {
    background: transparent;
    border: 1px solid var(--accent);
    color: white;
}

.modal-body .modal-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 58, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects .container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 10px;
    }
    
    .project-tags {
        top: 15px;
        right: 15px;
    }
    
    .tag {
        font-size: 8px;
        padding: 3px 8px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .modal-body h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-links {
        flex-direction: column;
    }
    
    .project-stats {
        gap: 10px;
    }
    
    .stat {
        font-size: 0.7rem;
    }
}
/* Contact Section */
.contact {
    width: 100%;
    min-height: 110vh;
}

.contact h1 {
    background: linear-gradient(to right, fuchsia, fuchsia, hotpink, hotpink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
    font-size: 8rem;
    line-height: 0.8;
    font-family: 'poppins';
}

h1 {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease;
}

h1.show {
    opacity: 1;
    transform: translateX(0);
}

.cont-prag {
    display: flex;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: translateX(50px);
    transition: 1s ease;
}

.cont-prag.show {
    opacity: 1;
    transform: translateX(0);
}

.cont-prag p {
    color: #d6d6d6;
    width: 850px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translatey(-50px);
    transition: 1s ease;
}

.contact-container.show {
    opacity: 1;
    transform: translatey(0px);
}

.contact-info {
    flex-grow: 1;
    flex-basis: 200px;
}

.contact-container .info {
    padding: 20px;
    background-color: #5b5b5b43;
    backdrop-filter: blur(2px);
    border-radius: 20px;
    text-align: center;
    margin: 20px;
}

.contact-container .socialmedias i {
    padding: 10px;
    font-size: 20px;
    margin: 5px;
    color: white;
    border-radius: 50%;
    background: linear-gradient(to right, rgb(255, 31, 255), pink);
}

.contact .info-p {
    width: 250px;
    font-size: 13px;
    margin-left: 20px;
}

.contact .info2 {
    display: flex;
    align-items: center;
    text-align: left;
}

.contact .info2 i {
    padding: 10px;
    font-size: 30px;
    margin: 5px;
    color: white;
    border-radius: 50%;
    margin: 5px;
    background: linear-gradient(to right, rgb(255, 31, 255), pink);
    border-radius: 10px;
}

.contact-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    margin: 20px;
}

.contact-image img {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: rgb(38, 36, 36);
    border-radius: 80px 0 0;
}

.footer-cont {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

footer .end {
    padding: 20px;
    margin: 0 80px;
}

footer .end p {
    width: 300px;
    font-size: 13px;
}

footer ul {
    list-style: none;
    font-size: 13px;
    padding: 5px 0;
}

footer ul li a:hover {
    color: rgb(255, 166, 181);
}

footer .end h2 {
    text-align: center;
}

footer .end i {
    padding: 10px;
    font-size: 20px;
    margin: 5px;
    color: white;
    border-radius: 50%;
    background: linear-gradient(to right, rgb(255, 7, 131), violet);
}

footer .copyright {
    padding: 30px;
    color: white;
    text-align: center;
    font-size: 14px;
}

.btn-nav{
    position: fixed;
    bottom: 20px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;  
}


/* Loading Styles */
.loading {
    width: 100%;
    min-height: 100vh;
    background-color: #4a1340;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.logo-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 20% 50%;
    font-size: 3rem;
    margin: 20px;
    background: linear-gradient(150deg, violet, indigo);
    animation: backg 20s linear infinite;
}

@keyframes backg {
    100% {
        filter: hue-rotate(360deg);
    }
}

.loading-container {
    width: 200px;
    height: 10px;
    border-radius: 10px;
    border: 1px solid gray;
    overflow: hidden;
    animation: containerintro 0.3s linear forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes containerintro {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.loading-container .line {
    width: 200px;
    height: 10px;
    border-radius: 7px;
    background-color: rgb(255, 91, 146);
    animation: loading 10s linear forwards;
}

@keyframes loading {
    0% {
        width: 0;
    }
    30% {
        width: 5%;
    }
    40% {
        width: 15%;
    }
    50% {
        width: 30%;
    }
    60% {
        width: 50%;
    }
    70% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* AI Assistant Styles */
:root {
    --bg: rgb(51, 49, 49);
    --panel: rgba(91, 91, 91, 0.26);
    --accent: rgb(255, 58, 255);
    --accent2: rgb(245, 60, 245);
    --text: #fff;
    --muted: #d6d6d6;
}

#backToTopBtn{
    position: fixed;
    bottom: 85px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}
/* Floating AI Button */
.ai-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 10px 30px rgba(92, 10, 92, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.ai-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(55, 0, 55, 0.6);
}

.ai-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
}

/* Chat Box */
.ai-chat {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 360px;
    max-height: 520px;
    background: var(--panel);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

.ai-chat.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Chat Header */
.ai-header {
    padding: 14px 16px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #000;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-header button {
    background-color: transparent;
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.ai-header button:hover {
    opacity: 0.7;
}

/* Messages Container */
.ai-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(51, 49, 49, 0.4);
}

.ai-messages::-webkit-scrollbar {
    width: 6px;
}

.ai-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Message Bubbles */
.msg {
    max-width: 80%;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #000;
    font-weight: 500;
}

.msg.ai {
    align-self: flex-start;
    background: rgba(91, 91, 91, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
}

/* Typing Indicator */
.typing {
    width: 50px;
    display: flex;
    justify-content: space-between;
    padding: 12px;
}

.typing span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

/* Input Area */
.ai-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(51, 49, 49, 0.6);
}

.ai-input input {
    flex: 1;
    background: rgba(91, 91, 91, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.ai-input input::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.ai-input input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.ai-input button {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.ai-input button:hover {
    opacity: 0.9;
}

.ai-input button:active {
    transform: scale(0.95);
}

/* Loading Section Styles */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.logo-intro {
    font-size: 80px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 58, 255, 0.5);
}


.line {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Chat Links */
.chat-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.chat-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.msg.ai .chat-link {
    color: #4CAF50;
}

.msg.ai .chat-link:hover {
    color: #388E3C;
}