/* Base Styles */
:root {
    --primary-dark: #006400;
    --primary-light: #00ff00;
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
    --header-bg: rgba(0, 0, 0, 0.9);
    --header-bg-scroll: rgba(0, 0, 0, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout */
.min-h-screen {
    min-height: 100vh;
}

.bg-black {
    background-color: var(--bg-color);
}

.text-white {
    color: var(--text-color);
}

.pt-24 {
    padding-top: 6rem;
}

/* Header */
.bg-header {
    background-color: var(--header-bg);
    transition: background-color 0.3s ease;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.border-white-10 {
    border-color: var(--border-color);
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.z-50 {
    z-index: 50;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.logo {
    display: block;
    width: 12rem;
    height: 4rem;
    position: relative;
}

.logo img {
    width: 150%;
    height: 100%;
    object-fit: contain;
}

.hidden-mobile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-light);
}

.header-button {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: black;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.header-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 100, 0, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 100, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) scale(1.5);
    opacity: 0.3;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icons i {
    position: absolute;
    color: rgba(0, 255, 0, 0.4);
    font-size: 2rem;
    animation: float 15s infinite linear;
}

.floating-icons i:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-duration: 20s;
    font-size: 3rem;
}

.floating-icons i:nth-child(2) {
    top: 25%;
    left: 75%;
    animation-duration: 25s;
    animation-delay: 2s;
    font-size: 2.5rem;
}

.floating-icons i:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 5s;
}

.floating-icons i:nth-child(4) {
    top: 70%;
    left: 70%;
    animation-duration: 22s;
    animation-delay: 7s;
    font-size: 3.5rem;
}

.floating-icons i:nth-child(5) {
    top: 40%;
    left: 40%;
    animation-duration: 19s;
    animation-delay: 3s;
    font-size: 2.2rem;
}

.floating-icons i:nth-child(6) {
    top: 85%;
    left: 15%;
    animation-duration: 21s;
    animation-delay: 8s;
    font-size: 1.8rem;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 10px) rotate(90deg);
    }
    50% {
        transform: translate(0, 20px) rotate(180deg);
    }
    75% {
        transform: translate(-10px, 10px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.hero-icon {
    font-size: 5rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.gradient-text {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: black;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3);
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.3);
}

.primary-button:hover::before {
    opacity: 1;
}

.primary-button i {
    margin-right: 0.5rem;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.7s ease;
}

.secondary-button:hover {
    color: var(--primary-light);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transform: translateY(-3px);
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button i {
    margin-right: 0.5rem;
}

/* Sections */
.section {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.glass-card {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(4px);
}

.glass-card-inner {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 1rem;
}

.gradient-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-muted);
}

/* Grids */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.three-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.four-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.section-icon {
    margin-right: 0.5rem;
    color: var(--primary-light);
}

.solution-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.solution-card:hover {
    background-color: var(--card-hover);
    transform: translateY(-10px);
    border-color: rgba(0, 255, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-icon {
    transform: scale(1.2);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.solution-card:hover .card-hover-effect {
    opacity: 1;
}

/* Products Section Styles */
.products-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0 1.5rem 0;
}
.product-logo {
    height: 64px;
    width: auto;
    filter: brightness(1.1) invert(0) drop-shadow(0 4px 16px rgba(0,255,0,0.18));
    background: rgb(211 209 209);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 2px 12px rgba(0,255,0,0.08);
    margin-bottom: 1rem;
}
.product-logo:hover {
    transform: scale(1.07) translateY(-4px);
    filter: brightness(1.1) invert(0) drop-shadow(0 4px 16px rgba(0,255,0,0.18));
    background: rgb(211 209 209);
    box-shadow: 0 6px 24px rgba(0,255,0,0.13);
}
@media (max-width: 600px) {
    .products-logos-row {
        gap: 1.2rem;
    }
    .product-logo {
        height: 42px;
        padding: 0.4rem 0.7rem;
    }
}

/* Partner Section Styles */
.partner-animation {
    position: relative;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    overflow: hidden;
}

.connecting-line {
    position: relative;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    opacity: 0.5;
}

.moving-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: move-dot 4s infinite linear;
    box-shadow: 0 0 10px var(--primary-light);
}

@keyframes move-dot {
    0% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}

.partner-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.partner-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-icon {
    margin: 15px;
    max-width: 80px;
    max-height: 80px;
    padding: 10px;
    background-color: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}


.partner-icon i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.partner-card:hover .partner-icon {
    margin: 15px;
    max-width: 80px;
    max-height: 80px;
    padding: 10px;
    background-color: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
   
.partner-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.enhanced-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.enhanced-list li i {
    color: var(--primary-light);
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.partner-card-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-link {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.partner-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.partner-link:hover {
    color: var(--primary-light);
}

.partner-link:hover i {
    transform: translateX(3px);
}

.card-corner-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    pointer-events: none;
}

.card-corner-decoration::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 255, 0, 0.1);
    transform: rotate(45deg);
}

.business-card .card-corner-decoration::before {
    background-color: rgba(0, 200, 0, 0.1);
}

.msp-card .card-corner-decoration::before {
    background-color: rgba(0, 150, 255, 0.1);
}

/* Support Section Styles */
.support-card {
    position: relative;
    overflow: hidden;
}

.support-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative;
}

.support-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.support-main-icon {
    font-size: 3rem;
    color: var(--primary-light);
    z-index: 2;
}

.support-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
    z-index: 1;
}

.support-animation {
    position: relative;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    overflow: hidden;
}

.support-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    animation: moving-line 3s infinite;
}

@keyframes moving-line {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.support-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.support-item:hover::before {
    opacity: 1;
}

.support-item-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.support-item-icon i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.support-item:hover .support-item-icon {
    background-color: rgba(0, 255, 0, 0.2);
    transform: scale(1.1);
}

.support-link {
    margin-top: auto;
    color: var(--text-muted);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding-top: 1rem;
}

.support-link i {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.support-link:hover {
    color: var(--primary-light);
}

.support-link:hover i {
    transform: translateX(3px);
}

/* Marketplace Features */
.marketplace-icon {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    animation: float 8s infinite ease-in-out;
}

.marketplace-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-right: 1rem;
}

.marketplace-animation {
    position: relative;
    height: 100px;
    margin: 2rem 0;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-light);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 40px rgba(0, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

/* Lists */
.feature-list {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
}

.feature-list.centered {
    display: inline-block;
    text-align: left;
}
.partner-cards-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.partner-card {
    flex: 1 1 calc(50% - 10px); /* Adjust width and spacing */
    margin: 5px;
}
/* Footer */
.footer {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

/* Media Queries */
@media (min-width: 768px) {
    .gradient-text {
        font-size: 3.75rem;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .three-column-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .four-column-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hidden-mobile {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .marketplace-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .hidden-mobile {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .hero-section {
        margin-top: 2rem;
    }
    
    .four-column-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-item {
        padding: 1.5rem 1rem;
    }
    
    .support-header {
        padding: 0 1rem;
    }
    
    .partner-card {
        margin-bottom: 1.5rem;
    }
    
    .partner-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .partner-card-content {
        padding: 1.5rem;
    }
    
    .partner-card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .glass-card, .gradient-card {
        padding: 2rem 1.5rem;
    }
}
