    /* PAGE BASICS */
    html,
    body {
      height: 100%;
      margin: 0;
      background: #f8f9fa;
      overflow-x: hidden;
      /* keep one scrolling area (page-content) */
      -webkit-font-smoothing: antialiased;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    /* Prevent content hiding under fixed navbar */
    [id] {
      scroll-margin-top: 80px;
      /* adjust if navbar height changes */
      scroll-padding-top: 80px;
      /* sometimes helps more than margin */
    }

    .spacer {
      height: 80px;
      /* must match scroll-margin-top */
    }

    /* Force smooth scrolling (remove media query temporarily for testing) */
    html {
      scroll-behavior: smooth;
    }

    /* Re-add reduced-motion check later if needed */
    @media (prefers-reduced-motion: no-preference) {
      html {
        scroll-behavior: smooth;
      }
    }



    /* Chrome, Edge, Safari */
    ::-webkit-scrollbar {
      display: none;
    }

    /* Firefox */
    html {
      scrollbar-width: none;
    }

    /* NAVBAR (light glass + subtle blur) */
    .navbar-glass {
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
      box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
      height: 64px;
      z-index: 1000;
      /* keep navbar under the offcanvas when open */
      transition: transform .28s cubic-bezier(.2, .9, .3, 1), background .28s ease;
    }

    .navbar-glass .navbar-brand {
      font-weight: 700;
      letter-spacing: .2px;
    }

    .navbar-glass .nav-link {
      color: #111;
      font-weight: 500;
    }

    .navbar-toggler {
      border: none;
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      transition: transform .28s ease;
    }

    /* animate the default bootstrap icon by rotating wrapper */
    .navbar-toggler.toggled .navbar-toggler-icon {
      transform: rotate(90deg) scale(1.05);
      transition: transform .34s cubic-bezier(.2, .9, .3, 1);
    }

    .navbar-toggler-icon {
      transition: transform .28s ease;
      will-change: transform;
    }

    /* -------------------------
       ADDED: desktop-only navbar hover effect
       This is the only change — it adds the underline + gentle lift
       for the desktop navbar links and does nothing else.
       ------------------------- */

    .d-none.d-lg-flex .navbar-nav .nav-link {
      position: relative;
      /* for the ::after underline */
      padding: .35rem .5rem;
      border-radius: 6px;
      overflow: visible;
      transition: transform .18s cubic-bezier(.2, .9, .3, 1), color .18s ease;
      -webkit-font-smoothing: antialiased;
    }

    .d-none.d-lg-flex .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 10%;
      bottom: 6px;
      height: 2px;
      width: 0;
      background: linear-gradient(90deg, #7b3fe4, #ff7a59);
      border-radius: 2px;
      transition: width .26s cubic-bezier(.2, .9, .3, 1);
    }

    .d-none.d-lg-flex .navbar-nav .nav-link:hover::after,
    .d-none.d-lg-flex .navbar-nav .nav-link:focus::after,
    .d-none.d-lg-flex .navbar-nav .nav-link.active::after {
      width: 80%;
    }

    .d-none.d-lg-flex .navbar-nav .nav-link:hover {
      transform: translateY(-3px);
    }

    /* KEEP THE WHOLE PAGE SCROLLABLE VIA .page-content */
    .spacer {
      height: 64px;
    }

    /* space for fixed navbar */
    .page-content {
      height: calc(100% - 64px);
      overflow-y: auto;
      background: #fff;
      padding: 1.25rem;
    }

    /* OFFCANVAS BACKDROP: transparent (no dark overlay) */
    .offcanvas-backdrop {
      background-color: transparent !important;
      backdrop-filter: none !important;
    }

    /* OFFCANVAS PANEL (RIGHT) - glassy, above navbar so it is fully visible */
    .offcanvas {
      z-index: 2000 !important;
      /* ensure offcanvas sits above navbar */
      transition: transform .28s ease;
    }

    #offcanvasNavbar {
      --bs-offcanvas-width: 70%;
      width: 70% !important;
      min-height: 100vh;
      right: 0;
      background: rgba(255, 255, 255, 0.36);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: -8px 0 24px rgba(0, 0, 0, 0.10);
      border-left: 1px solid rgba(255, 255, 255, 0.45);
      padding: 0;
      overflow-y: auto;
    }

    /* make sure the offcanvas-header doesn't get visually obscured */
    #offcanvasNavbar .offcanvas-header {
      padding: 0.6rem 1rem;
      background: transparent;
      align-items: center;
    }

    /* body inside offcanvas: padding so items appear below the header */
    #offcanvasNavbar .offcanvas-body {
      padding: 1rem 1rem 2rem;
      padding-top: 0.75rem;
      color: #111;
      -webkit-font-smoothing: antialiased;
    }

    /* nav list & items */
    #offcanvasNavbar .navbar-nav {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    #offcanvasNavbar .nav-link {
      color: #111 !important;
      font-weight: 600;
      padding: 0.75rem 0.6rem;
      display: block;
      border-radius: 8px;
      text-decoration: none;
      /* start hidden for animated reveal */
      opacity: 0;
      transform: translateX(10px);
      transition: opacity .36s ease, transform .36s cubic-bezier(.2, .9, .3, 1);
      will-change: transform, opacity;
    }

    #offcanvasNavbar .nav-link.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    #offcanvasNavbar .nav-link:hover,
    #offcanvasNavbar .nav-link:focus {
      background: rgba(0, 0, 0, 0.04);
      color: #000 !important;
    }

    /* ensure close button is visible */
    #offcanvasNavbar .btn-close {
      filter: none;
      opacity: 0.95;
    }

    /* COFFEE SECTION */
    .coffee-section {
      min-height: 60vh;
    }

    .image-box {
      background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93") center/cover no-repeat;
      border-radius: 0;
      min-height: 60vh;
      overflow: hidden;
      position: relative;
      transform: translateX(20px) scale(.995);
      opacity: 0;
      transition: transform .9s cubic-bezier(.16, .9, .3, 1), opacity .9s ease;
      will-change: transform, opacity;
    }

    .image-box.is-visible {
      transform: translateX(0) scale(1);
      opacity: 1;
    }

    .image-box::after {
      /* subtle dark vignette for readability */
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
      pointer-events: none;
    }

    .info-box {
      background-color: #f8f9fa;
      border-radius: 0;
      position: relative;
      overflow: hidden;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .5s ease, transform .28s ease;
    }

    /* Removed the small circular steam pseudo-element per request.
       Mobile overlay (below) remains unaffected. */

    /* info content animation */
    .info-content {
      position: relative;
      z-index: 1;
      padding: 2rem;
      transform: translateY(8px);
      opacity: 0;
      transition: transform .7s cubic-bezier(.2, .9, .3, 1), opacity .7s ease;
      will-change: transform, opacity;
    }

    .info-content.is-visible {
      transform: translateY(0);
      opacity: 1;
    }

    .info-content h2 {
      font-weight: 700;
      margin-bottom: .5rem;
      letter-spacing: .2px;
    }

    .info-content p {
      margin: 0;
      color: rgba(0, 0, 0, 0.65);
    }

    /* MOBILE VIEW */
    @media (max-width: 991px) {
      .coffee-section {
        min-height: 25vh;
      }

      .info-box {
        position: relative;
        background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93") center/cover no-repeat;
        min-height: 25vh;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0;
      }

      .info-box::before {
        /* darker overlay for mobile so text stays legible */
        background: rgba(0, 0, 0, 0.42);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        z-index: 0;
        pointer-events: none;
        opacity: 1;
        transform: none;
        animation: none;
      }

      .info-content {
        position: relative;
        z-index: 1;
        padding: 2rem;
      }

      .image-box {
        display: none;
      }
    }

    /* mobile tweak: wider on very small screens */
    @media (max-width: 420px) {
      #offcanvasNavbar {
        --bs-offcanvas-width: 85%;
        width: 85% !important;
      }
    }

    /* optional: subtle divider under brand when menu opens */
    #offcanvasNavbar .offcanvas-title {
      margin-right: .5rem;
    }

    /* NAV LINK STAGGER (only visual; JS triggers .is-visible class for smooth stagger) */
    /* fallback delays via nth-child so CSS-only still has mild stagger */
    #offcanvasNavbar .navbar-nav .nav-item:nth-child(1) .nav-link {
      transition-delay: 0ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(2) .nav-link {
      transition-delay: 40ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(3) .nav-link {
      transition-delay: 80ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(4) .nav-link {
      transition-delay: 120ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(5) .nav-link {
      transition-delay: 160ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(6) .nav-link {
      transition-delay: 200ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(7) .nav-link {
      transition-delay: 240ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(8) .nav-link {
      transition-delay: 280ms;
    }

    #offcanvasNavbar .navbar-nav .nav-item:nth-child(9) .nav-link {
      transition-delay: 320ms;
    }

    /* subtle hover pop for nav items */
    #offcanvasNavbar .nav-link:active,
    #offcanvasNavbar .nav-link:focus {
      transform: translateX(2px);
      transition: transform .12s ease;
    }

    /* small focus indicator for accessibility */
    #offcanvasNavbar .nav-link:focus {
      outline: 3px solid rgba(0, 0, 0, 0.06);
      outline-offset: 2px;
    }

    /* make content breathe on hover */
    .info-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .image-box:hover {
      transform: scale(1.01);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    }

    /* small reduced-motion consideration */
    @media (prefers-reduced-motion: reduce) {

      .info-content,
      .image-box,
      #offcanvasNavbar .nav-link,
      .navbar-toggler,
      .navbar-glass {
        transition: none !important;
        animation: none !important;
        transform: none !important;
      }
    }

    .image_info {
      overflow: visible;
    }


    /* Image behavior */
    .image_info img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);


    }

    /* Desktop */
    .image_info,
    .info_info {
      height: 90vh;
    }


    /* Mobile */
    @media (max-width: 991px) {
      .image_info {
        height: 40vh;
        /* slightly less height = better crop */
      }

      .info_info {
        height: 40vh;
      }

    }

    @media (max-width: 700px) {
      .image_info {
        height: 25vh;
        /* slightly less height = better crop */
      }

      .info_info {
        height: 25vh;
      }

      .container_info {
        padding-left: 2px;
      }

    }

    .col_service {
      height: 10vh;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      user-select: none;
      border-radius: 20px;
    }

    /* slightly smaller blocks on phones */
    @media (max-width: 767px) {
      .col_service {
        height: 10vh;
      }
    }




    .slider-wrap {
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 1rem 0;
    }

    .slider-wrap .frame {
      position: relative;
      width: 100%;
      max-width: 420px;
      height: 260px;
      padding: 0;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .38), rgba(0, 0, 0, .02));
      overflow: visible;
      outline: none;
    }

    /* dots */
    .slider-wrap .dots {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 50;
    }

    .slider-wrap .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #bdbdbd;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .slider-wrap .dot.active {
      background: #111;
    }

    /* stack */
    .slider-wrap .stack {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: start;
      align-items: center;
    }

    /* cards */
    .slider-wrap .card {
      position: absolute;
      width: 240px;
      height: 130px;
      border-radius: 14px;
      padding: 12px;
      color: #fff;
      font-weight: 600;
      display: flex;
      align-items: flex-end;
      transition: transform .5s cubic-bezier(.2, .9, .3, 1), opacity .35s ease;
      overflow: hidden;
      cursor: pointer;
      user-select: none;
    }

    /* positions */
    .slider-wrap .card.center {
      transform: translate(110px, 0) scale(1);
      z-index: 3;
      background: linear-gradient(180deg, #b3a5a7, #9d8f90);
    }

    .slider-wrap .card.back.left {
      transform: translate(20px, -65px) scale(.92);
      z-index: 2;
      background: linear-gradient(180deg, #c9bfbf, #bfb3b3);
    }

    .slider-wrap .card.back.right {
      transform: translate(20px, 65px) scale(.92);
      z-index: 1;
      background: linear-gradient(180deg, #d6cccc, #cbbfbf);
    }

    .slider-wrap .card.hidden {
      opacity: 0;
      transform: scale(.7);
    }

    /* label */
    .slider-wrap .label {
      background: rgba(0, 0, 0, .16);
      padding: 6px 10px;
      border-radius: 10px;
      font-size: .95rem;
    }

    /* responsive */
    @media (max-width: 992px) {
      .slider-wrap .frame {
        max-width: 360px;
        height: 220px;
      }

      .slider-wrap .card {
        width: 200px;
        height: 110px;
      }

      .slider-wrap .card.center {
        transform: translate(0, 0) scale(1);
      }

      .slider-wrap .card.back.left {
        transform: translate(-44px, -42px) scale(.85);
        opacity: 0.7;
      }

      .slider-wrap .card.back.right {
        transform: translate(44px, 42px) scale(.85);
        opacity: 0.7;
      }

      .slider-wrap .stack {
        justify-content: center;
      }
    }

    @media (max-width: 600px) {
      .slider-wrap .frame {
        height: 200px;
        padding: 8px;
      }

      .slider-wrap .card {
        width: clamp(140px, 40vw, 180px);
        height: 100px;
      }

      .slider-wrap .dots {
        left: 50%;
        bottom: 0px;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
      }

      .slider-wrap .stack {
        justify-content: center;
      }
    }

    /* Info columns styling */
    .info-card {
      background: #fff;
      border-radius: 10px;
      padding: 12px;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.06);
      min-height: 120px;
    }

    .info-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .info-desc {
      color: #444;
      margin: 0 0 8px 0;
    }

    .info-extra {
      color: #777;
      font-size: .9rem;
    }

    /* ===== SERVICE FLIP CARDS ===== */

    .service-flip {
      width: 100%;
      height: 140px;
      perspective: 1000px;
    }

    .service-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s ease;
      transform-style: preserve-3d;
    }

    /* hover flip */
    .service-flip:hover .service-inner {
      transform: rotateY(180deg);
    }

    /* front & back */
    .service-front,
    .service-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 18px;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      /* FIX */
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 15px;
      text-align: center;
      border: 1px solid #000;
    }

    /* FRONT */
    .service-front {
      background: #ffffff;
    }

    /* BACK */
    .service-back {
      background: #f8f9fa;
      transform: rotateY(180deg);
    }

    .service-back p {
      font-size: 0.85rem;
      margin-top: 6px;
    }

    /* =========================================
       NEW PAGE STYLES (Services, Projects, etc)
       ========================================= */

    /* Universal Hero Section for Sub-pages */
    .page-hero {
      position: relative;
      height: 40vh;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      /* Parallax effect */
      overflow: hidden;
      margin-bottom: 2rem;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      /* Overlay for text readability */
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 1s ease-out;
    }

    .page-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 0.5rem;
    }

    .page-hero p {
      font-size: 1.2rem;
      font-weight: 300;
      opacity: 0.9;
    }

    /* Animation Keyframes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* =========================================
       BOOK STYLE TEAM SECTION
       ========================================= */
    .book-section {
      padding: 60px 0;
      background-color: #e3e3e3;
      /* Table/Desk background color */
      overflow: hidden;
    }

    .book-container {
      max-width: 1100px;
      margin: 0 auto;
      background: #fdfdfd;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
      perspective: 1500px;
      border-radius: 4px;
      position: relative;
    }

    /* The visual spine in the center */
    .book-spine-visual {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 40px;
      margin-left: -20px;
      background: linear-gradient(to right,
          rgba(0, 0, 0, 0.05) 0%,
          rgba(0, 0, 0, 0.2) 45%,
          rgba(0, 0, 0, 0.2) 55%,
          rgba(0, 0, 0, 0.05) 100%);
      z-index: 10;
      pointer-events: none;
    }

    .book-spread {
      display: flex;
      flex-wrap: wrap;
      position: relative;
      /* Ensure pages sit on top of container background if needed */
    }

    .book-page {
      width: 50%;
      padding: 3rem 4rem;
      position: relative;
      background-color: #fffbf6;
      /* Warm paper tone */
      min-height: 600px;
      display: flex;
      flex-direction: column;
    }

    .book-page.left {
      border-right: 1px solid #e0e0e0;
      background: linear-gradient(to right, #fffbf6 90%, #f0ebd8 100%);
      /* Shadow near spine */
    }

    .book-page.right {
      border-left: 1px solid #e0e0e0;
      background: linear-gradient(to left, #fffbf6 90%, #f0ebd8 100%);
      /* Shadow near spine */
    }

    .page-number {
      position: absolute;
      bottom: 20px;
      font-family: inherit;
      color: #999;
      font-size: 0.9rem;
    }

    .book-page.left .page-number {
      left: 20px;
    }

    .book-page.right .page-number {
      right: 20px;
    }

    /* Member Content inside Book */
    .member-header {
      border-bottom: 2px solid #333;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .member-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #333;
      flex-shrink: 0;
      box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    }

    .member-info h3 {
      font-family: 'Georgia', serif;
      font-weight: 700;
      font-size: 1.8rem;
      margin: 0;
      color: #222;
    }

    .member-role {
      font-family: 'Courier New', monospace;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #666;
      font-weight: 600;
      font-size: 0.9rem;
      display: block;
      margin-top: 0.5rem;
    }

    .member-details {
      font-family: 'Georgia', serif;
      line-height: 1.6;
      color: #444;
      flex-grow: 1;
    }

    .member-details h4 {
      font-family: 'Segoe UI', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
      color: #8b5e3c;
      /* Coffee-ish accent */
    }

    .project-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .project-list li {
      margin-bottom: 0.5rem;
      padding-left: 1.2rem;
      position: relative;
    }

    .project-list li::before {
      content: "•";
      color: #8b5e3c;
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    /* Mobile Responsive Book */
    @media (max-width: 900px) {
      .book-container {
        max-width: 100%;
        box-shadow: none;
        background: transparent;
      }

      .book-spine-visual {
        display: none;
      }

      .book-page {
        width: 100%;
        min-height: auto;
        margin-bottom: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        background: #fff;
        /* Reset gradient */
      }

      .book-page.left,
      .book-page.right {
        border: none;
        background: #fff;
      }
    }

    /* Section Headings */
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #000;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* --- PROJECTS / PORTFOLIO --- */
    .project-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      height: 100%;
    }

    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .project-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .project-card:hover .project-img {
      transform: scale(1.05);
    }

    .project-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
    }

    .project-title {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      transform: translateY(20px);
      transition: transform 0.3s ease;
    }

    .project-category {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transform: translateY(20px);
      transition: transform 0.3s ease 0.1s;
    }

    .project-card:hover .project-title,
    .project-card:hover .project-category,
    .project-card:hover .project-dev {
      transform: translateY(0);
    }

    .project-tag {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-family: 'Orbitron', sans-serif;
      z-index: 5;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .project-dev {
      color: var(--accent-color, #3cff7d);
      font-size: 0.85rem;
      font-weight: 600;
      margin-top: 0.5rem;
      transform: translateY(20px);
      transition: transform 0.3s ease 0.15s;
    }

    /* --- PRODUCTS --- */
    .product-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 1rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .product-card:hover {
      border-color: transparent;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .product-img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      margin-bottom: 1rem;
      transition: transform 0.3s ease;
    }

    .product-card:hover .product-img {
      transform: scale(1.05);
    }

    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #000;
      color: #fff;
      padding: 4px 10px;
      font-size: 0.75rem;
      font-weight: 700;
      border-radius: 20px;
      z-index: 10;
    }

    .product-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #333;
    }

    .product-price {
      font-size: 1.25rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 1rem;
    }

    .btn-cart {
      background: #111;
      color: #fff;
      border: none;
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-weight: 600;
      transition: background 0.2s ease;
      width: 100%;
    }

    .btn-cart:hover {
      background: #333;
    }

    /* --- CONTACT FORM --- */
    .contact-wrapper {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .contact-info {
      background: #111;
      color: #fff;
      padding: 3rem;
      height: 100%;
    }

    .contact-info h3 {
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .info-item i {
      font-size: 1.5rem;
      margin-right: 1rem;
      color: #aaa;
    }

    .contact-form {
      padding: 3rem;
    }

    .form-floating input,
    .form-floating textarea {
      border-radius: 8px;
      border: 1px solid #eee;
      background: #fdfdfd;
    }

    .form-floating input:focus,
    .form-floating textarea:focus {
      border-color: #111;
      box-shadow: none;
    }

    .btn-submit {
      background: #111;
      color: #fff;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      letter-spacing: 1px;
      transition: transform 0.2s ease;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      background: #000;
      color: #fff;
    }

    /* --- TEAM / ABOUT --- */
    .team-member {
      text-align: center;
      padding: 2rem 1rem;
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1.5rem;
      border: 4px solid #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .team-name {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .team-role {
      color: #777;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* --- FOOTER (New) --- */
    .site-footer {
      background-color: #111;
      color: #f8f9fa;
      padding-top: 4rem;
      padding-bottom: 2rem;
      margin-top: 4rem;
    }

    .footer-brand {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 1rem;
      display: inline-block;
      color: #fff;
      text-decoration: none;
    }

    .footer-desc {
      color: #aaa;
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 300px;
    }

    .footer-heading {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: #aaa;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: background 0.2s ease;
    }

    .social-icon:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      margin-top: 3rem;
      font-size: 0.9rem;
      color: #777;
    }


    /* =========================================
   NEW SERVICES PAGE STYLES (Redesign)
   ========================================= */

    /* Animated Hero Gradient */
    .hero-gradient {
      background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #e94560);
      background-size: 400% 400%;
      animation: gradientBG 15s ease infinite;
      color: #fff;
    }

    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Service Card Modern */
    .service-card-modern {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      padding: 2rem;
      height: 100%;
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .service-card-modern:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: rgba(233, 69, 96, 0.3);
    }

    .service-card-modern h5 {
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #1a1a2e;
    }

    .service-card-modern p {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0;
    }

    /* Icon placeholder (circle) */
    .service-icon {
      width: 60px;
      height: 60px;
      background: #f0f2f5;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: #e94560;
      /* Accent color */
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .service-card-modern:hover .service-icon {
      background: #e94560;
      color: #fff;
      transform: scale(1.1);
    }

    /* Tech-themed decorations */
    .tech-accent {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #1a1a2e, #e94560);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .service-card-modern:hover .tech-accent {
      opacity: 1;
    }

    /* Service Modal Styles */
    .ls-1 {
      letter-spacing: 1px;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .text-primary {
      color: var(--accent-primary, #7b3fe4) !important;
    }

    .form-control {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      backdrop-filter: blur(5px);
    }

    .form-control:focus {
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.2);
      border-color: var(--accent-primary, #7b3fe4);
      color: #fff;
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-label {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 600;
    }

    .btn-dark {
      background: var(--accent-primary, #7b3fe4);
      border: none;
      transition: all 0.3s ease;
    }

    .btn-dark:hover {
      background: #6a35c9;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(123, 63, 228, 0.4);
    }

    .btn-outline-dark {
      border-color: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .btn-outline-dark:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #fff;
      color: #fff;
    }

    .btn-check:checked+.btn-outline-dark {
      background: var(--accent-primary, #7b3fe4);
      border-color: var(--accent-primary, #7b3fe4);
    }

    .btn-success {
      background: #198754;
      border: none;
    }

    .btn-success:hover {
      background: #157347;
      box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
    }

    .btn-link {
      color: var(--accent-primary, #7b3fe4);
    }

    .btn-link:hover {
      color: #6a35c9;
    }

    /* Service Card Cursor */
    .service-card-modern {
      cursor: pointer;
    }

    /* =========================================
   INQUIRY PAGE (UNIQUE SPLIT DESIGN)
   ========================================= */

    .split-layout {
      display: flex;
      min-height: 100vh;
      width: 100vw;
      overflow-x: hidden;
    }

    /* Left Panel - Mission Control */
    .split-left {
      flex: 0 0 40%;
      background-color: #050505;
      background-image: radial-gradient(circle at 10% 20%, #1a1a2e 0%, #050505 90%);
      position: relative;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem;
      overflow: hidden;
    }

    /* Animated tech overlay pattern */
    .tech-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image:
        linear-gradient(rgba(123, 63, 228, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 63, 228, 0.05) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
      animation: bgScroll 60s linear infinite;
    }

    @keyframes bgScroll {
      from {
        background-position: 0 0;
      }

      to {
        background-position: 100% 100%;
      }
    }

    .content-left {
      position: relative;
      z-index: 2;
      border-left: 4px solid var(--accent-primary, #7b3fe4);
      padding-left: 2rem;
    }

    .mission-text h1 {
      font-weight: 800;
      letter-spacing: -1px;
    }

    .tech-stats {
      display: flex;
      gap: 3rem;
      margin-top: 3rem;
    }

    .tech-stats .h2 {
      color: var(--accent-primary, #7b3fe4);
      margin-bottom: 0;
    }

    .code-decoration {
      margin-top: 4rem;
      background: rgba(0, 0, 0, 0.3);
      padding: 1.5rem;
      border-radius: 8px;
      font-family: 'Courier New', Courier, monospace;
      font-size: 0.9rem;
      color: #4cc9f0;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Right Panel - Dynamic Form */
    .split-right {
      flex: 1;
      background: #050505;
      padding: 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow-y: auto;
      color: #fff;
    }

    .form-container {
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
    }

    /* Path Cards */
    .path-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      height: 100%;
      backdrop-filter: blur(10px);
    }

    .path-card:hover {
      border-color: var(--accent-primary, #7b3fe4);
      background: rgba(123, 63, 228, 0.08);
      box-shadow: 0 10px 30px rgba(123, 63, 228, 0.2);
      transform: translateY(-5px);
    }

    .path-card .icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    /* Tech Grid Badge */
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: 10px;
    }

    .tech-badge {
      cursor: pointer;
      position: relative;
    }

    .tech-badge input {
      position: absolute;
      opacity: 0;
    }

    .tech-badge span {
      display: block;
      padding: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      text-align: center;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      color: #fff;
    }

    .tech-badge input:checked+span {
      background: var(--accent-primary, #7b3fe4);
      color: #fff;
      border-color: var(--accent-primary, #7b3fe4);
      box-shadow: 0 4px 10px rgba(123, 63, 228, 0.3);
    }

    /* Radio Cards (Meeting) */
    .radio-card {
      display: block;
      cursor: pointer;
      position: relative;
    }

    .radio-card input {
      position: absolute;
      opacity: 0;
    }

    .radio-card .card-content {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 10px;
      text-align: center;
      transition: all 0.2s;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: #fff;
    }

    .radio-card input:checked+.card-content {
      border-color: #198754;
      /* Success color */
      background: rgba(25, 135, 84, 0.1);
      color: #fff;
      box-shadow: 0 0 15px rgba(25, 135, 84, 0.2);
    }

    .radio-card .icon {
      font-size: 1.5rem;
    }

    /* Animations */
    .form-step {
      animation: fadeIn 0.4s ease-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 991px) {
      .split-layout {
        flex-direction: column;
      }

      .split-left {
        min-height: 40vh;
        padding: 2rem;
      }

      .split-right {
        padding: 2rem;
      }
    }

    /* =========================================
   PROJECT SHOWCASE SECTION
   ========================================= */

    .project-showcase-section {
      padding: 6rem 0;
      background: #f8f9fa;
    }

    .project-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .project-img-wrapper {
      height: 240px;
      background: #e9ecef;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #adb5bd;
      font-size: 3rem;
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 52, 96, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
    }

    .project-content {
      padding: 2rem;
    }

    .project-tag {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: #e94560;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      display: block;
    }

    .project-title {
      font-weight: 800;
      margin-bottom: 1rem;
      color: #1a1a2e;
    }

    /* Dynamic Inquiry Theme Support */
    :root {
      --theme-accent: #7b3fe4;
      /* Updated to violet */
    }

    /* Update split layout to use var */
    .content-left {
      border-left-color: var(--theme-accent) !important;
      transition: border-color 0.5s ease;
    }

    .tech-stats .h2 {
      color: var(--theme-accent) !important;
      transition: color 0.5s ease;
    }

    /* ===== CURSOR GLOW ===== */
    .cursor-glow {
      position: fixed;
      top: 0;
      left: 0;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(123, 63, 228, 0.08) 0%, transparent 70%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    body:hover .cursor-glow {
      opacity: 1;
    }