:root {
  --brand-orange: #ff4000;
  --brand-accent: #ff4000;
  --brand-dark: #191f1b;
  --brand-light: #f9f8f2;
  --text-grey: #cfcec8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 15px 30px rgba(255, 64, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --font-main: "bdrmono 2006", "Andale Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
}

/*  =========================================================== 
INDEX Page  
=========================================================== */

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background: #191f1b;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  position: fixed;
}

.logo {
  position: center;
  height: auto;
  left: 0px;
  width: 130px;
}

#navbar__logo {
  background-color: #ff4000;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  font-size: 2rem;
}

.navbar__menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #f9f8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  height: 100%;
  text-decoration: none;
  font-weight: bold;
}

.navbar__links:hover,
.navbar__links.active {
  color: var(--brand-accent);
  transition: all 0.3s ease;
}

.navbar__btn {
  display: flex;
  align-items: center;
}

.navbar__btn.mobile {
  display: none;
}

.navbar__btn.desktop {
  display: flex;
}

.button {
  background: var(--brand-accent);
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  color: #f9f8f2;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.button:hover {
  background: #daa520;
  transition: all 0.3s ease;
}

.navbar__toggle {
  display: none;
}

@media screen and (max-width: 960px) {
  .navbar__toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: 15px;
    transform: translateY(-50%);
    color: #f9f8f2;
    z-index: 10;
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    padding: 120px 0;
  }

  .navbar__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 80px;
    left: -100%;
  }

  .navbar__menu.active {
    left: 0;
    opacity: 1;
  }

  .navbar__item {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /*sign up button*/
  .navbar__btn.desktop {
    display: none;
  }

  .button {
    width: 100%;
    height: 60px;
    justify-content: center;
  }
}

.hero__container {
  background-image: url(images/main-hero.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 auto;
  height: 100vh;
  width: 100%;
  text-align: center;
  justify-content: center;
  color: #191f1b;
}

.hero__content {
  color: #f9f8f2;
}

.hero__content h1 {
  font-size: 3rem;
  text-align: center;
}

.hero__content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  padding: 40px;
  font-weight: 340;
}

.hero__btn {
  font-size: 1.1rem;
  font-weight: 450;
  background: var(--brand-accent);
  padding: 15px 32px;
  border: none;
  border-radius: 4px;
  color: #f9f8f2;
  margin-top: 2rem;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.hero__btn:hover {
  background: #daa520;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero__image {
  text-align: center;
}

#hero-img {
  width: 100%;
  height: 100%;
}

/*Hero Mobile Responsive CSS*/
@media screen and (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    height: auto;
    padding: 60px 0;
  }

  .hero__content {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
  }

  .hero__content h1 {
    font-size: 2.5rem;
    margin: 2rem;
    text-align: center;
  }

  .hero__content p {
    font-size: 0.9rem;
    text-align: center;
  }

  .navbar__toggle {
    display: fixed;
  }
}

@media screen and (max-width: 480) {
  .hero__container {
    width: 100vw;
    padding: 60px 0;
  }

  .hero__content h1 {
    font-size: 1.5rem;
    margin-top: 1.8rem;
  }

  .hero__btn {
    padding: 12px 36px;
  }
}

/*What we do feature section*/

.what-we-do {
  font-family: var(--font-main);
  color: var(--brand-accent);
  font-size: 52px;
  text-align: center;
  margin-top: 40px;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 18px;
  margin-left: 80px;
  margin-right: 80px;
  align-items: center;
}

.card {
  background: var(--brand-accent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 500px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 380px;
}

.card-image-link {
  height: 70%;
  width: 100%;
  display: block;
}

.card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  pointer-events: none;
}

.card-content {
  height: 30%;
  padding: 30px 30px;
  line-height: 1;
  text-align: center;
}

.card-content h3 {
  font-size: 25px;
  color: #f9f8f2;
}

.card-container h2 {
  color: #f9f8f2;
  text-align: center;
  font-size: 3rem;
}

/*Why we exist*/
.content-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
  max-width: 1200px;
  padding: 20px;
}

.text-content {
  flex: 1;
  margin-right: 20px;
  text-align: center;
  font-size: 20px;
}

.image-content img {
  width: 11cm;
  height: auto;
  border-radius: 8px;
}

body {
  background: #f9f8f2;
}

/*Technology at the Core*/

#technology {
  padding: 60px 20px;
  background-color: #f9f8f2;
  text-align: center;
}

#technology h2 {
  color: var(--brand-dark);
  font-size: 4rem;
  font-weight: bolder;
  margin-bottom: 10px;
}

#technology p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.tech-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 100px;
}

.tech-card {
  background: rgba(25, 31, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 64, 0, 0.5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  height: 350px;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 64, 0, 0.8);
}

.tech-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.tech-card .card-content {
  height: 30%;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brand-light);
}

#exploreTech {
  background-color: var(--brand-dark);
  color: var(--brand-light);
  padding: 15px 40px;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#exploreTech:hover {
  background-color: #004d4d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 64, 0, 0.4);
}

/*Industries we serve*/
#industries {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

#industries h2 {
  font-size: 2.5em;
  color: var(--brand-orange);
  font-weight: 620;
  margin-bottom: 20px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.industry {
  background: var(--brand-accent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  min-height: 250px;
  overflow: hidden;
}

.industry:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.industry img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.industry h3 {
  font-size: 1.5rem;
  font-weight: 620;
  color: var(--brand-light);
  margin: 0;
  padding: 20px;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

#viewSolutions {
  background-color: var(--brand-orange);
  color: var(--brand-light);
  padding: 15px 40px;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#viewSolutions:hover {
  background-color: var(--brand-dark);
}

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

.contact-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.contact-left-title {
  font-weight: 600;
  color: #ff4000;
  font-size: 40px;
  margin-bottom: 5px;
}

/* =========================================================== 
SOLUTIONS PAGE SPECIFIC 
=========================================================== */

/* 1. The Fixed Background (Crucial for Glass Effect) */
.solutions-bg {
  background:
    linear-gradient(rgba(25, 31, 27, 0.85), rgba(25, 31, 27, 0.9)),
    url("images/world-map-tech.jpg"); /* Ensure you have a background image here */
  background-size: cover;
  background-attachment: fixed; /* Parallax feel */
  background-position: center;
  padding: 80px 20px;
  min-height: 100vh;
}

/* 2. Glassmorphism Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #f9f8f2;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* 3. Grid Layout for Solutions */
.solutions-section {
  background:
    linear-gradient(rgba(249, 248, 242, 0.85), rgba(249, 248, 242, 0.95)),
    url("images/contact-hero.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 20px;
  min-height: 100vh;
}

/* Featured Solution Layout */
.featured-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  margin-bottom: 80px;
}

.featured-solution.featured-reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.featured-solution.featured-reverse > * {
  direction: ltr;
}

.solution-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  height: 400px;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-solution:hover .solution-image img {
  transform: scale(1.05);
}

.solution-content {
  padding: 0 40px;
}

.featured-solution.featured-reverse .solution-content {
  text-align: right;
}

/* 3. Grid Layout for Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr)); /* Wider cards */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 4. Typography inside Glass */
.glass-title {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.8rem;
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  gap: 15px;
}

.glass-list {
  list-style: none;
  padding: 0;
}

.glass-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--brand-dark);
  line-height: 1.5;
}

.glass-list i {
  color: var(--brand-orange);
  margin-top: 5px;
}

/* Feature cards media */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.feature-media {
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-icon {
  font-size: 1.6rem;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

/* Section Header for Glass Page */
.section-header-light {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-light h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header-light p {
  color: #cfcec8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- INDUSTRIES PAGE SPECIFIC (Color Swap) --- */
.industries-bg {
  background-color: var(--brand-light); /* Off-white background */
  padding: 80px 20px;
  min-height: 100vh;
}

.industry-glass-card {
  background: rgba(25, 31, 27, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #f9f8f2;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.industry-glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-orange);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* =========================================================== 
RESOURCES PAGE 
============================================================= */

/* Hero Section (Light) */
.resources-hero {
  background:
    linear-gradient(rgba(249, 248, 242, 0.9), rgba(249, 248, 242, 0.95)),
    url("images/resources-hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 140px 20px 80px;
  text-align: center;
}

.badge-outline {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid rgba(255, 64, 0, 0.5);
  color: var(--brand-accent);
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

/* Document Vault Grid */
.vault-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.vault-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 50px;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Document Card Styling */
.doc-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.doc-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.doc-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.icon-box-light {
  width: 45px;
  height: 45px;
  background: rgba(25, 31, 27, 0.05);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 1.2rem;
}

.file-tag {
  font-size: 0.65rem;
  font-weight: bold;
  background: rgba(25, 31, 27, 0.05);
  color: #666;
  padding: 4px 8px;
  border-radius: 4px;
  height: fit-content;
}

.doc-link {
  color: var(--brand-orange);
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.doc-link:hover {
  text-decoration: underline;
}

/* RESOURCE CATEGORY SECTIONS */
.resource-category {
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 64, 0, 0.03),
    rgba(255, 64, 0, 0.01)
  );
  border-radius: 12px;
  border: 1px solid rgba(255, 64, 0, 0.1);
  transition: all 0.3s ease;
}

.resource-category:hover {
  border-color: rgba(255, 64, 0, 0.3);
  box-shadow: 0 10px 35px rgba(255, 64, 0, 0.07);
}

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(255, 64, 0, 0.15);
}

.category-icon {
  font-size: 2.2rem;
  color: var(--brand-orange);
  width: 60px;
  height: 60px;
  background: rgba(255, 64, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.category-header h3 {
  color: var(--brand-dark);
  font-size: 1.5rem;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.category-header p {
  color: #888;
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.5px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Featured Doc Card */
.doc-featured {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ff6b35 100%);
  color: white;
  border: none;
  box-shadow: 0 15px 40px rgba(255, 64, 0, 0.2);
  transform: scale(1.02);
}

.doc-featured h3 {
  color: white !important;
}

.doc-featured p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.doc-featured .doc-link {
  color: #fff;
  font-weight: bold;
}

.doc-featured .doc-link:hover {
  opacity: 0.8;
}

.doc-featured .icon-box-light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.doc-featured .file-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.doc-featured:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(255, 64, 0, 0.3);
  transform: scale(1.05);
}

/* Document Card Images */
.doc-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

.doc-featured .doc-card-image {
  height: 220px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Mid-Page Visual Section */
.visual-break {
  height: 400px;
  background-image: url("images/office-meeting.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.visual-overlay {
  background: rgba(25, 31, 27, 0.7);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* FAQ Accordion Styling */
.faq-section {
  background-color: var(--brand-light);
  padding: 100px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

details[open] {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

summary {
  padding: 20px 25px;
  cursor: pointer;
  list-style: none;
  font-weight: bold;
  color: var(--brand-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--brand-orange);
  font-weight: lighter;
}

details[open] summary::after {
  content: "-";
}

.faq-content {
  padding: 0 25px 25px;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: -5px;
  padding-top: 15px;
}

/* =========================================================== 
CONTACT PAGE SPECIFIC  
=========================================================== */

/* Contact Background - Light Glass Effect needs texture behind it */
.contact-bg-light {
  background:
    linear-gradient(rgba(249, 248, 242, 0.85), rgba(249, 248, 242, 0.95)),
    url("images/contact-hero.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 20px;
  min-height: 100vh;
}

/* Light Card Style - "Frosted Glass" */
.contact-card-light {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  color: var(--brand-dark);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-orange);
}

/* Light Form Inputs */
.contact-input-light,
.contact-textarea-light {
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  color: #333;
  font-family: inherit;
  transition: 0.3s;
}

.contact-input-light:focus,
.contact-textarea-light:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 64, 0, 0.1);
}

.contact-textarea-light {
  resize: vertical;
}

/* Darker Labels for Light Theme */
.form-label-dark {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.9rem;
  font-weight: bold;
}

.section-header-dark {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-dark h2 {
  color: var(--brand-orange);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header-dark p {
  color: var(--brand-dark); /* Dark grey text */
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- ANIMATIONS --- */

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

.reveal {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Pulse animation for Tech section */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 64, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 64, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 64, 0, 0);
  }
}

.hero__btn {
  /* Add pulse to your main CTA */
  animation: pulse-glow 2s infinite;
}

/* =========================================================== 
TECH PAGE SPECIFIC
============================================================== */

/* Tech Background - darker/more cyber */
.tech-bg {
  background:
    linear-gradient(rgba(10, 15, 12, 0.92), rgba(10, 15, 12, 0.95)),
    url("images/tech-network-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 20px;
  min-height: 100vh;
}

/* Monospace font for the "Code" look */
.mono-text {
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 1px;
}

/* The Dashboard Grid */
.tech-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 Columns */
  grid-template-rows: auto auto;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Spanning Cells for the Bento Layout */
.span-full {
  grid-column: 1 / -1; /* Spans all 3 columns */
}

.span-2 {
  grid-column: span 2; /* Spans 2 columns */
}

/* Mobile Responsive adjustment */
@media screen and (max-width: 960px) {
  .tech-dashboard {
    grid-template-columns: 1fr;
  }
  .span-full,
  .span-2 {
    grid-column: 1;
  }
}

/* Live Status Indicator */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  color: #22c55e;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: "Share Tech Mono", monospace;
}

.blink {
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Tech Icon Glow */
.tech-icon {
  font-size: 2.5rem;
  color: var(--brand-accent);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 64, 0, 0.4);
}

/* --- TECH PAGE LIGHT THEME --- */
.tech-bg-light {
  background:
    linear-gradient(rgba(249, 248, 242, 0.92), rgba(249, 248, 242, 0.95)),
    url("images/tech-network-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 20px;
  min-height: 100vh;
}

.tech-glass-card {
  background: rgba(10, 15, 12, 0.92); /* Dark, almost opaque */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tech-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 64, 0, 0.25); /* Orange Tech Glow */
  border-color: var(--brand-orange);
}

.tech-glass-list {
  list-style: none;
  color: var(--brand-light);
  padding: 0;
  margin: 0;
}

/* ==============================================================
LIGHT THEME STYLES (For About & Why Us) 
============================================================== */

.light-section {
  background-color: var(--brand-light); /* Off-white */
  padding: 80px 20px;
  color: var(--brand-dark);
}

.white-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: var(--brand-dark);
}

/* Clean White Card Style */
.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--brand-orange);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--brand-orange);
  margin-bottom: 20px;
  background: rgba(255, 64, 0, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Typography for Light Pages */
.heading-dark {
  color: var(--brand-dark);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}

.subtext-dark {
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Timeline / History Style */
.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.timeline-year {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.5rem;
  color: var(--brand-orange);
  font-weight: bold;
  min-width: 80px;
}

/* ============================================================== 
ABOUT PAGE STYLES 
============================================================== */

/* Hero Split Layout */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  background: var(--brand-light);
}

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

.hero-text-section {
  display: flex;
  flex-direction: column;
}

.hero-image-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.hero-stats h3 {
  color: var(--brand-orange);
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.hero-stats p {
  color: #666;
  margin-top: 8px;
  font-size: 0.95rem;
}

/* About Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-orange);
}

.value-icon {
  font-size: 3rem;
  color: var(--brand-orange);
  margin-bottom: 25px;
  background: rgba(255, 64, 0, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
}

.value-card h3 {
  color: var(--brand-dark);
  font-size: 1.5rem;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

/* Values Showcase */
.values-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--brand-orange);
  position: relative;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.value-number {
  font-size: 3rem;
  color: rgba(255, 64, 0, 0.15);
  font-weight: bold;
  margin-bottom: 20px;
}

.value-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.value-title i {
  font-size: 1.8rem;
  color: var(--brand-orange);
  width: 50px;
  height: 50px;
  background: rgba(255, 64, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.value-title h4 {
  color: var(--brand-dark);
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.value-item p {
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* Featured Content Layout */
.about-featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.featured-box {
  display: flex;
  align-items: center;
}

.featured-box img {
  max-width: 100%;
}

.featured-box h3 {
  color: var(--brand-dark);
}

.featured-box ul {
  list-style: none;
  padding: 0;
}

.featured-box li {
  color: #666;
  margin-bottom: 18px;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
}

.featured-box i {
  position: absolute;
  left: 0;
  color: var(--brand-orange);
}
/* --- NEW ABOUT LAYOUT (Reference Image Style) --- */

.about-split-section {
  padding: 100px 20px;
  background-color: var(--brand-light);
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Left Side: Layered Images --- */
.about-images {
  position: relative;
  height: 500px;
  width: 100%;
}

.img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 85%;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.img-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-front {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 55%;
  height: 75%;
  border: 8px solid #fff;
  overflow: hidden;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The "30+" Stat Badge Style */
.stat-badge {
  position: absolute;
  bottom: 40px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 8px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 200px;
}

.stat-number {
  display: block;
  font-family: var(--font-tech);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* --- Right Side: Content --- */
.sub-title {
  color: var(--brand-orange);
  font-family: var(--font-body);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.main-title {
  font-family: var(--font-tech);
  color: var(--brand-dark);
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05rem;
  font-family: var(--font-body);
}

.check-list i {
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.desc-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: #fff;
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-tech);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 960px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 400px;
    margin-bottom: 20px;
  }

  .img-back {
    width: 80%;
  }
  .img-front {
    width: 60%;
    right: 0;
  }

  .main-title {
    font-size: 2rem;
  }
}

/* ============================================================== 
CONTACT PAGE SPECIFIC 
============================================================== */

/* Contact Background */
.contact-bg {
  background:
    linear-gradient(rgba(10, 15, 12, 0.9), rgba(10, 15, 12, 0.9)),
    url("images/contact-hero.jpg"); /* Ensure image exists */
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 20px;
  min-height: 100vh;
}

/* 2-Column Contact Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Info takes less space than form */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
}

/* Contact Info Items */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon-box {
  background: rgba(255, 64, 0, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--brand-orange);
  color: var(--brand-orange);
  font-size: 1.2rem;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: #cfcec8;
  margin-bottom: 8px;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.9rem;
}

.glass-input,
.glass-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit; /* Use main font */
  transition: 0.3s;
}

.glass-input:focus,
.glass-textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: rgba(255, 255, 255, 0.1);
}

.glass-textarea {
  resize: vertical; /* Allow user to resize height only */
}

/* ==============================================================
FOOTER STYLES 
============================================================== */
.footer {
  background-color: #111512; /* Very dark brand green */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-top: 60px;
  margin-top: auto; /* Pushes footer to bottom if content is short */
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(220px, 1fr)
  ); /* Responsive grid */
  gap: 40px;
}

/* Column 1: Brand & Socials */
.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer__logo-img {
  width: 100px;
  height: auto;
  border-radius: 5px;
}

.footer__brand-text {
  font-family: "Share Tech Mono", monospace; /* Using your tech font */
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -1px;
}

.text-orange {
  color: var(--brand-accent);
}

.footer__tagline {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
}

.social-link:hover {
  color: var(--brand-accent);
  border-color: var(--brand-accent);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Headings & Links */
.footer__heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-accent);
  margin-bottom: 25px;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__link {
  color: #cfcec8; /* Off-white/grey */
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.footer__link:hover {
  color: #fff;
  padding-left: 5px; /* Subtle slide effect */
}

.footer__text {
  color: #cfcec8;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Special Elements */
.footer__divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 15px 0;
}

.flex-align {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-pdf {
  font-size: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1px 4px;
  border-radius: 3px;
  color: #888;
}

/* Pulse Dot for Portal */
.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e; /* Green */
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Footer Button */
.btn-outline {
  display: block;
  text-align: center;
  border: 1px solid var(--brand-accent);
  color: var(--brand-accent);
  padding: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--brand-orange);
  color: #fff;
}

/* Copyright Bar */
.footer__bottom {
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.footer__bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .footer__bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom p,
.footer__legal a {
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a:hover {
  color: #fff;
}

/* ============================================================== 
LOGIN / COMING SOON PAGE 
============================================================== */

.coming-soon-bg {
  background:
    linear-gradient(rgba(10, 15, 12, 0.95), rgba(10, 15, 12, 0.98)),
    url("images/tech-network-bg.jpg"); /* Reusing your tech background */
  background-size: cover;
  background-position: center;
  min-height: 80vh; /* Takes up most of the screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.system-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  margin-top: 90px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* The "Loading" Bar */
.progress-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin: 30px 0;
  height: 6px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--brand-orange);
  width: 0%; /* Starts at 0 */
  border-radius: 50px;
  animation: loadSystem 3s ease-in-out forwards; /* Animates to 80% */
  box-shadow: 0 0 10px var(--brand-orange);
}

@keyframes loadSystem {
  0% {
    width: 0%;
  }
  40% {
    width: 45%;
  }
  70% {
    width: 60%;
  }
  100% {
    width: 85%;
  } /* Stalls at 85% to show it's not done yet */
}

/* Blinking cursor for the "Terminal" feel */
.cursor {
  display: inline-block;
  width: 10px;
  height: 1.2rem;
  background-color: var(--brand-orange);
  margin-left: 5px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* --- GLOBAL RESPONSIVENESS (Mobile & Tablet) --- */

/* Tablet & Smaller Laptops */
@media screen and (max-width: 960px) {
  .card-container {
    grid-template-columns: 1fr 1fr; /* 2 columns instead of 4 */
    margin: 20px 40px;
  }

  .tech-card-container {
    grid-template-columns: 1fr 1fr; /* 2 columns instead of 3 */
    margin: 20px 40px;
  }

  .tech-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .span-full {
    grid-column: 1 / -1;
  }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
  /* Stack Grids to Single Column */
  .card-container,
  .tech-card-container,
  .solutions-grid,
  .featured-solution,
  .industry-grid,
  .tech-dashboard,
  .contact-wrapper,
  .doc-grid,
  .category-grid,
  .features {
    grid-template-columns: 1fr !important;
    display: grid !important;
    margin: 20px 15px !important;
    gap: 30px !important;
    width: auto !important;
  }

  /* Featured Solution Reverse Direction Fix */
  .featured-solution.featured-reverse {
    direction: ltr;
  }

  /* Solution Image Mobile */
  .solution-image {
    height: 250px;
    margin-bottom: 20px;
  }

  .solution-content {
    padding: 0 20px;
    text-align: left !important;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .feature-media {
    height: 200px;
  }

  /* Flex containers that need to stack */
  .content-section,
  .timeline-item {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .timeline-item {
    align-items: center;
  }

  /* Resource Categories Mobile */
  .resource-category {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  .category-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  /* About Page Mobile */
  .about-hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .hero-image-section {
    height: 300px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .value-card {
    padding: 30px 25px;
  }

  .values-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-featured-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-box {
    order: auto !important;
  }

  /* Tech Dashboard: Reset spans for single column */
  .span-full,
  .span-2 {
    grid-column: 1 !important;
  }

  /* Typography Scaling */
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2rem !important;
  }
  .what-we-do {
    font-size: 2.2rem;
  }
  .contact-left-title {
    font-size: 2rem;
    text-align: center;
  }

  /* Hero & Section Adjustments */
  .hero__container,
  .coming-soon-bg {
    height: auto;
    min-height: 60vh;
    padding: 80px 20px;
  }

  .hero__content h1 {
    margin-top: 1rem;
  }

  /* System Card (Login) */
  .system-card {
    margin-top: 10px;
    padding: 30px 20px;
  }

  /* General Content Adjustments */
  .text-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .image-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Page Padding Fixes */
  .industries-bg,
  .contact-bg,
  .contact-bg-light,
  .tech-bg,
  .tech-bg-light,
  .solutions-bg {
    padding: 60px 15px;
  }

  /* Hide visual breaks or adjust height */
  .visual-break {
    height: 200px;
  }

  /* Alignments */
  .section-header-dark,
  .section-header-light,
  .hero__content {
    text-align: center;
    padding: 0 10px;
  }
}

@media screen and (max-width: 960px) {
  .navbar__container {
    padding: 0 20px;
    position: relative; /* Needed for absolute positioning context */
  }

  /* 1. Position the Hamburger Icon */
  .navbar__toggle {
    display: block;
    position: absolute;
    top: 25px; /* Center vertically (80px height) */
    right: 20px;
    cursor: pointer;
    z-index: 1000; /* Ensure it sits on top of the menu */
  }

  /* 2. Style the Bars */
  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
    display: block;
  }

  /* 3. Mobile Menu Panel */
  .navbar__menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
    height: calc(100vh - 80px); /* Full remaining height */
    overflow-y: auto; /* Allow scrolling */
    background: var(--brand-dark);
    z-index: 998;
    padding: 0; /* Remove padding as links have it */
    border-bottom: 2px solid var(--brand-orange);
  }

  /* 4. Active State */
  .navbar__menu.active {
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
  }

  .navbar__links {
    text-align: center;
    padding: 1.2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Separator */
    font-size: 1.1rem;
  }

  /* 5. Hide Desktop Button on Mobile */
  .navbar__btn.desktp {
    display: none;
  }

  .navbar__btn.mobile {
    display: block; /* Ensure mobile button shows if you have one inside the UL */
  }

  /* 6. Hamburger Animation (Turn to X) */
  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
