:root {
  --navy: #0F172A;
  --blue: #2563EB;
  --teal: #06B6D4;
  --purple: #8B5CF6;
  --white: #FFFFFF;
  --gray: #64748B;
  --bg: #F8FAFC;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, var(--blue), var(--teal), var(--purple));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Enable smooth scrolling across the whole page */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; 
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   GLOBAL SECTION SETTINGS
========================= */
.home, .about, .industries-v2, .section-solutions, .contact {
  min-height: calc(100vh - 120px); 
  display: flex;
  align-items: center; 
  padding: 40px 0;
}

.home > .container, 
.about > .container, 
.industries-v2 > .container, 
.section-solutions > .container, 
.contact > .container {
  width: 100%;
}


/* =========================
   NAVBAR
========================= */
.navbar {
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(6, 182, 212, 0.2);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.home-buttons{
  text-decoration: none;
}
.nav-left { flex: 1; display: flex; justify-content: flex-start; }
.nav-center { flex: 2; display: flex; justify-content: center; gap: 40px; align-items: center; }
.nav-right-wrapper { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 20px; }

.nav-logo-img { height: 200px; width: auto; display: block; transition: var(--transition); }
.logo:hover .nav-logo-img { transform: scale(1.05); }

.nav-center a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 15px; letter-spacing: 1px; opacity: 0.8; transition: var(--transition); }
.nav-center a:hover { opacity: 1; color: var(--teal); }

.btn-primary { background: var(--gradient); color: white; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); transition: var(--transition); display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 25px rgba(37, 99, 235, 0.3); }

.mobile-menu-btn { display: none; color: white; font-size: 28px; cursor: pointer; }
/* Buttons */
.home-actions {
    display: flex;
    gap: 1.2rem; /* Adjusted gap to match image */
    margin-bottom: 2rem;
}

.home-btn-gradient {
    /* Updated gradient to match the exact blue-to-purple in your image */
    background: linear-gradient(90deg, #00a8ff 0%, #6b4cfa 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Button Icons */
.home-btn-gradient i { font-size: 1.1rem; }
.home-btn-outline i { font-size: 1.3rem; color: #a0aabf; }

/* Separator Line */
.features-divider {
    border: none;
    height: 1px;
    /* This creates the dark cyan subtle line */
    background: rgba(0, 210, 255, 0.3); 
    margin-bottom: 2rem;
    width: 100%;
}

/* Features Row */
.home-features {
    display: flex;
    justify-content: space-between; /* Spreads them out evenly */
    align-items: flex-start;
    gap: 1rem;
    max-width: 90%; /* Keeps them aligned under the buttons */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

/* The Cyan Icons */
.feature-icon {
    font-size: 32px; /* Sets size for FontAwesome icons */
    width: 32px;     /* Sets size for the custom SVG */
    height: 32px;
    color: #00d2ff;  /* The bright neon cyan */
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}
.industries-row-1,
.industries-row-2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.industries-row-1 .industry-card,
.industries-row-2 .industry-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}
/* =========================
   HOME SECTION
========================= */
.home {
    position: relative;
    /* Replace with your actual image path */
    background-image: url('../images/version2.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff; /* Ensure text remains readable */
    overflow: hidden;
    width: 100%;
}
.home-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; position: relative; z-index: 2; align-items: center; }

.home-badge { color: var(--teal); background: rgba(6, 182, 212, 0.1); padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 14px; border: 1px solid rgba(6, 182, 212, 0.3); display: inline-block; margin-bottom: 20px; }
.home-title { font-size: 72px; line-height: 1.1; margin: 10px 0 30px; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.home-sub { font-size: 20px; color: #94A3B8; margin-bottom: 40px; max-width: 550px; }

.home-actions { display: flex; gap: 20px; }
.home-btn-gradient { background: var(--gradient); color: white; border: none; padding: 18px 40px; font-weight: 700; border-radius: 12px; cursor: pointer; font-size: 16px; transition: var(--transition); }
.home-btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.2); padding: 18px 40px; border-radius: 12px; cursor: pointer; font-weight: 700; transition: var(--transition); }

/* IMAGE TREATMENT */
.image-wrapper { position: relative; }
.image-glow { position: absolute; width: 150%; height: 150%; background: radial-gradient(circle, var(--blue), var(--purple)); filter: blur(100px); opacity: 0.15; top: -25%; left: -25%; z-index: 0; }
.image-card { border-radius: 30px; overflow: hidden; border: 4px solid rgba(255,255,255,0.05); box-shadow: 0 50px 100px rgba(0,0,0,0.5); background: var(--navy); position: relative; z-index: 1; }
.image-card img { width: 100%; display: block; }

/* =========================
   ABOUT US
========================= */
.about-grid { grid-template-columns: 1fr 1.2fr; display: grid; gap: 100px; align-items: center; }
.about-left { display: flex; flex-direction: column; justify-content: center; height: 100%; }

.section-title { font-size: 56px; margin-bottom: 20px; }
.section-title span { color: var(--blue); }

.about-item { display: flex; gap: 20px; padding: 30px; border-radius: 20px; transition: var(--transition); margin-bottom: 20px; align-items: flex-start; }
.about-item.active { background: white; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05); border-left: 5px solid var(--blue); }

.about-icon { width: 60px; height: 60px; background: rgba(15, 23, 42, 0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--blue); flex-shrink: 0; transition: var(--transition); }
.about-item.active .about-icon { background: var(--gradient); color: white; box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); }
.item-text h4 { margin-bottom: 8px; }

/* =========================
   INDUSTRIES
========================= */
.industries-v2 { background-color: #0b1120; color: white; }
.section-header-centered { text-align: center; margin-bottom: 60px; }
.industries-v2 .section-header-centered h2 { font-size: 48px; color: white; }

.title-underline { width: 80px; height: 5px; background: var(--teal); margin: 20px auto 30px; border-radius: 10px; }

.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.industry-card { display: flex; flex-direction: column; overflow: hidden; background: transparent; }

.card-media { width: 100%; aspect-ratio: 4/3; border-radius: 16px; position: relative; overflow: hidden; margin-bottom: 25px; display: flex; align-items: center; justify-content: center; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.industry-card.healthcare .card-media { background: radial-gradient(circle, rgba(100, 210, 255, 0.25) 0%, rgba(11, 17, 32, 0.1) 70%); }
.industry-card.education .card-media { background: radial-gradient(circle, rgba(160, 255, 160, 0.25) 0%, rgba(11, 17, 32, 0.1) 70%); }
.industry-card.corporate .card-media { background: radial-gradient(circle, rgba(255, 100, 210, 0.25) 0%, rgba(11, 17, 32, 0.1) 70%); }

.card-content h4 { font-size: 1.4rem; color: white; margin-bottom: 10px; }
.card-content p { color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }

.btn-read-more { display: inline-block; padding: 10px 24px; background: var(--gradient); color: #ffffff; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; border-radius: 50px; text-decoration: none; transition: var(--transition); width: max-content; border: none; cursor: pointer; }
.btn-read-more:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); filter: brightness(1.1); }

/* =========================
   SOLUTIONS SECTION
========================= */
.section-solutions { 
    background-color: var(--white); 
    padding: 100px 0; /* Extra height padding */
}

.grid-half-half { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; /* Gives the image slightly more room */
    gap: 80px; 
    align-items: center; 
}

.column { display: flex; flex-direction: column; justify-content: center; }

.palette-shape-wrapper {
  position: relative; 
  width: 100%; 
  max-width: 700px; /* Increased dramatically from 500px */
  aspect-ratio: 1/1; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto;
}

.shape-container { position: absolute; width: 100%; height: 100%; z-index: 1; }

.palette-graphic-asset { 
    position: absolute; /* Positions it directly over the SVG background */
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; /* Forces the container to be the exact same size as the SVG */
    display: flex; /* Turns on flexbox */
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
    z-index: 2; 
    transform: scale(1.1); /* Scales the image slightly outside its wrapper bounds */
}

.palette-graphic-asset img { 
    width: 80%; 
    height: auto; 
    display: block; 
}
/* Style the flat icons with your brand gradient */
.info-icon i {
    font-size: 1.8rem; /* Makes the icon a good size */
    background: linear-gradient(to right, #2563EB, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Optional: Add a subtle background circle to make the icon pop */
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.05); /* Very light tint of your blue */
    border-radius: 50%;
    margin-right: 15px; /* Space between icon and text */
}

.main-heading { font-size: 42px; margin-bottom: 20px; color: var(--navy); }
.inner-border-left { border-left: 3px solid var(--teal); padding-left: 20px; margin-bottom: 40px; }
.subtitle { font-size: 1.2rem; color: var(--teal); margin-bottom: 15px; }
.body-text { color: var(--gray); margin-bottom: 20px; font-size: 1.1rem; }

.btn-benefits { padding: 10px 24px; background: transparent; border: 2px solid var(--teal); color: var(--teal); font-weight: 600; border-radius: 8px; cursor: pointer; transition: var(--transition); }
.btn-benefits:hover { background: var(--teal); color: white; }

.interactive-controls { display: flex; gap: 30px; margin-top: 20px; flex-wrap: wrap;flex-direction: row; }
.control-item { cursor: pointer; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.control-circle { width: 70px; height: 70px; border: 2px solid #cbd5e1; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #cbd5e1; transition: var(--transition); }
.control-item:hover .control-circle { border-color: var(--teal); color: var(--teal); transform: translateY(-5px); }
.control-label { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* =========================
   MODAL WIDGET
========================= */
.widget-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 9999; }
.widget-content { background: white; padding: 40px; border-radius: 20px; max-width: 500px; width: 90%; text-align: center; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.3); animation: slideUp 0.3s ease; }

@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.close-widget { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #94A3B8; transition: var(--transition); }
.close-widget:hover { color: var(--navy); }
.widget-content h3 { color: var(--navy); margin-bottom: 15px; font-size: 24px; }
.widget-content p { color: var(--gray); }

/* =========================
   CONTACT
========================= */
.contact { background: var(--bg); }
.section-subtext { font-size: 18px; color: var(--gray); max-width: 600px; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 50px; }
.contact-form { background: white; padding: 50px; border-radius: 30px; border: 1px solid #E2E8F0; box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px; border: 1px solid #E2E8F0; border-radius: 12px; font-family: inherit; font-size: 16px; transition: var(--transition); background: var(--bg); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
.contact-form .home-btn-gradient { width: 100%; margin-top: 10px; }

.info-card-wrap { display: flex; flex-direction: column; gap: 30px; margin-bottom: 40px; }
.info-card { display: flex; align-items: center; gap: 20px; }
.info-icon { width: 65px; height: 65px; background: white; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05); }
.info-text h4 { margin-bottom: 5px; font-size: 18px; }
.info-text p { color: var(--gray); }

.contact-social h4 { margin-bottom: 16px; font-size: 18px; }
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-tag { background: white; padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; color: var(--navy); border: 1px solid #E2E8F0; cursor: pointer; transition: var(--transition); }
.social-tag:hover { background: var(--blue); color: white; border-color: var(--blue); transform: translateY(-3px); }

/* =========================
   FOOTER
========================= */
.footer { background: var(--navy); color: white; padding: 100px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; padding-bottom: 60px; }

.footer-brand p { font-size: 16px; opacity: 0.7; line-height: 1.8; margin-top: 15px; max-width: 400px; }
.footer-logo-img { height: 100px; filter: brightness(0) invert(1); margin-left: -15px; }

.footer-navigation { display: flex; gap: 80px; }
.footer-col h4 { color: var(--teal); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.footer-col a { display: block; color: white; text-decoration: none; margin-bottom: 15px; opacity: 0.7; font-weight: 500; transition: var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--teal); transform: translateX(5px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; opacity: 0.5; font-size: 14px; }
/* Add space between the two columns */
.grid-half-half {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Keeps them side-by-side */
    gap: 4rem; /* THIS is the magic property that adds margin between left and right */
    align-items: center; /* Vertically centers the content */
}

/* Make the SVG container larger on the screen */
.palette-shape-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px; /* Increase this number to make the shape bigger (e.g., 600px) */
    margin: 0 auto; /* Centers it in its column */
}
 .about-section {
      max-width: 1200px;
      width: 100%;
    }
 
    /* ── TOP ROW ── */
    .top-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 36px;
    }
 
    .left-col .eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
    }
 
    .left-col h1 {
      font-size: clamp(38px, 5vw, 58px);
      font-weight: 800;
      line-height: 1.08;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
 
    .left-col h1 span { color: var(--blue); }
 
    .divider-line {
      width: 48px;
      height: 3px;
      background: var(--blue);
      border-radius: 2px;
      margin-bottom: 24px;
    }
 
    .left-col p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 14px;
      max-width: 460px;
    }
 
    /* Hero image card */
    .hero-image-wrap {
      position: relative;
    }
 
    .hero-img {
      width: 100%;
      border-radius: 20px;
      display: block;
      object-fit: cover;
      height: 340px;
      background: linear-gradient(135deg, #0f1f3d 60%, #1a3a6e 100%);
      overflow: hidden;
    }
 
    /* Fake kiosk screen */
    .kiosk-card {
      position: absolute;
      top: 50%;
      left: -36px;
      transform: translateY(-50%);
      background: var(--white);
      border-radius: 14px;
      padding: 18px 20px 14px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.14);
      width: 176px;
    }
 
    .kiosk-card .kiosk-icon {
      width: 40px;
      height: 40px;
      background: var(--blue-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
 
    .kiosk-card .kiosk-icon svg { width: 22px; height: 22px; }
 
    .kiosk-card h4 {
      font-size: 13px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.3;
      margin-bottom: 6px;
    }
 
    .kiosk-card p {
      font-size: 11.5px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 10px;
    }
 
    .kiosk-card .kiosk-bar {
      width: 28px;
      height: 3px;
      background: var(--blue);
      border-radius: 2px;
    }
 
    /* Dot connector */
    .dot-connector {
      position: absolute;
      top: 50%;
      left: 140px;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      background: var(--blue);
      border-radius: 50%;
      z-index: 2;
    }
 
    /* Hero placeholder (since no real image) */
    .hero-placeholder {
      width: 100%;
      height: 340px;
      border-radius: 20px;
      background: linear-gradient(135deg, #0b1d3e 0%, #1a3a6e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
 
    .hero-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(26,111,244,0.25) 0%, transparent 70%);
    }
 
    .kiosk-screen {
      width: 140px;
      height: 240px;
      background: #111827;
      border-radius: 12px;
      border: 2px solid rgba(255,255,255,0.12);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
 
    .kiosk-screen-top {
      background: #0f172a;
      padding: 8px 10px 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
 
    .kiosk-logo-x {
      width: 16px;
      height: 16px;
      background: var(--blue);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .kiosk-logo-x span { color: #fff; font-size: 8px; font-weight: 800; }
    .kiosk-brand { color: #fff; font-size: 10px; font-weight: 700; }
 
    .kiosk-screen-body {
      flex: 1;
      background: #1e293b;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .kiosk-avatar {
      width: 70px;
      height: 100px;
      background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
 
    .avatar-head {
      width: 28px;
      height: 28px;
      background: #d4a87a;
      border-radius: 50%;
    }
 
    .avatar-body {
      width: 40px;
      height: 44px;
      background: #1f2937;
      border-radius: 6px 6px 0 0;
    }
 
    .kiosk-screen-footer {
      background: #0f172a;
      padding: 8px 10px;
      text-align: center;
    }
 
    .kiosk-arabic {
      color: var(--blue);
      font-size: 9px;
      font-weight: 700;
      line-height: 1.5;
      direction: rtl;
    }
 
    /* ── MISSION / VISION ROW ── */
    .mv-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
      gap: 20px;
      margin-bottom: 28px;
    }
 
    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 24px 24px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
 
    .card-mission { grid-column: span 2; }
    .card-vision  { grid-column: span 2; }
    .card-feature { grid-column: span 1; }
 
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
 
    .card-icon.blue   { background: var(--blue-light); }
    .card-icon.green  { background: var(--green-light); }
    .card-icon.teal   { background: #E0F7F4; }
    .card-icon.purple { background: var(--purple-light); }
 
    .card-icon svg { width: 24px; height: 24px; }
 
    .card h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
    }
 
    .card h3.blue   { color: var(--blue); }
    .card h3.green  { color: var(--green); }
    .card h3.dark   { color: var(--text-dark); }
 
    .card-underline {
      width: 32px;
      height: 3px;
      border-radius: 2px;
      margin-bottom: 14px;
    }
 
    .card-underline.blue  { background: var(--blue); }
    .card-underline.green { background: var(--green); }
 
    .card p {
      font-size: 13.5px;
      line-height: 1.7;
      color: var(--text-mid);
    }
 
    /* Decorative bg illustration */
    .card-illustration {
      position: absolute;
      bottom: -8px;
      right: -8px;
      opacity: 0.07;
    }
 
    /* Feature cards (3 right) */
    .card-feature {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
 
    .card-feature h3 {
      font-size: 14px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 8px;
      line-height: 1.3;
    }
 
    .card-feature p {
      font-size: 12.5px;
      line-height: 1.65;
      color: var(--text-muted);
    }
 
    /* ── BOTTOM BAR ── */
    .bottom-bar {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }
 
    .bar-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px 28px;
      border-right: 1px solid var(--border);
    }
 
    .bar-item:last-child { border-right: none; }
 
    .bar-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .bar-icon svg { width: 22px; height: 22px; }
 
    .bar-text strong {
      display: block;
      font-size: 14px;
      font-weight: 800;
      color: var(--text-dark);
    }
 
    .bar-text span {
      font-size: 12px;
      color: var(--text-muted);
    }
    /* ==============================================
   ABOUT SIGNX SECTION  —  add to style33.css
   Uses existing CSS variables from :root
============================================== */

/* --- Section wrapper --- */
/* ==============================================
   ABOUT SIGNX SECTION  —  add to style33.css
   Uses existing CSS variables from :root
============================================== */

/* --- Section wrapper --- */
.about-signx {
  background: var(--bg);
  padding: 100px 0 0;
  overflow: hidden;
}

/* ---- TOP ROW ---- */
.asx-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* --- Left text column --- */
.asx-text-col { display: flex; flex-direction: column; }

.asx-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.asx-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.asx-blue {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.asx-green { color: #10B981; }

.asx-rule {
  width: 52px;
  height: 4px;
  background: var(--blue);
  border-radius: 4px;
  margin-bottom: 28px;
}

.asx-body {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 520px;
}

/* --- Mission / Vision — full-width horizontal row --- */
.asx-mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-bottom: 60px;
}

.asx-mv-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.asx-mv-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  transform: translateY(-3px);
}

/* top content area: icon + text side by side */
.asx-mv-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 32px 20px;
  flex: 1;
}

.asx-mv-content { flex: 1; }

.asx-mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.asx-icon-blue  { background: rgba(37, 99, 235, 0.08); }
.asx-icon-blue  svg { width: 28px; height: 28px; }
.asx-icon-green { background: rgba(16, 185, 129, 0.08); }
.asx-icon-green svg { width: 28px; height: 28px; }

.asx-mv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.asx-mv-rule {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.asx-rule-blue  { background: var(--blue); }
.asx-rule-green { background: #10B981; }

.asx-mv-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

/* decorative bottom illustration */
.asx-mv-deco {
  height: 70px;
  overflow: hidden;
  margin-top: auto;
}
.asx-deco-svg { width: 100%; height: 100%; }

/* --- Right visual column --- */
.asx-visual-col {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.asx-kiosk-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

/* kiosk photo */
.asx-kiosk-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  position: relative;
  z-index: 1;
}
.asx-kiosk-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* floating info card */
.asx-float-card {
  position: absolute;
  top: 30px;
  left: -80px;
  z-index: 10;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 22px 24px 16px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
  width: 200px;
  animation: asx-float 4s ease-in-out infinite;
}

@keyframes asx-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.asx-float-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.asx-float-icon svg { width: 26px; height: 26px; }

.asx-float-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.asx-float-sub {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 10px;
}
.asx-float-rule {
  width: 32px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}

/* connector dot */
.asx-connector-dot {
  position: absolute;
  bottom: 40%;
  left: -20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  z-index: 5;
  box-shadow: 0 0 0 5px rgba(37,99,235,0.15);
}

/* ---- BOTTOM ROW: 3 feature cards ---- */
.asx-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.asx-feat-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.asx-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
}

.asx-feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.asx-feat-icon svg { width: 32px; height: 32px; }
.asx-feat-icon-blue   { background: rgba(37,  99, 235, 0.08); }
.asx-feat-icon-teal   { background: rgba(16, 185, 129, 0.08); }
.asx-feat-icon-purple { background: rgba(139, 92, 246, 0.08); }

.asx-feat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.asx-feat-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- BOTTOM BAR ---- */
.asx-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 48px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-bottom: 0;
}

.asx-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.asx-bar-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.asx-bar-icon svg { width: 26px; height: 26px; }

.asx-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.asx-bar-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.asx-bar-text span {
  font-size: 13px;
  color: var(--gray);
}

.asx-bar-divider {
  width: 1px;
  height: 50px;
  background: #E2E8F0;
  flex-shrink: 0;
}
/* ==============================================
   SOLUTIONS SECTION — new design
   Replace old .section-solutions rules in style33.css
   (keep .widget-overlay / .widget-content as-is)
============================================== */

/* ---- Section wrapper ---- */
.sol-section {
  background: var(--white);
  padding: 100px 0;
}

/* ---- Header ---- */
.sol-header {
  text-align: center;
  margin-bottom: 80px;
}

.sol-header-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
}

/* ---- Card (one per solution) ---- */
.sol-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.sol-card:last-child { margin-bottom: 0; }

/* Reverse layout for even cards */
.sol-card-reverse .sol-img-col  { order: 2; }
.sol-card-reverse .sol-content-col { order: 1; }

/* ---- Image column ---- */
.sol-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sol-img-frame {
  position: relative;
  border-radius: 28px;
  padding: 5px;
  background: linear-gradient(135deg, #2563EB, #8B5CF6);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.18);
  width: 100%;
  max-width: 580px;
}

.sol-img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  background: linear-gradient(135deg, #2563EB, #06B6D4, #8B5CF6);
  z-index: 0;
}

.sol-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  object-fit: cover;
}

/* ---- Content column ---- */
.sol-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Big gradient number */
.sol-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Main title */
.sol-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Accent colours on the product-name word */
.sol-accent-purple { color: #8B5CF6; }
.sol-accent-teal   { color: var(--teal); }
.sol-accent-blue   { color: var(--blue); }

/* Gradient rule */
.sol-rule {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  margin-bottom: 20px;
}

/* Subtitle */
.sol-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}

/* Body copy */
.sol-body {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

/* CTA button */
.sol-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 40px;
  width: fit-content;
}

.sol-btn:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.sol-btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.sol-btn:hover .sol-btn-arrow { transform: translateX(4px); }

/* ---- Action items row (Live Demo / Integration / Use Cases) ---- */
.sol-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.sol-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 0 28px;
}

.sol-action-item:first-child { padding-left: 0; }

.sol-action-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
  transition: var(--transition);
}

.sol-action-item:hover .sol-action-icon {
  background: var(--gradient);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.sol-action-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
}

.sol-action-divider {
  width: 1px;
  height: 48px;
  background: #E2E8F0;
  flex-shrink: 0;
}
/* ── Language switcher button ── */
.btn-lang {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.btn-lang:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Arabic label gets slightly larger font for readability */
[dir="rtl"] .btn-lang,
.btn-lang:lang(ar) {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    padding: 6px 16px;
}
/* Flip layout for Arabic */
[dir="rtl"] .nav-center { flex-direction: row-reverse; }
[dir="rtl"] .home-actions { flex-direction: row-reverse; }
[dir="rtl"] .sol-card { direction: rtl; }
[dir="rtl"] .sol-card-reverse .sol-img-col { order: 1; }
[dir="rtl"] .sol-card-reverse .sol-content-col { order: 2; }
[dir="rtl"] .footer-col a:hover { transform: translateX(-5px); } /* flip the hover slide */
[dir="rtl"] .asx-top-row { direction: rtl; }
[dir="rtl"] .info-card { direction: rtl; }
/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
  .sol-card {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 72px;
  }

  .sol-card-reverse .sol-img-col  { order: 0; }
  .sol-card-reverse .sol-content-col { order: 0; }

  .sol-img-frame { max-width: 100%; }

  .sol-body { max-width: 100%; }
}

@media (max-width: 768px) {
  .sol-section { padding: 70px 0; }

  .sol-header { margin-bottom: 50px; }

  .sol-number { font-size: 42px; }

  .sol-actions { gap: 0; flex-wrap: nowrap; }

  .sol-action-item { padding: 0 16px; }

  .sol-action-icon { width: 50px; height: 50px; font-size: 16px; }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .asx-float-card { left: -40px; }
}

@media (max-width: 992px) {
  .asx-top-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .asx-visual-col {
    justify-content: center;
  }

  .asx-kiosk-wrap {
    max-width: 100%;
  }

  .asx-float-card {
    left: 0;
    top: -70px;
  }

  .asx-connector-dot { display: none; }

  .asx-body { max-width: 100%; }
}

@media (max-width: 768px) {
  .about-signx { padding: 70px 0 0; }

  .asx-mv-row { grid-template-columns: 1fr; }

  .asx-mv-card-inner { flex-direction: column; }

  .asx-features-row { grid-template-columns: 1fr; }

  .asx-bottom-bar {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    align-items: flex-start;
  }

  .asx-bar-divider { width: 100%; height: 1px; }
}

@media (max-width: 768px) {
  .about-signx { padding: 70px 0 0; }

  .asx-mv-grid { grid-template-columns: 1fr; }

  .asx-features-row { grid-template-columns: 1fr; }

  .asx-bottom-bar {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    align-items: flex-start;
  }

  .asx-bar-divider { width: 100%; height: 1px; }
}
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .top-row { grid-template-columns: 1fr; }
      .mv-row  { grid-template-columns: 1fr 1fr; }
      .card-mission, .card-vision, .card-feature { grid-column: span 1; }
      .bottom-bar { grid-template-columns: 1fr 1fr; }
      .bar-item:nth-child(2) { border-right: none; }
      .bar-item:nth-child(3) { border-right: 1px solid var(--border); }
      .bar-item:nth-child(1),
      .bar-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    }
 
    @media (max-width: 560px) {
      .mv-row  { grid-template-columns: 1fr; }
      .bottom-bar { grid-template-columns: 1fr; }
      .bar-item { border-right: none; border-bottom: 1px solid var(--border); }
      .bar-item:last-child { border-bottom: none; }
    }

/* On smaller screens, stack them and reduce the gap */
@media (max-width: 992px) {
    .grid-half-half {
        grid-template-columns: 1fr; /* Stacks columns vertically */
        gap: 3rem; 
    }
}
/* =========================
   MEDIA QUERIES (RESPONSIVENESS)
========================= */

@media (max-width: 992px) {
    .mobile-menu-btn { display: block; }
    
    .nav-center { position: absolute; top: 120px; left: 0; width: 100%; background: var(--navy); flex-direction: column; padding: 30px; gap: 20px; text-align: center; border-bottom: 2px solid var(--teal); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-in-out; }
    .nav-center.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-right .btn-primary { padding: 10px 18px; font-size: 14px; }
    
    .home-grid, .about-grid, .grid-half-half, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .home-content { order: 2; }
    .home-image { order: 1; margin-bottom: 20px; }
    .home-actions { justify-content: center; }
    
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-item { text-align: left; }
    .inner-border-left { border-left: none; border-top: 3px solid var(--teal); padding-left: 0; padding-top: 20px; }
    .interactive-controls { justify-content: center; }
    
    .contact-form { padding: 40px; }
    .info-card { justify-content: center; text-align: left; }
    .social-icons { justify-content: center; }
    
    .footer-grid { text-align: center; }
    .footer-brand p { margin: 15px auto; }
    .footer-logo-img { margin: 0 auto; }
    .footer-navigation { justify-content: center; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .home-title { font-size: 42px; }
    .section-title, .industries-v2 .section-header-centered h2, .main-heading { font-size: 36px; }
    .home-actions { flex-direction: column; width: 100%; }
    .home-btn-gradient, .home-btn-outline { width: 100%; margin: 0; }
    .about-item { flex-direction: column; align-items: center; text-align: center; }
    .industries-grid { grid-template-columns: 1fr; }
    .interactive-controls { flex-direction: column; gap: 20px; }
    .footer-navigation { flex-direction: column; gap: 30px; }
    .footer-col a:hover { transform: translateX(0); } 
}

@media (max-width: 500px) {
    .nav-right { display: none; }
}