    /* =========================================
   Precision Industries Banner
   (Strict Navy #041A50 & Teal #2F6F6F)
   ========================================= */

:root {
  --brand-navy: #041A50;
  --brand-teal: #2F6F6F;
  --bg-white: #FFFFFF;
  --text-dark: #0f172a;
  --text-muted: #475569;
}

.precision-industry-wrapper {
  background-color: var(--bg-white);
  padding: 80px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  position: relative;
}

.precision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ================= LEFT SIDE (Content) ================= */
.precision-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.precision-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 111, 111, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(47, 111, 111, 0.15);
}

.precision-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.3;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.precision-highlight {
  color: var(--brand-teal);
  position: relative;
}

/* Subtle underline for the word Precision */
.precision-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 6px;
  background-color: rgba(47, 111, 111, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.precision-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 40px;
}

.precision-subtitle strong {
  color: var(--brand-navy);
  font-weight: 700;
}

/* Elite Buttons */
.precision-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-precision-solid, .btn-precision-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-precision-solid {
  background-color: var(--brand-navy);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(4, 26, 80, 0.15);
}

.btn-precision-solid:hover {
  background-color: var(--brand-teal);
  transform: translateY(-4px);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(47, 111, 111, 0.25);
}

.btn-precision-outline {
  background-color: transparent;
  color: var(--brand-navy);
  border: 1px solid rgba(4, 26, 80, 0.2);
}

.btn-precision-outline:hover {
  border-color: var(--brand-navy);
  background-color: rgba(4, 26, 80, 0.03);
  transform: translateY(-4px);
}

.btn-precision-solid i { transition: transform 0.3s ease; }
.btn-precision-solid:hover i { transform: translateX(5px); }

/* ================= RIGHT SIDE (Precision Grid) ================= */
.precision-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

/* The Grid Container */
.target-grid {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Target Circles */
.target-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(4, 26, 80, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.circle-inner { width: 220px; height: 220px; animation: spin 40s linear infinite; }
.circle-outer { width: 400px; height: 400px; animation: spin 60s linear infinite reverse; }

/* Target Lines (Crosshairs) */
.target-line {
  position: absolute;
  background-color: rgba(4, 26, 80, 0.06);
}

.line-horizontal { width: 100%; height: 1px; top: 50%; left: 0; }
.line-vertical { height: 100%; width: 1px; left: 50%; top: 0; }

/* Central Hub/Core */
.target-core {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(4, 26, 80, 0.05);
  border: 1px solid rgba(4, 26, 80, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.core-dot {
  width: 12px;
  height: 12px;
  background-color: var(--brand-teal);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--brand-teal);
  animation: pulsePrecision 2s infinite;
}

/* Floating Industry Badges */
.ind-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 10px 20px 10px 10px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(4, 26, 80, 0.08);
  border: 1px solid rgba(4, 26, 80, 0.05);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-navy);
  z-index: 10;
  transition: all 0.4s ease;
  animation: floatNode 5s ease-in-out infinite;
}

.ind-icon {
  width: 36px;
  height: 36px;
  background: rgba(47, 111, 111, 0.1);
  color: var(--brand-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ind-node:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--brand-teal);
  box-shadow: 0 20px 40px rgba(47, 111, 111, 0.15);
  z-index: 20;
}

.ind-node:hover .ind-icon {
  background: var(--brand-teal);
  color: #ffffff;
}

/* Positioning the nodes on the grid */
.node-1 { top: 10%; right: -5%; animation-delay: 0s; }    /* Top Right */
.node-2 { bottom: 25%; right: 10%; animation-delay: -2s; } /* Bottom Right */
.node-3 { bottom: 8%; left: -2%; animation-delay: -1s; }   /* Bottom Left */
.node-4 { top: 22%; left: 8%; animation-delay: -3s; }      /* Top Left */

/* Background Glow */
.precision-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 111, 111, 0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Animations */
@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulsePrecision {
  0% { box-shadow: 0 0 0 0 rgba(47, 111, 111, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(47, 111, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 111, 111, 0); }
}
@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .precision-container { flex-direction: column; text-align: center; gap: 50px; }
  .precision-content { align-items: center; }
  .precision-subtitle { margin-left: auto; margin-right: auto; }
  .precision-actions { justify-content: center; }
  .node-1 { right: 0; }
  .node-3 { left: 5%; }
}

@media (max-width: 768px) {
  .precision-industry-wrapper { padding: 80px 20px; }
  .precision-title { font-size: 2.8rem; letter-spacing: -1px; }
  .precision-actions { flex-direction: column; width: 100%; }
  .btn-precision-solid, .btn-precision-outline { width: 100%; justify-content: center; }
  
  /* Scale down radar for mobile */
  .target-grid { width: 320px; height: 320px; }
  .circle-inner { width: 150px; height: 150px; }
  .circle-outer { width: 280px; height: 280px; }
  .ind-node { padding: 6px 14px 6px 6px; font-size: 0.85rem; }
  .ind-icon { width: 28px; height: 28px; font-size: 0.9rem; }
  .node-1 { top: 5%; }
  .node-4 { top: 15%; left: 0; }
}

 .industries-section {
        --primary-color: #041A50;
        --accent-color: #2F6F6F;
        --bg-color: #2f6f6f57;
        
        padding: 60px 20px;
        background-color: var(--bg-color);
    }
.tu-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 20px;
}
.tu-accent {
    color: #2F6F6F;
    font-weight: 300;
    font-style: italic;
}
    .industries-section .grid-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .industries-section .industry-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 35px;
        border: 1px solid #eee;
        border-top: 5px solid var(--primary-color);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .industries-section .industry-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-top-color: var(--accent-color);
    }

    .industries-section .card-icon {
        font-size: 2rem;
        color: var(--accent-color);
        margin-bottom: 20px;
    }

    .industries-section h3 {
        color: var(--primary-color);
        margin: 0 0 15px 0;
        font-size: 1.35rem;
            font-weight: 600;
    }

    .industries-section p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 0;
    }

    .industries-section .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
        flex-grow: 1;
    }

    .industries-section .feature-list li {
        margin-bottom: 8px;
        font-size: 0.9rem;
        color: #333;
        display: flex;
        align-items: center;
    }

    .industries-section .feature-list li::before {
        content: "\F633"; /* Bootstrap check icon code */
        font-family: "bootstrap-icons";
        color: var(--accent-color);
        font-weight: bold;
        margin-right: 10px;
    }

    .industries-section .btn-link {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
    }

    .industries-section .btn-link:hover {
        color: var(--primary-color);
    }

       .features-modern {
        --primary: #041A50;
        --accent: #2F6F6F;
        --text: #444;
        font-family: 'Inter', sans-serif;
        padding: 100px 20px;
        background: #ffffff;
    }

    .features-modern .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
        align-items: center;
    }

    .features-modern .left-content {
        flex: 1;
        min-width: 300px;
    }

    .features-modern .left-content h2 {
        color: var(--primary);
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .features-modern .left-content .accent-bar {
        width: 80px;
        height: 6px;
        background: var(--accent);
        border-radius: 3px;
    }

    .features-modern .right-content {
        flex: 1.2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .features-modern .feature-item {
        display: flex;
        gap: 25px;
        padding: 15px;
        transition: transform 0.3s ease;
    }

    .features-modern .feature-item:hover {
        transform: translateX(10px);
    }

    .features-modern .icon-box {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 10px 20px rgba(4, 26, 80, 0.2);
    }

    .features-modern .text-box h3 {
        color: var(--primary);
        font-size: 1.4rem;
        margin: 0 0 10px 0;
        font-weight: 700;
    }

    .features-modern .text-box p {
        color: var(--text);
        line-height: 1.6;
        margin: 0;
        font-size: 1.05rem;
    }

    @media (max-width: 992px) {
        .features-modern .left-content { text-align: center; flex: 100%; }
        .features-modern .left-content .accent-bar { margin: 0 auto; }
        .features-modern .content-wrapper { gap: 40px; }
    }

      .cta-footer-modern {
        --primary: #041A50;
        --accent: #2F6F6F;
        --text-white: #ffffff;
        font-family: 'Inter', sans-serif;
        padding: 100px 20px;
        background-color: var(--primary);
        text-align: center;
        color: var(--text-white);
        position: relative;
        overflow: hidden;
    }

    /* Background subtle pattern like modern SaaS sites */
    .cta-footer-modern::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: radial-gradient(circle at 10% 20%, rgba(47, 111, 111, 0.15) 0%, transparent 40%);
        pointer-events: none;
    }

    .cta-footer-modern .container {
        max-width: 850px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
.cta-footer-modern h2 {
    font-size: 45px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

    .cta-footer-modern p {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 45px;
        line-height: 1.6;
        font-weight: 400;
    }

    .cta-footer-modern .btn-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    /* Primary Button: Book Free Audit */
    .cta-footer-modern .btn-primary {
        background-color: var(--accent);
        color: white;
        padding: 16px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid var(--accent);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .cta-footer-modern .btn-primary:hover {
        background-color: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    /* Secondary Button: See Platform */
    .cta-footer-modern .btn-secondary {
        background-color: transparent;
        color: white;
        padding: 16px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid rgba(255,255,255,0.3);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .cta-footer-modern .btn-secondary:hover {
        background-color: rgba(255,255,255,0.1);
        border-color: white;
        transform: translateY(-3px);
    }

    /* Small Screen Adjustment */
    @media (max-width: 768px) {
        .cta-footer-modern h2 { font-size: 2.2rem; }
        .cta-footer-modern p { font-size: 1.1rem; }
        .cta-footer-modern .btn-group { flex-direction: column; width: 100%; }
        .cta-footer-modern .btn-primary, .cta-footer-modern .btn-secondary { width: 100%; }
    }