 :root {
        --brand-900: #083a34; /* deep green */
        --brand-800: #0b4a42;
        --brand-700: #0f5b50;
        --brand-100: #e6f3f1;
        --text-900: #0b1220;
        --muted: #6b7280;
        --card: #ffffff;
        --shadow: 0 10px 30px rgba(2, 24, 21, 0.12);
        --radius: 18px;
      }

      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
      }
      body {
        color: var(--text-900);
      }

      /* Better container padding on mobile (prevents edge touch) */
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }
      @media (min-width: 576px) {
        .container {
          padding-left: 12px;
          padding-right: 12px;
        }
      }
      @media (min-width: 992px) {
        .container {
          padding-left: 12px;
          padding-right: 12px;
        }
      }

      .bg-brand {
        background: var(--brand-900);
      }
      .text-brand {
        color: var(--brand-900);
      }

      .btn-brand {
        background: var(--brand-900);
        border-color: var(--brand-900);
        color: #fff;
        border-radius: 999px;
        padding: 0.75rem 1.1rem;
      }
      .btn-brand:hover {
        background: var(--brand-800);
        border-color: var(--brand-800);
        color: #fff;
      }

      .btn-outline-brand {
        border-color: rgba(8, 58, 52, 0.45);
        color: var(--brand-900);
        border-radius: 999px;
        padding: 0.75rem 1.1rem;
      }
      .btn-outline-brand:hover {
        background: var(--brand-900);
        border-color: var(--brand-900);
        color: #fff;
      }

      .nav-pill {
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 999px;
        padding: 0.5rem 0.75rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      }

      .sticky-top.navbar {
        backdrop-filter: blur(8px);
      }
      .navbar-dark .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.88);
      }
      .navbar-dark .navbar-nav .nav-link:hover {
        color: #fff;
      }

      /* HERO */
      .hero {
        position: relative;
        min-height: 78vh;
        display: flex;
        align-items: stretch;
        overflow: hidden;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(8, 58, 52, 0.96) 45%,
            rgba(8, 58, 52, 0.96) 100%
          ),
          url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80');
        background-size: cover;
        background-position: center;
        padding-bottom: 10px;
      }
      .hero .left {
        padding: 86px 0 48px;
      }
      .hero h1 {
        font-weight: 900;
        letter-spacing: -0.02em;
      }
      .hero .sub {
        max-width: 640px;
        color: rgba(255, 255, 255, 0.88);
      }

      /* Chips */
      .chip {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.35rem 0.65rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.82rem;
        white-space: nowrap;
      }

      .hero-form-card {
        background: #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        border: 1px solid rgba(8, 58, 52, 0.12);
        overflow: hidden;
      }
      .hero-form-card .head {
        background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
        color: #fff;
        padding: 18px 18px;
      }
      .hero-form-card .body {
        padding: 18px;
      }

      .section {
        padding: 72px 0;
      }
      .section-muted {
        background: linear-gradient(180deg, #ffffff 0%, var(--brand-100) 100%);
      }
      .kicker {
        color: var(--brand-700);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 0.78rem;
      }
      .h2 {
        font-weight: 900;
        letter-spacing: -0.01em;
      }
      .lead-sm {
        color: var(--muted);
      }

      .card-soft {
        background: var(--card);
        border: 1px solid rgba(8, 58, 52, 1) !important;
        border-radius: var(--radius);
        box-shadow: 0 12px 30px rgba(2, 24, 21, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        height: 100%;
      }
      .card-soft:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(2, 24, 21, 1);
      }
      .icon-badge {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(8, 58, 52, 0.1);
        color: var(--brand-900);
      }

      .tech-panel {
        border-radius: var(--radius);
        background: rgba(8, 58, 52, 0.06);
        border: 1px solid rgba(8, 58, 52, 0.1);
        padding: 22px;
      }
      .hr-v {
        width: 1px;
        background: rgba(8, 58, 52, 0.18);
        height: 100%;
        margin: 0 auto;
      }

      .timeline {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
      }
      .step {
        background: #fff;
        border: 1px solid rgba(8, 58, 52, 0.1);
        border-radius: var(--radius);
        padding: 16px;
        box-shadow: 0 10px 26px rgba(2, 24, 21, 0.06);
        text-align: center;
        height: 100%;
      }
      .step .n {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--brand-100);
        color: var(--brand-900);
        font-weight: 800;
        margin-bottom: 10px;
      }
      .step .t {
        font-weight: 800;
        font-size: 0.95rem;
      }
      .step .d {
        color: var(--muted);
        font-size: 0.88rem;
      }

      .portfolio-card {
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid rgba(8, 58, 52, 0.1);
        box-shadow: 0 14px 30px rgba(2, 24, 21, 0.08);
        background: #fff;
      }
      .portfolio-thumb {
        height: 220px;
        object-fit: cover;
        width: 100%;
      }
      .tagline {
        color: rgba(8, 58, 52, 0.75);
        font-size: 0.92rem;
      }

      .accordion-button:not(.collapsed) {
        color: #fff;
        background: var(--brand-900);
        box-shadow: none;
      }
      .accordion-item {
        border: 1px solid rgba(8, 58, 52, 0.12);
        border-radius: 14px;
        overflow: hidden;
        margin-bottom: 12px;
      }
      .accordion-button {
        font-weight: 700;
      }

      footer {
        background: #072b27;
        color: rgba(255, 255, 255, 0.88);
      }
      footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
      }
      footer a:hover {
        color: #fff;
      }

      /* ✅ MOBILE FIXES (main) */
      @media (max-width: 991px) {
        .hero {
          min-height: auto;
          background: linear-gradient(
              180deg,
              rgba(0, 0, 0, 0.58) 0%,
              rgba(0, 0, 0, 0.28) 48%,
              rgba(8, 58, 52, 0.96) 48%,
              rgba(8, 58, 52, 0.96) 100%
            ),
            url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80');
          background-size: cover;
        }
        .hero .left {
          padding: 72px 0 18px;
        }
        .timeline {
          grid-template-columns: repeat(2, 1fr);
        }
        .hero-form-card {
          margin-top: 14px;
        }
      }

      @media (max-width: 575px) {
        .timeline {
          grid-template-columns: 1fr;
        }

        /* heading/spacing for mobile */
        .hero h1 {
          font-size: 2rem;
          line-height: 1.15;
          margin-bottom: 0.6rem;
        }
        .hero .sub {
          font-size: 1rem !important;
        }

        /* Chips wrap nicely + spacing */
        .chip {
          margin-bottom: 6px;
        }

        /* Better buttons alignment on mobile */
        .hero .btn {
          width: 100%;
          justify-content: center;
        }

        /* Card padding consistent */
        .card-soft {
          border-radius: 16px;
        }
        .section {
          padding: 56px 0;
        }

        /* Form inputs look better on mobile */
        .form-control-lg {
          font-size: 1rem;
          padding: 0.75rem 0.9rem;
        }

        /* Portfolio image height */
        .portfolio-thumb {
          height: 190px;
        }
      }
      /* custom our services css code start */

      /* ===== Services (Professional Colored Cards) ===== */
      /* ===== Services: Solid Pro Cards (Left bar + corner ribbon + bottom glow) ===== */
      .services-solid .svc-card {
        position: relative;
        height: 100%;
        padding: 22px 22px 18px;
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
        border: 1px solid rgba(2, 6, 23, 0.1);
        box-shadow: 0 12px 34px rgba(2, 6, 23, 0.08);
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease,
          border-color 0.25s ease;
      }

      /* Left solid bar */
      .services-solid .svc-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 8px;
        height: 100%;
        background: var(--brand);
      }

      /* Bottom underline glow */
      .services-solid .svc-card::after {
        content: '';
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 10px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--brand),
          transparent
        );
        opacity: 0.22;
      }

      /* Corner ribbon */
      .services-solid .svc-ribbon {
        position: absolute;
        top: 14px;
        right: -40px;
        transform: rotate(35deg);
        background: var(--brand);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.3px;
        padding: 6px 54px;
        border-radius: 999px;
        box-shadow: 0 10px 24px rgba(2, 6, 23, 0.16);
        z-index: 3;
      }

      /* Icon pill */
      .services-solid .svc-icon {
        width: 22px;
        height: 30px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(2, 6, 23, 0.08);
        box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
        flex: 0 0 auto;
      }
      .services-solid .svc-icon i {
        font-size: 20px;
        color: var(--brand);
      }

      .services-solid .svc-title {
        margin: 0;
        font-weight: 900;
        font-size: 18px;
        color: #0b1220;
      }
      .services-solid .svc-text {
        margin: 8px 0 0;
        color: #566277;
        line-height: 1.55;
      }

      /* chips */
      .services-solid .svc-chips {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .services-solid .svc-chip {
        font-size: 12px;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(2, 6, 23, 0.1);
        background: rgba(2, 6, 23, 0.03);
        color: #0f172a;
      }

      /* hover */
      .services-solid .svc-card:hover {
        transform: translateY(-7px);
        border-color: rgba(2, 6, 23, 0.16);
        box-shadow: 0 18px 48px rgba(2, 6, 23, 0.14);
      }
      .services-solid .svc-card:hover::after {
        opacity: 0.42;
      }

      /* brand presets (match page theme) */
      .services-solid .b1 {
        --brand: #1d4ed8;
      } /* Royal Blue */
      .services-solid .b2 {
        --brand: #0ea5e9;
      } /* Sky */
      .services-solid .b3 {
        --brand: #7c3aed;
      } /* Purple */
      .services-solid .b4 {
        --brand: #16a34a;
      } /* Green */
      .services-solid .b5 {
        --brand: #f59e0b;
      } /* Amber */
      .services-solid .b6 {
        --brand: #ef4444;
      } /* Red */

      /* ✅ ADDED: New boxes colors (important) */
      .services-solid .b7 {
        --brand: #ec4899;
      } /* Pink - Graphic Design */
      .services-solid .b8 {
        --brand: #0f766e;
      } /* Teal - Photoshoot */
      .services-solid .b9 {
        --brand: #334155;
      } /* Slate - 3D Rendering */

      @media (max-width: 575px) {
        .services-solid .svc-card {
          padding: 18px 18px 16px;
          border-radius: 16px;
        }
        .services-solid .svc-title {
          font-size: 17px;
        }
        .services-solid .svc-ribbon {
          top: 12px;
        }
      }

      /* ONLY reduce font size for long title */
      .svc-title.small-title {
        font-size: 16px;
        line-height: 1.3;
      }

      /* custom our services css code end */

      /* about us css code start */
      /* ===== About Section Styling ===== */
      .about-section {
        padding: 80px 0;
        background: #ffffff;
      }

      .about-section .kicker {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.2px;
        color: #083a34;
        text-transform: uppercase;
      }

      .about-section h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0f172a;
      }

      .about-section .lead-text {
        max-width: 820px;
        margin: 0 auto;
        font-size: 17px;
        line-height: 1.7;
        color: #5b6473;
      }

      /* Cards */
      .about-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 26px;
        height: 100%;
        border: 1px solid #083a34;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 14px;
        height: 100%;
        background: linear-gradient(180deg, #083a34, #083a34);
      }

      .about-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
      }

      .about-icon {
        width: 48px;
        height: 48px;
        background: #f1f5f9;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
      }

      .about-icon i {
        font-size: 22px;
        color: #083a34;
      }

      .about-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #0f172a;
      }

      .about-desc {
        font-size: 15px;
        color: #5b6473;
        line-height: 1.6;
      }

      /* about us code end */