.elementor-kit-911{--e-global-color-primary:#0791CB;--e-global-color-secondary:#176ACD;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-911 e-page-transition{background-color:#FFBC7D;}.elementor-kit-911 h6{text-transform:uppercase;letter-spacing:3px;}.elementor-kit-911 input:not([type="button"]):not([type="submit"]),.elementor-kit-911 textarea,.elementor-kit-911 .elementor-field-textual{font-size:16px;border-radius:8px 8px 8px 8px;padding:14px 14px 14px 14px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<style>
/* ===== GLOBAL SECTION ALIGNMENT ===== */
.amanex-section {
  width: 100%;
  background: #020617;
}

.amanex-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 8%;
}

/* HEADINGS */
.amanex-container h2 {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
}

.amanex-container .sub {
  color: #94a3b8;
  max-width: 720px;
  margin-bottom: 50px;
}

/* SOLUTIONS GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.solution-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.solution-content {
  padding: 26px;
}

.solution-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.solution-content p {
  color: #cbd5f5;
  line-height: 1.6;
  margin-bottom: 18px;
}

.solution-content a {
  display: inline-block;
  padding: 10px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* WHY AMANEX GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  transition: all .3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.why-card h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  color: #cbd5f5;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .solutions-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}
</style>
/* ================================
   AMANEX DESIGN SYSTEM
================================ */

:root {
  --bg-dark: #050b1a;
  --bg-dark-2: #0b1630;
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --accent: #60a5fa;
  --text-main: #ffffff;
  --text-muted: #c7d2fe;
  --border-soft: rgba(255,255,255,0.08);
  --radius: 10px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #ffffff;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
}

p {
  line-height: 1.6;
  color: #475569;
}

/* ================================
   HEADER
================================ */

.amanex-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5,11,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.amanex-header a {
  color: var(--text-main);
  font-weight: 500;
}

.amanex-header a:hover {
  color: var(--accent);
}

/* Primary Button */
.amanex-btn-primary {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.amanex-btn-primary:hover {
  transform: translateY(-1px);
}

/* ================================
   HERO SECTION
================================ */

.amanex-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 90px 8%;
  background:
    radial-gradient(circle at top right, rgba(96,165,250,0.15), transparent 60%),
    linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.amanex-hero h1 {
  font-size: clamp(40px, 4vw, 60px);
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.amanex-hero p {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 18px;
}

/* ================================
   SERVICE / BENEFIT CARDS
================================ */

.amanex-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.amanex-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.amanex-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.amanex-card p {
  font-size: 15px;
}

/* ================================
   WHY CHOOSE SECTION
================================ */

.amanex-dark-section {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--text-main);
  padding: 100px 8%;
}

.amanex-dark-section p {
  color: var(--text-muted);
}

.amanex-dark-section .amanex-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
}

/* ================================
   CTA SECTION
================================ */

.amanex-cta {
  text-align: center;
  padding: 90px 6%;
  background: radial-gradient(circle at center, rgba(37,99,235,0.25), transparent 70%);
}

.amanex-cta h2 {
  font-size: 40px;
}

.amanex-cta p {
  margin: 16px auto 32px;
  max-width: 600px;
}

/* ================================
   FOOTER
================================ */

.amanex-footer {
  background: #020617;
  color: #94a3b8;
  padding: 60px 8%;
}

.amanex-footer a {
  color: #c7d2fe;
}

.amanex-footer a:hover {
  color: var(--accent);
}

/* HIDE HOME CONTENT ON AI PAGE ONLY */
body.page-artificial-intelligence .home-hero,
body.page-artificial-intelligence .home-section,
body.page-artificial-intelligence .home-content,
body.page-artificial-intelligence .home-wrapper {
  display: none !important;
}

/* Disable click navigation for mega menu parents */
.amanex-mega-trigger {
  pointer-events: none;
  cursor: default;
}

/* Allow hover */
.amanex-mega-wrapper:hover .amanex-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================
   AMANEX – GLOBAL MOBILE SYSTEM
   Paste once → Works on entire website
========================================= */

@media (max-width: 900px) {

  /* ---------- GLOBAL RESET ---------- */
  html, body {
    overflow-x: hidden !important;
  }

  body {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ---------- UNIVERSAL CONTAINER PADDING ---------- */
  section,
  .elementor-section,
  .elementor-container,
  .elementor-column,
  .container,
  .wrapper,
  .content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ---------- HEADER ---------- */
  .amanex-header-inner {
    grid-template-columns: auto auto;
    padding: 16px 20px;
  }

  .amanex-logo {
    font-size: 26px;
    line-height: 1;
  }

  .amanex-nav {
    display: none !important;
  }

  .amanex-header-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* ---------- TYPOGRAPHY ---------- */
  h1 {
    font-size: 32px !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 26px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p,
  li {
    font-size: 15px !important;
  }

  /* ---------- GRID → STACK ---------- */
  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .amanex-mega-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* ---------- BUTTONS (THUMB FRIENDLY) ---------- */
  a,
  button {
    min-height: 44px;
  }

  .btn,
  .amanex-header-btn {
    width: 100%;
    text-align: center;
  }

  /* ---------- MEDIA SAFETY ---------- */
  img,
  video,
  iframe {
    max-width: 100% !important;
    height: auto;
    border-radius: 14px;
  }

  /* ---------- SECTION SPACING ---------- */
  section,
  .elementor-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* ---------- DISABLE MEGA MENU ON MOBILE ---------- */
  .amanex-mega-menu {
    display: none !important;
  }

}/* End custom CSS */