/* Selvora Official - Premium Digital Marketing Theme */

:root {
    /* Brand Colors - Vibrant & Energetic */
    --primary-color: #ff2e63;
    /* Vivid Pink */
    --primary-gradient: linear-gradient(135deg, #ff2e63 0%, #08d9d6 100%);
    --secondary-color: #08d9d6;
    /* Electric Turquoise */
    --accent-color: #eaeaea;

    /* Theme Backgrounds */
    --bg-body: #05010d;
    /* Deeper Night Purple */
    --bg-surface: #0e051d;
    --bg-surface-2: #140826;
    --bg-glass: rgba(255, 255, 255, 0.02);

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #8e82a3;
    --text-light: #c2bacf;

    /* Shadows & Effects */
    --glow-primary: 0 0 40px rgba(255, 46, 99, 0.35);
    --glow-secondary: 0 0 40px rgba(8, 217, 214, 0.35);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --glass-reflection: inset 0 1px 1px rgba(255, 255, 255, 0.1);

    --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 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;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.15;
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(1deg);
    }
}

@keyframes mesh-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.reveal {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Navbar */
.navbar {
    padding: 2rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(5, 1, 13, 0.7);
    backdrop-filter: blur(25px);
    border-bottom: var(--glass-border);
    padding: 1.2rem 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--glow-primary);
    transform: perspective(500px) rotateY(-10deg) rotateX(10deg);
}

.brand-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    margin: 0 5px;
    padding: 12px 24px !important;
    border-radius: 100px;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero-section-new {
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Mesh Background */
.mesh-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 46, 99, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(8, 217, 214, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(255, 46, 99, 0.05) 0%, transparent 30%);
    filter: blur(80px);
    z-index: 1;
    animation: mesh-move 20s ease infinite;
}

.hero-content-new {
    position: relative;
    z-index: 5;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    margin-bottom: 35px;
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-title-new {
    font-size: 6rem;
    margin-bottom: 35px;
    line-height: 0.9;
    font-weight: 900;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 46, 99, 0.15));
}

.hero-description-new {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 650px;
    font-weight: 300;
    line-height: 1.4;
}

/* Buttons */
.btn-primary-new {
    background: var(--primary-gradient);
    color: white;
    padding: 22px 48px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(255, 46, 99, 0.3), var(--glow-primary);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-new::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.btn-primary-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 46, 99, 0.45);
    color: white;
}

.btn-primary-new:hover::after {
    left: 100%;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 24px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 35px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Sections */
.section-new {
    padding: 160px 0;
}

.section-badge-new {
    color: var(--primary-color);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 25px;
}

.section-title-new {
    font-size: 4rem;
    margin-bottom: 60px;
    font-weight: 900;
}

/* Service Card Enhanced */
.service-card-new {
    background: rgba(255, 255, 255, 0.015);
    padding: 50px;
    border-radius: 40px;
    border: var(--glass-border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-new:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 46, 99, 0.3);
    box-shadow: 0 40px 80px rgba(255, 46, 99, 0.1);
}

.service-icon-new {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 45px;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(255, 46, 99, 0.25);
}

/* Glass Card Enhanced */
.glass-form-card {
    background: rgba(14, 5, 29, 0.6);
    backdrop-filter: blur(50px);
    border: var(--glass-border);
    box-shadow: var(--glass-reflection), 0 50px 100px rgba(0, 0, 0, 0.8);
    border-radius: 50px;
    padding: 70px;
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: var(--glass-border);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 46, 99, 0.05);
    border-color: var(--primary-color);
}

/* Footer */
.footer-new {
    padding: 150px 0 60px;
    border-top: var(--glass-border);
    background: radial-gradient(circle at center top, rgba(255, 46, 99, 0.05) 0%, #030107 100%);
}

.footer-bottom-new {
    margin-top: 100px;
    padding-top: 50px;
    border-top: var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title-new {
        font-size: 4rem;
    }

    .section-title-new {
        font-size: 3rem;
    }

    .glass-form-card {
        padding: 50px 30px;
    }

    .hero-section-new {
        padding-top: 100px;
        text-align: center;
    }

    .hero-description-new {
        margin-left: auto;
        margin-right: auto;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }
}