/* Custom Premium Styles for Infinite Tech */
:root {
    --primary-color: #00bfe7;
    --secondary-color: #100028;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(0, 191, 231, 0.5);
}

/* Glassmorphism Effect for Service Items */
.services__item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.services__item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--glow-color);
}

.services__item h4 {
    color: var(--primary-color) !important;
    margin-bottom: 15px;
    font-weight: 700;
}

.services__item p {
    color: #e0e0e0 !important;
}

/* Floating Animation for Hero Text */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero__text h2 {
    animation: float 5s ease-in-out infinite;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Premium Button Hover */
.primary-btn {
    overflow: hidden;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    color: #fff;
    box-shadow: 0 0 20px var(--primary-color);
}

/* Tech Stack Section Styles */
.tech-stack {
    background: #0a001a;
    padding: 100px 0;
}

.tech-icon-box {
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
}

.tech-icon-box i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.tech-icon-box span {
    color: #fff;
    font-family: "Play", sans-serif;
    font-weight: 700;
}

/* Counter Section Enhancement */
.counter__item {
    transition: all 0.5s ease;
}

.counter__item:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 30px var(--glow-color);
}

/* Footer Social Icons Glow */
.footer__top__social a:hover i {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Animated Gradient Background for Body */
body {
    background: linear-gradient(-45deg, #050010, #100028, #001220, #000000);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Scroll Reveal Classes */
.section-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}