:root {
    --bg-dark: #050a14;
    --bg-darker: #020408;
    --primary-blue: #00f2ff;
    /* Electric Blue */
    --secondary-blue: #0066cc;
    --text-main: #ffffff;
    --text-muted: #b0b8c4;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --pad-section: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-main);
}

.highlight {
    color: var(--primary-blue);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

/* Glassmorphism Classes */
.glass-header {
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
    border-color: rgba(0, 242, 255, 0.3);
}

/* Header */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo .dot {
    color: var(--primary-blue);
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a:hover {
    color: var(--primary-blue);
}

.btn-cta {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--primary-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Align content to the center */
    position: relative;
    overflow: hidden;
    /* removed padding-right 300px */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background-home.jpg') no-repeat center center/cover;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(5, 10, 20, 0.4) 0%, var(--bg-dark) 90%);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 20px;
    justify-content: center;
    /* Center buttons */
}

.hero-content {
    /* margin-left removed for full centering */
    position: relative;
    z-index: 2;
    text-align: center;
    /* Center text */
    max-width: 800px;
    /* Increased max-width slightly for balance */
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--bg-darker);
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
}

.btn-outline {
    border: 1px solid var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight-text {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 1rem 0;
}

.visual-card {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.icon-large {
    font-size: 8rem;
    opacity: 0.2;
    filter: drop-shadow(0 0 20px var(--primary-blue));
}

/* Contact Section */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info .item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-info .item:last-child {
    border-bottom: none;
}

.contact-info .label {
    color: var(--text-muted);
}

.contact-info .value {
    font-weight: 600;
    text-align: right;
}

.contact-info a:hover {
    color: var(--primary-blue);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
}