/* Landing Page Specific Styles - Bento Redesign */

/* Navbar */
#mainNav {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: all 0.4s ease;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.footer-logo-full {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-logo-full:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-full {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.6));
}

.logo-full:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-white) !important;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg-color);
}

#particles-js {
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #7000ff;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #00f2ff;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-content {
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent-color);
}

.display-1 {
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 20px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.08); /* Increased visibility */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Stronger border */
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px); /* Stronger blur */
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.bento-large {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.gradient-1 { background: linear-gradient(135deg, #00f2ff, #0066ff); }
.gradient-2 { background: linear-gradient(135deg, #7000ff, #ff0055); }
.gradient-3 { background: linear-gradient(135deg, #ffd700, #ff8800); }

.bento-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.bento-item p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-bg-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    opacity: 0.6;
    transform: rotate(-10deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.bento-item:hover .bento-bg-img {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.8;
}

.bento-floating-img {
    max-width: 200px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    gap: 20px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.advantage-card i {
    font-size: 1.5rem;
}

/* Stat Circle */
.stat-circle-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-circle {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.orbit-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: orbit 10s linear infinite;
}

.item-1 { width: 50px; height: 50px; background: #00f2ff; top: 0; left: 50%; }
.item-2 { width: 40px; height: 40px; background: #7000ff; bottom: 20%; right: 10%; animation-delay: -3s; }
.item-3 { width: 60px; height: 60px; background: #ffd700; bottom: 20%; left: 10%; animation-delay: -6s; }

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .stat-circle-container {
        width: 300px;
        height: 300px;
    }
}


