/* Clexx Crew - Premium Web Development Agency Theme */

:root {
    /* Brand Colors - Futuristic & Sleek */
    --primary-color: #00f5ff;
    /* Hyper Cyan */
    --primary-gradient: linear-gradient(135deg, #00f5ff 0%, #6366f1 100%);
    --secondary-color: #6366f1;
    /* Electric Indigo */
    --accent-color: #f472b6;
    /* Soft Pink for highlights */

    /* Dark Theme Backgrounds */
    --bg-body: #0a0a0b;
    --bg-surface: #141416;
    --bg-surface-2: #1c1c1f;
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;

    /* Shadows & Effects */
    --glow-primary: 0 0 30px rgba(0, 245, 255, 0.3);
    --glow-secondary: 0 0 30px rgba(99, 102, 241, 0.3);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);

    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 2rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    padding: 1.2rem 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--glow-primary);
}

.brand-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 10px 20px !important;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(0, 245, 255, 0.05);
}

/* Hero Section */
.hero-section-new {
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
}

.hero-content-new {
    position: relative;
    z-index: 2;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: 100px;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title-new {
    font-size: 5rem;
    margin-bottom: 32px;
    line-height: 1;
    font-weight: 800;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description-new {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 580px;
}

/* Buttons */
.btn-primary-new {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--glow-primary);
    border: none;
    transition: var(--transition);
}

.btn-primary-new:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.4);
    color: white;
}

.btn-secondary-new {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: var(--glass-border);
    transition: var(--transition);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    color: white;
}

/* Hero Visual Animation */
.hero-visual-new {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matrix-grid {
    position: absolute;
    width: 140%;
    height: 140%;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg) translateY(-100px);
    mask-image: radial-gradient(circle, black, transparent 80%);
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 500px;
    }
}

.floating-card {
    position: absolute;
    background: rgba(28, 28, 31, 0.7);
    backdrop-filter: blur(12px);
    border: var(--glass-border);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

/* Services */
.section-new {
    padding: 120px 0;
}

.section-header-new {
    margin-bottom: 80px;
}

.section-badge-new {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 16px;
}

.service-card-new {
    background: var(--bg-surface);
    padding: 48px;
    border-radius: 32px;
    border: var(--glass-border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-new:hover {
    background: var(--bg-surface-2);
    transform: translateY(-12px);
    border-color: var(--primary-color);
}

.service-icon-new {
    width: 64px;
    height: 64px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 32px;
}

/* Portfolio */
.portfolio-card-new {
    border-radius: 32px;
    overflow: hidden;
    background: var(--bg-surface);
    border: var(--glass-border);
    transition: var(--transition);
}

.portfolio-image-new {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.portfolio-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card-new:hover .portfolio-overlay-new {
    opacity: 1;
}

/* Contact Styles */
.contact-split-wrapper {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
}

.glass-form-card {
    background: rgba(28, 28, 31, 0.6);
    backdrop-filter: blur(30px);
    border: var(--glass-border);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    padding: 18px 24px;
    border-radius: 14px;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
    box-shadow: none;
    color: white;
}

/* Footer */
.footer-new {
    padding: 100px 0 40px;
    border-top: var(--glass-border);
    background: #050505;
}

.footer-bottom-new {
    margin-top: 60px;
    padding-top: 40px;
    border-top: var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-title-new {
        font-size: 3.5rem;
    }
}