/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #070d14;
    --bg-card: rgba(15, 25, 40, 0.7);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-blue: #00d4ff;
    --accent-blue-hover: #00b0d6;
    --accent-orange: #ff7b00;
    --navbar-bg: rgba(7, 13, 20, 0.85);

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #000;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-blue);
    font-size: 2.2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--accent-blue);
}

.nav-links .btn-primary {
    margin-left: 30px;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_bg_hq_1772232010852.png') no-repeat center center/cover;
    z-index: -1;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 span {
    background: -webkit-linear-gradient(45deg, var(--accent-blue), var(--accent-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* About Section */
.about {
    background-color: var(--bg-dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(15, 25, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: 5px;
}

.founder-title {
    color: var(--accent-orange);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list .icon {
    color: var(--accent-orange);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Services */
.services {
    background-color: #0b111a;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background: url('assets/services_img_1772231533840.png') no-repeat center right/cover;
    opacity: 0.05;
    z-index: 0;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.service-icon {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.service-card:hover .service-icon {
    color: rgba(0, 212, 255, 0.2);
    -webkit-text-stroke: 1px var(--accent-blue);
}

/* Vision */
.vision {
    position: relative;
    padding: 150px 0;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 13, 20, 0.8), rgba(7, 13, 20, 0.95)), url('assets/hero_bg_hq_1772232010852.png') no-repeat center center/cover;
    background-attachment: fixed;
    z-index: 0;
}

.vision-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.vision-content p {
    font-size: 1.3rem;
}

.vision-content strong {
    color: var(--accent-blue);
}

/* Footer */
.footer {
    background-color: #05090e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info span {
    color: var(--accent-blue);
}

.footer h4 {
    color: var(--text-primary);
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--accent-blue);
}

.contact-icon {
    font-size: 1.2rem;
    margin-right: 15px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.contact-form-container,
.contact-info {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 15px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-list li a:hover {
    color: var(--accent-blue);
}

/* Animations & Responsive */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-up {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .experience-badge .number {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}