@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0a0e17;
    --bg-darker: #05070a;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-cyan: #00f0ff;
    --accent-purple: #7b2cbf;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
}

/* Glassmorphism Navbar */
.navbar-glass {
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-cyan);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, rgba(10, 14, 23, 0) 70%);
    top: -200px;
    left: -200px;
    z-index: -1;
    border-radius: 50%;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(10, 14, 23, 0) 70%);
    bottom: -100px;
    right: -100px;
    z-index: -1;
    border-radius: 50%;
}

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
}

/* Tech Stack Marquee */
.tech-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: var(--bg-darker);
    padding: 30px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.tech-marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.tech-icon {
    display: inline-flex;
    align-items: center;
    margin: 0 40px;
    color: var(--text-secondary);
    font-size: 24px;
    font-weight: 600;
}

.tech-icon i {
    margin-right: 10px;
    font-size: 32px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--card-border);
    padding-top: 60px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Review Marquee */
.review-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}
.review-marquee::before, .review-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.review-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}
.review-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}
.review-marquee-content {
    display: inline-flex;
    animation: reviewMarquee 40s linear infinite;
    gap: 24px;
}
.review-marquee:hover .review-marquee-content {
    animation-play-state: paused;
}
.review-card {
    width: 450px;
    white-space: normal;
    flex-shrink: 0;
    padding: 30px;
}
@keyframes reviewMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}
