* {
    transition: 0.3s;
}
body {
    background-color: #0b0f1a;
    color: white;
    margin: 0;
    font-family: Arial, sans-serif;
  background: radial-gradient(circle at 30% 20%, rgba(0,212,255,0.15), transparent 40%),
                linear-gradient(180deg, #0b0f1a, #02040a);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: radial-gradient(circle at 20% 30%, rgba(0,212,255,0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(23, 27, 27, 0.1), transparent 40%);

    pointer-events: none;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
                url("bg.png") center/cover no-repeat;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-logo {
    width: 220px;
    max-width: 60%;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}
.hero-card {
    max-width: 750px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.12);
    margin-top: 20px;
}
.hero-subtitle {
    color: #00d4ff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.35);
}

.hero-text {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}
.hero-logo {
    animation: logoFade 1.2s ease forwards;
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.hero-card {
    animation: cardFade 1.4s ease forwards;
}

@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-bg {
    background-attachment: fixed;
}
@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 40px 0;
    }

    .hero-logo {
        width: 130px;
        margin-bottom: 20px;
    }

    .hero-card {
        padding: 20px;
        border-radius: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 12px;
    }
}
@keyframes moveLight {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
    100% { transform: translate(0, 0); }
}

body::before {
    animation: moveLight 10s infinite ease-in-out;
}
.service-card {
    backdrop-filter: blur(10px);
}
img {
    max-width: 100%;
    height: auto;
}
.founder-image img {
    border-radius: 10px;
}
.clients-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.clients-logos img {
    width: 120px;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
/*.services .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
.services h2 {
    text-align: center !important;
}
.service-card h3 {
    color: #00d4ff;
}
.service-card:hover {
    transform: translateY(-5px);
}
.btn:hover {
    transform: scale(1.05);
}
.btn {
    display: inline-block;
    background-color: #00d4ff;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    background: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
}
section:hover {
    transform: translateY(-5px);
}
section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    opacity: 0.9;
}
h1 {
    color: #00d4ff;
}
.extra-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.extra-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 200px;
}
.support {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid #00d4ff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}
.support .btn {
    margin-top: 15px;
    box-shadow: 0 0 15px #00d4ff;
}
.service-card,
.extra-card {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}
.service-card:hover,
.extra-card:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}
section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
h2, h3 {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}
.clients-logos img:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .clients-logos img {
        width: 80px;
    }
     h1 {
        font-size: 24px;
    }
    .btn {
        box-sizing: border-box;
        display: block;
        width: 100%;
        padding: 12px
        text-align: center;
    }
    .services .container {
        grid-template-columns: 1fr;
    }
     .container {
        padding: 15px;
    }
}