/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
    color: white;
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.041);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background: url('https://source.unsplash.com/1600x900/?man,portrait') no-repeat center center/cover;
    padding: 0 50px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    color: #c54205ef;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #7600a5b6;
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
    transition: 0.3s;
}

.btn:hover {
    background: #ffffff77;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #020096e1;
    color: #e4e4e4;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #000000be;
    color: rgb(231, 231, 233);
}

h2 {

    font-family: 'poppins', sans-serif;
    font-size: 30px;
    text-transform:
    uppercase ;
    text-align:center;
    background: linear-gradient(to right, #fc72ff, #Bf68ff, #487bff,
    #8f68ff, #fc72ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradiant 2.5s linear infinite;
}
@keyframes animate-gradiant{
    to{
        background-position: 200%;
    }
}
.background{
    left: 0%;
    right: 0%;
    bottom: 0%;
    top: 0%;
}


.work-demos {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.7);
    margin-bottom: 60px; /* Adjust based on footer height */
}

.work-demos h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: white;
}

.demo-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.demo-items {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.demo-item {
    width: 250px;
    margin: 0 50px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.demo-item:hover {
    transform: scale(1.05);
}

.demo-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.demo-item h3 {
    padding: 15px;
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('backvi.PNG') no-repeat center center/cover;
    animation: float 15s ease-in-out infinite alternate;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-2%, 2%);
    }
    50% {
        transform: translate(2%, -2%);
    }
    75% {
        transform: translate(-2%, -2%);
    }
    100% {
        transform: translate(2%, 2%);
    }
}




.site-footer {
    background-color: #00000060;
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #444444;
}

.copyright {
    font-size: 0.9em;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.social-icons a:hover {
    opacity: 0.8;
}