*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0f1f3d;
    --navy2: #1a2e52;
    --blue: #2563a8;
    --teal: #3b82c4;
    --orange: #f5880b;
    --orange-hover: #d97706;
    --text-dark: #172035;
    --text-mid: #374151;
    --text-light: #6b7280;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
    --card-bg: #ffffff;
  }
  body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-dark); }

  /* NAV */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    height: 56px; display: flex; align-items: center; padding: 0 40px;
  }
  .nav-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }

  .logo { display: flex; align-items: center; gap: 8px; 
    width: 200px;
    height: auto;
    /*font-weight: 700; font-size: 17px; color: var(--text-dark); text-decoration: none; */
  }
  .logo-icon { width: 32px; height: 32px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .logo-icon svg { width: 18px; height: 18px; fill: white; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; padding: 6px 14px; border-radius: 6px; transition: background 0.2s; }
  .nav-links a:hover { background: #f3f4f6; }
  .nav-links a.active { background: #f3f4f6; color: var(--text-dark); }
  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .btn-ghost { font-size: 14px; font-weight: 500; color: var(--text-mid); background: none; border: none; cursor: pointer; padding: 6px 14px; border-radius: 6px; text-decoration: none; }
  .btn-ghost:hover { background: #f3f4f6; }
  .btn-orange { background: var(--orange); color: var(--white); border: none; font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 8px; cursor: pointer; text-decoration: none; transition: background 0.2s; }
  .btn-orange:hover { background: var(--orange-hover); }

  /*nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    height: 56px; display: flex; align-items: center; padding: 0 40px;
  }
  .nav-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; color: var(--text-dark); text-decoration: none; }
  .logo-icon { width: 32px; height: 32px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .logo-icon svg { width: 18px; height: 18px; fill: white; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; padding: 6px 14px; border-radius: 6px; }
  .nav-links a:hover, .nav-links a.active { background: #f3f4f6; color: var(--text-dark); }
  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .btn-ghost { font-size: 14px; font-weight: 500; color: var(--text-mid); background: none; border: none; cursor: pointer; padding: 6px 14px; border-radius: 6px; text-decoration: none; }
  .btn-orange { background: var(--orange); color: var(--white); border: none; font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 8px; cursor: pointer; text-decoration: none; }
*/
  
  
  /* HERO */

  .hero 
  { padding: 80px 40px 96px; 
    text-align: center; 
  }

  .blur-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #60a5fa21, #22d3ee45);
    filter: blur(120px);
    opacity: 0.5;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}
  .hero-badge 
  { display: inline-flex; 
    align-items: center; 
   
 
    font-size: 12px; 
    padding: 10px 14px; 
    border-radius: 20px; 
    margin-bottom: 28px; 
 

    color: #1f9ead; 
    background: #1f9ead1c;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

  }
  .hero h1 
  { font-size: 52px; 
    font-weight: 800; 
    line-height: 1.15; 
    color: var(--text-dark); 
    max-width: 700px; 
    margin: 0 auto 24px;
   }

  .hero h1 span 
  {  -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, hsl(222 47% 15%) 0%, hsl(222 65% 25%) 50%, hsl(185 70% 35%) 100%);  
  }

  .hero p { 
    font-size: 14px;
     color: var(--text-light); 
     max-width: 582px;
      margin: 0 auto 36px; 
      line-height: 1.7; 
    }

  .hero-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .btn-dark { background: var(--navy); color: white; padding: 12px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; }
  .btn-dark:hover { background: var(--navy2); }
  .btn-outline { background: white; color: var(--text-dark); padding: 12px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); transition: border-color 0.2s; }
  .btn-outline:hover { border-color: #9ca3af; }
  .hero-trusted { margin-top: 82px; font-size: 13px; color: var(--text-light); font-weight: 500; }
  .trusted-logos { display: flex; justify-content: center; gap: 40px; margin-top: 10px; flex-wrap: wrap; }
  .trusted-logos span { font-size: 14px; color: #9ca3af; font-weight: 500; }

  /*.hero { padding: 72px 40px 48px; text-align: center; }
  .hero h1 { font-size: 46px; font-weight: 800; line-height: 1.15; max-width: 700px; margin: 0 auto 16px; }
  .hero h1 span { color: var(--teal); }
  .hero p { font-size: 17px; color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.7; }*/




  /* Home Page  */

  /* FEATURES GRID */
  section { padding: 60px 40px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-title { text-align: center; font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
  .section-sub { text-align: center; font-size: 16px; color: var(--text-light); margin-bottom: 44px; }

  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-card { background: var(--white); border-radius: 12px; padding: 28px; border: 1px solid var(--border); }
  .feature-icon { width: 44px; height: 44px; background: #f0f4f8; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
  .feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
  .feature-card.wide { grid-column: span 1; }

  /* WHY SECTION */
  .why-section { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .why-text h2 { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.3; }
  .why-text p { font-size: 15px; color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
  .why-items { display: flex; flex-direction: column; gap: 16px; }
  .why-item { display: flex; gap: 14px; align-items: flex-start; }
  .why-item-icon { width: 36px; height: 36px; background: #f0f4f8; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .why-item-icon svg { width: 18px; height: 18px; }
  .why-item-text h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
  .why-item-text p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
  .why-visual { display: flex; justify-content: center; }
  
  /*.cert-card { 
    background: #0f172a; 
    border-radius: 16px; 
    padding: 76px 37px;
    width: 425px; 
  }*/


  .cert-card { 

    background: linear-gradient(135deg, #0f172a 0%, #234756 50%, #48a7e7 100%);
    
    border-radius: 16px; 
    padding: 76px 37px;
    width: 425px;
    
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3); 

  }
  
  .cert-item 
  { display: flex; 
    align-items: center; 
    gap: 16px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 12px; 
    padding: 14px 30px; 
    margin-bottom: 14px; 
  }

  .cert-item:last-child { 
    margin-bottom: 0; 
  }

  .cert-icon { 
    width: 20px; 
    height: 20px; 
    border: 1px #1fa2ad solid; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    color: #1fa2ad; 
    font-size: 11px; /* Icon size */
}

.cert-item:last-child .cert-icon {
    /*background: #48a7e7;*/
    color: #1fa2ad;
   
}

/*
  .cert-dot 
  { 
    width: 16px; 
    height: 16px; 
    background: #22c55e; 
    border-radius: 50%; 
    flex-shrink: 0; 
  } */

  .cert-item span 
  { color: white; 
    font-size: 15px; 
    font-weight: 600; 

    
  }

  /* CTA */
  .cta-section { background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%); text-align: center; padding: 80px 40px; }
  .cta-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); color: white; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 24px; }
  .cta-section h2 { font-size: 38px; font-weight: 800; color: white; max-width: 600px; margin: 0 auto 16px; line-height: 1.25; }
  .cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
  .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .btn-orange-lg { background: var(--orange); color: white; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; }
  .btn-orange-lg:hover { background: var(--orange-hover); }
  .btn-outline-white { background: rgba(255,255,255,0.1); color: white; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3); transition: background 0.2s; }
  .btn-outline-white:hover { background: rgba(255,255,255,0.2); }

  /* FOOTER */
  footer { background: #ffffff; padding: 60px 40px 30px; color: #0f172a !important; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
  .footer-brand p { font-size: 13px; color:#0f1f3d; line-height: 1.7; max-width: 220px; margin-bottom: 20px; }
  .footer-socials { display: flex; gap: 12px; }
  .footer-socials a { color: rgba(75, 71, 71, 0.5); font-size: 16px; text-decoration: none; transition: color 0.2s; }
  .footer-socials a:hover { color: white; }
  .footer-col h4 { font-size: 14px; font-weight: 700; color: #0f1f3d; margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 13px; color: #0f1f3d; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: #1f9ead }
  .footer-bottom { border-top: 1px solid rgba(73, 72, 72, 0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom span { font-size: 13px; color: #0f1f3d; }

  /* About Us */

  /* MISSION CARDS */
  .mission-section { padding: 10px 233px; }
  .mission-inner { max-width: 1200px; margin: 0 auto; 
  }
  .mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .mission-card { background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
     border-radius: 12px; 
     padding: 28px; 
     text-align: center; 
     border: 1px solid var(--border); 
     
    }

  .mission-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .mission-icon svg { width: 24px; height: 24px; }
  .mission-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
  .mission-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

  /* PHILOSOPHY */
  .philosophy-section { background: var(--white); padding: 60px 40px; }
  .philosophy-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
  .section-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
  .section-sub { font-size: 14px; color: var(--text-light); margin-bottom: 44px; }
  .phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .phil-card { background: var(--bg); border-radius: 12px; padding: 28px; text-align: left; border: 1px solid var(--border); position: relative; }
  .phil-number
   {
     width: 41px;
    height: 32px;
    background:linear-gradient(180deg, #162f69 0%, #1b8d98 100%) ;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    position: absolute;
    top: -15px;
    left: -16px;
    margin-bottom: 16px; 
  }

  .phil-icon { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
  .phil-icon svg { width: 18px; height: 18px; }
  .phil-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

  /* EXPERTS */
  .experts-section { padding: 60px 40px; }
  .experts-inner { max-width: 1200px; margin: 0 auto; }
  .experts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .experts-text h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; line-height: 1.3; }
  .experts-text p { font-size: 15px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
  .btn-dark-outline { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: white; padding: 12px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; margin-top: 8px; }
  .btn-dark-outline:hover { background: var(--navy2); }
  .experts-visual { display: flex; justify-content: flex-end; align-items: center; }
  .stat-card { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 48px 60px; text-align: center; position: relative; }
  .stat-card::before { content: ''; position: absolute; top: -10px; right: -10px; width: 50px; height: 50px; background: #fef3c7; border-radius: 10px; z-index: -1; }
  .stat-card::after { content: ''; position: absolute; bottom: -10px; left: -10px; width: 60px; height: 60px; background: #dbeafe; border-radius: 50%; z-index: -1; }
  .stat-card h3 { font-size: 52px; font-weight: 800; color: var(--text-dark); }
  .stat-card p { font-size: 16px; color: var(--text-light); margin-top: 8px; font-weight: 500; }

  /* Platform - Feature */

  /* TABS */


  /* 1. Different Light Colors for Each Tab */
.tab-btn:nth-child(1).active { background: #e0f2fe; color: #0369a1; border-color: #7dd3fc; } 
.tab-btn:nth-child(2).active { background: #fef3c7; color: #b45309; border-color: #fcd34d; } 
.tab-btn:nth-child(3).active { background: #dcfce7; color: #15803d; border-color: #86efac; } 
.tab-btn:nth-child(4).active { background: #f3e8ff; color: #7e22ce; border-color: #d8b4fe; } 
.tab-btn:nth-child(5).active { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }

  .tabs-section 
  { padding: 0 40px 60px;
   }

  .tabs-section .inner {
     max-width: 1200px; 
     margin: 0 auto;
    align-items: center;
   }

  .tabs-bar 
  { 
    display: flex; 
    gap: 26px; 
    margin-bottom: 57px; 
    flex-wrap: wrap;
    justify-content: center;
   }

  .tab-btn {
    display: flex; 
    align-items: center; 
    gap: 8px;
    padding: 10px 18px; 
    border-radius: 8px; 
    font-size: 14px; 
    font-weight: 600;
    cursor: pointer; 
    
    background: var(--white); color: var(--text-mid);
  

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    
  }

  
  .tab-btn.active 
  { 
    background: var(--navy); 
    color: white; 
    border-color: var(--navy);
   }

   .tab-btn:hover:not(.active) {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateY(-2px);
}

  .tab-btn svg { 
    width: 16px; 
    height: 16px; 
  }


  .tab-panel { 
    display: none; 
  }

  .tab-panel.active { 
    display: block; 
  }


  .panel-grid 
  { display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    padding-left: 20px;
    padding-right: 20px;
  }

  .panel-left h3 
  { 
    font-size: 10px; 
    font-weight: 700; 
    color: var(--text-light); 
    letter-spacing: 1px; 
    text-transform: uppercase;
     margin-bottom: 10px; 
     display: flex; 
     align-items: center; 
     gap: 6px; 
    }

  .panel-left h3 svg 
  { width: 14px; 
    height: 14px; 
  }

  .panel-left h2 
  { font-size: 32px; 
    font-weight: 800;
     color: var(--text-dark); 
     margin-bottom: 14px; 
     line-height: 1.3; 
    }

  .panel-left p 
  { font-size: 15px; 
    color: var(--text-light); 
    margin-bottom: 24px; 
    line-height: 1.7; 
  }

  .feature-list 
  { display: flex; 
    flex-direction: column;
     gap: 10px; 
     margin-bottom: 28px;
     }

  .feature-list li
   { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 14px; 
    color: var(--text-mid); 
    list-style: none; }

  .check-icon 
  { width: 20px; 
    height: 20px; 
    background: #f0f4f8; 
    border-radius: 50%; 
    flex-shrink: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center;
   }

  .check-icon svg {
     width: 12px; 
     height: 12px; 
     stroke: var(--teal); 
    }

  .btn-dark { 
    background: var(--navy); 
    color: white; 
    padding: 11px 22px; 
    border-radius: 8px; 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none;
     display: inline-flex; 
     align-items: center; 
     gap: 8px; 
    }

  .btn-dark:hover { 
    background: var(--navy2);
   }

  .panel-right-gov 
  { 
    display: flex; 
    align-items: center;
    justify-content: center; 
    background: linear-gradient(135deg, #ebeff88b 0%, #c3e4f7e2 50%, #b2d6f4dd 100%);
    border-radius: 24px; 
    padding: 60px; 
    min-height: 400px;
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
     }



.panel-right-agreement
  { 
    display: flex; 
    align-items: center;
    justify-content: center; 
    background: linear-gradient(135deg, #ebeff88b 0%, #f7ebc48a 50%, #f4e8b2dd 100%);
    border-radius: 24px; 
    padding: 60px; 
    min-height: 400px;
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
     }



    .panel-right-compliance
  { 
    display: flex; 
    align-items: center;
    justify-content: center; 
    background: linear-gradient(135deg, #ebeff88b 0%, #c9f8da 50%, #bff8d4f1 100%);
    border-radius: 24px; 
    padding: 60px; 
    min-height: 400px;
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
     }

     .panel-right-risk
  { 
    display: flex; 
    align-items: center;
    justify-content: center; 
    background: linear-gradient(135deg, #ebeff88b 0%, #f3e8ff 50%, #e9d6fd 100%);
    border-radius: 24px; 
    padding: 60px; 
    min-height: 400px;
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
     }

.panel-right-ai
  { 
    display: flex; 
    align-items: center;
    justify-content: center; 
    background: linear-gradient(135deg, #ebeff88b 0%, #fee2e2 50%, #f4cdcd 100%);
    border-radius: 24px; 
    padding: 60px; 
    min-height: 400px;
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
     }



  .mock-card 
  {   position: relative;
    z-index: 1; /* Sit above the background shapes */
    background: white; 
    border-radius: 20px; 
    padding: 30px; 
    width: 100%; 
    max-width: 360px; 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
    border: 1px solid #f1f5f9;
    
    
    }

  .mock-card-header { 
    display: flex; 
    align-items: center; 
    gap: 10px;
     margin-bottom: 20px;
     }

  .mock-card-icon { width: 32px; height: 32px; background: #eff6ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .mock-card-icon svg { width: 16px; height: 16px; stroke: var(--teal); }
  .mock-card-header div h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); }
  .mock-card-header div p { font-size: 12px; color: var(--text-light); }
  .mock-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #f9fafb; border-radius: 8px; margin-bottom: 8px; }
  .mock-item:last-child { margin-bottom: 0; }
  .mock-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
  .mock-item span { font-size: 13px; color: var(--text-mid); font-weight: 500; }





  

  /* Solution */

  /* SOLUTIONS GRID */

 /* .solutions-section {
     padding: 20px 40px 60px;
   } */

  .solutions-section { 
  padding: 40px 20px; 
}

  .solutions-inner { 
    max-width: 850px; 
    margin: 0 auto;
   }

  .solutions-grid 
  { display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
  }

  .sol-card {
    /* background: var(--white); 
     border-radius: 14px; 
     padding: 32px; 
     border: 1px solid var(--border); */

     background: #ffffff; 
  border-radius: 12px; 
  padding: 24px; /* Smaller padding */
  border: 1px solid #e2e8f0; 
  transition: all 0.3s ease;
    }

    .sol-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

  .sol-icon { 
   /* width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; */
   width: 42px; 
  height: 42px; 
  border-radius: 10px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 16px
  
  }
  .sol-icon svg { width: 20px; height: 20px; }

  .icon-health { background: #f0fdf4; color: #16a34a; }
.icon-fin { background: #eff6ff; color: #2563eb; }
  
  .sol-card h3 { 
    /* font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); */
    
  font-size: 17px; 
  font-weight: 700; 
  margin-bottom: 8px; 
  color: #0f172a; 

  
  }
  .sol-card > p { 
   /* font-size: 14px; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; */

   font-size: 13px; 
  color: #64748b; 
  margin-bottom: 16px; 
  line-height: 1.5;
  
  }
  .sol-features {
    /* list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; */

    list-style: none; 
  padding: 0;
  margin-bottom: 20px; 
  display: flex; 
  flex-direction: column; 
  gap: 8px;
  }
  .sol-features li 
  { /*display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mid); */

    display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 13px; 
  color: #475569;
  }

  .sol-check {
    /* width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; */
    width: 16px; 
  height: 16px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  background: #f1f5f9;

   }

  .sol-check svg { width: 10px; 
    height: 10px;  
    stroke: currentColor;
  }

  .btn-learn { 
   /* display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text-dark); border: 1.5px solid var(--border); background: white; padding: 9px 18px; border-radius: 8px; text-decoration: none; cursor: pointer; transition: border-color 0.2s; */

    font-size: 13px; 
  padding: 8px 16px; 
  border-radius: 6px;
  border: 1.5px solid #e2e8f0;
  background: white;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  
  
  }
  .btn-learn:hover { background: #0f172a; 
  color: #ffffff;      
  border-color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15); }

  /* Healthcare: red */
  .icon-health { background: #fff0f0; }
  .icon-health svg { stroke: #ef4444; }
  .check-health { background: #fff0f0; }
  .check-health svg { stroke: #ef4444; }

  /* Financial: blue */
  .icon-fin { background: #eff6ff; }
  .icon-fin svg { stroke: #3b82f6; }
  .check-fin { background: #eff6ff; }
  .check-fin svg { stroke: #3b82f6; }

  /* Manufacturing: green */
  .icon-mfg { background: #f0fdf4; }
  .icon-mfg svg { stroke: #22c55e; }
  .check-mfg { background: #f0fdf4; }
  .check-mfg svg { stroke: #22c55e; }

  /* IT: purple */
  .icon-it { background: #fdf4ff; }
  .icon-it svg { stroke: #a855f7; }
  .check-it { background: #fdf4ff; }
  .check-it svg { stroke: #a855f7; }

  /* STATS */
  .stats-section { background: var(--white); padding: 60px 240px; text-align: center; }
  .stats-inner { max-width: 1200px; margin: 0 auto; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .stat-item h3 { 
    font-size: 42px; 
    font-weight: 800; 
   
    margin-bottom: 6px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, hsl(222 47% 15%) 0%, hsl(222 65% 25%) 50%, hsl(185 70% 35%) 100%);

} 
  .stat-item p { font-size: 14px; color: var(--text-light); font-weight: 500; }

  /* CUSTOM */
  .custom-section { padding: 60px 40px; text-align: center; }
  .custom-inner { max-width: 700px; margin: 0 auto; }
  .custom-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
  .custom-section p { font-size: 16px; color: var(--text-light); margin-bottom: 32px; line-height: 1.6; }
  .btn-orange-lg { background: var(--orange); color: white; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
  .btn-orange-lg:hover { background: var(--orange-hover); }


  /* Contact Us Page*/

  /* CONTACT LAYOUT */
  .contact-section { padding: 20px 40px 80px; }
  .contact-inner { max-width: 1100px; margin: 0 auto; }
  .contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

  /* FORM */
  .form-card { background: var(--white); border-radius: 16px; padding: 36px; border: 1px solid var(--border); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-group { margin-bottom: 20px; }
  .form-group:last-child { margin-bottom: 0; }
  .form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px; font-size: 14px; font-family: inherit;
    color: var(--text-dark); background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearence: none;
  }
  .form-group input::placeholder,
  .form-group select::placeholder,
  .form-group textarea::placeholder { color: #9ca3af; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--teal); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
  .btn-submit { width: 100%; background: var(--orange); color: white; border: none; font-size: 15px; font-weight: 700; padding: 14px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; font-family: inherit; }
  .btn-submit:hover { background: var(--orange-hover); }

  /* SIDEBAR */
  .sidebar { display: flex; flex-direction: column; gap: 20px; }
  .sidebar-card { background: var(--white); border-radius: 14px; padding: 24px; border: 1px solid var(--border); }
  .sidebar-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
  .contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
  .contact-item:last-child { margin-bottom: 0; }
  .contact-item-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-item-icon svg { width: 18px; height: 18px; }
  .icon-blue { background: #eff6ff; }
  .icon-blue svg { stroke: #3b82f6; }
  .icon-green { background: #f0fdf4; }
  .icon-green svg { stroke: #22c55e; }
  .icon-orange { background: #fff7ed; }
  .icon-orange svg { stroke: #f97316; }
  .contact-item-text h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
  .contact-item-text p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
  .enterprise-card { background: var(--white); border-radius: 14px; padding: 24px; border: 1px solid var(--border); }
  .enterprise-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
  .enterprise-card p { font-size: 13px; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }
  .btn-enterprise { display: inline-block; padding: 10px 18px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-dark); text-decoration: none; background: white; cursor: pointer; transition: border-color 0.2s; }
  .btn-enterprise:hover { border-color: #9ca3af; }

  /* SUCCESS MESSAGE */
  .success-msg { display: none; background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 8px; padding: 16px 20px; color: #15803d; font-size: 14px; font-weight: 600; margin-bottom: 20px; text-align: center; }

  /* Preloader */

  #preloader {
    position: fixed;
    inset: 0; 
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.4s ease-out, visibility 0.4s;
}

.loader-wrapper {
    text-align: center;
}

.loader-icon {
    margin-bottom: 20px;
    animation: loader-bounce 2s infinite ease-in-out;
}

.loader-text {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Smooth scaling animation */
@keyframes loader-bounce {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
}

/* Class to hide it via JS */
.loader-fade-out {
    opacity: 0;
    visibility: hidden;
}