:root {
    --primary: #2d3748;
    --secondary: #4a5568;
    --accent: #718096;
    --neon-blue: #90cdf4;
    --neon-gold: #ecc94b;
    --neon-purple: #b794f4;
    --dark-bg: #1a202c;
    --card-bg: rgba(45, 55, 72, 0.8);
    --light: #f7fafc;
    --text: #e2e8f0;
    --text-light: #a0aec0;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --neon-gradient: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    --gold-gradient: linear-gradient(45deg, var(--neon-gold), #d69e2e);
    --shadow: 0 0 20px rgba(144, 205, 244, 0.2);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --text-primary: #2d3748;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(45, 55, 72, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(113, 128, 150, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, var(--dark-bg), #2d3748);
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.hero {
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 55, 72, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(113, 128, 150, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.about {
    background: 
        radial-gradient(circle at 10% 30%, rgba(74, 85, 104, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(45, 55, 72, 0.2) 0%, transparent 40%),
        linear-gradient(45deg, #2d3748 0%, #1a202c 100%);
}

.services {
    background: 
        radial-gradient(circle at 30% 80%, rgba(113, 128, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(74, 85, 104, 0.15) 0%, transparent 50%),
        linear-gradient(225deg, #1a202c 0%, #4a5568 100%);
}

.smart-building {
    background: 
        radial-gradient(circle at 50% 50%, rgba(45, 55, 72, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(113, 128, 150, 0.2) 0%, transparent 40%),
        linear-gradient(135deg, #2d3748 0%, #1a202c 50%, #4a5568 100%);
}

.partners {
    background: 
        radial-gradient(circle at 80% 40%, rgba(74, 85, 104, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(45, 55, 72, 0.2) 0%, transparent 50%),
        linear-gradient(315deg, #1a202c 0%, #2d3748 100%);
}

.clients {
    background: 
        radial-gradient(circle at 40% 20%, rgba(113, 128, 150, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 60% 80%, rgba(74, 85, 104, 0.15) 0%, transparent 45%),
        linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
}

.contact {
    background: 
        radial-gradient(circle at 70% 30%, rgba(45, 55, 72, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 30% 70%, rgba(113, 128, 150, 0.2) 0%, transparent 55%),
        linear-gradient(45deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--neon-gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: var(--shadow);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: rgba(26, 32, 44, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(144, 205, 244, 0.1);
}

header.scrolled {
    background: rgba(26, 32, 44, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -120px;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(144, 205, 244, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--neon-gradient);
    transition: var(--transition);
    box-shadow: 0 0 5px var(--neon-blue);
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: var(--neon-blue);
    cursor: pointer;
    z-index: 1001;
}

#header img {
    height: auto;
    width: 150px;
    object-fit: cover;
}


.mobile-nav {
    position: fixed;
    top: 0;
    /* right: -100%; */
    width: 280px;
    height: 100vh;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    transition: var(--transition);
    /* padding: 80px 30px 30px; */
    border-left: 1px solid rgba(144, 205, 244, 0.2);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(144, 205, 244, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-links a:hover {
    color: var(--neon-blue);
    padding-left: 10px;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    color: var(--neon-blue);
    cursor: pointer;
    background: none;
    border: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(144, 205, 244, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(183, 148, 244, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-primary);
    max-width: 800px;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(144, 205, 244, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-gold);
    color: var(--neon-gold);
}

.btn-outline::before {
    background: var(--gold-gradient);
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(144, 205, 244, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(144, 205, 244, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
}

.floating-tech {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.tech-element {
    position: absolute;
    background: rgba(144, 205, 244, 0.08);
    border: 1px solid rgba(144, 205, 244, 0.2);
    animation: floatTech 20s infinite linear;
}

.tech-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.tech-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 25%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    animation-delay: 5s;
}

.tech-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 40%;
    border-radius: 50%;
    animation-delay: 10s;
}

@keyframes floatTech {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.about {
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text);
    text-transform: uppercase;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.stat {
    text-align: center;
    padding: 20px;
    background: transparent;
    border-radius: 30px;
    transition: var(--transition);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border-color: var(--neon-blue);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow);
}

.stat h4 {
    font-size: 3rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Orbitron', sans-serif;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.stat p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(144, 205, 244, 0.2);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--neon-gradient);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.tech-art {
    width: 100%;
    height: 100%;
}

.services {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    padding: 30px;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow);
}

.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--neon-blue);
    font-size: 3rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text);
    text-transform: uppercase;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: bold;
}

.smart-building {
    position: relative;
    overflow: hidden;
}

.building-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.08;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--neon-blue);
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text);
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-light);
}

.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(144, 205, 244, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(183, 148, 244, 0.04) 0%, transparent 50%);
    z-index: 0;
    opacity: 0.5;
}

.partners {
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow);
}

.partner-logo {
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo i {
    font-size: 4rem;
    color: var(--neon-blue);
}

.partner-card h3 {
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.clients {
    position: relative;
    overflow: hidden;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.client-logo {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    padding: 20px 30px;
    border-radius: 30px;
    transition: var(--transition);
    flex: 0 0 calc(25% - 40px);
    min-width: 200px;
}

.client-logo img {
    width: 230px;
    height: 100%;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow);
}

.client-logo span {
    font-weight: 700;
    color: var(--text);
    font-size: 1.3rem;
}

.contact {
    position: relative;
}

.contact-content {
    display: flex;
    gap: 70px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text);
    text-transform: uppercase;
}

.contact-info p {
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(144, 205, 244, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(144, 205, 244, 0.2);
}

.contact-text h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--text);
}

.contact-art {
    flex: 1;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(144, 205, 244, 0.15);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    background: rgba(26, 32, 44, 0.95);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(144, 205, 244, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    margin-right: 40px;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--text);
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--neon-gradient);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(144, 205, 244, 0.08);
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(144, 205, 244, 0.2);
}

.social-links a:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(144, 205, 244, 0.1);
    color: var(--text-light);
    font-size: 0.95rem;
}

.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.binary-digit {
    position: absolute;
    color: rgba(144, 205, 244, 0.08);
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    animation: binaryFall linear infinite;
}

@keyframes binaryFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(1000%);
        opacity: 0;
    }
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 5px;
    height: 100%;
}

.grid-cell {
    background: rgba(144, 205, 244, 0.08);
    border-radius: 2px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; background: rgba(144, 205, 244, 0.3); }
}

.tabler-icon {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tech-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  margin-left:50%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.circuit-line {
  position: absolute;
  background: rgba(144, 205, 244, 0.08);
  border: 1px solid rgba(144, 205, 244, 0.2);
}

.circuit-1 {
  width: 60%;
  height: 2px;
  top: 30%;
  left: 20%;
  animation: circuitPulse 4s infinite ease-in-out;
}

.circuit-2 {
  width: 2px;
  height: 50%;
  top: 20%;
  right: 40%;
  animation: circuitPulse 5s infinite ease-in-out 1s;
}

.circuit-3 {
  width: 40%;
  height: 2px;
  bottom: 25%;
  right: 10%;
  animation: circuitPulse 3.5s infinite ease-in-out 0.5s;
}

.data-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-blue);
}

.node-1 { top: 29.4%; left: 20%; }
.node-2 { top: 29.4%; right: 39.4%; }
.node-3 { bottom: 24.3%; right: 10%; }
.node-4 { bottom: 24.3%; right: 50%; }

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--neon-blue);
  border-radius: 50%;
  animation: pulseRing 2s infinite;
}

.data-flow {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  box-shadow: 0 0 8px var(--neon-blue);
}

.flow-1 {
  width: 40%;
  top: 30%;
  left: 20%;
  animation: dataFlow 3s infinite linear;
}

.flow-2 {
  width: 30%;
  top: 45%;
  right: 30%;
  animation: dataFlow 4s infinite linear 1s;
}

.flow-3 {
  width: 35%;
  bottom: 25%;
  left: 15%;
  animation: dataFlow 3.5s infinite linear 0.5s;
}

.floating-data {
  position: absolute;
  color: rgba(144, 205, 244, 0.4);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.data-1 {
  top: 25%;
  left: 35%;
  animation: floatData 8s infinite ease-in-out;
}

.data-2 {
  top: 50%;
  right: 25%;
  animation: floatData 10s infinite ease-in-out 2s;
}

.data-3 {
  bottom: 30%;
  left: 25%;
  animation: floatData 9s infinite ease-in-out 1s;
}

.data-4 {
  bottom: 40%;
  right: 15%;
  animation: floatData 7s infinite ease-in-out 3s;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    padding-bottom: -60px;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 450px;
    margin-top: -90px;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.slide-content {
    max-width: fit-content;
    z-index: 2;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-content .img_border {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--neon-blue);
    padding: 5px;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.slide-content p {
    margin-top: 20px;
    color: #fff;
    text-transform: capitalize;
    font-size: 30px;
}

.slide h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.leader_name {
    font-size: 25px;
    margin: 25px;
}

.slide-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.slide-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.nav-dots {
    display: flex;
    gap: 12px;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: white;
    transform: scale(1.3);
}

.nav-arrows {
    display: flex;
    gap: 30px;
    padding: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neon-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-size: 1.2rem;
}

.nav-arrow:hover {
    background: white;
    transform: scale(1.1);
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@keyframes dataFlow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes floatData {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
    opacity: 0.3;
  }
  75% {
    transform: translateY(10px) translateX(15px);
    opacity: 0.6;
  }
}

@media (max-width: 1200px) {
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .contact-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: 0 0 48%;
        margin-bottom: 40px;
    }
    
    .client-logo {
        flex: 0 0 calc(33.333% - 40px);
    }
    
    .logo {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .building-features {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        flex: 0 0 calc(50% - 40px);
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .slider-container {
        height: 450px;
    }
    
    .slide {
        padding: 20px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide h2 {
        font-size: 1.8rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .client-logo {
        flex: 0 0 100%;
    }
    
    .contact-art {
        padding: 20px;
        height: 400px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide h2 {
        font-size: 1.5rem;
    }
    
    .slide p {
        font-size: 0.9rem;
    }
    
    .slider-controls {
        bottom: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: var(--neon-blue);
    cursor: pointer;
    z-index: 1001;
    background: rgba(144, 205, 244, 0.1);
    border: 1px solid rgba(144, 205, 244, 0.3);
    border-radius: 5px;
    padding: 8px;
    transition: var(--transition);
}

.mobile-menu:hover {
    background: rgba(144, 205, 244, 0.2);
    transform: scale(1.05);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: var(--transition);
    padding: 80px 30px 30px;
    border-left: 1px solid rgba(144, 205, 244, 0.3);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(144, 205, 244, 0.1);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 18px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    position: relative;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--neon-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-nav-links a:hover {
    color: var(--neon-blue);
    padding-left: 15px;
}

.mobile-nav-links a:hover::before {
    height: 20px;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    color: var(--neon-blue);
    cursor: pointer;
    background: rgba(144, 205, 244, 0.1);
    border: 1px solid rgba(144, 205, 244, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-menu:hover {
    background: rgba(144, 205, 244, 0.2);
    transform: rotate(90deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(144, 205, 244, 0.2);
    text-align: center;
}

.mobile-nav-footer .social-links {
    justify-content: center;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .nav-links li {
        display: none;
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 280px;
        padding: 70px 25px 25px;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
        padding: 16px 0;
    }
}