.elementor-1420 .elementor-element.elementor-element-1249616{--display:flex;}.elementor-1420 .elementor-element.elementor-element-1249616.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}/* Start custom CSS */* {font-family: 'Audiowide', cursive; color: white;}

.service-container {
    position: relative;
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 50%, #0a0a0f 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    text-align: center;
}

/* Subtle grid overlay */
.service-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

/* SMART CONTRACTS PAGE - Blue/Cyan Theme */
.smart-container {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #002945 50%, #0a0a0f 100%);
    overflow: hidden;
    padding-top: 140px;
}

@media (max-width: 768px) {
    .smart-container {
        padding-top: 80px;
    }
}

/* Blue/Cyan Grid */
.smart-container .grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,212,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,136,204,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

.smart-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero with Cyan accents */
.smart-container .glitch {
    text-shadow: 
        0 0 20px rgba(0,212,255,0.5),
        0 0 40px rgba(0,136,204,0.3);
}

.smart-container .tagline {
    color: #00D4FF;
    font-family: 'Audiowide', cursive;
    font-size: 18px;
    letter-spacing: 3px;
    margin-top: 20px;
}

/* Glitch effect */
.glitch-wrapper {
    margin-bottom: 30px;
}

.glitch {
    font-size: clamp(60px, 15vw, 120px);
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    letter-spacing: 5px;
    animation: glitch-skew 1s infinite linear alternate-reverse;
    text-shadow: 
        0 0 20px rgba(0,255,163,0.5),
        0 0 40px rgba(0,255,163,0.3);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #00FFA3;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #FF00FF;
    z-index: -2;
}

@keyframes glitch-1 {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, -2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, 2px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(50% 0 30% 0); transform: translate(2px, 2px); }
    20% { clip-path: inset(79% 0 10% 0); transform: translate(-2px, -2px); }
    40% { clip-path: inset(20% 0 70% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(90% 0 5% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(10% 0 85% 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(40% 0 55% 0); transform: translate(-2px, -2px); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(1deg); }
    20% { transform: skew(0deg); }
    30% { transform: skew(-1deg); }
    40% { transform: skew(0deg); }
    50% { transform: skew(0.5deg); }
    60% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* Contract Cards */
.contract-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.contract-card.featured {
    grid-column: 1 / -1; /* Span all columns */
    max-width: 400px; /* Limit width */
    margin: 0 auto; /* Center it */
    border-color: #FFD700;
    background: rgba(255,215,0,0.05);
}

.contract-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(0,212,255,0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
}

/* Mobile - everything stacks */
@media (max-width: 480px) {
    .contract-cards {
        grid-template-columns: 1fr;
    }
    
    .contract-card.featured {
        grid-column: 1;
        max-width: 100%;
    }
}

.contract-card:hover {
    transform: translateY(-10px);
    border-color: #00D4FF;
    background: rgba(0,212,255,0.1);
    box-shadow: 0 20px 40px rgba(0,212,255,0.3);
}

.contract-card.featured {
    border-color: #FFD700;
    background: rgba(255,215,0,0.05);
}

.contract-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0,212,255,0.1);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s;
}

.contract-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1); /* Make black SVGs white */
    transition: all 0.3s;
}

/* Different colors for each type */
.contract-card:nth-child(1) .contract-icon {
    background: rgba(0,212,255,0.15); /* Cyan for Token */
}

.contract-card:nth-child(2) .contract-icon {
    background: rgba(153,69,255,0.15); /* Purple for NFT */
}

.contract-card:nth-child(3) .contract-icon {
    background: rgba(0,255,163,0.15); /* Green for DeFi */
}

.contract-card.featured .contract-icon {
    background: rgba(255,215,0,0.15); /* Gold for Custom */
}

/* Hover effects */
.contract-card:hover .contract-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0,212,255,0.3);
}

.contract-card:hover .contract-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px #00D4FF);
}

/* Special effect for featured/custom */
.contract-card.featured:hover .contract-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px #FFD700);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contract-card h3 {
    font-family: 'Audiowide', cursive;
    color: #00D4FF;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.contract-features {
    list-style: none;
    padding: 0;
}

.contract-features li {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin: 10px 0;
    padding-left: 20px;
}

/* Security Section */
.security-section {
    margin: 80px 0;
    padding: 60px 20px; /* Add horizontal padding */
    background: rgba(0,255,163,0.02);
    border-top: 1px solid rgba(0,255,163,0.2);
    border-bottom: 1px solid rgba(0,255,163,0.2);
    overflow: visible; /* Make sure nothing is hidden */
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px auto; /* Center the grid */
    max-width: 1200px; /* Limit max width */
    padding: 0 20px; /* Add padding to prevent edge cutting */
}

.security-item {
    text-align: center;
    padding: 0 10px; /* Add some internal padding */
}

.security-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0,212,255,0.1);
    border-radius: 50%;
    padding: 20px;
}

.security-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1); /* Makes black SVGs white */
    transition: all 0.3s;
}

/* Add cyan glow effect */
.security-item:hover .security-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px #00D4FF);
    transform: scale(1.1);
}

/* Alternative: Colored icons */
.security-item:nth-child(1) .security-icon img {
    filter: drop-shadow(0 0 10px #00D4FF);
}

.security-item:nth-child(2) .security-icon img {
    filter: drop-shadow(0 0 10px #FFD700);
}

.security-item:nth-child(3) .security-icon img {
    filter: drop-shadow(0 0 10px #FF0080);
}

/* Animate on hover */
.security-item:hover .security-icon {
    background: rgba(0,212,255,0.2);
    transform: translateY(-5px);
}

.security-item h3 {
    font-family: 'Audiowide', cursive;
    color: #00D4FF;
    font-size: 20px;
    margin-bottom: 15px;
}

.security-item p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Package Cards - Blue theme */
.smart-container .package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.smart-container .package-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(0,212,255,0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.smart-container .package-card:hover {
    transform: translateY(-10px);
    border-color: #00D4FF;
    box-shadow: 0 20px 40px rgba(0,212,255,0.4);
}

.smart-container .package-card h3 {
    font-family: 'Audiowide', cursive;
    color: #00D4FF;
    font-size: 24px;
    margin-bottom: 20px;
}

.smart-container .price {
    font-family: 'Audiowide', cursive;
    font-size: 42px;
    color: #FFD700;
    margin: 20px 0;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.smart-container .package-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00D4FF, #0088CC);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Audiowide', cursive;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    font-weight: bold;
}

.smart-container .package-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,212,255,0.5);
}

.smart-container .package-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

/* Tech Stack */
.tech-stack {
    text-align: center;
    margin: 80px 0;
}

.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.tech-logos span {
    padding: 15px 30px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 30px;
    font-family: 'Audiowide', cursive;
    color: #00D4FF;
    font-size: 14px;
    transition: all 0.3s;
}

.tech-logos span:hover {
    background: rgba(0,212,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,212,255,0.3);
}

/* CTA Section */
.smart-container .cta-section {
    text-align: center;
    padding: 60px 0;
}

.smart-container .cta-section h2 {
    font-family: 'Audiowide', cursive;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.smart-container .mega-cta-btn {
    padding: 20px 60px;
    background: linear-gradient(135deg, #00D4FF, #0088CC);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Audiowide', cursive;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.smart-container .mega-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,212,255,0.5);
}

/* Floating elements */
.smart-container .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.smart-container .float-element {
    position: absolute;
    font-size: 30px;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .smart-container .package-cards {
        grid-template-columns: 1fr;
    }
    
    .tech-logos {
        gap: 15px;
    }
    
    .tech-logos span {
        padding: 10px 20px;
        font-size: 12px;
    }
}/* End custom CSS */