/* =========================
   ROOT VARIABLES (BRAND)
========================= */
:root {
  --primary: #4f6d82;
  --secondary: #e5e5e5;
  --accent: #ffffff;
  --cta: #2fa4a9;
  --dark: #1f2f3a;
}

/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--secondary);
  color: var(--dark);
  line-height: 1.6;
}

/* =========================
   HEADER & NAVBAR  (UPDATED]
========================= */

/* ================================
   ROOT THEME VARIABLES
================================ */
:root {
  /* base theme */
  --bg-color: #ffffff;
  --text-color: #111827;
  --nav-bg: #ffffff;
  --accent: #2563eb;

  /* compatibility variables (from last snippet) */
  --bg: var(--bg-color);
  --text: var(--text-color);

  /* fallback if your old code uses these */
  --primary: var(--nav-bg);
  --dark: #111827;
}

/* Dark mode (supports BOTH toggling methods) */
body.dark-mode,
html[data-theme="dark"] {
  --bg-color: #0f172a;
  --text-color: #e5e7eb;
  --nav-bg: #020617;
  --accent: #38bdf8;

  /* compatibility variables */
  --bg: var(--bg-color);
  --text: var(--text-color);
}

/* Optional: if you use body.light-mode somewhere */
body.light-mode {
  --bg: var(--bg-color);
  --text: var(--text-color);
}

/* ================================
   GLOBAL (from 2nd snippet)
================================ */
body {
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* =========================
   HEADER & NAVBAR (original kept + themed)
========================= */
.site-header {
  background: var(--nav-bg);
  width: 100%;
  position: relative;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px; /* keep original padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700; /* from updated snippet */
}

/* =========================
   NAV MENU (original kept + themed)
========================= */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto; /* from updated snippet */
  padding: 0;        /* from updated snippet */
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0; /* keep original */
}

.nav-menu a:hover {
  color: var(--accent);
}

/* If you still use a button as a dropdown trigger */
.dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
}

.dropdown-toggle:hover {
  color: var(--accent);
}

/* =========================
   DROPDOWN (original kept + themed)
========================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;

  background: var(--nav-bg);
  min-width: 220px;
  list-style: none;
  padding: 10px 0; /* keep original */
  border-radius: 6px; /* keep original */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* merged */
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px; /* keep original */
  color: var(--text-color);
  font-weight: 400;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(0,0,0,0.06);
}

/* Dark hover background for dropdown items (matches theme toggle hover idea) */
body.dark-mode .dropdown-menu a:hover,
html[data-theme="dark"] .dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
}

/* Desktop hover to open (kept) */
@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ================================
   THEME TOGGLE (from last 2, kept + compatible)
================================ */

/* Container (far right) */
.nav-theme-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* Toggle button (icon-only) */
.theme-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.theme-toggle:hover {
  background: rgba(0,0,0,0.06);
  transform: rotate(15deg);
  opacity: 0.8;
}

body.dark-mode .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Icon base */
.theme-toggle .icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Display-based switching (from last snippet) --- */
.icon-sun { display: none; }
.icon-moon { display: block; }

body.dark-mode .icon-sun,
html[data-theme="dark"] .icon-sun { display: block; }

body.dark-mode .icon-moon,
html[data-theme="dark"] .icon-moon { display: none; }

/* --- Animation-based switching (from 2nd snippet, kept) ---
   Works if you use body.light-mode / body.dark-mode classes.
*/
body.light-mode .icon-sun {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
  pointer-events: none;
}

body.dark-mode .icon-moon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
  pointer-events: none;
}

body.light-mode .icon-moon,
body.dark-mode .icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ================================
   MOBILE SAFETY (merged)
================================ */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-menu {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }

  .nav-theme-toggle {
    margin-left: 0;
  }
}

/* =========================
   MOBILE MENU
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu li a,
  .dropdown-toggle {
    padding: 15px 0;
    display: block;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    background: var(--primary);
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }
}
/* =========================
   FOOTER
========================= */
.site-footer {
  background: #ffffff;
  color: #1f2933;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.footer-column p {
  color: #475569;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  color: #475569;
}

.footer-links a {
  text-decoration: none;
  color: #475569;
}

.footer-links a:hover {
  color: var(--cta);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--cta);
}

.footer-divider {
  border-top: 1px solid #e5e7eb;
  max-width: 1200px;
  margin: auto;
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #475569;
  font-size: 0.9rem;
}

.footer-socials a {
  color: #64748b;
  margin-left: 15px;
  font-size: 1.1rem;
}

.footer-socials a:hover {
  color: var(--cta);
}

/* =========================
   CHATBOT BUTTON
========================= */
.chatbot-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 999;
}

.chatbot-btn:hover {
  background: #083a56;
}

/* =========================
   MOBILE FOOTER
========================= */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* =========================
   SIMPLE FOOTER FALLBACK
========================= */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: var(--cta);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* wireless-solutions.html styles */
/* Professional Wireless Solutions Section */

.wireless-section {
  padding: 90px 20px;
  background: #ffffff;
}

.wireless-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.wireless-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.wireless-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 22px;
}
/* ==============================
   WHAT WE OFFER SECTION
============================== */

.what-we-offer {
  padding: 80px 20px;
  background: #ffffff;
}

.offer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.offer-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.offer-description {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 40px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 8px;
  font-size: 1rem;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: left;
}

.offer-item i {
  font-size: 1.3rem;
  color: #0f4e63;
}

.offer-item:hover {
  background: #0f4e63;
  color: #ffffff;
  transform: translateY(-3px);
}

.offer-item:hover i {
  color: #ffffff;
}
/* ==============================
   WHY CHOOSE OUR WIRELESS SOLUTIONS
   (section only)
============================== */

.why-wireless {
  padding: 80px 20px;
  background: #ffffff;
}

.why-wireless__container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-wireless__header {
  text-align: center;
  margin-bottom: 44px;
}

.why-wireless__title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.why-wireless__subtitle {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.why-wireless__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.why-wireless__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px 30px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.why-wireless__cardTitle {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.why-wireless__cardText {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 48ch;
}

/* Responsive: stack to 1 column on small screens */
@media (max-width: 780px) {
  .why-wireless__grid {
    grid-template-columns: 1fr;
  }
}
/* ==============================
   WIRELESS CTA SECTION
============================== */

.wireless-cta {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-text {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  background: #0f4e63;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #0c3d4f;
  transform: translateY(-2px);
}
/* ==============================
   SECURE ACCESS CONTROL SECTION

   /* ==============================

   PROFESSIONAL ACCESS CONTROL SECTION
============================== */

.access-control-section {
  padding: 90px 20px;
  background: #ffffff;
}

.access-control-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.access-control-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.access-control-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 22px;
}
/* ===== What We Offer (CSS) ===== */
.offer-section {
  background: #ffffff;
  padding: 70px 20px;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.offer-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.offer-subtitle {
  margin: 0 auto 40px;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 720px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 10px;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.offer-icon {
  font-size: 22px;
  color: #0f4e63; /* deep teal/blue like the picture */
  flex: 0 0 auto;
}

.offer-text {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

/* Responsive */
@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 560px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 22px 22px;
  }
}
/* ==============================
   WHY CHOOSE OUR ACCESS CONTROL SECTION
============================== */

.why-access {
  padding: 90px 20px;
  background: #ffffff;
}

.why-access-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-access-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.why-access-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 40px;
}

.why-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-access-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px 26px;
  text-align: left;
}

.why-access-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-access-card p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Mobile responsive */
@media (max-width: 780px) {
  .why-access-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CTA SECTION STYLING ===== */

.cta-section {
  background: #0f4e63;      /* Deep blue/teal similar to your design */
  padding: 90px 20px;
  color: white;
  font-family: "Segoe UI", Arial, sans-serif;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.cta-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

/* Description Text */
.cta-text {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons Container */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* General Button Style */
.cta-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* Primary Button */
.cta-btn.primary {
  background: #ffffff;
  color: #0f4e63;
}

.cta-btn.primary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

/* Secondary Button */
.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
/* ==============================
   SECURE IT INFRASTRUCTURE SECTION

/* ==============================

   PROFESSIONAL IT INFRASTRUCTURE SECTION
============================== */

.it-infrastructure {
  padding: 90px 20px;
  background: #ffffff;
}

.it-infrastructure-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.it-infrastructure-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.it-infrastructure-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 22px;
}
/* ===== WHAT WE OFFER SECTION STYLING ===== */

.offer-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.offer-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Subtitle */
.offer-subtitle {
  max-width: 750px;
  margin: 0 auto 40px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Grid Layout */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual Card */
.offer-card {
  background: #ffffff;
  padding: 20px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;

  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.offer-card i {
  font-size: 22px;
  color: #0f4e63; /* Brand blue/teal color */
}

/* Text */
.offer-card span {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 16px;
  }
}
/* ==============================
   WHY CHOOSE OUR IT INFRASTRUCTURE SERVICES
============================== */

.why-infrastructure {
  padding: 90px 20px;
  background: #ffffff;
}

.why-infrastructure-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-infrastructure-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.why-infrastructure-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 40px;
}

.why-infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-infrastructure-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px 26px;
  text-align: left;
}

.why-infrastructure-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-infrastructure-card p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Mobile responsive */
@media (max-width: 780px) {
  .why-infrastructure-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CTA SECTION STYLING ===== */

.cta-section {
  background: #0f4e63;
  padding: 90px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #ffffff;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.cta-title {
  color: #ffffff !important;              /* force white like pic 2 */
  font-size: clamp(2.2rem, 3vw, 3.2rem);  /* a bit bigger */
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.4px;                 /* tighter like pic 2 */
}

/* Description */
.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 34px;
}

/* Buttons Container */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Base Button */
.cta-button {
  display: inline-flex;          /* allows icon + arrow alignment */
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 260px;              /* match wide buttons in pic 2 */
  height: 54px;                  /* consistent height */
  padding: 0 28px;

  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

/* Primary Button (white) */
.cta-button.primary {
  background: #ffffff;
  color: #0f4e63;
  border: 2px solid #ffffff;
}

.cta-button.primary:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
}

/* Arrow on the right like pic 2 */
.cta-button.primary .cta-arrow {
  margin-left: auto;             /* pushes arrow to far right */
  font-size: 1.15rem;
  line-height: 1;
}

/* Secondary Button (outlined) */
.cta-button.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75); /* softer outline */
  color: #ffffff;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* Optional: icon sizing if you're using Font Awesome */
.cta-button i {
  font-size: 1rem;
}


/* ===== Responsive Design ===== */

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
/* hardware-supply.html styles */
/* ==============================
   HARDWARE SUPPLY SECTION
============================== */
/* ==============================
   PROFESSIONAL HARDWARE SUPPLY SECTION
============================== */

.hardware-supply {
  padding: 90px 20px;
  background: #ffffff;
}

.hardware-supply-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.hardware-supply-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.hardware-supply-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 22px;
}
/* ===== WHAT WE OFFER SECTION ===== */

.what-offer-section {
  background: #ffffff;            
  padding: 90px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.what-offer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.what-offer-title {
  color: #0f172a;                 
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

/* Subtitle */
.what-offer-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

/* Grid Layout */
.what-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

/* Individual Card */
.what-offer-card {
  background: #f8fafc;            
  border-radius: 14px;
  padding: 22px 22px;

  display: flex;
  align-items: center;
  gap: 14px;

  text-align: left;

  /* subtle shadow like pic 2 */
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 74px;              
}

/* Hover Effect */
.what-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

/* Icon */
.what-offer-card i {
  font-size: 22px;
  color: #0f4e63;                
  flex-shrink: 0;
}

/* Text */
.what-offer-card span {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  word-break: break-word;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 18px;
    min-height: auto;
  }

  .offer-subtitle {
    margin-bottom: 35px;
  }
}

/* ==============================
   WHY CHOOSE OUR HARDWARE SUPPLY SECTION
============================== */

.why-hardware {
  padding: 90px 20px;
  background: #ffffff;
}

.why-hardware-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-hardware-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.why-hardware-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 40px;
}

.why-hardware-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-hardware-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px 26px;
  text-align: left;
}

.why-hardware-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-hardware-card p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Mobile responsive */
@media (max-width: 780px) {
  .why-hardware-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CALL TO ACTION SECTION ===== */

.cta-section {
  background: #0f4e63;  /* Deep brand blue */
  padding: 100px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #ffffff;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.cta-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

/* Paragraph */
.cta-text {
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons Wrapper */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Base Button */
.cta-btn {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Primary Button */
.cta-btn.primary {
  background: #ffffff;
  color: #0f4e63;
}

.cta-btn.primary:hover {
  background: #e5e5e5;
  transform: translateY(-3px);
}

/* Secondary Button */
.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
/* mobile-device-repairs.html styles */
/* ==============================
   MOBILE DEVICE REPAIRS SECTION
============================== */
/* ==============================
   PROFESSIONAL MOBILE DEVICE MANAGEMENT SECTION
============================== */

.mdm-section {
  padding: 90px 20px;
  background: #ffffff;
}

.mdm-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.mdm-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.mdm-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 22px;
}
/* ===== WHAT WE OFFER SECTION ===== */

.offer-section {
  background: #0f4e63;      /* Deep blue background */
  padding: 80px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.offer-title {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 40px;
}
.offer-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

/* Grid Layout */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual Card */
.offer-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  text-align: left;
  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Hover Effect */
.offer-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.offer-card i {
  font-size: 20px;
  color: #0f4e63;
}

/* Text */
.offer-card span {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 14px;
  }
}
/* ===========================
   MDM SECTION STYLING
=========================== */

.mdm-section {
  background: #f4f7fb;
  padding: 80px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.mdm-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.mdm-title {
  font-size: 2.4rem;
  color: #1f2f3a;
  margin-bottom: 10px;
}

.mdm-subtitle {
  color: #4f6d82;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Grid Layout */
.mdm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Cards */
.mdm-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mdm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.mdm-card h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #1f2f3a;
}

.mdm-card p {
  color: #4f6d82;
  font-size: 0.95rem;
  margin-top: 10px;
  line-height: 1.6;
}

/* Icons */
.mdm-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #0f4e63;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mdm-title {
    font-size: 2rem;
  }

  .mdm-subtitle {
    font-size: 0.95rem;
  }
}
/* =========================
   CALL A TECHNICIAN SECTION
========================= */

.cat-section {
  background: #0f4e63;   /* dark teal/blue */
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.cat-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cat-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cat-content p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.cat-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cat-phone {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 12px 25px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.cat-phone:hover {
  background: white;
  color: #0f4e63;
}

.cat-btn {
  background: #2fa4a9;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cat-btn:hover {
  background: #ffffff;
  color: #0f4e63;
}

/* Responsive */
@media (max-width: 768px) {
  .cat-content h2 {
    font-size: 1.8rem;
  }

  .cat-actions {
    flex-direction: column;
  }
}
/* =========================
   CALL A TECHNICIAN SECTION
========================= */

.cat-section {
  background: #0f4e63;   /* dark teal/blue */
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.cat-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cat-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cat-content p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.cat-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cat-phone {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 12px 25px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.cat-phone:hover {
  background: white;
  color: #0f4e63;
}

.cat-btn {
  background: #2fa4a9;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cat-btn:hover {
  background: #ffffff;
  color: #0f4e63;
}

/* Responsive */
@media (max-width: 768px) {
  .cat-content h2 {
    font-size: 1.8rem;
  }

  .cat-actions {
    flex-direction: column;
  }
}
/*it-consulting. styles*/
/* ==============================
    IT CONSULTING SECTION
/* ==============================
   PROFESSIONAL IT CONSULTING SECTION
============================== */

.it-consulting {
  padding: 90px 20px;
  background: #ffffff;
}

.it-consulting-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.it-consulting-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.it-consulting-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 22px;
}
/* ===== WHAT WE OFFER SECTION ===== */

.offer-section {
  background: #ffffff;            
  padding: 90px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.offer-title {
  color: #0f172a;                 
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

/* Subtitle */
.offer-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

/* Grid Layout */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

/* Individual Card */
.offer-card {
  background: #f8fafc;            
  border-radius: 14px;
  padding: 22px 22px;

  display: flex;
  align-items: center;
  gap: 14px;

  text-align: left;

  /* subtle shadow like pic 2 */
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 74px;              
}

/* Hover Effect */
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

/* Icon */
.offer-card i {
  font-size: 22px;
  color: #0f4e63;                
  flex-shrink: 0;
}

/* Text */
.offer-card span {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  word-break: break-word;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 18px;
    min-height: auto;
  }

  .offer-subtitle {
    margin-bottom: 35px;
  }
}

/* ===========================
   WHY CHOOSE - IT CONSULTING
=========================== */

.why-consulting {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

.why-consulting__container {
  max-width: 1150px;
  margin: 0 auto;
}

.why-consulting__header {
  text-align: center;
  margin-bottom: 44px;
}

.why-consulting__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.why-consulting__subtitle {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

/* Grid */
.why-consulting__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Cards */
.why-consulting__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 28px;
  text-align: left;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-consulting__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.why-consulting__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.why-consulting__card-text {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 0.98rem;
  max-width: 52ch;
}

/* Responsive */
@media (max-width: 900px) {
  .why-consulting__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-consulting__card {
    padding: 22px;
  }
}
/* =========================
   CTA SECTION (Picture 2)
========================= */

.cat-section {
  background: #0f4e63;
  padding: 90px 20px;
  color: #fff;
}

.cat-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cat-title {
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.cat-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
  margin: 0 auto 34px;
}

/* Buttons row */
.cat-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Shared button styling */
.cat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  min-width: 240px;
}

/* Left button (white filled) */
.cat-btn-primary {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #ffffff;
}

.cat-btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Right button (outlined) */
.cat-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.cat-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Small extras */
.cat-arrow {
  font-weight: 900;
}

.cat-phone-icon {
  font-size: 1.05rem;
  line-height: 1;
}

/* Mobile */
@media (max-width: 520px) {
  .cat-btn {
    width: 100%;
    min-width: 0;
  }
}
/* ===== WIRELESS SOLUTIONS HERO ===== */

.wireless-solutions-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  
  background-image: url("images/wireless-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.wireless-solutions-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 36, 0.72);
}


.wireless-solutions-hero__container {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 60px 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}


.wireless-solutions-hero__title {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}


.wireless-solutions-hero__text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
/* ===== IT Infrastructure HERO ===== */

.iT-infrastructure-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  
  background-image: url("images/wireless-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.iT-infrastructure-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 36, 0.72);
}


.iT-infrastructure-hero__container {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 60px 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}


.iT-infrastructure-hero__title {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}


.iT-infrastructure-hero__text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
/* ===== IT Consulting HERO ===== */

.iT-consulting-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  
  background-image: url("images/wireless-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.iT-consulting-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 36, 0.72);
}


.iT-consulting-hero__container {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 60px 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}


.iT-consulting-hero__title {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}


.iT-consulting-hero__text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
/* ===== Mobile Device Management HERO ===== */

.mobile-device-management-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  
  background-image: url("images/wireless-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.mobile-device-management-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 36, 0.72);
}


.mobile-device-management-hero__container {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 60px 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}


.mobile-device-management-hero__title {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}


.mobile-device-management-hero__text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
/* ===== Hardware Supply HERO ===== */

.hardware-supply-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  
  background-image: url("images/wireless-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hardware-supply-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 36, 0.72);
}


.hardware-supply-hero__container {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 60px 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}


.hardware-supply-hero__title {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}


.hardware-supply-hero__text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
/* ===== Access Control HERO ===== */

.access-control-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  
  background-image: url("images/wireless-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.access-control-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 36, 0.72);
}


.access-control-hero__container {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 60px 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}


.access-control-hero__title {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}


.access-control-hero__text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
/* =========================
   CHATBOT BUTTON
========================= */
.chatbot-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 999;
}

.chatbot-btn:hover {
  background: #083a56;
}