/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0f1221;
    overflow-x: hidden;
}

/* Interactive Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

/* Extra Security Visual Elements */
::selection {
    background: rgba(0, 195, 255, 0.3);
    color: #fff;
}

.shield-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 123, 255, 0.03) 100%);
    z-index: -1;
    animation: shield-pulse 15s infinite alternate;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes shield-pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Header and Navigation */
header {
    background-color: rgba(10, 14, 28, 0.95);
    box-shadow: 0 4px 20px rgba(0, 140, 255, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(72, 161, 255, 0.15);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(8, 12, 24, 0.98);
    box-shadow: 0 4px 25px rgba(0, 140, 255, 0.25);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo-link {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: block;
    position: relative;
    z-index: 1001;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00c3ff, #60efff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
    letter-spacing: 1px;
    position: relative;
}

.logo span {
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #60efff, #00f7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c3ff, #60efff, transparent);
}

.nav-toggle {
    display: none;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 22px;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #00c3ff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.nav-toggle span:nth-child(1) {
    top: 0px;
}

.nav-toggle span:nth-child(2), .nav-toggle span:nth-child(3) {
    top: 10px;
}

.nav-toggle span:nth-child(4) {
    top: 20px;
}

.nav-toggle.open span:nth-child(1), .nav-toggle.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.nav-toggle.open span:nth-child(2) {
    transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2.2rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.nav-links a.active {
    color: #60efff;
    position: relative;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

.nav-links a i {
    font-size: 0.9rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00c3ff, #60efff);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.nav-links a:hover {
    color: #60efff;
}

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

/* Contact Button in Navigation */
.nav-contact-btn {
    background: linear-gradient(135deg, #007bff, #00c3ff);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white !important;
    font-weight: 600 !important;
    margin-left: 1rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease !important;
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.nav-contact-btn::after {
    display: none !important;
}

/* Responsive Navigation Menu */
@media (max-width: 1080px) {
    .nav-links li {
        margin-left: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(8, 12, 24, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-left: 1px solid rgba(72, 161, 255, 0.15);
        z-index: 1000;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(72, 161, 255, 0.1);
    }
    
    .nav-links a {
        padding: 1rem 0;
        display: block;
        width: 100%;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.active {
        color: #60efff;
        background: rgba(0, 195, 255, 0.1);
        padding-left: 0.5rem;
        border-radius: 4px;
    }
    
    .nav-contact-btn {
        margin: 1.5rem 0 0;
        text-align: center;
        display: inline-block;
        width: 100%;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    .overlay.open {
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #141b33, #0a0e1c);
    color: white;
    padding: 10rem 5% 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 70%, rgba(0, 195, 255, 0.15), transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230073ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #60efff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #a0a0a0;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #a0a0a0;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 195, 255, 0.2);
}

.location-badge i {
    color: #00c3ff;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #007bff, #00c3ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 195, 255, 0.6);
}

.secondary-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 195, 255, 0.4);
}

.secondary-button:hover {
    background: rgba(0, 195, 255, 0.1);
    transform: translateY(-3px);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
}

/* Services Section */
.services {
    padding: 7rem 5%;
    background-color: #121830;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 195, 255, 0.05), transparent 60%);
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(16, 21, 40, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(72, 161, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(96, 239, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 140, 255, 0.25);
    border: 1px solid rgba(72, 161, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 195, 255, 0.1));
    border: 1px solid rgba(72, 161, 255, 0.2);
    position: relative;
}

.icon-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid rgba(72, 161, 255, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.service-card i {
    font-size: 2.5rem;
    color: #00c3ff;
    text-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    margin-top: 0;
}

.service-card p {
    color: #a0a0a0;
}

/* Fix for font awesome */
.fa-robot:before {
    content: "\f544";
}

.fa-brain:before {
    content: "\f5dc";
}

/* Removed non-standard FontAwesome overrides */

.fa-coins:before {
    content: "\f51e";
}

.fa-project-diagram:before {
    content: "\f542";
}

/* Features Section */
.features {
    padding: 7rem 5%;
    background-color: #0f1221;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 195, 255, 0.05), transparent 70%);
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230073ff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-item {
    padding: 2rem;
    background: rgba(16, 24, 48, 0.5);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(72, 161, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(0, 195, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(16, 24, 48, 0.7);
    border: 1px solid rgba(72, 161, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 60, 120, 0.15);
}

.feature-item:hover::before {
    opacity: 1;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-item i {
    font-size: 2rem;
    color: #00c3ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: #60efff;
}

/* Security-specific styling */
.feature-item:nth-child(2) i {
    color: #00e676;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.feature-item:nth-child(2):hover i {
    color: #00ff88;
    animation: securityPulse 2s infinite;
}

@keyframes securityPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    margin-top: 0;
}

.feature-item p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 7rem 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #0f1221;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 195, 255, 0.05), transparent 70%);
}

.about h2 {
    margin-bottom: 3rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.about h2 span {
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #60efff, #00f7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content p {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-info {
    display: inline-block;
    font-size: 0.95rem;
    color: #a0a0a0;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 195, 255, 0.2);
}

.location-info i {
    color: #00c3ff;
    font-size: 0.9rem;
    margin-right: 0.3rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem;
    margin: 0 0.5rem 1rem;
    background: rgba(16, 24, 48, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(72, 161, 255, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(72, 161, 255, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #00c3ff, #60efff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 7rem 5%;
    background-color: #121830;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 195, 255, 0.05), transparent 70%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    background-color: rgba(16, 24, 48, 0.7);
    border: 1px solid rgba(72, 161, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(72, 161, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1.2rem;
    background: linear-gradient(135deg, #007bff, #00c3ff);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
    margin-top: 1rem;
}

.submit-button:hover {
    background: linear-gradient(135deg, #0073e6, #00b0e6);
    box-shadow: 0 8px 25px rgba(0, 195, 255, 0.5);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(16, 24, 48, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(72, 161, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    border: 1px solid rgba(72, 161, 255, 0.3);
}

.info-item i {
    font-size: 1.5rem;
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

/* Footer */
footer {
    background-color: #0a0e1c;
    color: #a0a0a0;
    padding: 3rem 5% 1rem;
    border-top: 1px solid rgba(72, 161, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.footer-logo p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-location i {
    color: #00c3ff;
}

.social-links a {
    color: #a0a0a0;
    margin-left: 1.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00c3ff;
    transform: translateY(-3px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(72, 161, 255, 0.05);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        margin-top: 1.5rem;
    }
    
    .social-links a {
        margin: 0 0.8rem;
    }
    
    .particles-container {
        opacity: 0.5;
    }
    
    .feature-item:hover {
        transform: translateY(-3px);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0e1c;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00c3ff, #0073e6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #60efff, #0083ff);
}

/* Form message styles */
#form-messages {
    width: 100%;
    margin-bottom: 15px;
}

.success-message {
    padding: 15px;
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
    margin-bottom: 15px;
}

.error-message {
    padding: 15px;
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border-left: 4px solid #F44336;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Procedure Section */
.procedure {
    padding: 7rem 5%;
    background-color: #0f1221;
    position: relative;
}

.procedure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 195, 255, 0.05), transparent 70%);
}

.procedure h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.procedure h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.procedure-timeline {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.procedure-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #00c3ff, #00c3ff, transparent);
}

.procedure-step {
    position: relative;
    padding: 0 0 3rem 80px;
    margin-bottom: 1rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 195, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00c3ff;
    z-index: 2;
}

.procedure-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.procedure-step p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* AI Integration Process */
.ai-integration {
    padding: 7rem 5%;
    background-color: #121830;
    position: relative;
}

.ai-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 195, 255, 0.05), transparent 70%);
}

.ai-integration h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.ai-integration h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.integration-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.integration-item {
    background: rgba(16, 21, 40, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(72, 161, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.integration-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(96, 239, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.integration-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 140, 255, 0.25);
    border: 1px solid rgba(72, 161, 255, 0.3);
}

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

.integration-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.integration-item p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.integration-features {
    list-style: none;
}

.integration-features li {
    color: #a0a0a0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.integration-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: #00c3ff;
    border-radius: 50%;
}

/* Enterprise Solutions */
.enterprise {
    padding: 7rem 5%;
    background-color: #0f1221;
    position: relative;
}

.enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 195, 255, 0.05), transparent 70%);
}

.enterprise h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.enterprise h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.enterprise-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: rgba(16, 24, 48, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(72, 161, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(0, 195, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(16, 24, 48, 0.7);
    border: 1px solid rgba(72, 161, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 60, 120, 0.15);
}

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

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.solution-card p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.solution-features span {
    background: rgba(0, 123, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #00c3ff;
    border: 1px solid rgba(0, 195, 255, 0.2);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-features span {
    background: rgba(0, 123, 255, 0.2);
    color: #60efff;
}

/* ScrollReveal animations base styles */
.reveal-up {
    visibility: hidden;
}

.reveal-left {
    visibility: hidden;
}

.reveal-right {
    visibility: hidden;
}

.reveal-delay-1 {
    visibility: hidden;
}

.reveal-delay-2 {
    visibility: hidden;
}

.reveal-delay-3 {
    visibility: hidden;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .procedure-timeline::before {
        left: 20px;
    }
    
    .procedure-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .integration-container {
        grid-template-columns: 1fr;
    }
    
    .enterprise-solutions {
        grid-template-columns: 1fr;
    }
}

/* Blockchain Badge */
.blockchain-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #a0a0a0;
    background-color: rgba(0, 195, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 195, 255, 0.4);
}

.blockchain-badge i {
    color: #00c3ff;
    font-size: 0.9rem;
}

/* Blockchain SEO Section */
.blockchain-seo {
    padding: 7rem 5%;
    background-color: #0c1429;
    position: relative;
    overflow: hidden;
}

.blockchain-seo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(0, 195, 255, 0.1), transparent 70%);
}

.blockchain-seo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm2 2v16h16V2H2z' fill='%230073ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.blockchain-seo h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.blockchain-seo h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
}

.blockchain-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blockchain-intro .tagline {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.blockchain-intro .tagline span {
    color: #00c3ff;
    font-weight: 600;
}

.blockchain-intro .description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.8;
}

.blockchain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.blockchain-card {
    background: rgba(16, 21, 40, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(72, 161, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.blockchain-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(96, 239, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blockchain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 140, 255, 0.3);
    border: 1px solid rgba(72, 161, 255, 0.4);
}

.blockchain-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 195, 255, 0.2));
    border: 1px solid rgba(72, 161, 255, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: #00c3ff;
    text-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
}

.blockchain-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.blockchain-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

.blockchain-cta {
    text-align: center;
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 1;
}

.blockchain-cta p {
    font-size: 1.3rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.blockchain-cta p span {
    color: #00c3ff;
    font-weight: 600;
}

.blockchain-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #007bff, #00c3ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.4);
    border: 1px solid rgba(72, 161, 255, 0.3);
}

.blockchain-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 195, 255, 0.6);
}

/* Enterprise Tagline */
.enterprise-tagline {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.enterprise-tagline p {
    font-size: 1.3rem;
    color: #a0a0a0;
    padding: 1.5rem;
    border-top: 1px solid rgba(72, 161, 255, 0.1);
    display: inline-block;
}

.enterprise-tagline span {
    color: #00c3ff;
    font-weight: 600;
}

/* Responsive Adjustments for Blockchain Sections */
@media (max-width: 768px) {
    .blockchain-grid {
        grid-template-columns: 1fr;
    }
    
    .blockchain-intro .tagline {
        font-size: 1.3rem;
    }
    
    .blockchain-cta p {
        font-size: 1.1rem;
    }
} 