*{
    margin: 0;
    padding:0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #080808;
    color:#fff;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #8fd4ff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: rgba(143, 212, 255, 0.1);
    border-color: #ed098e;
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(237, 9, 142, 0.3);
}

/* Animated Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        45deg,
        #080808 0%,
        #0a1628 25%,
        #080808 50%,
        #1a0a14 75%,
        #080808 100%
    );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========== AMBIENT BACKGROUND ANIMATION ========== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    animation: floatOrb linear infinite;
}

.floating-orb.orb-cyan {
    background: radial-gradient(circle, #8fd4ff 0%, transparent 70%);
}

.floating-orb.orb-pink {
    background: radial-gradient(circle, #ed098e 0%, transparent 70%);
}

.floating-orb.orb-purple {
    background: radial-gradient(circle, #9b59b6 0%, transparent 70%);
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -150px) scale(1.1);
    }
    50% {
        transform: translate(-50px, -300px) scale(0.9);
    }
    75% {
        transform: translate(150px, -450px) scale(1.05);
    }
    100% {
        transform: translate(0, -600px) scale(1);
    }
}

/* Geometric Shapes */
.geo-shape {
    position: absolute;
    opacity: 0.08;
    animation: floatShape ease-in-out infinite;
}

.geo-shape.shape-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #8fd4ff;
}

.geo-shape.shape-square {
    width: 40px;
    height: 40px;
    border: 2px solid #ed098e;
    background: transparent;
}

.geo-shape.shape-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #8fd4ff;
    border-radius: 50%;
    background: transparent;
}

.geo-shape.shape-hexagon {
    width: 40px;
    height: 23px;
    background: transparent;
    border-left: 2px solid #ed098e;
    border-right: 2px solid #ed098e;
    position: relative;
}

.geo-shape.shape-hexagon::before,
.geo-shape.shape-hexagon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-top: 2px solid #ed098e;
    border-right: 2px solid #ed098e;
    background: transparent;
}

.geo-shape.shape-hexagon::before {
    top: -15px;
    left: 4px;
    transform: rotate(-45deg);
}

.geo-shape.shape-hexagon::after {
    bottom: -15px;
    left: 4px;
    transform: rotate(135deg);
}

.geo-shape.shape-diamond {
    width: 35px;
    height: 35px;
    border: 2px solid #8fd4ff;
    transform: rotate(45deg);
    background: transparent;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.12;
    }
}

/* Glowing Stars */
.glow-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle ease-in-out infinite;
}

.glow-star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(143, 212, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Connecting Lines (Network Effect) */
.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 212, 255, 0.2), transparent);
    transform-origin: left center;
    animation: pulseLine 4s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Floating Rings */
.floating-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.1;
    animation: expandRing 8s ease-out infinite;
}

@keyframes expandRing {
    0% {
        transform: scale(0.5);
        opacity: 0.15;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* 3D Tilt Card Styles */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card .tilt-inner {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

.tilt-card .tilt-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.tilt-card:hover .tilt-shine {
    opacity: 1;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top-color: #8fd4ff;
    border-right-color: #ed098e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(143, 212, 255, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(143, 212, 255, 0.6);
}

.scroll-top i {
    color: #fff;
    font-size: 20px;
}

#header{
    width:100%;
    height:100vh;
    background-image:url(images/background.png);
    background-size:cover;
    background-position: center;
    position: relative;
}

#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.7) 100%);
    pointer-events: none;
}

.container{
    padding: 10px 10%;
    position: relative;
    z-index: 1;
}

/* Sticky Navigation */
nav{
    display: flex;
    align-items:  center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0;
    transition: all 0.4s ease;
}

nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 10%;
    z-index: 100;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo{
    width: 140px;
    transition: transform 0.3s ease;
}

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

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #ffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after{
     content: '';
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #8fd4ff, #ed098e);
     position: absolute;
     left: 0 ;
     bottom: -6px;
     transition: 0.5s;
     border-radius: 2px;
}

nav ul li a:hover{
    color: #8fd4ff;
}

nav ul li a:hover::after{
    width: 100%;
}

.header-text{
    margin-top: 20%;
    font-size: 30px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-text h1{
    font-size: 60px;
    margin-top: 20px;
    line-height: 1.2;
}

.header-text h1 span{
    background: linear-gradient(135deg, #8fd4ff 0%, #ed098e 50%, #8fd4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Typing animation for subtitle */
.typing-text {
    font-size: 24px;
    color: #ababab;
    margin-top: 15px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #8fd4ff;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
    max-width: fit-content;
}

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

@keyframes blink {
    50% { border-color: transparent; }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 30px;
    color: #8fd4ff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover i {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------- ABOUT ----------------------------------- */

#about{
    padding: 80px 0;
    color: rgb(193, 255, 255);
}

.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis: 35%;
}

.about-col-1 img{
    width:100%;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 10px 40px rgba(143, 212, 255, 0.2);
}

.about-col-1 img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(143, 212, 255, 0.3);
}

.about-col-2{
    flex-basis: 60%;
}

.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: white;
    position: relative;
    display: inline-block;
}

.sub-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8fd4ff, #ed098e);
    border-radius: 2px;
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}

.tab-links{
    margin-top: 10px;
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-links:hover {
    color: #8fd4ff;
}

.tab-links::after{
    content:'';
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8fd4ff, #ed098e);
    position: absolute;
    left:0;
    bottom: -8px;
    transition: 0.5s;
    border-radius: 2px;
}

.tab-links.active-link::after{
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
    padding: 15px;
    background: rgba(38, 38, 38, 0.5);
    border-radius: 10px;
    border-left: 3px solid #8fd4ff;
    transition: all 0.3s ease;
}

.tab-contents ul li:hover {
    background: rgba(143, 212, 255, 0.1);
    transform: translateX(10px);
}

.tab-contents ul li span{
    color:#8fd4ff;
    font-weight: 600;
}

.tab-contents{
    display: none;
}

.tab-contents.active-tab{
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

#services{
    padding: 30px 0;
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.services-list div{
    background: rgba(38, 38, 38, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(143, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.services-list div::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.services-list div:hover::before {
    left: 100%;
}

.services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.services-list div:hover i {
    transform: scale(1.2) rotate(5deg);
}

.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

.services-list div a:hover {
    color: #8fd4ff;
}

.services-list div:hover{
    background: linear-gradient(135deg, rgba(237, 9, 142, 0.9), rgba(143, 212, 255, 0.3));
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(237, 9, 142, 0.3);
    border-color: transparent;
}


/* ------=-=-=-=-=-=-=-=-= PORTFOLIO-=-=-=-=-=-=-= ----- */

#portfolio{
    padding: 50px 0;
}

.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.work{
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.work:hover {
    box-shadow: 0 20px 50px rgba(143, 212, 255, 0.3);
}

.work img{
    width: 100%;
    border-radius: 20px;
    display:block;
    transition: transform 0.7s ease;
}

/* Sample Website Badge */
.sample-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    color: #080808;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(143, 212, 255, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.work.sample-site {
    border: 2px solid rgba(143, 212, 255, 0.3);
}

.work.sample-site:hover {
    border-color: rgba(143, 212, 255, 0.6);
    box-shadow: 0 20px 50px rgba(143, 212, 255, 0.4);
}

.layer{
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.6) 0%, rgba(8, 8, 8, 0.95) 100%);
    border-radius: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align:center;
    transition: height 0.5s ease;
    backdrop-filter: blur(5px);
}

.layer h3{
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.layer p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.work:hover .layer h3,
.work:hover .layer p {
    transform: translateY(0);
    opacity: 1;
}

.layer a{
    margin-top: 20px;
    color: #080808;
    text-decoration: none;
    font-size: 18px;
    line-height: 55px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.4s ease;
    transform: translateY(20px) scale(0);
    opacity: 0;
    box-shadow: 0 5px 20px rgba(143, 212, 255, 0.4);
}

.work:hover .layer a {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.layer a:hover {
    background: linear-gradient(135deg, #ed098e, #8fd4ff);
    transform: scale(1.15) !important;
    box-shadow: 0 8px 30px rgba(237, 9, 142, 0.5);
}

.work:hover img{
    transform: scale(1.15);
}

.work:hover .layer{
    height: 100%;
}

.btn{
    display:block;
    margin: 50px auto;
    width: fit-content;
    border: 2px solid transparent;
    background: linear-gradient(#080808, #080808) padding-box,
                linear-gradient(135deg, #8fd4ff, #ed098e) border-box;
    padding: 14px 50px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(143, 212, 255, 0.4);
}


/* -------- Contact ---------- */

#contact {
    padding: 50px 0;
}

.contact-left{
    flex-basis: 35%;
}

.contact-right{
    flex-basis: 60%;
}

.contact-left p{
    margin-top: 30px;
}

.contact-left p i{
    color: #8fd4ff;
    margin-right: 15px;
    font-size: 25px;
}

.social-icons{
    margin-top: 30px;
}

.social-icons a{
    text-decoration: none;
    font-size: 35px;
    margin-right: 20px;
    color: #ababab;
    display: inline-block;
    transition: all 0.4s ease;
}

.social-icons a:hover{
    color: #8fd4ff;
    transform: translateY(-8px) scale(1.1);
    text-shadow: 0 10px 20px rgba(143, 212, 255, 0.5);
}

.btn.btn2{
    display:inline-block;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    border: none;
    font-weight: 600;
    color: #080808;
}

.btn.btn2:hover {
    background: linear-gradient(135deg, #ed098e, #8fd4ff);
    color: #fff;
}

.btn.btn2::before {
    display: none;
}

.contact-right form{
    width: 100%;
}

form input, form textarea{
    width: 100%;
    border: 2px solid transparent;
    outline: none;
    background: rgba(38, 38, 38, 0.8);
    padding: 18px 20px;
    margin: 12px 0;
    color: #fff;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

form input:focus, form textarea:focus {
    border-color: #8fd4ff;
    background: rgba(143, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(143, 212, 255, 0.2);
}

form input::placeholder, form textarea::placeholder {
    color: #888;
}

form .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    width: auto;
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 30px;
    background: linear-gradient(180deg, transparent, rgba(38, 38, 38, 0.8));
    font-weight: 300;
    margin-top: 40px;
}

.copyright p {
    margin: 5px 0;
}

.copyright i{
    color: #8fd4ff;
    padding-top: 10px;
    font-size: 20px;
}

/* Particle effect container */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(143, 212, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* small screens only */

nav .fa-sharp{
    display: none;
}

nav .fa-solid{
    display: none;
}

/* ========== SECTION DIVIDERS ========== */
.section-divider {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-divider .wave1 {
    fill: rgba(143, 212, 255, 0.1);
    animation: wave 8s ease-in-out infinite;
}

.wave-divider .wave2 {
    fill: rgba(237, 9, 142, 0.08);
    animation: wave 10s ease-in-out infinite reverse;
}

.wave-divider .wave3 {
    fill: #080808;
    animation: wave 12s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25px) translateY(5px); }
}

/* ========== ANIMATED SKILL BARS ========== */
.skills-container {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.skill-percent {
    color: #8fd4ff;
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #8fd4ff, #ed098e);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ========== STATS COUNTER SECTION ========== */
#stats {
    padding: 80px 0;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(38, 38, 38, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(143, 212, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(143, 212, 255, 0.1), transparent 30%);
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes rotateBorder {
    100% { transform: rotate(360deg); }
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(143, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(143, 212, 255, 0.15);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: #ababab;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== INTERACTIVE TIMELINE ========== */
.timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #8fd4ff, #ed098e, #8fd4ff);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    border-radius: 50%;
    top: 0;
    z-index: 2;
    box-shadow: 0 0 20px rgba(143, 212, 255, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(143, 212, 255, 0.8);
}

.timeline-content {
    background: rgba(38, 38, 38, 0.6);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(143, 212, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: rgba(38, 38, 38, 0.6);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: rgba(38, 38, 38, 0.6);
}

.timeline-item:hover .timeline-content {
    background: rgba(143, 212, 255, 0.1);
    border-color: rgba(143, 212, 255, 0.3);
    transform: translateY(-5px);
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #8fd4ff, #ed098e);
    color: #080808;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-description {
    color: #ababab;
    font-size: 14px;
    line-height: 1.6;
}

@media only screen and (max-width: 600px){
    body {
        cursor: auto;
    }

    .cursor, .cursor-dot {
        display: none;
    }

    #header{
        background-image: url(images/phone-background.png);
    }

    .header-text{
        margin-top: 50%;
        font-size:16px;
    }
    .header-text h1{
        font-size: 30px;
    }

    .typing-text {
        font-size: 14px;
    }

    nav .fa-sharp{
        display: block;
    }

    nav .fa-solid{
        display: block;
        font-size: 25px;
    }
    nav ul{
        background: linear-gradient(180deg, #080808, rgba(143, 212, 255, 0.95));
        position:fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index:200;
        transition: right 0.5s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul li a {
        color: #fff;
    }
    nav ul .fa-sharp{
        position: absolute;
        top:25px;
        left: 25px;
        cursor: pointer;
    }
    nav ul .fa-solid{
        position: absolute;
        top:25px;
        left: 25px;
        cursor: pointer;
    }

    .sub-title{
        font-size: 40px;
    }

    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }

    .about-col-1{
        margin-bottom: 30px;
    }

    .about-col-2{
        font-size: 14px;
    }

    .tab-links{
        font-size:16px;
        margin-right: 20px;
    }

    .contact-left, .contact-right{
        flex-basis: 100%;
    }

    .contact-left {
        margin-bottom: 30px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    nav.sticky {
        padding: 10px 5%;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
        right: auto;
        border-left-color: transparent;
        border-right-color: rgba(38, 38, 38, 0.6);
    }

    /* Stats Mobile */
    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* Section Divider Mobile */
    .section-divider {
        height: 80px;
    }
}

#msg{
    color: #8fd4ff;
    margin-top: 10px;
    display: block;
    font-weight: 500;
    padding: 10px;
    background: rgba(143, 212, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#msg:not(:empty) {
    opacity: 1;
}
