@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0A0A0A;
    overflow-x: hidden;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #FF4500;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    z-index: 9999;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    place-content: end;
}

.logo {
    height: 40px;
}
 
nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: block;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FF4500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #9c12ca, #00f1ff);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#hero {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    position: absolute;
    z-index: 2;
    padding-left: 5vw;
    padding-right: 5vw;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #FF4500;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00A2FF;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(17px, 9999px, 94px, 0);
    }
    20% {
        clip: rect(37px, 9999px, 44px, 0);
    }
    40% {
        clip: rect(58px, 9999px, 54px, 0);
    }
    60% {
        clip: rect(80px, 9999px, 66px, 0);
    }
    80% {
        clip: rect(108px, 9999px, 85px, 0);
    }
    100% {
        clip: rect(129px, 9999px, 144px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(129px, 9999px, 36px, 0);
    }
    20% {
        clip: rect(36px, 9999px, 4px, 0);
    }
    40% {
        clip: rect(62px, 9999px, 78px, 0);
    }
    60% {
        clip: rect(15px, 9999px, 34px, 0);
    }
    80% {
        clip: rect(89px, 9999px, 98px, 0);
    }
    100% {
        clip: rect(1px, 9999px, 144px, 0);
    }
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #000;
    background-color: #fea99c91;
    border-radius: 16px;
    padding-right: 12px;
    padding-left: 12px;
}

.hero-image {
    width: 50%;
    max-width: 500px;
    border-radius: 20px;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 69, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
    }
}

#features {
    padding: 5rem 5%;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 2rem;
    justify-content: center;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow  0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#showcase {
    padding: 5rem 5vw;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    gap: 5%;
}

.showcase-item {
    max-width: 50%;
}

#testimonials {
    padding: 5rem 5%;
}

.testimonial-carousel {
    display: flex;
    overflow-x: visible;
    transition: transform 0.5s ease;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
}

.testimonial-item img {
    width: 30vw;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.client-name {
    font-weight: 600;
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
}

#precontact {
    padding: 5rem 25%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

#contact {
    padding: 5rem 5%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

#contact-form textarea {
    height: 150px;
}

.glow-on-hover {
    position: relative;
    z-index: 1;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF4500, #00A2FF, #FFD700);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-on-hover:hover::after {
    opacity: 1;
}

footer {
    background-color: #0A0A0A;
    color: #FFFFFF;
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    margin-bottom: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #FF4500;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
}

.calendly-widget {
    min-width: 550px;
    height: 100vh;
}

@media (max-width: 768px) {
    .nav-item {
        display: none;
    }

    #hero {
        flex-direction: column;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        margin-top: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(45vw, 90vw));
        gap: 0.75rem;
    }

    .feature-item {
        padding: 1rem;
    }
    
    #showcase {
        padding: 2rem 5vw;
    }
    
    #showcase p {
        font-size: 0.65rem;
    }
    
    #testimonials {
        padding: 2rem 5%;
        overflow-x: hidden;
    }
    
    .testimonial-item img {
        width: 65vw;
    }

    .client-name {
        max-width: 99%;
    }

    .footer-content {
        flex-direction: column;
    }
    
    #precontact {
       padding: 3rem 12%;
    }
    
    .calendly-widget {
        min-width: 0px;
        min-height: 700px;
    }
}