:root {
      --brand: #FF5C00;
      --brand-dark: #cc4900;
      --dark: #0A0A0A;
      --dark2: #141414;
      --dark3: #1e1e1e;
      --card: #181818;
      --text: #e8e8e8;
      --muted: #888;
      --border: rgba(255,255,255,0.07);
      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--dark);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }
    a { text-decoration: none; }
    section { padding: 90px 0; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 3px;
      text-transform: uppercase; color: var(--brand);
      background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.2);
      padding: 6px 14px; border-radius: 2px; margin-bottom: 18px;
    }
    .section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; }
    .section-title span { color: var(--brand); }
    .btn-brand {
      background: var(--brand); color: #fff; border: none;
      padding: 14px 32px; border-radius: 3px; font-family: var(--font-head);
      font-weight: 700; font-size: 15px; letter-spacing: .5px;
      transition: all .25s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-brand:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,92,0,.3); color: #fff; }
    .btn-outline-brand {
      background: transparent; color: var(--brand); border: 1px solid var(--brand);
      padding: 13px 30px; border-radius: 3px; font-family: var(--font-head);
      font-weight: 700; font-size: 14px; transition: all .25s; cursor: pointer;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline-brand:hover { background: var(--brand); color: #fff; }

    /* ============================
       NAVBAR
    ============================ */
    #mainNav {
      position: fixed; top: 0; width: 100%; z-index: 1000;
      background: rgba(10,10,10,0.9); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: all .3s;
    }
    .navbar-brand { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff !important; }
    .navbar-brand span { color: var(--brand); }
    .nav-link { color: var(--muted) !important; font-size: 14px; font-weight: 500; padding: 8px 14px !important; transition: color .2s; }
    .nav-link:hover, .nav-link.active { color: #fff !important; }
    .nav-cta { background: var(--brand); color: #fff !important; border-radius: 3px; padding: 8px 20px !important; font-weight: 700; font-family: var(--font-head); }
    .nav-cta:hover { background: var(--brand-dark) !important; color: #fff !important; }
    .navbar-toggler { border-color: var(--border); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ============================
       HERO
    ============================ */
    #home {
      min-height: 100vh; display: flex; align-items: center;
      padding-top: 80px;
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,92,0,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,92,0,0.06) 0%, transparent 60%);
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,92,0,0.1); border: 1px solid rgba(255,92,0,0.25);
      color: var(--brand); font-size: 13px; font-weight: 600;
      padding: 6px 14px; border-radius: 50px; margin-bottom: 24px;
      animation: fadeUp .6s ease both;
    }
    .hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); display: block; animation: pulse 1.5s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700;
      line-height: 1.05; letter-spacing: -1px;
      animation: fadeUp .7s .1s ease both;
    }
    .hero-title .accent { color: var(--brand); position: relative; display: inline-block; }
    .hero-subtitle { font-size: 18px; color: var(--muted); max-width: 520px; margin: 20px 0 36px; animation: fadeUp .7s .2s ease both; }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }
    .hero-stats { display: flex; gap: 40px; margin-top: 60px; animation: fadeUp .7s .4s ease both; }
    .stat-item .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: #fff; }
    .stat-item .num span { color: var(--brand); }
    .stat-item .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
    .hero-visual {
      position: relative; animation: fadeUp .8s .2s ease both;
    }
    .hero-card-main {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,.5);
    }
    .hero-card-bar { background: var(--dark3); padding: 12px 16px; display: flex; gap: 6px; align-items: center; }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot.r { background: #FF5F57; } .dot.y { background: #FEBC2E; } .dot.g { background: #28C840; }
    .hero-card-body { padding: 24px; font-family: 'Courier New', monospace; font-size: 13px; }
    .code-line { margin: 3px 0; }
    .code-kw { color: #c792ea; } .code-fn { color: #82aaff; } .code-str { color: #c3e88d; }
    .code-com { color: #546e7a; } .code-tag { color: var(--brand); }
    .floating-badge {
      position: absolute; background: var(--dark3); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 24px rgba(0,0,0,.4); animation: float 3s ease-in-out infinite;
    }
    .floating-badge .icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,92,0,.15); display: flex; align-items: center; justify-content: center; font-size: 18px; }
    .floating-badge .info .ttl { font-size: 12px; font-weight: 700; color: #fff; font-family: var(--font-head); }
    .floating-badge .info .sub { font-size: 11px; color: var(--muted); }
    .fb1 { bottom: -20px; left: -30px; }
    .fb2 { top: -16px; right: -20px; }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

    /* ============================
       ABOUT
    ============================ */
    #about { background: var(--dark2); }
    .about-img-grid {
      display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
      gap: 10px; height: 480px;
    }
    .about-img-grid .img-item {
      border-radius: 8px; overflow: hidden;
      background: var(--card); border: 1px solid var(--border);
      position: relative;
    }
    .about-img-grid .img-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .about-img-grid .img-item:hover img { transform: scale(1.05); }
    .about-img-grid .img-item.tall { grid-row: span 2; }
    .about-img-grid .img-item .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
    }
    .about-list { list-style: none; padding: 0; }
    .about-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
    .about-list li:last-child { border: none; }
    .about-list .check { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,92,0,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand); font-size: 11px; margin-top: 2px; }

    /* ============================
       PACKAGES
    ============================ */
    #packages { background: var(--dark); }
    .pkg-tabs .nav-link {
      color: var(--muted) !important; border: 1px solid var(--border) !important;
      border-radius: 3px !important; padding: 10px 24px !important;
      font-family: var(--font-head); font-weight: 600; font-size: 14px;
      background: transparent !important; transition: all .2s; margin: 4px;
    }
    .pkg-tabs .nav-link.active { background: var(--brand) !important; border-color: var(--brand) !important; color: #fff !important; }
    .pkg-tabs .nav-link:hover:not(.active) { border-color: var(--brand) !important; color: var(--brand) !important; }
    .pkg-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; padding: 32px 26px;
      transition: all .3s; position: relative; overflow: hidden; height: 100%;
    }
    .pkg-card:hover { border-color: rgba(255,92,0,.4); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
    .pkg-card.featured { border-color: var(--brand); }
    .pkg-badge { position: absolute; top: 14px; right: 14px; background: var(--brand); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; }
    .pkg-icon { width: 52px; height: 52px; border-radius: 10px; background: rgba(255,92,0,.1); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
    .pkg-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
    .pkg-price { font-size: 2.2rem; font-weight: 800; font-family: var(--font-head); color: var(--brand); }
    .pkg-price span { font-size: 14px; color: var(--muted); font-weight: 400; }
    .pkg-features { list-style: none; padding: 0; margin: 20px 0; }
    .pkg-features li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
    .pkg-features li:last-child { border: none; }
    .pkg-features li i { color: var(--brand); font-size: 12px; }

    /* ============================
       PORTFOLIO
    ============================ */
    #portfolio { background: var(--dark2); }
    .portfolio-grid { columns: 3; gap: 14px; }
    @media (max-width: 992px) { .portfolio-grid { columns: 2; } }
    @media (max-width: 576px) { .portfolio-grid { columns: 1; } }
    .port-item {
      break-inside: avoid; margin-bottom: 14px;
      border-radius: 8px; overflow: hidden; position: relative; cursor: pointer;
      border: 1px solid var(--border);
    }
    .port-item img { width: 100%; display: block; transition: transform .4s; }
    .port-item:hover img { transform: scale(1.05); }
    .port-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 60%);
      opacity: 0; transition: opacity .3s;
      display: flex; align-items: flex-end; padding: 16px;
    }
    .port-item:hover .port-overlay { opacity: 1; }
    .port-label { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; }
    .port-sub { font-size: 12px; color: var(--brand); }
    .port-zoom { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: opacity .3s; }
    .port-item:hover .port-zoom { opacity: 1; }

    /* ============================
       SERVICES
    ============================ */
    #services { background: var(--dark); }
    .service-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; padding: 28px; transition: all .3s;
      height: 100%;
    }
    .service-card:hover { border-color: rgba(255,92,0,.4); transform: translateY(-4px); }
    .service-icon-wrap { width: 56px; height: 56px; border-radius: 12px; background: rgba(255,92,0,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; overflow: hidden; }
    .service-icon-wrap img { width: 36px; height: 36px; object-fit: contain; }
    .service-card h5 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
    .service-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }
    .tech-logo-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 50px; justify-content: center; }
    .tech-badge {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 6px; padding: 8px 16px; font-size: 12px; font-weight: 600;
      color: var(--muted); display: flex; align-items: center; gap: 6px;
      transition: all .2s; cursor: default;
    }
    .tech-badge:hover { border-color: var(--brand); color: var(--brand); }
    .tech-badge i, .tech-badge span.dot-icon { color: var(--brand); }

    /* ============================
       CONTACT
    ============================ */
    #contact { background: var(--dark2); }
    .contact-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .contact-info-side { background: var(--dark); padding: 48px 36px; }
    .contact-form-side { padding: 48px 36px; }
    .contact-info-side h3 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
    .contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
    .ci-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(255,92,0,.1); display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
    .ci-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
    .ci-val { font-size: 15px; color: #fff; font-weight: 500; }
    .form-control, .form-select {
      background: var(--dark3) !important; border: 1px solid var(--border) !important;
      color: #fff !important; border-radius: 6px !important; padding: 13px 16px !important;
      font-family: var(--font-body) !important;
    }
    .form-control:focus, .form-select:focus { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(255,92,0,.15) !important; }
    .form-control::placeholder { color: var(--muted) !important; }
    .form-label { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }

    /* ============================
       FOOTER
    ============================ */
    footer {
      background: #050505; border-top: 1px solid var(--border);
      padding: 50px 0 20px;
    }
    .footer-brand { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: #fff; }
    .footer-brand span { color: var(--brand); }
    .footer-desc { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 260px; }
    .footer-heading { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 16px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
    .footer-links a:hover { color: var(--brand); }
    .social-btns { display: flex; gap: 10px; margin-top: 16px; }
    .social-btn { width: 38px; height: 38px; border-radius: 8px; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
    .social-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
    .footer-bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 20px; }
    .footer-bottom p { color: var(--muted); font-size: 13px; margin: 0; }

    /* ============================
       MODALS
    ============================ */
    .modal-content { background: var(--card); border: 1px solid var(--border); border-radius: 14px; color: var(--text); }
    .modal-header { border-bottom: 1px solid var(--border); }
    .modal-footer { border-top: 1px solid var(--border); }
    .btn-close { filter: invert(1) opacity(.6); }
    .modal-title { font-family: var(--font-head); font-weight: 700; }

    /* Portfolio modal */
    .port-modal-img-wrap { position: relative; background: var(--dark); border-radius: 8px; overflow: hidden; height: 100%; min-height: 320px; }
    .port-modal-imgs img { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; }
    .port-modal-info h4 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }
    .port-tag { display: inline-block; background: rgba(255,92,0,.1); border: 1px solid rgba(255,92,0,.25); color: var(--brand); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin: 3px; }
    .carousel-indicators [data-bs-target] { background-color: var(--brand); }

    /* Call popup */
    #callModal .modal-body { padding: 32px; }
    #callModal .modal-header { padding: 24px 32px 0; border: none; }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* Misc */
    .divider { height: 1px; background: var(--border); margin: 20px 0; }
    ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: var(--dark); } ::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 10px; }

    .social-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #111;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .social-btn:hover {
        transform: scale(1.1);
    }

    /* Brand colors on hover */
    .social-btn[title="Upwork"]:hover {
        background: #6fda44;
    }

    .social-btn[title="Fiverr"]:hover {
        background: #1dbf73;
    }



.fiverr-btn {

    color: #fff;
}
.fiverr-text {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 17px;
    line-height: 1;
    letter-spacing: -1px;
}
