/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #0b0f19;
    color: #fff;
    scroll-behavior: smooth;
     overflow-x: hidden;
}

.container {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}

.row {
    margin-right: -15px;
}

/* NAVBAR UPGRADE */
.navbar {
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-wrapper {
    position: relative;
}

.navbar-brand span {
    font-weight: 600;
    font-size: 18px;
}

/* NAV MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    position: relative;
    color: #aaa;
    font-weight: 500;
    transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #75E115;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* ================= HERO IMPROVEMENT ================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* GRADIENT GLOW BACKGROUND */
.hero-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(117,225,21,0.15), transparent);
    filter: blur(80px);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* HERO IMAGE FLOAT */
.hero-img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.btn-main {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #75E115;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(117, 225, 21, 0.4);
}

/* ================= SERVICES ================= */
.services-home {
    padding: 80px 0;
}

.card {
    position: relative;
    overflow: hidden;
    background: #111827;
    border: none;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.4s;
    cursor: pointer;
}

.card i {
    font-size: 30px;
    color: #75E115;
}

.card h5 {
    font-weight: 600;
}

.card p {
    color: #aaa;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ================= WHY US ================= */
.why-us {
    padding: 80px 0;
    background: #0f172a;
}

.why-us i {
    font-size: 35px;
    color: #75E115;
}

/* ================= PORTFOLIO ================= */
.portfolio-preview {
    padding: 80px 0;
}

.portfolio-preview img {
    border-radius: 15px;
    transition: 0.4s;
}

.portfolio-preview img:hover {
    transform: scale(1.05);
}

/* CTA BUTTON */
.btn-nav {
    background: #75E115;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(117, 225, 21, 0.4);
}


/* FOOTER */
.site-footer {
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.brand-text {
    color: #75E115;
}

/* LINKS */
.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #75E115;
    padding-left: 5px;
}

/* CTA BUTTON */
.btn-footer {
    display: inline-block;
    background: #75E115;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(117, 225, 21, 0.4);
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #111827;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #75E115;
    color: #000;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #888;
    font-size: 14px;
}

/* ================= MOBILE MENU ================= */
.toggle-btn {
    display: none;
}

@media(max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b0f19;
        flex-direction: column;
        padding: 20px 0;
        display: none;
        gap: 15px;
    }

    .nav-menu.show {
        display: flex;
    }

    .toggle-btn {
        display: block;
        cursor: pointer;
    }

    .hero-section h1 {
        font-size: 32px;
    }
}