:root {
  --background: #030303;
  --surface: #0a0a0a;
  --primary: #6e31ff;
  --primary-glow: rgba(110, 49, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glow-text {
  background: linear-gradient(90deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.services-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #000000, #0e0d0d);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #67b26f);
    border-radius: 2px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(126, 125, 125, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.service-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #4a90e2, #67b26f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-intro {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-offerings h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.offering-group {
    margin-bottom: 1.5rem;
}

.offering-group h5 {
    color: #4a90e2;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offering-group ul {
    list-style: none;
    padding-left: 1.5rem;
}

.offering-group ul li {
    color: #ddd;
    margin-bottom: 0.5rem;
    position: relative;
}

.offering-group ul li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: #4a90e2;
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Add animation classes */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    min-height: 120vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    overflow: hidden;
    background: var(--background);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(110, 49, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 49, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), #9f6eff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.secondary {
    background: rgba(110, 49, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(110, 49, 255, 0.2);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px) rotate(-45deg);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    background: linear-gradient(45deg, var(--primary), #9f6eff);
    box-shadow: 0 8px 30px rgba(110, 49, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(110, 49, 255, 0.15);
    border-color: var(--primary);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(110, 49, 255, 0.3);
    color: var(--text-primary);
}

.feature-icon {
    font-size: 1.2rem;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    background: var(--primary);
    animation: floatAnimation 20s ease-in-out infinite;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -10%;
    animation-delay: -5s;
}

.glow-orb-2 {
    width: 600px;
    height: 600px;
    bottom: -20%;
    left: -10%;
    background: #9f6eff;
    animation-delay: -2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 30px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}