html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #020617;
    color: white;
}

/* HEADER */

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
}

main {
    padding-top: 80px;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: auto;
}

.brand-logo {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 4px 12px;
    border-radius: 6px;
    margin-right: 8px;
}

.nav-link {
    color: #cbd5e1 !important;
    margin: 0 16px;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

    .nav-link:hover {
        color: white !important;
    }

    .nav-link.active {
        color: white !important;
        font-weight: 600;
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: #2563eb;
        }

/* GET IN TOUCH BUTTON */

.btn-get-in-touch {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

    .btn-get-in-touch:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

    .btn-get-in-touch .arrow {
        font-size: 1.1em;
    }

/* HERO */

.hero-section {
    min-height: 100vh;
    background: linear-gradient( rgba(2,6,23,0.82), rgba(2,6,23,0.92) ), url('/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #cbd5e1;
    max-width: 750px;
    margin: auto;
}

/* SERVICES SECTION */

.services-section {
    padding: 100px 0;
}

.services-hero {
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.badge-icon {
    font-size: 1.2em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SERVICE CARDS */

.service-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

    .service-card:hover {
        transform: translateY(-12px);
        border-color: rgba(37, 99, 235, 0.5);
        background: rgba(15, 23, 42, 0.8);
        box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    }

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

    .service-icon-box.mobile-icon {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
    }

    .service-icon-box.web-icon {
        background: linear-gradient(135deg, #3b82f6, #1e40af);
    }

    .service-icon-box.design-icon {
        background: linear-gradient(135deg, #14b8a6, #0d9488);
    }

    .service-icon-box.enterprise-icon {
        background: linear-gradient(135deg, #f59e0b, #d97706);
    }

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.service-description {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

    .service-features li {
        color: #e2e8f0;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
    }

.feature-check {
    color: #60a5fa;
    font-weight: 700;
    min-width: 20px;
}

.service-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

    .service-link:hover {
        color: #93c5fd;
        gap: 12px;
    }

    .service-link .arrow {
        transition: transform 0.3s;
    }

    .service-link:hover .arrow {
        transform: translateX(4px);
    }

/* CTA SECTION */

.cta-section {
    margin-top: 80px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(29, 78, 216, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.btn-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

    .btn-cta:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

/* BUTTONS */

.btn-primary-custom {
    background: #2563eb;
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-primary-custom:hover {
        background: #1d4ed8;
        color: white;
    }

.btn-outline-custom {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-outline-custom:hover {
        background: white;
        color: black;
    }

/* SECTION */

.section {
    padding: 100px 0;
}

/* CONTACT FORM */

.form-control {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    padding: 14px;
    border-radius: 8px;
}

    .form-control:focus {
        background: #0f172a;
        color: white;
        box-shadow: none;
        border-color: #2563eb;
    }

    .form-control::placeholder {
        color: #64748b;
    }

/* RESPONSIVE */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 30px;
    }

    .cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .nav-link {
        margin: 10px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .service-card {
        padding: 24px;
    }

    .service-icon-box {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

        .cta-box h2 {
            font-size: 1.5rem;
        }

    .btn-cta {
        padding: 12px 24px;
    }

    .btn-get-in-touch {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* HOME PAGE HERO SECTION */

.hero-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.8));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15), transparent 50%), radial-gradient(circle at 80% 80%, rgba(29, 78, 216, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(37, 99, 235, 0.5);
    color: #60a5fa;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

    .btn-secondary:hover {
        background: rgba(37, 99, 235, 0.1);
        border-color: rgba(37, 99, 235, 0.8);
        color: #93c5fd;
        transform: translateY(-2px);
    }

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 8px;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* SERVICES OVERVIEW SECTION */

.services-overview-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.5), rgba(15, 23, 42, 0.3));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 24px 0;
    line-height: 1.2;
}

.section-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PRODUCTS SECTION */

.products-section {
    padding: 100px 0;
}

.product-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

    .product-card:hover {
        transform: translateY(-12px);
        border-color: rgba(37, 99, 235, 0.5);
        background: rgba(15, 23, 42, 0.8);
        box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    }

    .product-card.coming-soon {
        opacity: 0.85;
    }

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.product-description {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-tech {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tech-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

    .tech-badge.coming-badge {
        background: rgba(168, 85, 247, 0.15);
        color: #d8b4fe;
        border-color: rgba(168, 85, 247, 0.3);
    }

.btn-product-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    align-self: flex-start;
}

    .btn-product-link:hover {
        color: #93c5fd;
        gap: 12px;
    }

/* TECHNOLOGY STACK SECTION */

.tech-stack-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(2, 6, 23, 0.5));
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

    .tech-item:hover {
        transform: translateY(-8px);
        border-color: rgba(37, 99, 235, 0.5);
        background: rgba(15, 23, 42, 0.8);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    }

.tech-logo {
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.tech-name {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
}

/* FINAL CTA SECTION */

.cta-final-section {
    padding: 100px 0;
}

.cta-content {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(29, 78, 216, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

    .cta-content .cta-icon {
        font-size: 4rem;
        margin-bottom: 24px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 16px;
        color: white;
    }

    .cta-content p {
        color: #cbd5e1;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

    .btn-cta-primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(37, 99, 235, 0.5);
    color: #60a5fa;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

    .btn-cta-secondary:hover {
        background: rgba(37, 99, 235, 0.1);
        border-color: rgba(37, 99, 235, 0.8);
        color: #93c5fd;
        transform: translateY(-2px);
    }

/* HOME PAGE RESPONSIVE */

@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-content {
        padding: 60px 30px;
    }

        .cta-content h2 {
            font-size: 2rem;
        }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-get-in-touch,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .tech-item {
        padding: 20px 15px;
    }

    .tech-logo {
        font-size: 2rem;
    }

    .cta-content {
        padding: 40px 20px;
    }

        .cta-content h2 {
            font-size: 1.6rem;
        }

        .cta-content p {
            font-size: 1rem;
        }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
