/* ========================================
   TS INFOTECH - PREMIUM DARK SAAS THEME
======================================== */

:root {
    --primary: #14B8A6;
    --primary-light: #5EEAD4;
    --dark: #0F172A;
    --dark-2: #111827;
    --dark-3: #1E293B;
    --white: #FFFFFF;
    --text: #CBD5E1;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Segoe UI',sans-serif;
    overflow-x: hidden;
}

/* NAVBAR */

.custom-navbar {
    background: rgba(15,23,42,.80);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16,185,129,.15);
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-link {
    color: #fff !important;
    transition: .3s;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

/* HERO */

.hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at top right, rgba(16,185,129,.30), transparent 30% ), radial-gradient( circle at bottom left, rgba(52,211,153,.20), transparent 30% ), linear-gradient( 135deg, #0F172A, #111827, #0F172A );
}

.hero-glow {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: #10B981;
    filter: blur(200px);
    opacity: .25;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text);
}

.hero-badge {
    background: rgba(16,185,129,.15);
    color: #34D399;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(16,185,129,.20);
}

/* BUTTONS */

.btn-primary {
    background: #10B981;
    border: none;
    border-radius: 50px;
}

    .btn-primary:hover {
        background: #059669;
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(16,185,129,.35);
    }

.btn-outline-light {
    border-radius: 50px;
    transition: .3s;
}

    .btn-outline-light:hover {
        transform: translateY(-4px);
    }

/* GLASS EFFECT */

.glass-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 25px;
    transition: .3s;
}

    .glass-card:hover {
        transform: translateY(-8px);
        border-color: #10B981;
        box-shadow: 0 20px 50px rgba(16,185,129,.20);
    }

/* TECH STACK */

.tech-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 20px;
    font-weight: 600;
    transition: .3s;
}

    .tech-card:hover {
        transform: translateY(-8px);
        border-color: #10B981;
        color: #10B981;
    }

/* STATS */

.stats-number {
    color: #10B981;
    font-size: 3rem;
    font-weight: 800;
}

/* SERVICES */

.service-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        border-color: #10B981;
        box-shadow: 0 20px 50px rgba(16,185,129,.25);
    }

    .service-card h3 {
        color: var(--primary);
    }

/* SECTIONS */

section {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5 {
    color: #fff;
}

/* LINKS */

a {
    text-decoration: none;
}

/* FOOTER */

.footer {
    background: #0B1220;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 60px 0 20px;
}

    .footer a {
        color: var(--text);
    }

        .footer a:hover {
            color: var(--primary);
        }

/* WHATSAPP BUTTON */

.whatsapp-btn {
    background: #10B981;
    box-shadow: 0 10px 30px rgba(16,185,129,.40);
}

    .whatsapp-btn:hover {
        transform: scale(1.15);
        color: #fff;
    }

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    background: #10B981;
    z-index: 9999;
}
/* SCROLLBAR */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

/* MOBILE */

@media(max-width:768px) {

    .hero-title {
        font-size: 2.6rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-badge {
        display: block;
        text-align: center;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
}

.portfolio-card {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(255,255,255,.08);
}

    .portfolio-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(16,185,129,.20);
    }

    .portfolio-card img {
        transition: .4s;
    }

    .portfolio-card:hover img {
        transform: scale(1.05);
    }
