/* ================================================================
   pages.css — All page-specific inline styles extracted from HTML
   Generated automatically by extract_styles.js
   ================================================================ */

/* ================================================================
   INDEX.HTML
   ================================================================ */

      :root {
        --royal-blue: #002349;
        --royal-blue-gradient: linear-gradient(
          135deg,
          #002349 0%,
          #003366 100%
        );
        --gold-metallic: linear-gradient(
          45deg,
          #bf953f,
          #fcf6ba,
          #b38728,
          #fbf5b7,
          #aa771c
        );
        --glass-bg: rgba(255, 255, 255, 0.05);
        --gold-primary: #bf953f;
        --glass-white: rgba(255, 255, 255, 0.03);
        --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      }

      .project_container {
        background: var(--royal-blue-gradient);
        padding: 60px 0;
        color: #fff;
      }

      .project_head {
        font-family: "Playfair Display", serif; /* Use a luxury serif font */
        background: var(--gold-metallic);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 2px;
      }

      /* Card Consistency Engine */
      .project-card {
        background: linear-gradient(
          135deg,
          #0f1a2e 0%,
          #162544 100%
        ) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
      }

      .project-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(
          135deg,
          rgba(59, 130, 246, 0.06) 0%,
          transparent 60%
        );
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
      }

      .project-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
      }

      .project-card:hover::after {
        opacity: 1;
      }

      .card-img-top {
        height: 220px;
        object-fit: cover;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: transform 0.6s ease;
      }

      .project-card:hover .card-img-top {
        transform: scale(1.08);
      }

      .card-body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.5rem;
        position: relative;
        z-index: 1;
      }

      .who_button {
        background: linear-gradient(
          135deg,
          #002349 0%,
          #1f4c8c 50%,
          #2a5caa 100%
        ) !important;
        border: 2px solid rgba(42, 92, 170, 0.5) !important;
        color: #fff !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.4s ease;
        border-radius: 50px;
      }

      .who_button:hover {
        background: linear-gradient(
          135deg,
          #1f4c8c 0%,
          #2a5caa 50%,
          #3a6fd8 100%
        ) !important;
        color: #fff !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(31, 76, 140, 0.4);
      }
      /* --- Standards Section --- */
      .standards-section {
        background: linear-gradient(
          135deg,
          #0a1628 0%,
          #122244 40%,
          #1a3366 100%
        );
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      .standards-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 600px 400px at 10% 20%,
            rgba(59, 130, 246, 0.08) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 500px 350px at 90% 80%,
            rgba(168, 85, 247, 0.06) 0%,
            transparent 70%
          );
        pointer-events: none;
      }

      .about_bigs {
        font-family: "Playfair Display", serif;
        background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        font-size: 2.5rem;
      }

      .standards_subtitle {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 1px;
        font-size: 1.05rem;
      }

      /* --- Standard Card --- */
      .standard-card {
        width: 100%;
        height: 100%;
        min-height: 280px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 35px 28px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        backdrop-filter: blur(10px);
      }

      .standard-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.45s ease;
        z-index: 0;
      }

      .standard-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
      }

      .standard-card:hover::before {
        opacity: 1;
      }

      /* --- Icon Wrapper --- */
      .standard-icon-wrapper {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 22px;
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .standard-card:hover .standard-icon-wrapper {
        transform: scale(1.12) rotate(5deg);
      }

      .standard-card:hover .standard-icon-wrapper i {
        transform: rotate(180deg);
        transition: transform 0.5s ease;
      }

      /* --- Badge --- */
      .standard-badge {
        position: absolute;
        top: 16px;
        right: 20px;
        font-weight: 800;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.25);
        letter-spacing: 2px;
        z-index: 1;
      }

      /* --- Title --- */
      .standard-title {
        color: #fff;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
      }

      /* --- Divider --- */
      .standard-divider {
        width: 40px;
        height: 3px;
        border-radius: 2px;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
        transition: width 0.4s ease;
      }

      .standard-card:hover .standard-divider {
        width: 60px;
      }

      /* --- Text --- */
      .standard-text {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.7;
        position: relative;
        z-index: 1;
        margin-bottom: 0;
      }

      /* --- Decoration watermark --- */
      .standard-decoration {
        position: absolute;
        bottom: -8px;
        right: -2px;
        font-size: 4.5rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.025);
        pointer-events: none;
        user-select: none;
        z-index: 0;
      }

      /* === Color Variants === */

      /* Gold */
      .std-gold::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(191, 149, 63, 0.12) 0%,
          transparent 70%
        );
      }
      .std-gold .standard-icon-wrapper {
        background: rgba(191, 149, 63, 0.12);
        color: #f0d27a;
        border: 1px solid rgba(191, 149, 63, 0.25);
      }
      .std-gold .standard-divider {
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
      }
      .std-gold:hover {
        border-color: rgba(191, 149, 63, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(191, 149, 63, 0.08);
      }

      /* Blue */
      .std-blue::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(59, 130, 246, 0.12) 0%,
          transparent 70%
        );
      }
      .std-blue .standard-icon-wrapper {
        background: rgba(59, 130, 246, 0.12);
        color: #60a5fa;
        border: 1px solid rgba(59, 130, 246, 0.25);
      }
      .std-blue .standard-divider {
        background: linear-gradient(90deg, #3b82f6, #93c5fd);
      }
      .std-blue:hover {
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(59, 130, 246, 0.08);
      }

      /* Purple */
      .std-purple::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(168, 85, 247, 0.12) 0%,
          transparent 70%
        );
      }
      .std-purple .standard-icon-wrapper {
        background: rgba(168, 85, 247, 0.12);
        color: #c084fc;
        border: 1px solid rgba(168, 85, 247, 0.25);
      }
      .std-purple .standard-divider {
        background: linear-gradient(90deg, #a855f7, #d8b4fe);
      }
      .std-purple:hover {
        border-color: rgba(168, 85, 247, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(168, 85, 247, 0.08);
      }

      /* Teal */
      .std-teal::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(20, 184, 166, 0.12) 0%,
          transparent 70%
        );
      }
      .std-teal .standard-icon-wrapper {
        background: rgba(20, 184, 166, 0.12);
        color: #5eead4;
        border: 1px solid rgba(20, 184, 166, 0.25);
      }
      .std-teal .standard-divider {
        background: linear-gradient(90deg, #14b8a6, #99f6e4);
      }
      .std-teal:hover {
        border-color: rgba(20, 184, 166, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(20, 184, 166, 0.08);
      }

      /* Orange */
      .std-orange::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(251, 146, 60, 0.12) 0%,
          transparent 70%
        );
      }
      .std-orange .standard-icon-wrapper {
        background: rgba(251, 146, 60, 0.12);
        color: #fdba74;
        border: 1px solid rgba(251, 146, 60, 0.25);
      }
      .std-orange .standard-divider {
        background: linear-gradient(90deg, #fb923c, #fed7aa);
      }
      .std-orange:hover {
        border-color: rgba(251, 146, 60, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(251, 146, 60, 0.08);
      }

      /* Green */
      .std-green::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(34, 197, 94, 0.12) 0%,
          transparent 70%
        );
      }
      .std-green .standard-icon-wrapper {
        background: rgba(34, 197, 94, 0.12);
        color: #86efac;
        border: 1px solid rgba(34, 197, 94, 0.25);
      }
      .std-green .standard-divider {
        background: linear-gradient(90deg, #22c55e, #bbf7d0);
      }
      .std-green:hover {
        border-color: rgba(34, 197, 94, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(34, 197, 94, 0.08);
      }

      /* --- Execution Section --- */
      .execution-section {
        background: linear-gradient(
          135deg,
          #0a1628 0%,
          #122244 40%,
          #1a3366 100%
        );
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      .execution-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 600px 400px at 80% 20%,
            rgba(191, 149, 63, 0.06) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 500px 350px at 20% 80%,
            rgba(59, 130, 246, 0.06) 0%,
            transparent 70%
          );
        pointer-events: none;
      }

      /* --- Document Status Bar --- */
      .doc-status-bar {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 20px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        backdrop-filter: blur(10px);
      }

      .doc-status-item {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
      }

      .doc-status-item strong {
        background: var(--gold-metallic);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-right: 6px;
        font-weight: 700;
      }

      .doc-status-divider {
        color: rgba(255, 255, 255, 0.15);
        font-size: 1.2rem;
      }

      /* --- QA/QC Section --- */
      .qaqc-section {
        background: linear-gradient(
          135deg,
          #0d1b30 0%,
          #142040 40%,
          #1c3060 100%
        );
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      .qaqc-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 500px 350px at 50% 30%,
            rgba(20, 184, 166, 0.06) 0%,
            transparent 70%
          );
        pointer-events: none;
      }

      /* --- QA/QC Workflow --- */
      .qaqc-workflow {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        backdrop-filter: blur(10px);
      }

      .qaqc-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        min-width: 90px;
      }

      .qaqc-step-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: all 0.4s ease;
      }

      .qaqc-step-icon.std-gold {
        background: rgba(191, 149, 63, 0.12);
        color: #f0d27a;
        border: 1px solid rgba(191, 149, 63, 0.25);
      }
      .qaqc-step-icon.std-blue {
        background: rgba(59, 130, 246, 0.12);
        color: #60a5fa;
        border: 1px solid rgba(59, 130, 246, 0.25);
      }
      .qaqc-step-icon.std-purple {
        background: rgba(168, 85, 247, 0.12);
        color: #c084fc;
        border: 1px solid rgba(168, 85, 247, 0.25);
      }
      .qaqc-step-icon.std-teal {
        background: rgba(20, 184, 166, 0.12);
        color: #5eead4;
        border: 1px solid rgba(20, 184, 166, 0.25);
      }
      .qaqc-step-icon.std-orange {
        background: rgba(251, 146, 60, 0.12);
        color: #fdba74;
        border: 1px solid rgba(251, 146, 60, 0.25);
      }
      .qaqc-step-icon.std-green {
        background: rgba(34, 197, 94, 0.12);
        color: #86efac;
        border: 1px solid rgba(34, 197, 94, 0.25);
      }

      .qaqc-step:hover .qaqc-step-icon {
        transform: scale(1.15);
      }

      .qaqc-step-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.75rem;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.5px;
      }

      .qaqc-arrow {
        color: rgba(255, 255, 255, 0.2);
        font-size: 1rem;
        margin: 0 2px;
      }

      /* --- Software Section --- */
      .software-section {
        background: linear-gradient(
          135deg,
          #0a1628 0%,
          #122244 40%,
          #1a3366 100%
        );
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      .software-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 600px 400px at 30% 70%,
            rgba(168, 85, 247, 0.06) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 500px 350px at 70% 20%,
            rgba(59, 130, 246, 0.06) 0%,
            transparent 70%
          );
        pointer-events: none;
      }

      /* Mobile responsiveness */
      @media (max-width: 768px) {
        .standard-card {
          padding: 28px 22px;
        }
        .standard-icon-wrapper {
          width: 60px;
          height: 60px;
          font-size: 1.5rem;
        }
        .standard-decoration {
          font-size: 3rem;
        }
      }

      @media (max-width: 480px) {
        .banner_head {
          font-size: 2rem;
        }
        .banner_para {
          font-size: 0.92rem;
        }
        .who_head {
          font-size: 1.6rem;
        }
        .who_parra {
          font-size: 0.92rem;
        }
        .stat-card {
          padding: 18px 12px;
        }
        .stat-number-new {
          font-size: 2rem;
        }
        .choose_head {
          font-size: 1.6rem;
        }
        .choose_boxhead_new {
          font-size: 1rem;
        }
        .about_bigs {
          font-size: 1.5rem;
        }
        .newsletter-modern {
          padding: 32px 18px;
        }
        .newsletter-form {
          flex-direction: column;
          gap: 12px;
        }
        .newsletter-input,
        .newsletter-btn {
          width: 100%;
          border-radius: 8px;
        }
        .footer_container {
          padding: 40px 0 20px;
        }
        .qaqc-workflow {
          gap: 6px;
          padding: 20px 12px;
        }
        .qaqc-step {
          min-width: 60px;
        }
        .qaqc-step-icon {
          width: 40px;
          height: 40px;
          font-size: 1rem;
        }
        .qaqc-step-label {
          font-size: 0.6rem;
        }
        .qaqc-arrow {
          font-size: 0.7rem;
        }
        .doc-status-bar {
          flex-direction: column;
          gap: 8px;
          padding: 16px;
        }
        .doc-status-divider {
          display: none;
        }
        .execution-section,
        .qaqc-section,
        .software-section {
          padding: 50px 0;
        }
      }
    

/* ================================================================
   ABOUT.HTML
   ================================================================ */

      :root {
        --royal-blue: #002349;
        --royal-blue-gradient: linear-gradient(
          135deg,
          #002349 0%,
          #003366 100%
        );
        --gold-metallic: linear-gradient(
          45deg,
          #bf953f,
          #fcf6ba,
          #b38728,
          #fbf5b7,
          #aa771c
        );
        --glass-bg: rgba(255, 255, 255, 0.05);
        --gold-primary: #bf953f;
        --glass-white: rgba(255, 255, 255, 0.03);
        --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      }

      /* --- Standards / We Deliver Section --- */
      .standards-section {
        background: linear-gradient(
          135deg,
          #0a1628 0%,
          #122244 40%,
          #1a3366 100%
        );
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }
      .standards-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 600px 400px at 10% 20%,
            rgba(59, 130, 246, 0.08) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 500px 350px at 90% 80%,
            rgba(168, 85, 247, 0.06) 0%,
            transparent 70%
          );
        pointer-events: none;
      }
      .standards-section .about_bigs {
        font-family: "Playfair Display", serif;
        background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        font-size: 2.5rem;
      }
      .standards_subtitle {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 1px;
        font-size: 1.05rem;
      }

      /* --- Standard Card (We Deliver) --- */
      .standard-card {
        width: 100%;
        height: 100%;
        min-height: 260px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 35px 28px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        backdrop-filter: blur(10px);
      }
      .standard-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.45s ease;
        z-index: 0;
      }
      .standard-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
      }
      .standard-card:hover::before {
        opacity: 1;
      }
      .standard-icon-wrapper {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 22px;
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .standard-card:hover .standard-icon-wrapper {
        transform: scale(1.12) rotate(5deg);
      }
      .standard-badge {
        position: absolute;
        top: 16px;
        right: 20px;
        font-weight: 800;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.25);
        letter-spacing: 2px;
        z-index: 1;
      }
      .standard-title {
        color: #fff;
        font-weight: 700;
        font-size: 1.15rem;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
      }
      .standard-divider {
        width: 40px;
        height: 3px;
        border-radius: 2px;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
        transition: width 0.4s ease;
      }
      .standard-card:hover .standard-divider {
        width: 60px;
      }
      .standard-text {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.7;
        position: relative;
        z-index: 1;
        margin-bottom: 0;
      }
      .standard-decoration {
        position: absolute;
        bottom: -8px;
        right: -2px;
        font-size: 4.5rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.025);
        pointer-events: none;
        user-select: none;
        z-index: 0;
      }

      /* Color Variants */
      .std-gold::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(191, 149, 63, 0.12) 0%,
          transparent 70%
        );
      }
      .std-gold .standard-icon-wrapper {
        background: rgba(191, 149, 63, 0.12);
        color: #f0d27a;
        border: 1px solid rgba(191, 149, 63, 0.25);
      }
      .std-gold .standard-divider {
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
      }
      .std-gold:hover {
        border-color: rgba(191, 149, 63, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(191, 149, 63, 0.08);
      }

      .std-blue::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(59, 130, 246, 0.12) 0%,
          transparent 70%
        );
      }
      .std-blue .standard-icon-wrapper {
        background: rgba(59, 130, 246, 0.12);
        color: #60a5fa;
        border: 1px solid rgba(59, 130, 246, 0.25);
      }
      .std-blue .standard-divider {
        background: linear-gradient(90deg, #3b82f6, #93c5fd);
      }
      .std-blue:hover {
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(59, 130, 246, 0.08);
      }

      .std-purple::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(168, 85, 247, 0.12) 0%,
          transparent 70%
        );
      }
      .std-purple .standard-icon-wrapper {
        background: rgba(168, 85, 247, 0.12);
        color: #c084fc;
        border: 1px solid rgba(168, 85, 247, 0.25);
      }
      .std-purple .standard-divider {
        background: linear-gradient(90deg, #a855f7, #d8b4fe);
      }
      .std-purple:hover {
        border-color: rgba(168, 85, 247, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(168, 85, 247, 0.08);
      }

      .std-teal::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(20, 184, 166, 0.12) 0%,
          transparent 70%
        );
      }
      .std-teal .standard-icon-wrapper {
        background: rgba(20, 184, 166, 0.12);
        color: #5eead4;
        border: 1px solid rgba(20, 184, 166, 0.25);
      }
      .std-teal .standard-divider {
        background: linear-gradient(90deg, #14b8a6, #99f6e4);
      }
      .std-teal:hover {
        border-color: rgba(20, 184, 166, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(20, 184, 166, 0.08);
      }

      .std-orange::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(251, 146, 60, 0.12) 0%,
          transparent 70%
        );
      }
      .std-orange .standard-icon-wrapper {
        background: rgba(251, 146, 60, 0.12);
        color: #fdba74;
        border: 1px solid rgba(251, 146, 60, 0.25);
      }
      .std-orange .standard-divider {
        background: linear-gradient(90deg, #fb923c, #fed7aa);
      }
      .std-orange:hover {
        border-color: rgba(251, 146, 60, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(251, 146, 60, 0.08);
      }

      .std-green::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(34, 197, 94, 0.12) 0%,
          transparent 70%
        );
      }
      .std-green .standard-icon-wrapper {
        background: rgba(34, 197, 94, 0.12);
        color: #86efac;
        border: 1px solid rgba(34, 197, 94, 0.25);
      }
      .std-green .standard-divider {
        background: linear-gradient(90deg, #22c55e, #bbf7d0);
      }
      .std-green:hover {
        border-color: rgba(34, 197, 94, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(34, 197, 94, 0.08);
      }

      /* --- Mission / Vision Cards --- */
      .about_mv_section {
        background: linear-gradient(to bottom, #f8faff 0%, #eef2fb 100%);
        padding: 70px 0;
      }
      .mv-card {
        width: 100%;
        min-height: 300px;
        border-radius: 24px;
        padding: 50px 36px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 1px solid transparent;
      }
      .mv-card:hover {
        transform: translateY(-10px);
      }
      .mv-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
        transition: all 0.4s ease;
      }
      .mv-card:hover .mv-icon-wrapper {
        transform: scale(1.12) rotate(5deg);
      }
      .mv-title {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
      }
      .mv-divider {
        width: 50px;
        height: 4px;
        border-radius: 2px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        transition: width 0.4s ease;
      }
      .mv-card:hover .mv-divider {
        width: 80px;
      }
      .mv-text {
        font-size: 1rem;
        line-height: 1.75;
        position: relative;
        z-index: 1;
      }
      .mv-decoration {
        position: absolute;
        bottom: -15px;
        right: 10px;
        font-size: 7rem;
        font-weight: 900;
        opacity: 0.04;
        pointer-events: none;
        z-index: 0;
      }
      /* Gold - Mission */
      .mv-gold {
        background: linear-gradient(135deg, #0a1a44 0%, #1f4c8c 100%);
        box-shadow: 0 20px 60px rgba(10, 26, 68, 0.25);
      }
      .mv-gold:hover {
        border-color: rgba(191, 149, 63, 0.4);
        box-shadow:
          0 30px 70px rgba(10, 26, 68, 0.35),
          0 0 50px rgba(191, 149, 63, 0.1);
      }
      .mv-gold .mv-icon-wrapper {
        background: rgba(191, 149, 63, 0.15);
        color: #f0d27a;
        border: 1px solid rgba(191, 149, 63, 0.3);
      }
      .mv-gold .mv-title {
        color: #fff;
      }
      .mv-gold .mv-divider {
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
      }
      .mv-gold .mv-text {
        color: rgba(255, 255, 255, 0.7);
      }
      .mv-gold .mv-decoration {
        color: #fff;
      }
      /* Blue - Vision */
      .mv-blue {
        background: linear-gradient(135deg, #0f1a2e 0%, #162544 100%);
        box-shadow: 0 20px 60px rgba(15, 26, 46, 0.25);
      }
      .mv-blue:hover {
        border-color: rgba(59, 130, 246, 0.4);
        box-shadow:
          0 30px 70px rgba(15, 26, 46, 0.35),
          0 0 50px rgba(59, 130, 246, 0.1);
      }
      .mv-blue .mv-icon-wrapper {
        background: rgba(59, 130, 246, 0.15);
        color: #60a5fa;
        border: 1px solid rgba(59, 130, 246, 0.3);
      }
      .mv-blue .mv-title {
        color: #fff;
      }
      .mv-blue .mv-divider {
        background: linear-gradient(90deg, #3b82f6, #93c5fd);
      }
      .mv-blue .mv-text {
        color: rgba(255, 255, 255, 0.7);
      }
      .mv-blue .mv-decoration {
        color: #fff;
      }

      /* choose_subtitle for Core Strength section */
      .choose_subtitle {
        text-align: center;
        color: #777;
        font-size: 1.05rem;
        margin-bottom: 10px;
      }

      /* ============================================
   HERO BANNER — Premium Redesign
   ============================================ */
      .abountBanner {
        min-height: 100vh !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        overflow: hidden !important;
      }
      .abountBanner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(10, 26, 68, 0.9) 0%,
          rgba(31, 76, 140, 0.82) 50%,
          rgba(26, 31, 58, 0.92) 100%
        );
        z-index: 1;
      }
      .abountBanner::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at 20% 60%,
            rgba(212, 175, 55, 0.18) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 30%,
            rgba(255, 215, 0, 0.1) 0%,
            transparent 40%
          );
        z-index: 1;
        pointer-events: none;
      }
      .about_banner_content {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 100%;
      }
      .about_banner_chip {
        display: inline-block;
        background: rgba(191, 149, 63, 0.18);
        border: 1px solid rgba(191, 149, 63, 0.45);
        color: #f0d27a;
        padding: 7px 24px;
        border-radius: 50px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 22px;
      }
      .about_banner_head {
        font-family: "Cinzel", serif;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        font-weight: 800;
        background: linear-gradient(
          to right,
          #ffffff 0%,
          #ffd700 50%,
          #ffffff 100%
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
        margin-bottom: 18px;
        padding: 0 1rem;
      }
      .about_banner_sub {
        color: rgba(255, 255, 255, 0.72);
        font-size: clamp(0.95rem, 1.4vw, 1.1rem);
        max-width: 580px;
        margin: 0 auto 26px;
        line-height: 1.75;
        padding: 0 1rem;
      }
      .about_breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        padding: 8px 22px;
        border-radius: 50px;
        font-size: 0.88rem;
      }
      .about_breadcrumb a {
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        transition: color 0.3s;
      }
      .about_breadcrumb a:hover {
        color: #ffd700;
      }
      .about_breadcrumb .bc_sep {
        color: rgba(255, 255, 255, 0.3);
      }
      .about_breadcrumb .bc_active {
        color: #f0d27a;
        font-weight: 600;
      }

      /* Stats strip at bottom of banner */
      .about_banner_strip {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 3;
        padding: 18px 0;
      }
      .about_stat_item {
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
      .about_stat_item:last-child {
        border-right: none;
      }
      .about_stat_num {
        font-family: "Cinzel", serif;
        font-size: clamp(1.5rem, 2.5vw, 2.2rem);
        font-weight: 800;
        color: #ffd700;
        line-height: 1.1;
        display: block;
      }
      .about_stat_label {
        font-size: 0.74rem;
        color: rgba(255, 255, 255, 0.55);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-top: 4px;
        display: block;
      }

      /* ============================================
   WHO WE ARE — Premium Split Layout
   ============================================ */
      .about_who_section {
        padding: 75px 0;
        background: linear-gradient(to bottom, #fff 0%, #f5f8ff 100%);
        position: relative;
      }
      .about_who_section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          to right,
          transparent,
          rgba(212, 175, 55, 0.35),
          transparent
        );
      }
      /* Highlight bullet rows */
      .about_highlight_item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }
      .about_highlight_item:last-child {
        border-bottom: none;
      }
      .about_highlight_icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: linear-gradient(135deg, #0a1a44 0%, #1f4c8c 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffd700;
        font-size: 1.05rem;
        flex-shrink: 0;
        box-shadow: 0 6px 18px rgba(10, 26, 68, 0.2);
        transition: transform 0.3s ease;
      }
      .about_highlight_item:hover .about_highlight_icon {
        transform: scale(1.1) rotate(5deg);
      }
      .about_highlight_text {
        font-size: 0.97rem;
        color: #444;
        line-height: 1.65;
        font-weight: 500;
        padding-top: 4px;
      }
      /* Mini stat cards */
      .about_mini_stat {
        background: linear-gradient(135deg, #0a1a44 0%, #1f4c8c 100%);
        border-radius: 22px;
        padding: 32px 20px;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.12);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        height: 100%;
      }
      .about_mini_stat::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        opacity: 0;
        transition: opacity 0.35s ease;
        border-radius: 22px 22px 0 0;
      }
      .about_mini_stat:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 55px rgba(10, 26, 68, 0.28);
        border-color: rgba(212, 175, 55, 0.35);
      }
      .about_mini_stat:hover::before {
        opacity: 1;
      }
      .ms-gold::before {
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
      }
      .ms-blue::before {
        background: linear-gradient(90deg, #3b82f6, #93c5fd);
      }
      .ms-purple::before {
        background: linear-gradient(90deg, #a855f7, #d8b4fe);
      }
      .ms-teal::before {
        background: linear-gradient(90deg, #14b8a6, #99f6e4);
      }
      .about_mini_stat_num {
        font-family: "Cinzel", serif;
        font-size: clamp(2rem, 3vw, 2.8rem);
        font-weight: 800;
        color: #ffd700;
        line-height: 1;
        display: block;
        margin-bottom: 10px;
      }
      .about_mini_stat_icon {
        font-size: 1.6rem;
        margin-bottom: 14px;
        display: block;
      }
      .ms-gold .about_mini_stat_icon {
        color: #f0d27a;
      }
      .ms-blue .about_mini_stat_icon {
        color: #60a5fa;
      }
      .ms-purple.about_mini_stat .about_mini_stat_icon {
        color: #c084fc;
      }
      .ms-teal .about_mini_stat_icon {
        color: #5eead4;
      }
      .about_mini_stat_label {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.58);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        display: block;
        margin-top: 6px;
      }

      /* ============================================
   QUICK FACTS CARD
   ============================================ */
      .quick-facts-card {
        background: linear-gradient(135deg, #0a1a44 0%, #1f4c8c 100%);
        border-radius: 22px;
        padding: 32px 28px;
        border: 1px solid rgba(212, 175, 55, 0.15);
        box-shadow: 0 20px 60px rgba(10, 26, 68, 0.25);
        position: relative;
        overflow: hidden;
      }
      .quick-facts-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #bf953f, #fcf6ba, #bf953f);
        border-radius: 22px 22px 0 0;
      }
      .quick-facts-title {
        font-family: "Playfair Display", serif;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
      }
      .quick-facts-divider {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
        border-radius: 2px;
        margin-bottom: 20px;
      }
      .quick-facts-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .quick-facts-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        gap: 3px;
      }
      .quick-facts-list li:last-child {
        border-bottom: none;
      }
      .qf-label {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #ffd700;
      }
      .qf-value {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.5;
      }
      /* Badges */
      .who-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .who-badge {
        display: inline-block;
        background: rgba(191, 149, 63, 0.12);
        border: 1px solid rgba(191, 149, 63, 0.35);
        color: #f0d27a;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
      }
      .who-badge:hover {
        background: rgba(191, 149, 63, 0.25);
        transform: translateY(-2px);
      }

      /* Dark mode overrides for Quick Facts */
      [data-theme="dark"] .quick-facts-card {
        background: linear-gradient(135deg, #0d1117 0%, #161b22 100%) !important;
        border-color: rgba(212, 175, 55, 0.2) !important;
      }

      @media (max-width: 768px) {
        .standard-card {
          padding: 28px 22px;
        }
        .standard-icon-wrapper {
          width: 60px;
          height: 60px;
          font-size: 1.5rem;
        }
        .standard-decoration {
          font-size: 3rem;
        }
        .mv-card {
          padding: 36px 24px;
          min-height: auto;
        }
        .mv-title {
          font-size: 1.5rem;
        }
        .abountBanner {
          height: 70vh !important;
          min-height: 480px !important;
        }
        .about_banner_head {
          font-size: clamp(2rem, 8vw, 3rem);
        }
        .about_stat_num {
          font-size: clamp(1.4rem, 5vw, 1.8rem);
        }
        .about_banner_strip {
          padding: 14px 0;
        }
        .about_who_section {
          padding: 50px 0 45px;
        }
        .about_mv_section {
          padding: 50px 0;
        }
      }

      @media (max-width: 480px) {
        .abountBanner {
          min-height: 420px !important;
        }
        .about_banner_head {
          font-size: 1.8rem;
        }
        .about_banner_sub {
          font-size: 0.9rem;
        }
        .about_stat_num {
          font-size: 1.2rem;
        }
        .about_stat_label {
          font-size: 0.65rem;
        }
        .about_who_section {
          padding: 35px 0 30px;
        }
        .choose_head {
          font-size: 1.5rem;
        }
        .choose_boxhead_new {
          font-size: 1rem;
        }
        .mv-card {
          padding: 28px 18px;
        }
        .about_bigs {
          font-size: 1.4rem;
        }
        .footer_container {
          padding: 40px 0 20px;
        }
      }

      /* ============================================
   DARK MODE OVERRIDES — About Page Elements
   ============================================ */

      /* Who We Are section background */
      [data-theme="dark"] .about_who_section {
        background: linear-gradient(
          to bottom,
          #0d1117 0%,
          #0a0f1c 100%
        ) !important;
      }
      [data-theme="dark"] .about_who_section::before {
        background: linear-gradient(
          to right,
          transparent,
          rgba(212, 175, 55, 0.15),
          transparent
        );
      }

      /* Highlight bullet rows */
      [data-theme="dark"] .about_highlight_item {
        border-bottom-color: rgba(255, 255, 255, 0.06) !important;
      }
      [data-theme="dark"] .about_highlight_text {
        color: #c9d1d9 !important;
      }

      /* Body text inside who section */
      [data-theme="dark"] .about_who_section .about_parra {
        color: #8b949e !important;
      }

      /* "About SLETEC" orange label — keep visible but boost */
      [data-theme="dark"] .about_who_section .about_head_title {
        color: #ffd700 !important;
      }

      /* Mission / Vision section background */
      [data-theme="dark"] .about_mv_section {
        background: linear-gradient(
          to bottom,
          #080c14 0%,
          #0d1117 100%
        ) !important;
      }
      [data-theme="dark"] .about_mv_section .choose_head {
        color: #f0f6fc !important;
      }
      [data-theme="dark"] .about_mv_section .choose_subtitle {
        color: #8b949e !important;
      }

      /* Standards subtitle (We Deliver section is already dark — fine) */
      [data-theme="dark"] .standards_subtitle {
        color: rgba(255, 255, 255, 0.5) !important;
      }

      /* Banner chip text stays on dark bg — ensure readability */
      [data-theme="dark"] .about_banner_chip {
        background: rgba(191, 149, 63, 0.22) !important;
        border-color: rgba(191, 149, 63, 0.5) !important;
      }
    

/* ================================================================
   SERVICES.HTML
   ================================================================ */

      :root {
        --royal-blue: #002349;
        --royal-blue-gradient: linear-gradient(
          135deg,
          #002349 0%,
          #003366 100%
        );
        --gold-metallic: linear-gradient(
          45deg,
          #bf953f,
          #fcf6ba,
          #b38728,
          #fbf5b7,
          #aa771c
        );
        --gold-primary: #bf953f;
        --glass-bg: rgba(255, 255, 255, 0.05);
        --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      }

      /* ============================================
   HERO BANNER
   ============================================ */
      .services_banner {
        min-height: 100vh;
        background: url("../images/serv/1.webp") center/cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }
      .services_banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(10, 26, 68, 0.93) 0%,
          rgba(31, 76, 140, 0.86) 50%,
          rgba(10, 26, 68, 0.95) 100%
        );
        z-index: 1;
      }
      .services_banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at 15% 60%,
            rgba(212, 175, 55, 0.2) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 85% 30%,
            rgba(255, 215, 0, 0.1) 0%,
            transparent 40%
          );
        z-index: 1;
        pointer-events: none;
      }
      .srv_banner_content {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 100%;
        padding: 0 1.5rem 72px; /* bottom clears the stats strip height */
      }
      .srv_banner_chip {
        display: inline-block;
        background: rgba(191, 149, 63, 0.18);
        border: 1px solid rgba(191, 149, 63, 0.45);
        color: #f0d27a;
        padding: 8px 26px;
        border-radius: 50px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 28px;
      }
      .srv_banner_head {
        font-family: "Cinzel", serif;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        font-weight: 800;
        background: linear-gradient(
          to right,
          #ffffff 0%,
          #ffd700 50%,
          #ffffff 100%
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.25;
        margin-bottom: 22px;
      }
      .srv_banner_sub {
        color: rgba(255, 255, 255, 0.72);
        font-size: clamp(0.95rem, 1.4vw, 1.1rem);
        max-width: 600px;
        margin: 0 auto 30px;
        line-height: 1.8;
      }
      .srv_breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        padding: 9px 24px;
        border-radius: 50px;
        font-size: 0.88rem;
        margin-top: 4px;
      }
      .srv_breadcrumb a {
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        transition: color 0.3s;
      }
      .srv_breadcrumb a:hover {
        color: #ffd700;
      }
      .srv_breadcrumb .bc_sep {
        color: rgba(255, 255, 255, 0.3);
      }
      .srv_breadcrumb .bc_active {
        color: #f0d27a;
        font-weight: 600;
      }
      .srv_banner_strip {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 3;
        padding: 20px 0;
      }
      .srv_stat_item {
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0 8px;
      }
      .srv_stat_item:last-child {
        border-right: none;
      }
      .srv_stat_num {
        font-family: "Cinzel", serif;
        font-size: clamp(1.4rem, 2.5vw, 2rem);
        font-weight: 800;
        color: #ffd700;
        line-height: 1.1;
        display: block;
      }
      .srv_stat_label {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-top: 6px;
        display: block;
      }

      /* ============================================
   TAB NAVIGATION
   ============================================ */
      .srv_tab_section {
        background: #05080f;
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
      }
     .srv_tab_bar {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 16px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
      .srv_tab_bar::-webkit-scrollbar {
        display: none;
      }
      .srv_tab_btn {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 17px 20px;
        background: transparent;
        border: none;
        border-bottom: 3px solid transparent;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.4px;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .srv_tab_btn i {
        font-size: 1rem;
        transition: color 0.3s;
      }
      .srv_tab_btn:hover {
        color: rgba(255, 255, 255, 0.78);
      }
      .srv_tab_btn.active {
        color: #ffd700;
        border-bottom-color: #ffd700;
      }
      .srv_tab_btn.active i {
        color: #ffd700;
      }

      /* ============================================
   SERVICES CARDS SECTION
   ============================================ */
      .srv_cards_section {
        background: linear-gradient(
          135deg,
          #0a1628 0%,
          #122244 40%,
          #1a3366 100%
        );
        padding: 72px 0 84px;
        position: relative;
        overflow: hidden;
        min-height: 60vh;
      }
      .srv_cards_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 600px 400px at 10% 20%,
            rgba(59, 130, 246, 0.08) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 500px 350px at 90% 80%,
            rgba(168, 85, 247, 0.06) 0%,
            transparent 70%
          );
        pointer-events: none;
      }
      .srv_section_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 700;
        background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        margin-bottom: 8px;
      }
      .srv_section_sub {
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        margin-bottom: 48px;
        letter-spacing: 0.5px;
      }

      /* ---- Service Card ---- */
      .srv-card {
        width: 100%;
        height: 100%;
        min-height: 280px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 32px 26px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        backdrop-filter: blur(10px);
      }
      .srv-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.45s ease;
        z-index: 0;
      }
      .srv-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
      }
      .srv-card:hover::before {
        opacity: 1;
      }
      .srv-icon-wrap {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 18px;
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        flex-shrink: 0;
      }
      .srv-card:hover .srv-icon-wrap {
        transform: scale(1.12) rotate(5deg);
      }
      .srv-num {
        position: absolute;
        top: 16px;
        right: 18px;
        font-weight: 800;
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.18);
        letter-spacing: 2px;
        z-index: 1;
      }
      .srv-title {
        color: #fff;
        font-weight: 700;
        font-size: 1.08rem;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
        line-height: 1.35;
      }
      .srv-divider {
        width: 36px;
        height: 3px;
        border-radius: 2px;
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
        transition: width 0.4s ease;
      }
      .srv-card:hover .srv-divider {
        width: 56px;
      }
      .srv-scope {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.52);
        line-height: 1.72;
        position: relative;
        z-index: 1;
        margin-bottom: 14px;
        flex: 1;
      }
      .srv-standards-row {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
      }
      .srv-std-badge {
        font-size: 0.68rem;
        font-weight: 700;
        padding: 3px 9px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.58);
        white-space: nowrap;
      }
      .srv-deliverables {
        font-size: 0.79rem;
        color: rgba(255, 255, 255, 0.35);
        position: relative;
        z-index: 1;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 10px;
        margin-top: 4px;
      }
      .srv-deliverables i {
        margin-right: 5px;
        font-size: 0.75rem;
      }
      .srv-decoration {
        position: absolute;
        bottom: -12px;
        right: 2px;
        font-size: 5rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.022);
        pointer-events: none;
        user-select: none;
        z-index: 0;
      }

      /* ---- Color Variants ---- */
      .srv-gold::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(191, 149, 63, 0.12) 0%,
          transparent 70%
        );
      }
      .srv-gold .srv-icon-wrap {
        background: rgba(191, 149, 63, 0.12);
        color: #f0d27a;
        border: 1px solid rgba(191, 149, 63, 0.25);
      }
      .srv-gold .srv-divider {
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
      }
      .srv-gold:hover {
        border-color: rgba(191, 149, 63, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(191, 149, 63, 0.08);
      }
      .srv-gold .srv-std-badge {
        border-color: rgba(191, 149, 63, 0.18);
        color: rgba(240, 210, 122, 0.65);
      }

      .srv-blue::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(59, 130, 246, 0.12) 0%,
          transparent 70%
        );
      }
      .srv-blue .srv-icon-wrap {
        background: rgba(59, 130, 246, 0.12);
        color: #60a5fa;
        border: 1px solid rgba(59, 130, 246, 0.25);
      }
      .srv-blue .srv-divider {
        background: linear-gradient(90deg, #3b82f6, #93c5fd);
      }
      .srv-blue:hover {
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(59, 130, 246, 0.08);
      }
      .srv-blue .srv-std-badge {
        border-color: rgba(59, 130, 246, 0.18);
        color: rgba(96, 165, 250, 0.65);
      }

      .srv-purple::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(168, 85, 247, 0.12) 0%,
          transparent 70%
        );
      }
      .srv-purple .srv-icon-wrap {
        background: rgba(168, 85, 247, 0.12);
        color: #c084fc;
        border: 1px solid rgba(168, 85, 247, 0.25);
      }
      .srv-purple .srv-divider {
        background: linear-gradient(90deg, #a855f7, #d8b4fe);
      }
      .srv-purple:hover {
        border-color: rgba(168, 85, 247, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(168, 85, 247, 0.08);
      }
      .srv-purple .srv-std-badge {
        border-color: rgba(168, 85, 247, 0.18);
        color: rgba(192, 132, 252, 0.65);
      }

      .srv-teal::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(20, 184, 166, 0.12) 0%,
          transparent 70%
        );
      }
      .srv-teal .srv-icon-wrap {
        background: rgba(20, 184, 166, 0.12);
        color: #5eead4;
        border: 1px solid rgba(20, 184, 166, 0.25);
      }
      .srv-teal .srv-divider {
        background: linear-gradient(90deg, #14b8a6, #99f6e4);
      }
      .srv-teal:hover {
        border-color: rgba(20, 184, 166, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(20, 184, 166, 0.08);
      }
      .srv-teal .srv-std-badge {
        border-color: rgba(20, 184, 166, 0.18);
        color: rgba(94, 234, 212, 0.65);
      }

      .srv-orange::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(251, 146, 60, 0.12) 0%,
          transparent 70%
        );
      }
      .srv-orange .srv-icon-wrap {
        background: rgba(251, 146, 60, 0.12);
        color: #fdba74;
        border: 1px solid rgba(251, 146, 60, 0.25);
      }
      .srv-orange .srv-divider {
        background: linear-gradient(90deg, #fb923c, #fed7aa);
      }
      .srv-orange:hover {
        border-color: rgba(251, 146, 60, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(251, 146, 60, 0.08);
      }
      .srv-orange .srv-std-badge {
        border-color: rgba(251, 146, 60, 0.18);
        color: rgba(253, 186, 116, 0.65);
      }

      .srv-green::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(34, 197, 94, 0.12) 0%,
          transparent 70%
        );
      }
      .srv-green .srv-icon-wrap {
        background: rgba(34, 197, 94, 0.12);
        color: #86efac;
        border: 1px solid rgba(34, 197, 94, 0.25);
      }
      .srv-green .srv-divider {
        background: linear-gradient(90deg, #22c55e, #bbf7d0);
      }
      .srv-green:hover {
        border-color: rgba(34, 197, 94, 0.3);
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.3),
          0 0 40px rgba(34, 197, 94, 0.08);
      }
      .srv-green .srv-std-badge {
        border-color: rgba(34, 197, 94, 0.18);
        color: rgba(134, 239, 172, 0.65);
      }

      /* ---- Card entrance animation ---- */
      .srv-card-wrap {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.5s ease,
          transform 0.5s ease;
      }
      .srv-card-wrap.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ============================================
   CTA SECTION
   ============================================ */
      .srv_cta_section {
        background: linear-gradient(135deg, #002349 0%, #003366 100%);
        padding: 84px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .srv_cta_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 900px 400px at 50% 100%,
          rgba(212, 175, 55, 0.12) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .srv_cta_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        position: relative;
      }
      .srv_cta_sub {
        color: rgba(255, 255, 255, 0.62);
        font-size: 1.05rem;
        max-width: 500px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
      }

      /* ============================================
   RESPONSIVE
   ============================================ */
      @media (max-width: 768px) {
        .services_banner {
          height: auto;
          margin-top: 0;
          min-height: 520px;
          padding-bottom: 90px;
        }
        .srv_banner_content {
          padding: 40px 1rem 80px;
        }
        .srv_banner_chip {
          margin-bottom: 20px;
        }
        .srv_banner_head {
          font-size: clamp(2rem, 8vw, 3rem);
          margin-bottom: 16px;
        }
        .srv_banner_sub {
          margin-bottom: 22px;
        }
        .srv_stat_num {
          font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        }
        .srv_stat_label {
          font-size: 0.65rem;
          letter-spacing: 1px;
        }
        .srv_banner_strip {
          padding: 14px 0;
        }
        .srv_tab_btn {
          padding: 14px 15px;
          font-size: 0.8rem;
          gap: 6px;
        }
        .srv-card {
          padding: 26px 20px;
        }
        .srv-icon-wrap {
          width: 54px;
          height: 54px;
          font-size: 1.4rem;
        }
        .srv_cards_section {
          padding: 52px 0 60px;
        }
        .srv_cta_section {
          padding: 60px 0;
        }
      }

      @media (max-width: 480px) {
        .services_banner { min-height: 420px; margin-top: 0; }
        .srv_banner_content { padding: 28px 0.5rem 60px; }
        .srv_banner_head { font-size: clamp(1.7rem, 7vw, 2.4rem); }
        .srv_cards_section { padding: 36px 0 44px; }
        .srv_cta_section { padding: 44px 0; }
        .srv-card { padding: 20px 16px; }
        .srv_tab_btn { font-size: 0.72rem; padding: 12px 10px; }
      }

      /* ============================================
   DARK MODE
   ============================================ */
      [data-theme="dark"] .srv_tab_section {
        background: #030508;
        border-bottom-color: rgba(255, 255, 255, 0.05);
      }
      [data-theme="dark"] .srv_tab_btn {
        color: rgba(255, 255, 255, 0.32);
      }
      [data-theme="dark"] .srv_tab_btn:hover {
        color: rgba(255, 255, 255, 0.72);
      }
      [data-theme="dark"] .srv_tab_btn.active {
        color: #ffd700;
        border-bottom-color: #ffd700;
      }
      [data-theme="dark"] .srv_tab_btn.active i {
        color: #ffd700;
      }
      [data-theme="dark"] .srv_cta_section {
        background: linear-gradient(135deg, #050c1a 0%, #0a1628 100%);
      }
    

/* ================================================================
   PROJECT.HTML
   ================================================================ */

      :root {
        --royal-blue: #002349;
        --royal-blue-gradient: linear-gradient(
          135deg,
          #002349 0%,
          #003366 100%
        );
        --gold-metallic: linear-gradient(
          45deg,
          #bf953f,
          #fcf6ba,
          #b38728,
          #fbf5b7,
          #aa771c
        );
        --gold-primary: #bf953f;
        --glass-bg: rgba(255, 255, 255, 0.05);
        --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      }

      /* ============================================
         HERO BANNER
      ============================================ */
      .prj_banner {
        min-height: 100vh;
        background: url("../images/project/bottomtank/tan.webp") center / cover
          no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }
      .prj_banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          160deg,
          rgba(0, 10, 30, 0.9) 0%,
          rgba(0, 35, 73, 0.76) 55%,
          rgba(0, 10, 30, 0.93) 100%
        );
      }
      .prj_banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 800px 500px at 50% 120%,
          rgba(212, 175, 55, 0.18) 0%,
          transparent 65%
        );
        pointer-events: none;
      }
      .prj_banner_content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 1.5rem;
        max-width: 720px;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .prj_banner_chip {
        display: inline-block;
        background: rgba(191, 149, 63, 0.15);
        border: 1px solid rgba(191, 149, 63, 0.4);
        color: #f5d78e;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 6px 20px;
        border-radius: 50px;
        margin-bottom: 24px;
      }
      .prj_banner_head {
        font-family: "Cinzel", serif;
        font-size: clamp(2.4rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 18px;
        background: linear-gradient(
          135deg,
          #ffffff 30%,
          #f5d78e 70%,
          #bf953f 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .prj_banner_sub {
        color: rgba(255, 255, 255, 0.68);
        font-size: 1.05rem;
        line-height: 1.7;
        max-width: 560px;
        margin-bottom: 28px;
      }
      .prj_breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
      }
      .prj_breadcrumb a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.2s;
      }
      .prj_breadcrumb a:hover {
        color: #f5d78e;
      }
      .prj_breadcrumb .bc_sep {
        color: rgba(255, 255, 255, 0.3);
      }
      .prj_breadcrumb .bc_active {
        color: #f5d78e;
        font-weight: 600;
      }

      /* Stats strip */
      .prj_banner_strip {
        position: relative;
        z-index: 3;
        width: 100%;
        background: rgba(0, 10, 30, 0.72);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(191, 149, 63, 0.2);
        padding: 20px 0;
      }
      .prj_stat_item {
        text-align: center;
        padding: 0 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
      }
      .prj_stat_item:last-child {
        border-right: none;
      }
      .prj_stat_num {
        display: block;
        font-family: "Cinzel", serif;
        font-size: clamp(1.25rem, 2.5vw, 1.65rem);
        font-weight: 700;
        color: #f5d78e;
        line-height: 1.1;
      }
      .prj_stat_label {
        display: block;
        font-size: 0.63rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
        margin-top: 5px;
      }

      /* ============================================
         SECTION HEADING
      ============================================ */
      .prj_section_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.6rem, 2.8vw, 2.4rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
      }
      .prj_section_sub {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.95rem;
        margin-bottom: 0;
      }

      /* ============================================
         PROJECT CARDS SECTION
      ============================================ */
      .prj_cards_section {
        background: #060d1a;
        padding: 80px 0 96px;
      }

      /* Grid */
      .prj_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
      @media (max-width: 992px) {
        .prj_grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 576px) {
        .prj_grid {
          grid-template-columns: 1fr;
        }
      }

      /* ── Filter Bar ── */
      .prj_filter_bar {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 28px;
      }
      .prj_filter_scroll {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        flex: 1;
      }
      .prj_filter_btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        border: 1.5px solid rgba(255,255,255,0.15);
        border-radius: 50px;
        background: rgba(255,255,255,0.04);
        color: rgba(255,255,255,0.65);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        cursor: pointer;
        transition: all 0.22s ease;
        white-space: nowrap;
      }
      .prj_filter_btn:hover {
        border-color: rgba(191,149,63,0.5);
        color: #fff;
        background: rgba(191,149,63,0.08);
      }
      .prj_filter_btn.active {
        background: linear-gradient(135deg,#bf953f,#fcf6ba 60%,#b38728);
        border-color: transparent;
        color: #0a0a0a;
      }
      .prj_filter_count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        height: 18px;
        padding: 0 5px;
        border-radius: 20px;
        background: rgba(255,255,255,0.15);
        font-size: 0.7rem;
        font-weight: 700;
        line-height: 1;
      }
      .prj_filter_btn.active .prj_filter_count {
        background: rgba(0,0,0,0.2);
      }

      /* ── Search ── */
      .prj_search_wrap {
        position: relative;
        display: flex;
        align-items: center;
        min-width: 220px;
      }
      .prj_search_icon {
        position: absolute;
        left: 14px;
        color: rgba(255,255,255,0.4);
        font-size: 0.85rem;
        pointer-events: none;
      }
      .prj_search_input {
        width: 100%;
        padding: 9px 36px 9px 36px;
        background: rgba(255,255,255,0.05);
        border: 1.5px solid rgba(255,255,255,0.12);
        border-radius: 50px;
        color: #fff;
        font-size: 0.84rem;
        outline: none;
        transition: border-color 0.2s;
      }
      .prj_search_input::placeholder { color: rgba(255,255,255,0.35); }
      .prj_search_input:focus { border-color: rgba(191,149,63,0.6); }
      .prj_search_clear {
        position: absolute;
        right: 10px;
        display: none;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border: none;
        background: rgba(255,255,255,0.12);
        border-radius: 50%;
        color: rgba(255,255,255,0.7);
        font-size: 0.65rem;
        cursor: pointer;
        padding: 0;
      }
      .prj_search_clear:hover { background: rgba(255,255,255,0.22); }

      /* ── Result count ── */
      .prj_result_count {
        color: rgba(255,255,255,0.38);
        font-size: 0.8rem;
        margin-bottom: 20px;
        letter-spacing: 0.02em;
      }

      /* ── Hidden card (filtered out) ── */
      .prj_card_wrap.prj_hidden {
        display: none;
      }

      /* ── No results ── */
      .prj_no_results {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 60px 20px;
        color: rgba(255,255,255,0.4);
        font-size: 0.95rem;
        grid-column: 1 / -1;
        text-align: center;
      }
      .prj_reset_link {
        background: none;
        border: none;
        color: #bf953f;
        font-weight: 600;
        cursor: pointer;
        text-decoration: underline;
        font-size: inherit;
        padding: 0;
      }
      .prj_reset_link:hover { opacity: 0.8; }

      /* ── Responsive filter bar ── */
      @media (max-width: 768px) {
        .prj_filter_bar { flex-direction: column; align-items: stretch; }
        .prj_filter_scroll { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
        .prj_filter_scroll::-webkit-scrollbar { height: 3px; }
        .prj_filter_scroll::-webkit-scrollbar-thumb { background: rgba(191,149,63,0.4); border-radius: 3px; }
        .prj_search_wrap { min-width: unset; }
      }

      /* Card wrapper */
      .prj_card_wrap {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.5s ease,
          transform 0.5s ease;
      }
      .prj_card_wrap.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Card */
      .prj_card {
        position: relative;
        background: #0d1a30;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 16px;
        overflow: hidden;
        transition:
          transform 0.35s ease,
          box-shadow 0.35s ease,
          border-color 0.35s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
      }
      .prj_card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0;
        transition: opacity 0.35s ease;
      }
      .prj_card:hover {
        transform: translateY(-6px);
      }
      .prj_card:hover::before {
        opacity: 1;
      }

      /* Image */
      .prj_card_img_wrap {
        position: relative;
        overflow: hidden;
      }
      .prj_card_img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
      }
      .prj_card:hover .prj_card_img {
        transform: scale(1.06);
      }
      .prj_card_num {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(0, 10, 30, 0.72);
        border: 1px solid rgba(191, 149, 63, 0.38);
        color: #f5d78e;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding: 4px 12px;
        border-radius: 50px;
        text-transform: uppercase;
      }
      .prj_client_badge {
        position: absolute;
        top: 14px;
        right: 14px;
        background: rgba(0, 35, 73, 0.82);
        border: 1px solid rgba(191, 149, 63, 0.25);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.8px;
        padding: 4px 12px;
        border-radius: 50px;
      }

      /* Card body */
      .prj_card_body {
        padding: 24px 22px 22px;
        position: relative;
        z-index: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .prj_divider {
        height: 2px;
        width: 44px;
        border-radius: 2px;
        margin-bottom: 14px;
      }
      .prj_card_title {
        font-family: "Cinzel", serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.5;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .prj_card_excerpt {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 16px;
      }
      .prj_standards_row {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 18px;
      }
      .prj_std_badge {
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border: 1px solid;
        padding: 3px 9px;
        border-radius: 50px;
        text-transform: uppercase;
      }
      .prj_view_btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(
          135deg,
          #bf953f 0%,
          #fcf6ba 50%,
          #b38728 100%
        );
        color: #002349;
        font-weight: 700;
        font-size: 0.8rem;
        padding: 10px 22px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition:
          opacity 0.2s,
          transform 0.2s;
        align-self: flex-start;
        margin-top: auto;
      }
      .prj_view_btn:hover {
        opacity: 0.88;
        transform: translateX(3px);
        color: #002349;
      }

      /* ---- Color variants ---- */
      .prj-gold .prj_card {
        border-color: rgba(191, 149, 63, 0.2);
      }
      .prj-gold .prj_card::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(191, 149, 63, 0.1) 0%,
          transparent 70%
        );
      }
      .prj-gold .prj_card:hover {
        border-color: rgba(191, 149, 63, 0.45);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.5),
          0 0 35px rgba(191, 149, 63, 0.13);
      }
      .prj-gold .prj_divider {
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
      }
      .prj-gold .prj_std_badge {
        border-color: rgba(191, 149, 63, 0.28);
        color: rgba(245, 215, 142, 0.72);
      }

      .prj-blue .prj_card {
        border-color: rgba(59, 130, 246, 0.15);
      }
      .prj-blue .prj_card::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(59, 130, 246, 0.1) 0%,
          transparent 70%
        );
      }
      .prj-blue .prj_card:hover {
        border-color: rgba(59, 130, 246, 0.35);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.5),
          0 0 35px rgba(59, 130, 246, 0.1);
      }
      .prj-blue .prj_divider {
        background: linear-gradient(90deg, #3b82f6, #93c5fd);
      }
      .prj-blue .prj_std_badge {
        border-color: rgba(59, 130, 246, 0.22);
        color: rgba(96, 165, 250, 0.72);
      }

      .prj-purple .prj_card {
        border-color: rgba(168, 85, 247, 0.15);
      }
      .prj-purple .prj_card::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(168, 85, 247, 0.1) 0%,
          transparent 70%
        );
      }
      .prj-purple .prj_card:hover {
        border-color: rgba(168, 85, 247, 0.35);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.5),
          0 0 35px rgba(168, 85, 247, 0.1);
      }
      .prj-purple .prj_divider {
        background: linear-gradient(90deg, #a855f7, #d8b4fe);
      }
      .prj-purple .prj_std_badge {
        border-color: rgba(168, 85, 247, 0.22);
        color: rgba(192, 132, 252, 0.72);
      }

      .prj-teal .prj_card {
        border-color: rgba(20, 184, 166, 0.15);
      }
      .prj-teal .prj_card::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(20, 184, 166, 0.1) 0%,
          transparent 70%
        );
      }
      .prj-teal .prj_card:hover {
        border-color: rgba(20, 184, 166, 0.35);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.5),
          0 0 35px rgba(20, 184, 166, 0.1);
      }
      .prj-teal .prj_divider {
        background: linear-gradient(90deg, #14b8a6, #99f6e4);
      }
      .prj-teal .prj_std_badge {
        border-color: rgba(20, 184, 166, 0.22);
        color: rgba(94, 234, 212, 0.72);
      }

      .prj-orange .prj_card {
        border-color: rgba(251, 146, 60, 0.15);
      }
      .prj-orange .prj_card::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(251, 146, 60, 0.1) 0%,
          transparent 70%
        );
      }
      .prj-orange .prj_card:hover {
        border-color: rgba(251, 146, 60, 0.35);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.5),
          0 0 35px rgba(251, 146, 60, 0.1);
      }
      .prj-orange .prj_divider {
        background: linear-gradient(90deg, #fb923c, #fed7aa);
      }
      .prj-orange .prj_std_badge {
        border-color: rgba(251, 146, 60, 0.22);
        color: rgba(253, 186, 116, 0.72);
      }

      .prj-green .prj_card {
        border-color: rgba(34, 197, 94, 0.15);
      }
      .prj-green .prj_card::before {
        background: radial-gradient(
          ellipse at bottom left,
          rgba(34, 197, 94, 0.1) 0%,
          transparent 70%
        );
      }
      .prj-green .prj_card:hover {
        border-color: rgba(34, 197, 94, 0.35);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.5),
          0 0 35px rgba(34, 197, 94, 0.1);
      }
      .prj-green .prj_divider {
        background: linear-gradient(90deg, #22c55e, #bbf7d0);
      }
      .prj-green .prj_std_badge {
        border-color: rgba(34, 197, 94, 0.22);
        color: rgba(134, 239, 172, 0.72);
      }

      /* ============================================
         CTA SECTION
      ============================================ */
      .prj_cta_section {
        background: linear-gradient(135deg, #002349 0%, #003366 100%);
        padding: 84px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .prj_cta_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 900px 400px at 50% 100%,
          rgba(212, 175, 55, 0.12) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .prj_cta_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        position: relative;
      }
      .prj_cta_sub {
        color: rgba(255, 255, 255, 0.62);
        font-size: 1.05rem;
        max-width: 500px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
      }
      .prj_cta_btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(
          135deg,
          #bf953f 0%,
          #fcf6ba 50%,
          #b38728 100%
        );
        color: #002349;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 14px 36px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition:
          opacity 0.2s,
          transform 0.2s;
      }
      .prj_cta_btn:hover {
        opacity: 0.88;
        transform: translateY(-2px);
        color: #002349;
      }

      /* ============================================
         RESPONSIVE
      ============================================ */
      @media (max-width: 768px) {
        .prj_banner {
          height: auto;
          min-height: 520px;
          margin-top: 0;
        }
        .prj_banner_content {
          padding: 48px 1rem 40px;
        }
        .prj_banner_head {
          font-size: clamp(2rem, 8vw, 3rem);
        }
        .prj_stat_num {
          font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        }
        .prj_stat_label {
          font-size: 0.6rem;
        }
        .prj_banner_strip {
          padding: 14px 0;
        }
        .prj_cards_section {
          padding: 60px 0 72px;
        }
        .prj_cta_section {
          padding: 60px 0;
        }
      }

      @media (max-width: 480px) {
        .prj_banner { min-height: 400px; margin-top: 0; }
        .prj_banner_content { padding: 28px 0.5rem 36px; }
        .prj_banner_head { font-size: clamp(1.7rem, 7vw, 2.4rem); }
        .prj_cards_section { padding: 40px 0 52px; }
        .prj_cta_section { padding: 44px 0; }
        .prj_card_wrap { padding: 20px 18px 22px; }
        .prj_card_num { font-size: 2.4rem; }
      }

      /* ============================================
         DARK MODE
      ============================================ */
      [data-theme="dark"] .prj_cards_section {
        background: #030508;
      }
      [data-theme="dark"] .prj_card {
        background: #060d1a;
      }
      [data-theme="dark"] .prj_cta_section {
        background: linear-gradient(135deg, #050c1a 0%, #0a1628 100%);
      }
    

/* ================================================================
   CONTACT.HTML
   ================================================================ */

      :root {
        --royal-blue: #002349;
        --gold-primary: #bf953f;
        --gold-light: #f5d78e;
        --dark-bg: #060d1a;
        --card-bg: #0d1a30;
        --border-subtle: rgba(255, 255, 255, 0.07);
        --text-muted: rgba(255, 255, 255, 0.5);
      }

      body {
        background: var(--dark-bg);
        color: rgba(255, 255, 255, 0.85);
      }

      /* ============================================
         HERO BANNER
      ============================================ */
      .ctc_banner {
        height: 62vh;
        min-height: 460px;
        background:
          linear-gradient(
            180deg,
            rgba(6, 13, 26, 0.45) 0%,
            rgba(6, 13, 26, 0.72) 55%,
            rgba(6, 13, 26, 0.98) 100%
          ),
          url("../images/project/bottomtank/tan.webp") center / cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        overflow: hidden;
      }
      .ctc_banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 800px 500px at 80% 110%,
          rgba(191, 149, 63, 0.12) 0%,
          transparent 65%
        );
        pointer-events: none;
      }
      .ctc_banner_content {
        position: relative;
        z-index: 2;
        padding: 0 0 52px;
        width: 100%;
      }
      .ctc_banner_chip {
        display: inline-block;
        background: rgba(191, 149, 63, 0.15);
        border: 1px solid rgba(191, 149, 63, 0.4);
        color: var(--gold-light);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 5px 18px;
        border-radius: 50px;
        margin-bottom: 18px;
      }
      .ctc_banner_title {
        font-family: "Cinzel", serif;
        font-size: clamp(2rem, 5vw, 3.6rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 20px;
        background: linear-gradient(
          135deg,
          #ffffff 30%,
          #f5d78e 70%,
          #bf953f 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        max-width: 680px;
      }
      .ctc_breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.45);
      }
      .ctc_breadcrumb a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        transition: color 0.2s;
      }
      .ctc_breadcrumb a:hover {
        color: var(--gold-light);
      }
      .ctc_breadcrumb .bc_sep {
        color: rgba(255, 255, 255, 0.22);
      }
      .ctc_breadcrumb .bc_active {
        color: var(--gold-light);
        font-weight: 600;
      }

      /* ============================================
         CONTACT CARDS ROW
      ============================================ */
      .ctc_cards_section {
        background: var(--dark-bg);
        padding: 0;
        margin-top: -2px;
      }
      .ctc_cards_strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
      }
      @media (max-width: 768px) {
        .ctc_cards_strip {
          grid-template-columns: 1fr;
        }
      }
      .ctc_info_card {
        padding: 38px 32px;
        border-right: 1px solid var(--border-subtle);
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: background 0.25s;
        text-decoration: none;
        color: inherit;
      }
      .ctc_info_card:last-child {
        border-right: none;
      }
      @media (max-width: 768px) {
        .ctc_info_card {
          border-right: none;
          border-bottom: 1px solid var(--border-subtle);
        }
        .ctc_info_card:last-child {
          border-bottom: none;
        }
      }
      .ctc_info_card:hover {
        background: rgba(191, 149, 63, 0.04);
      }
      .ctc_card_icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(191, 149, 63, 0.12);
        border: 1px solid rgba(191, 149, 63, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-light);
        font-size: 1.2rem;
        flex-shrink: 0;
      }
      .ctc_card_label {
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold-primary);
        margin-bottom: 5px;
      }
      .ctc_card_value {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 3px;
        line-height: 1.3;
      }
      .ctc_card_sub {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.38);
      }

      /* ============================================
         MAIN CONTACT SECTION
      ============================================ */
      .ctc_main_section {
        background: var(--dark-bg);
        padding: 80px 0 96px;
      }
      .ctc_section_label {
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--gold-primary);
        margin-bottom: 10px;
        display: block;
      }
      .ctc_section_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.4rem, 2.4vw, 2rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 0;
        line-height: 1.3;
      }
      .ctc_gold_divider {
        height: 2px;
        width: 48px;
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
        border-radius: 2px;
        margin: 14px 0 24px;
      }

      /* ---- FORM ---- */
      .ctc_form_card {
        background: var(--card-bg);
        border: 1px solid var(--border-subtle);
        border-radius: 20px;
        padding: 40px 36px;
      }
      @media (max-width: 576px) {
        .ctc_form_card {
          padding: 28px 18px;
        }
      }
      .ctc_field_group {
        margin-bottom: 20px;
      }
      .ctc_field_label {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 8px;
        display: block;
      }
      .ctc_input {
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 13px 18px;
        color: #fff;
        font-size: 0.9rem;
        outline: none;
        transition:
          border-color 0.2s,
          background 0.2s;
        -webkit-appearance: none;
      }
      .ctc_input::placeholder {
        color: rgba(255, 255, 255, 0.22);
      }
      .ctc_input:focus {
        border-color: rgba(191, 149, 63, 0.5);
        background: rgba(191, 149, 63, 0.04);
      }
      .ctc_input.ctc_textarea {
        min-height: 130px;
        resize: vertical;
      }
      .ctc_select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23bf953f' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 42px;
        cursor: pointer;
      }
      .ctc_select option {
        background: #0d1a30;
        color: #fff;
      }
      .ctc_submit_btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(
          135deg,
          #bf953f 0%,
          #fcf6ba 50%,
          #b38728 100%
        );
        color: #002349;
        font-weight: 700;
        font-size: 0.92rem;
        padding: 14px 40px;
        border-radius: 50px;
        border: none;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition:
          opacity 0.2s,
          transform 0.2s;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
      }
      .ctc_submit_btn:hover {
        opacity: 0.88;
        transform: translateY(-2px);
      }
      .ctc_invalid {
        font-size: 0.75rem;
        color: #f87171;
        margin-top: 5px;
        display: none;
      }
      .ctc_input:invalid:not(:placeholder-shown) + .ctc_invalid {
        display: block;
      }

      /* ---- SIDEBAR ---- */
      .ctc_sidebar_block {
        background: var(--card-bg);
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 28px 26px;
        margin-bottom: 20px;
      }
      .ctc_office_row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      .ctc_office_row:last-child {
        border-bottom: none;
      }
      .ctc_office_dot {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(191, 149, 63, 0.1);
        border: 1px solid rgba(191, 149, 63, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-light);
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .ctc_office_name {
        font-size: 0.82rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
      }
      .ctc_office_addr {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.6;
      }
      .ctc_hours_row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.8rem;
      }
      .ctc_hours_row:last-child {
        border-bottom: none;
      }
      .ctc_hours_day {
        color: rgba(255, 255, 255, 0.45);
      }
      .ctc_hours_time {
        color: #fff;
        font-weight: 600;
      }
      .ctc_hours_time.open {
        color: #4ade80;
      }
      .ctc_social_row {
        display: flex;
        gap: 10px;
        margin-top: 4px;
      }
      .ctc_social_btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-subtle);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        text-decoration: none;
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s;
      }
      .ctc_social_btn:hover {
        background: rgba(191, 149, 63, 0.12);
        border-color: rgba(191, 149, 63, 0.3);
        color: var(--gold-light);
      }
      .ctc_response_badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(74, 222, 128, 0.08);
        border: 1px solid rgba(74, 222, 128, 0.2);
        color: #4ade80;
        font-size: 0.73rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 6px 14px;
        border-radius: 50px;
        margin-bottom: 20px;
      }
      .ctc_response_badge i {
        font-size: 0.7rem;
      }

      /* ---- FORM SUCCESS STATE ---- */
      .ctc_success_msg {
        display: none;
        text-align: center;
        padding: 48px 24px;
      }
      .ctc_success_msg i {
        font-size: 3rem;
        color: #4ade80;
        display: block;
        margin-bottom: 20px;
      }
      .ctc_success_msg h3 {
        font-family: "Cinzel", serif;
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 10px;
      }
      .ctc_success_msg p {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.9rem;
        margin-bottom: 0;
      }

      .ctc_error_msg {
        display: none;
        align-items: flex-start;
        gap: 12px;
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.35);
        border-radius: 10px;
        padding: 14px 18px;
        margin-top: 16px;
      }
      .ctc_error_msg i {
        font-size: 1.2rem;
        color: #ef4444;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .ctc_error_msg p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.88rem;
        margin: 0;
        line-height: 1.5;
      }
      .ctc_error_msg a {
        color: #bf953f;
        text-decoration: underline;
      }

      /* ============================================
         MAP SECTION
      ============================================ */
      .ctc_map_section {
        background: var(--dark-bg);
        padding: 0 0 88px;
      }
      .ctc_map_wrap {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border-subtle);
        position: relative;
      }
      .ctc_map_wrap iframe {
        width: 100%;
        height: 380px;
        display: block;
        filter: grayscale(30%) contrast(1.05);
      }

      /* ============================================
         CTA BAND
      ============================================ */
      .ctc_cta_section {
        background: linear-gradient(135deg, #002349 0%, #003366 100%);
        padding: 84px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .ctc_cta_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 900px 400px at 50% 100%,
          rgba(212, 175, 55, 0.12) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .ctc_cta_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.7rem, 3vw, 2.6rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 14px;
        position: relative;
      }
      .ctc_cta_sub {
        color: rgba(255, 255, 255, 0.55);
        font-size: 1rem;
        max-width: 480px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
      }
      .ctc_cta_row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        position: relative;
      }
      .ctc_cta_btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(
          135deg,
          #bf953f 0%,
          #fcf6ba 50%,
          #b38728 100%
        );
        color: #002349;
        font-weight: 700;
        font-size: 0.92rem;
        padding: 14px 36px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition:
          opacity 0.2s,
          transform 0.2s;
      }
      .ctc_cta_btn:hover {
        opacity: 0.88;
        transform: translateY(-2px);
        color: #002349;
      }
      .ctc_cta_btn_outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.22);
        font-weight: 600;
        font-size: 0.92rem;
        padding: 13px 28px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition:
          border-color 0.2s,
          color 0.2s;
      }
      .ctc_cta_btn_outline:hover {
        border-color: var(--gold-primary);
        color: var(--gold-light);
      }

      /* ============================================
         RESPONSIVE
      ============================================ */
      @media (max-width: 768px) {
        .ctc_banner {
          height: auto;
          min-height: 380px;
        }
        .ctc_banner_content {
          padding-bottom: 36px;
        }
        .ctc_main_section {
          padding: 56px 0 72px;
        }
        .ctc_cta_section {
          padding: 60px 0;
        }
      }

      @media (max-width: 480px) {
        .ctc_banner { min-height: 340px; }
        .ctc_banner_content { padding: 0 0 28px; }
        .ctc_banner_title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
        .ctc_cards_strip { grid-template-columns: 1fr; }
        .ctc_info_card { padding: 22px 18px; }
        .ctc_main_section { padding: 40px 0 52px; }
        .ctc_form_card { padding: 22px 14px; }
        .ctc_sidebar_block { padding: 20px 16px; }
        .ctc_cta_section { padding: 44px 0; }
      }
    

/* ================================================================
   GALLERY.HTML
   ================================================================ */

      :root {
        --royal-blue: #002349;
        --royal-blue-gradient: linear-gradient(
          135deg,
          #002349 0%,
          #003366 100%
        );
        --gold-metallic: linear-gradient(
          45deg,
          #bf953f,
          #fcf6ba,
          #b38728,
          #fbf5b7,
          #aa771c
        );
        --gold-primary: #bf953f;
        --glass-bg: rgba(255, 255, 255, 0.05);
        --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      }

      /* ============================================
         HERO BANNER
      ============================================ */
      .gallery_banner {
        min-height: 100vh;
        background: url("../images/gallery/ban.webp") center/cover no-repeat;
        display: flex;
        margin-top: 10%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }
      .gallery_banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(5, 10, 30, 0.94) 0%,
          rgba(20, 60, 130, 0.86) 50%,
          rgba(5, 10, 28, 0.96) 100%
        );
        z-index: 1;
      }
      .gallery_banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at 20% 65%,
            rgba(212, 175, 55, 0.18) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 25%,
            rgba(255, 215, 0, 0.1) 0%,
            transparent 40%
          );
        z-index: 1;
        pointer-events: none;
      }
      .glr_banner_content {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 100%;
        padding: 0 1.5rem 72px;
      }
      .glr_banner_chip {
        display: inline-block;
        background: rgba(191, 149, 63, 0.18);
        border: 1px solid rgba(191, 149, 63, 0.45);
        color: #f0d27a;
        padding: 8px 26px;
        border-radius: 50px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 28px;
      }
      .glr_banner_head {
        font-family: "Cinzel", serif;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        font-weight: 800;
        background: linear-gradient(
          to right,
          #ffffff 0%,
          #ffd700 50%,
          #ffffff 100%
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.25;
        margin-bottom: 22px;
      }
      .glr_banner_sub {
        color: rgba(255, 255, 255, 0.72);
        font-size: clamp(0.95rem, 1.4vw, 1.1rem);
        max-width: 580px;
        margin: 0 auto 30px;
        line-height: 1.8;
      }
      .glr_breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        padding: 9px 24px;
        border-radius: 50px;
        font-size: 0.88rem;
        margin-top: 4px;
      }
      .glr_breadcrumb a {
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        transition: color 0.3s;
      }
      .glr_breadcrumb a:hover {
        color: #ffd700;
      }
      .glr_breadcrumb .bc_sep {
        color: rgba(255, 255, 255, 0.3);
      }
      .glr_breadcrumb .bc_active {
        color: #f0d27a;
        font-weight: 600;
      }

      /* Stats Strip */
      .glr_banner_strip {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 3;
        padding: 20px 0;
      }
      .glr_stat_item {
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0 8px;
      }
      .glr_stat_item:last-child {
        border-right: none;
      }
      .glr_stat_num {
        font-family: "Cinzel", serif;
        font-size: clamp(1.4rem, 2.5vw, 2rem);
        font-weight: 800;
        color: #ffd700;
        line-height: 1.1;
        display: block;
      }
      .glr_stat_label {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-top: 6px;
        display: block;
      }

      /* ============================================
         FILTER TAB BAR
      ============================================ */
      .glr_filter_section {
        background: #05080f;
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
      }
      .glr_filter_bar {
        display: flex;
        overflow-x: auto;
        justify-content: center;
        align-items: center;
        scrollbar-width: none;
        padding: 0 16px;
      }
      .glr_filter_bar::-webkit-scrollbar {
        display: none;
      }
      .glr_filter_btn {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 17px 20px;
        background: transparent;
        border: none;
        border-bottom: 3px solid transparent;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.4px;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .glr_filter_btn i {
        font-size: 1rem;
        transition: color 0.3s;
      }
      .glr_filter_btn:hover {
        color: rgba(255, 255, 255, 0.78);
      }
      .glr_filter_btn.active {
        color: #ffd700;
        border-bottom-color: #ffd700;
      }
      .glr_filter_btn.active i {
        color: #ffd700;
      }

      /* ============================================
         GALLERY GRID SECTION
      ============================================ */
      .glr_grid_section {
        background: linear-gradient(
          160deg,
          #060c1e 0%,
          #0d1e3c 45%,
          #081528 100%
        );
        padding: 72px 0 84px;
        position: relative;
        overflow: hidden;
      }
      .glr_grid_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 700px 450px at 5% 15%,
            rgba(59, 130, 246, 0.06) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 550px 380px at 95% 85%,
            rgba(212, 175, 55, 0.06) 0%,
            transparent 70%
          );
        pointer-events: none;
      }
      .glr_section_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.5rem, 2.5vw, 2.2rem);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 4px;
      }
      .glr_section_sub {
        color: rgba(255, 255, 255, 0.38);
        font-size: 0.88rem;
        letter-spacing: 1px;
      }
      .glr_count_badge {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.78rem;
        padding: 5px 16px;
        border-radius: 50px;
        letter-spacing: 0.5px;
      }
      .glr_count_badge span {
        color: #ffd700;
        font-weight: 700;
      }

      /* Uniform grid */
      .glr_masonry {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      @media (max-width: 992px) {
        .glr_masonry {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 576px) {
        .glr_masonry {
          grid-template-columns: 1fr;
        }
      }

      /* Gallery card */
      .glr_card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        background: #0d1a30;
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition:
          transform 0.35s ease,
          box-shadow 0.35s ease,
          border-color 0.35s ease;
      }
      .glr_card:hover {
        transform: translateY(-5px);
        box-shadow:
          0 22px 55px rgba(0, 0, 0, 0.55),
          0 0 35px rgba(212, 175, 55, 0.1);
        border-color: rgba(191, 149, 63, 0.3);
      }
      .glr_card_img {
        width: 100%;
        aspect-ratio: 4 / 3;
        display: block;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .glr_card:hover .glr_card_img {
        transform: scale(1.06);
      }

      /* Hover overlay */
      .glr_card_overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(2, 12, 40, 0.93) 0%,
          rgba(2, 12, 40, 0.4) 45%,
          transparent 100%
        );
        opacity: 0;
        transition: opacity 0.35s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 22px 20px;
      }
      .glr_card:hover .glr_card_overlay {
        opacity: 1;
      }
      .glr_card_cat {
        display: inline-block;
        background: rgba(191, 149, 63, 0.22);
        border: 1px solid rgba(191, 149, 63, 0.42);
        color: #f0d27a;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 50px;
        margin-bottom: 9px;
        width: fit-content;
      }
      .glr_card_title {
        color: #ffffff;
        font-size: 0.93rem;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
      }
      .glr_zoom_icon {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        background: rgba(0, 0, 0, 0.52);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.9rem;
        opacity: 0;
        transition:
          opacity 0.3s ease,
          transform 0.3s ease,
          background 0.3s ease;
        transform: scale(0.82);
        backdrop-filter: blur(4px);
      }
      .glr_card:hover .glr_zoom_icon {
        opacity: 1;
        transform: scale(1);
        background: rgba(191, 149, 63, 0.3);
      }

      /* Card entrance animation */
      .glr_card_wrap {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.45s ease,
          transform 0.45s ease;
      }
      .glr_card_wrap.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Empty state */
      .glr_empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 80px 20px;
        color: rgba(255, 255, 255, 0.28);
      }
      .glr_empty i {
        font-size: 3.2rem;
        display: block;
        margin-bottom: 16px;
      }
      .glr_empty p {
        font-size: 1rem;
        margin: 0;
      }

      /* ============================================
         LIGHTBOX MODAL
      ============================================ */
      #glrModal .modal-content {
        background: rgba(4, 8, 22, 0.98);
      }
      #glrModal .modal-body {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 70vh;
        padding: 60px 80px 48px;
        position: relative;
      }
      #glrModalImage {
        max-height: 80vh;
        max-width: 100%;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
        cursor: zoom-in;
        transition: transform 0.32s ease;
        user-select: none;
      }
      #glrModalImage.zoomed {
        transform: scale(1.75);
        cursor: zoom-out;
      }
      .glr_modal_arrow {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.3rem;
        cursor: pointer;
        z-index: 1060;
        transition:
          background 0.25s,
          color 0.25s,
          border-color 0.25s;
        backdrop-filter: blur(8px);
      }
      .glr_modal_arrow:hover {
        background: rgba(191, 149, 63, 0.28);
        border-color: rgba(191, 149, 63, 0.4);
        color: #ffd700;
      }
      .glr_modal_arrow.left-arrow {
        left: 18px;
      }
      .glr_modal_arrow.right-arrow {
        right: 18px;
      }
      .glr_modal_info {
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.58);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 7px 20px;
        border-radius: 50px;
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.8rem;
        white-space: nowrap;
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .glr_modal_counter {
        color: #ffd700;
        font-weight: 700;
      }
      .glr_modal_sep {
        color: rgba(255, 255, 255, 0.2);
      }

      /* ============================================
         CTA SECTION
      ============================================ */
      .glr_cta_section {
        background: linear-gradient(135deg, #002349 0%, #003366 100%);
        padding: 84px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .glr_cta_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 900px 420px at 50% 100%,
          rgba(212, 175, 55, 0.12) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .glr_cta_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        position: relative;
      }
      .glr_cta_sub {
        color: rgba(255, 255, 255, 0.62);
        font-size: 1.05rem;
        max-width: 520px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
      }
      .glr_cta_btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(
          135deg,
          #bf953f 0%,
          #fcf6ba 50%,
          #b38728 100%
        );
        color: #002349;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 14px 36px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        position: relative;
      }
      .glr_cta_btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(191, 149, 63, 0.38);
        color: #002349;
      }
      .glr_cta_btn_outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: rgba(255, 255, 255, 0.78);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 13px 34px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        text-decoration: none;
        transition:
          border-color 0.3s,
          color 0.3s,
          transform 0.3s;
      }
      .glr_cta_btn_outline:hover {
        border-color: rgba(191, 149, 63, 0.55);
        color: #f0d27a;
        transform: translateY(-3px);
      }

      /* ============================================
         RESPONSIVE
      ============================================ */
      @media (max-width: 768px) {
        .gallery_banner {
          height: auto;
          min-height: 520px;
          padding-bottom: 90px;
        }
        .glr_banner_content {
          padding: 40px 1rem 80px;
        }
        .glr_banner_chip {
          margin-bottom: 20px;
        }
        .glr_banner_head {
          font-size: clamp(2rem, 8vw, 3rem);
          margin-bottom: 16px;
        }
        .glr_banner_sub {
          margin-bottom: 22px;
        }
        .glr_stat_num {
          font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        }
        .glr_stat_label {
          font-size: 0.65rem;
          letter-spacing: 1px;
        }
        .glr_banner_strip {
          padding: 14px 0;
        }
        .glr_filter_btn {
          padding: 14px 15px;
          font-size: 0.8rem;
          gap: 6px;
        }
        .glr_grid_section {
          padding: 52px 0 60px;
        }
        .glr_cta_section {
          padding: 60px 0;
        }
        #glrModal .modal-body {
          padding: 52px 16px 48px;
        }
        .glr_modal_arrow {
          width: 42px;
          height: 42px;
          font-size: 1.1rem;
        }
        .glr_modal_arrow.left-arrow {
          left: 8px;
        }
        .glr_modal_arrow.right-arrow {
          right: 8px;
        }
      }

      @media (max-width: 480px) {
        .gallery_banner { min-height: 400px; }
        .glr_banner_content { padding: 28px 0.5rem 60px; }
        .glr_banner_head { font-size: clamp(1.7rem, 7vw, 2.4rem); }
        .glr_grid_section { padding: 36px 0 44px; }
        .glr_cta_section { padding: 44px 0; }
        .glr_filter_btn { font-size: 0.7rem; padding: 10px 10px; }
        .glr_section_head { font-size: 1.2rem; }
      }

      /* ============================================
         DARK MODE
      ============================================ */
      [data-theme="dark"] .glr_filter_section {
        background: #030508;
        border-bottom-color: rgba(255, 255, 255, 0.05);
      }
      [data-theme="dark"] .glr_filter_btn {
        color: rgba(255, 255, 255, 0.32);
      }
      [data-theme="dark"] .glr_filter_btn:hover {
        color: rgba(255, 255, 255, 0.72);
      }
      [data-theme="dark"] .glr_filter_btn.active {
        color: #ffd700;
        border-bottom-color: #ffd700;
      }
      [data-theme="dark"] .glr_filter_btn.active i {
        color: #ffd700;
      }
      [data-theme="dark"] .glr_cta_section {
        background: linear-gradient(135deg, #050c1a 0%, #0a1628 100%);
      }
      [data-theme="dark"] .glr_count_badge {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.07);
      }
    

/* ================================================================
   SAMPLEPROJECTS.HTML
   ================================================================ */

      :root {
        --royal-blue: #002349;
        --gold-primary: #bf953f;
        --gold-light: #f5d78e;
        --dark-bg: #060d1a;
        --card-bg: #0d1a30;
        --border-subtle: rgba(255, 255, 255, 0.07);
        --text-muted: rgba(255, 255, 255, 0.5);
      }

      body {
        background: var(--dark-bg);
        color: rgba(255, 255, 255, 0.85);
      }

      /* ============================================
         HERO BANNER
      ============================================ */
      .spd_banner {
        min-height: 100vh;
        background: #0d1a30 center / cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        overflow: hidden;
      }
      .spd_banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(6, 13, 26, 0.35) 0%,
          rgba(6, 13, 26, 0.65) 50%,
          rgba(6, 13, 26, 0.97) 100%
        );
      }
      .spd_banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 700px 400px at 20% 120%,
          rgba(191, 149, 63, 0.15) 0%,
          transparent 65%
        );
        pointer-events: none;
      }
      .spd_banner_content {
        position: relative;
        z-index: 2;
        padding: 0 0 48px;
        width: 100%;
      }
      .spd_banner_chip {
        display: inline-block;
        background: rgba(191, 149, 63, 0.15);
        border: 1px solid rgba(191, 149, 63, 0.4);
        color: var(--gold-light);
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 5px 16px;
        border-radius: 50px;
        margin-bottom: 16px;
      }
      .spd_banner_title {
        font-family: "Cinzel", serif;
        font-size: clamp(1.5rem, 3.5vw, 2.8rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 18px;
        background: linear-gradient(
          135deg,
          #ffffff 30%,
          #f5d78e 70%,
          #bf953f 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        max-width: 820px;
      }
      .spd_banner_meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
      }
      .spd_meta_pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(0, 35, 73, 0.7);
        border: 1px solid rgba(191, 149, 63, 0.25);
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.75rem;
        font-weight: 600;
        padding: 5px 14px;
        border-radius: 50px;
      }
      .spd_meta_pill i {
        color: var(--gold-light);
        font-size: 0.8rem;
      }
      .spd_breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.45);
      }
      .spd_breadcrumb a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        transition: color 0.2s;
      }
      .spd_breadcrumb a:hover {
        color: var(--gold-light);
      }
      .spd_breadcrumb .bc_sep {
        color: rgba(255, 255, 255, 0.25);
      }
      .spd_breadcrumb .bc_active {
        color: var(--gold-light);
        font-weight: 600;
      }

      /* ============================================
         OVERVIEW SECTION
      ============================================ */
      .spd_overview_section {
        background: var(--dark-bg);
        padding: 72px 0 0;
      }
      .spd_back_btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.82rem;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 0.5px;
        margin-bottom: 36px;
        transition: color 0.2s;
      }
      .spd_back_btn:hover {
        color: var(--gold-light);
      }
      .spd_section_label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--gold-primary);
        margin-bottom: 10px;
        display: block;
      }
      .spd_section_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.35rem, 2.2vw, 1.9rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 0;
        line-height: 1.3;
      }
      .spd_gold_divider {
        height: 2px;
        width: 48px;
        background: linear-gradient(90deg, #bf953f, #fcf6ba);
        border-radius: 2px;
        margin: 14px 0 20px;
      }
      .spd_overview_text {
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.95rem;
        line-height: 1.8;
      }

      /* ============================================
         GALLERY STRIP
      ============================================ */
      .spd_gallery_section {
        background: var(--dark-bg);
        padding: 56px 0;
      }
      .spd_gallery_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }
      @media (max-width: 768px) {
        .spd_gallery_grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 480px) {
        .spd_gallery_grid {
          grid-template-columns: 1fr;
        }
      }
      .spd_gallery_item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid var(--border-subtle);
      }
      .spd_gallery_item img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
        transition: transform 0.45s ease;
      }
      .spd_gallery_item:hover img {
        transform: scale(1.06);
      }
      .spd_gallery_item::after {
        content: "\F52A";
        font-family: "bootstrap-icons";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        background: rgba(6, 13, 26, 0.55);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
      }
      .spd_gallery_item:hover::after {
        opacity: 1;
      }

      /* ============================================
         CONTENT SECTIONS
      ============================================ */
      .spd_content_section {
        background: var(--dark-bg);
        padding: 0 0 88px;
      }

      /* Info card (tank info) */
      .spd_info_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 4px;
      }
      @media (max-width: 576px) {
        .spd_info_grid {
          grid-template-columns: 1fr;
        }
      }
      .spd_info_card {
        background: var(--card-bg);
        border: 1px solid var(--border-subtle);
        border-radius: 10px;
        padding: 14px 18px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
      }
      .spd_info_card strong {
        color: var(--gold-light);
        font-weight: 600;
        display: block;
        font-size: 0.68rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 4px;
      }

      /* Scope highlights */
      .spd_scope_item {
        background: var(--card-bg);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        margin-bottom: 12px;
        overflow: hidden;
      }
      .spd_scope_header {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
        cursor: pointer;
        user-select: none;
        transition: background 0.2s;
      }
      .spd_scope_header:hover {
        background: rgba(191, 149, 63, 0.06);
      }
      .spd_scope_icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(191, 149, 63, 0.12);
        border: 1px solid rgba(191, 149, 63, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-light);
        font-size: 0.9rem;
        flex-shrink: 0;
      }
      .spd_scope_title {
        font-size: 0.88rem;
        font-weight: 700;
        color: #fff;
        flex: 1;
        margin: 0;
      }
      .spd_scope_chevron {
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.75rem;
        transition: transform 0.25s;
        flex-shrink: 0;
      }
      .spd_scope_item.open .spd_scope_chevron {
        transform: rotate(180deg);
      }
      .spd_scope_body {
        display: none;
        padding: 0 20px 18px 70px;
      }
      .spd_scope_item.open .spd_scope_body {
        display: block;
      }
      .spd_scope_body li {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.6);
        padding: 4px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        list-style: none;
        padding-left: 14px;
        position: relative;
      }
      .spd_scope_body li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--gold-primary);
      }
      .spd_scope_body li:last-child {
        border-bottom: none;
      }

      /* Deliverables */
      .spd_checklist {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .spd_checklist li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.65);
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      .spd_checklist li:last-child {
        border-bottom: none;
      }
      .spd_checklist li::before {
        content: "\F26E";
        font-family: "bootstrap-icons";
        color: var(--gold-primary);
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 1px;
      }

      /* Standards */
      .spd_std_grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 4px;
      }
      .spd_std_pill {
        background: rgba(191, 149, 63, 0.1);
        border: 1px solid rgba(191, 149, 63, 0.25);
        color: var(--gold-light);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.6px;
        padding: 6px 14px;
        border-radius: 50px;
        text-transform: uppercase;
      }

      /* Why choose us */
      .spd_why_item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.65);
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      .spd_why_item:last-child {
        border-bottom: none;
      }
      .spd_why_item i {
        color: #22c55e;
        font-size: 0.9rem;
        flex-shrink: 0;
        margin-top: 1px;
      }

      /* Content card container */
      .spd_content_card {
        background: var(--card-bg);
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 28px 26px;
        height: 100%;
      }

      /* ============================================
         CTA SECTION
      ============================================ */
      .spd_cta_section {
        background: linear-gradient(135deg, #002349 0%, #003366 100%);
        padding: 84px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .spd_cta_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 900px 400px at 50% 100%,
          rgba(212, 175, 55, 0.12) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .spd_cta_head {
        font-family: "Cinzel", serif;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        position: relative;
      }
      .spd_cta_sub {
        color: rgba(255, 255, 255, 0.62);
        font-size: 1.05rem;
        max-width: 500px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
      }
      .spd_cta_row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
      }
      .spd_cta_btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(
          135deg,
          #bf953f 0%,
          #fcf6ba 50%,
          #b38728 100%
        );
        color: #002349;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 14px 36px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition:
          opacity 0.2s,
          transform 0.2s;
      }
      .spd_cta_btn:hover {
        opacity: 0.88;
        transform: translateY(-2px);
        color: #002349;
      }
      .spd_cta_btn_outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 13px 30px;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.4px;
        transition:
          border-color 0.2s,
          color 0.2s;
      }
      .spd_cta_btn_outline:hover {
        border-color: var(--gold-primary);
        color: var(--gold-light);
      }

      /* ============================================
         LIGHTBOX MODAL
      ============================================ */
      .spd_modal_img {
        width: 100%;
        max-height: 78vh;
        object-fit: contain;
        border-radius: 6px;
        display: block;
      }
      #spdModal .modal-content {
        background: #060d1a;
        border: 1px solid rgba(191, 149, 63, 0.2);
        border-radius: 16px;
        overflow: hidden;
      }
      #spdModal .modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 12px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      #spdModal .btn-close {
        filter: invert(1) opacity(0.55);
      }
      #spdModal .modal-body {
        padding: 0;
        position: relative;
        background: #030508;
      }
      .spd_lb_counter {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.45);
      }
      .spd_lb_counter span {
        color: var(--gold-light, #f5d78e);
      }
      .spd_lb_arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(0, 35, 73, 0.75);
        border: 1px solid rgba(191, 149, 63, 0.3);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        z-index: 10;
        transition:
          background 0.2s,
          border-color 0.2s;
        user-select: none;
      }
      .spd_lb_arrow:hover {
        background: rgba(191, 149, 63, 0.25);
        border-color: rgba(191, 149, 63, 0.6);
      }
      .spd_lb_arrow.left {
        left: 12px;
      }
      .spd_lb_arrow.right {
        right: 12px;
      }
      @media (max-width: 576px) {
        .spd_lb_arrow {
          width: 34px;
          height: 34px;
          font-size: 0.85rem;
        }
        .spd_lb_arrow.left {
          left: 6px;
        }
        .spd_lb_arrow.right {
          right: 6px;
        }
      }

      /* ============================================
         RESPONSIVE
      ============================================ */
      @media (max-width: 768px) {
        .spd_banner {
          height: auto;
          min-height: 420px;
          margin-top: 0;
        }
        .spd_banner_content {
          padding-bottom: 36px;
        }
        .spd_overview_section {
          padding-top: 52px;
        }
        .spd_content_section {
          padding-bottom: 60px;
        }
        .spd_cta_section {
          padding: 60px 0;
        }
        .spd_content_card {
          margin-bottom: 20px;
        }
      }

      @media (max-width: 480px) {
        .spd_banner { min-height: 360px; margin-top: 0; }
        .spd_banner_content { padding: 0 0 28px; }
        .spd_banner_title { font-size: clamp(1.3rem, 6vw, 2rem); }
        .spd_overview_section { padding-top: 36px; }
        .spd_gallery_section { padding: 36px 0; }
        .spd_content_section { padding-bottom: 44px; }
        .spd_cta_section { padding: 44px 0; }
        .spd_scope_header { padding: 12px 14px; gap: 10px; }
        .spd_scope_body { padding: 0 14px 14px 56px; }
        .spd_content_card { padding: 20px 16px; }
        .spd_gallery_grid { grid-template-columns: 1fr; }
      }

      /* ============================================
         DARK MODE
      ============================================ */
      [data-theme="dark"] body {
        background: #030508;
      }
      [data-theme="dark"] .spd_content_card,
      [data-theme="dark"] .spd_scope_item,
      [data-theme="dark"] .spd_info_card {
        background: #060d1a;
      }

      /* Loading state */
      .spd_loading {
        text-align: center;
        padding: 80px 0;
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.9rem;
        letter-spacing: 1px;
      }
      .spd_loading i {
        font-size: 2rem;
        color: var(--gold-primary);
        display: block;
        margin-bottom: 16px;
        animation: spin 1.2s linear infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }
    

