:root {
  --brand-orange: #00a896;
  --brand-accent: #00a896;
  --brand-teal: #00a896;
  --brand-dark: #181b26;
  --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: "Inter", sans-serif;
  --font-tech: "Space Grotesk", sans-serif;
}

* {
  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: 75px;
  background: #191f1b;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  position: fixed;
}

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

.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: #ff6b6b;
  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: 0;
    transform: translateY(-50%);
    color: #f9f8f2;
    z-index: 10;
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    padding: 10px;
  }

  .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 {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

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

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

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

.hero__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  width: 100%;
  padding: 0 20px;
  background-position: center;
  background-size: cover;

  background-color: rgba(10, 15, 12, 0.85);
  background-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.hero__content h1 {
  font-family: var(--font-tech);
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__content p {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: #cfcec8;
}

.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: #ff6b6b;
  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;
  margin-bottom: 20px;
  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(20, 25, 22, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-teal);
  box-shadow: 0 15px 40px rgba(0, 168, 150, 0.15);
}

/* 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: var(--font-tech) !important;
  font-size: 1.3rem !important;
  letter-spacing: 1px !important;
  margin-bottom: 15px !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  color: #ffffff !important;
}

.glass-title i {
  font-size: 2rem !important;
  color: var(--brand-teal) !important;
  margin-bottom: 2px !important;
  display: inline-flex !important;
}

.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);
  padding: 80px 20px;
  min-height: 100vh;
}

.industry-glass-card {
  background: rgba(20, 25, 22, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.industry-glass-card p {
  font-family: var(--font-main) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  color: #a0aab2 !important;
  margin-bottom: 15px !important;
}

try-glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-teal);
  box-shadow: 0 15px 40px rgba(0, 168, 150, 0.15);
}

/* =========================================================== 
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: 2rem !important;
  background: rgba(0, 168, 150, 0.6) !important;
  padding: 16px !important;
  border-radius: 12px !important;
  margin-bottom: 25px !important;
  display: inline-flex !important;
}

/* --- 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(20, 25, 22, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.tech-glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-teal);
  box-shadow: 0 15px 40px rgba(0, 168, 150, 0.15);
}

.tech-glass-card h3 {
  font-family: var(--font-tech) !important;
  font-size: 1.3rem !important;
  letter-spacing: 1px !important;
  margin-bottom: 15px !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  color: #ffffff !important;
}

.tech-glass-card p {
  font-family: var(--font-main) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  color: #a0aab2 !important;
  margin-bottom: 15px !important;
}

.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 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 64, 0, 0.1);
  border-bottom: 3px 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%;
}

/* =========================================
   3D KINETIC PILLARS SECTION (LOOK AT ME FACTOR)
   ========================================= */

.kinetic-pillars-section {
  /* A very soft, warm gradient background to make the white cards pop */
  background: linear-gradient(135deg, #fdfbf7 0%, #f4f6f8 100%);
  padding: 100px 20px;
  overflow: hidden;
}

.flip-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1500px; /* Gives the 3D flip depth */
}

/* The Card Container */
.flip-card {
  background-color: transparent;
  height: 380px;
  cursor: pointer;
}

/* The inner card that actually flips */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  /* Satisfying bouncy flip animation */
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

/* Trigger the flip on hover */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  box-shadow: 0 25px 50px rgba(255, 64, 0, 0.2);
}

/* Front and Back positioning */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

/* --- THE FRONT (Pristine, Clean, Light) --- */
.flip-card-front {
  background-color: #ffffff;
  color: var(--brand-dark);
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  background: rgba(255, 64, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--brand-orange);
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.flip-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.flip-card-front h3 {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.6rem;
  line-height: 1.3;
}

/* --- THE BACK (Vibrant, Bold, Informative) --- */
.flip-card-back {
  background: var(--brand-orange);
  color: white;
  transform: rotateY(180deg);
  align-items: flex-start;
  text-align: left;
}

.flip-card-back h3 {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  width: 100%;
}

.flip-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flip-card-back ul li {
  font-size: 1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  line-height: 1.4;
}

.flip-card-back ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #fff;
  opacity: 0.8;
}

/* 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: var(--brand-dark); /* 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);
  }
}

/* Mobile 2-Column Grid Fixes */
@media screen and (max-width: 768px) {
  .card-container,
  .tech-card-container,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin: 20px 10px !important;
    padding: 0 !important;
    width: auto !important;
    display: grid !important;
  }

  /* Override specific grid settings that might be set elsewhere */
  .industry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .card,
  .tech-card,
  .industry {
    height: 120px !important;
    min-height: 160px !important;
    width: 100% !important;
  }

  .tech-card img,
  .industry img,
  .card-image-link img {
    height: 100px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .card-content h3,
  .tech-card h3,
  .industry h3 {
    font-size: 0.9rem !important;
    padding: 5px !important;
    margin: 0 !important;
    min-height: 0 !important;
  }

  .industry h3 {
    height: auto !important;
    padding: 10px !important;
  }

  .card-content,
  .tech-card .card-content {
    padding: 5px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* =====================================
CAREER PAGE 
======================================== */

/* 1. Centered Header Design */
.section-header.centered-vacancies {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 40px auto;
}

.section-header.centered-vacancies h2 {
  font-size: 2.8rem;
  color: var(--brand-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  letter-spacing: -1px;
}

/* The orange underline accent */
.section-header.centered-vacancies h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--brand-orange);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-header.centered-vacancies p {
  font-size: 1.1rem;
  color: #666;
}

/* 2. Pro Filter Buttons */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: "Share Tech Mono", monospace; /* Tech font for buttons */
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  letter-spacing: 1px;
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.filter-btn.active {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  box-shadow: 0 8px 20px rgba(255, 64, 0, 0.25); /* Orange glow */
  transform: translateY(-2px);
}

/* 2. Image-Based Job Cards */
.job-card {
  height: 350px; /* Taller for visual impact */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: none; /* Remove border, rely on image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.job-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.job-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.2)
  ); /* Dark gradient for text */
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Text at bottom */
  align-items: flex-start;
}

.job-card:hover {
  transform: translateY(-10px);
}

.job-card:hover .job-card-bg {
  transform: scale(1.1); /* Zoom effect */
}

/* Text on Card (Preview) */
.job-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.job-tags {
  margin-bottom: 15px;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.view-btn {
  color: var(--brand-orange);
  font-family: var(--font-tech);
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  transition: 0.3s;
}

.job-card:hover .view-btn {
  opacity: 1;
  gap: 15px;
}

/* 3. The Modal (Pop-up) */
.job-modal-overlay {
  background: rgba(10, 15, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.job-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.job-modal {
  background: #fff;
  width: 90%;
  max-width: 650px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.job-modal-overlay.open .job-modal {
  transform: scale(1);
}

.modal-header {
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  margin: 0;
}

.modal-close {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-orange) rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar */
.modal-body::-webkit-scrollbar {
  width: 8px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.modal-body::-webkit-scrollbar-thumb {
  background-color: var(--brand-orange);
  border-radius: 20px;
}

.modal-section {
  margin-bottom: 35px;
}

.modal-section h4 {
  color: var(--brand-dark);
  font-family: var(--font-tech);
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 3px solid var(--brand-orange);
  padding-left: 10px;
}

.modal-section p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.modal-section ul {
  list-style: none;
  padding: 0;
}

.modal-section li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.modal-section li::before {
  content: "\f058"; /* FontAwesome check-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--brand-orange);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.9rem;
}

.modal-footer {
  padding: 25px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.5);
}

.modal-footer .hero__btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(255, 64, 0, 0.2);
  text-decoration: none;
}

/* Mobile Responsiveness for Modal */
@media screen and (max-width: 768px) {
  .job-modal {
    width: 95%;
    max-height: 80vh;
    border-radius: 12px;
  }

  .modal-header {
    padding: 20px 25px;
  }

  .modal-header h2 {
    font-size: 1.4rem;
  }

  .modal-body {
    padding: 25px;
  }

  .modal-section h4 {
    margin-top: 0;
  }
}

/* =======================================================
   NEW STYLES: NAVBAR DROPDOWN & CAREERS MOBILE FIXES
   ======================================================= */

/* Dropsown Styles */
.navbar__item {
  position: relative;
}

.navbar__dropdown {
  display: none;
  position: absolute;
  top: 80px;
  left: 20px;

  background-color: var(--brand-dark);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* High z-index */
  flex-direction: column;
  border-top: 3px solid #ff4000;
  border-radius: 0 0 8px 8px;
}

/* Desktop Hover */
@media screen and (min-width: 961px) {
  .navbar__item:hover .navbar__dropdown {
    display: flex;
    animation: fadeIn 0.3s ease;
  }
}

.dropdown-link {
  padding: 15px 20px;
  color: #f9f8f2;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}

.dropdown-link:hover {
  background-color: rgba(255, 64, 0, 0.1);
  color: #ff4000;
  padding-left: 25px;
}

/* Mobile Dropdown */
@media screen and (max-width: 960px) {
  .navbar__dropdown {
    position: static;
    display: none;

    background-color: var(--brand-dark);
    box-shadow: none;
    width: 100%;
    border-top: none;
    border-radius: 0;
  }

  .navbar__dropdown.active {
    display: flex; /* Toggled via JS */
  }

  .dropdown-link {
    padding-left: 30px; /* Indent sub-items */
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  /* Rotate caret when active */
  .nav-caret {
    transition: transform 0.3s ease;
  }
  .navbar__item.active .nav-caret {
    transform: rotate(180deg);
  }
}

/* Careers Mobile Layout Override */
@media screen and (max-width: 768px) {
  /* Force 1 column for the jobs container */
  .jobs-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 20px !important;
  }

  /* Allow cards to have natural height */
  .jobs-container .job-card {
    height: auto !important;
    min-height: 450px !important; /* Ensure nice tall poster look */
    margin-bottom: 20px;
  }

  /* Adjust overlay density for better text readability on mobile */
  .jobs-container .job-card-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
    padding: 25px !important;
  }

  .jobs-container h3 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }
}

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

/* =========================================
   NAVBAR DROPDOWN MENUS (DESKTOP & MOBILE)
   ========================================= */

.dropdown-toggle {
  position: relative;
}

.nav-caret {
  font-size: 0.75rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* The Dropdown Box */
.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--brand-dark);
  min-width: 260px;
  list-style: none;
  padding: 10px 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-top: 3px solid var(--brand-orange);

  /* Hidden by default with a smooth slide-up animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
}

/* Hover Effects (Desktop Only) */
@media screen and (min-width: 961px) {
  .dropdown-toggle:hover .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Flip the little arrow upside down on hover */
  .dropdown-toggle:hover .nav-caret {
    transform: rotate(180deg);
    color: var(--brand-orange);
  }
}

/* Individual Links inside the Dropdown */
.dropdown-link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  font-family: var(--font-tech);
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-link:last-child {
  border-bottom: none;
}

/* The slide-right hover effect */
.dropdown-link:hover {
  background-color: rgba(255, 64, 0, 0.08);
  color: var(--brand-orange);
  padding-left: 32px;
}

/* --- MOBILE SPECIFIC OVERRIDES --- */
@media screen and (max-width: 960px) {
  .navbar__dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
  }

  .navbar__dropdown.active {
    display: block;
  }

  .dropdown-link {
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--brand-orange);
  color: #fff;
  border: none;
  border-radius: 40%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 64, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Bounces up into place */
}

.back-to-top:hover {
  background-color: var(--brand-dark);
  transform: translateY(-5px); /* Hover lift */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.luxury-back-to-top {
  background-color: #888888;
  color: #ffffff;
}
.luxury-back-to-top:hover {
  background-color: var(--brand-teal);
  color: var(--luxury-dark);
}

/* =========================================
   HOSPITALITY PAGE
   ========================================= */

:root {
  --brand-teal: #c9a962;
  --brand-teal-light: #e5cc98;
  --luxury-dark: #0a0a0a;
  --luxury-charcoal: #1a1a1a;
}

/* Hero Section - Cinematic */
.hospitality-hero-luxury {
  min-height: 100vh;
  background-image:
    linear-gradient(
      to bottom,
      rgba(10, 15, 12, 0.3) 0%,
      rgba(10, 15, 12, 0.8) 100%
    ),
    url("https://kimi-web-img.moonshot.cn/img/thumbs.dreamstime.com/b2ba1826ea3cbc51ae29bdaa1ab0969fd7217f28.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hospitality-hero-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

.hero-content-luxury {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
  animation: fadeInUp 1.2s ease-out;
}

.luxury-kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 30px;
  color: var(--brand-teal-light);
  font-weight: 400;
}

.luxury-headline {
  font-family: "Space Grotesk", serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 30px;
  color: #fff;
}

.luxury-headline em {
  font-style: italic;
  color: var(--brand-teal-light);
  display: block;
  font-size: 0.6em;
  margin-top: 15px;
  letter-spacing: 2px;
}

.luxury-subtext {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Toggle Section - Floating Pill */
.toggle-section-luxury {
  background: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 100px auto;
  padding-bottom: 0;
  z-index: 10;
  margin-top: -40px;
}

.toggle-container-luxury {
  max-width: 600px;
  margin: 100px auto 0 auto;
  background: #fff;
  border-radius: 100px;
  box-shadow:
    0 20px 60px rgb(255, 255, 255, 0.3),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: 8px;
  display: flex;
  position: center;
  margin-bottom: 40px;
}

.luxury-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 100px auto;
  padding-bottom: 0;
}

.luxury-toggle-divider {
  width: 1px;
  height: 25px;
  background-color: #d8c8b8; /* Champagne accent */
}

.toggle-btn.luxury-tab {
  background: none;
  border: none;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem; /* Very small and delicate */
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a09b95;
  padding: 10px 0;
  border-radius: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}

.toggle-btn.luxury-tab:hover {
  color: var(--brand-dark);
}

.toggle-btn.luxury-tab.active {
  color: var(--brand-dark);
  font-weight: 500;
  background: none;
  box-shadow: none;
}

/* The delicate underline */
.toggle-btn.luxury-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--brand-dark);
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.toggle-btn.luxury-tab.active::after {
  width: 100%;
}
.luxury-tab {
  flex: 1;
  padding: 20px 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.luxury-tab:hover {
  color: var(--luxury-dark);
}

.luxury-tab.active {
  color: #fff;
  background: var(--luxury-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.luxury-tab i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.luxury-tab.active i {
  transform: scale(1.1);
}

/* CRITICAL: Toggle Content Visibility */
.toggle-content {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.toggle-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

/* Service Content Area */
.services-showcase {
  background: #050505;
  padding: 100px 0;
  min-height: 800px;
  position: relative;
}

.panel-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.panel-header h2 {
  font-family: "Space Grotesk", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
}

.panel-header p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #999;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Editorial Layout - Magazine Style */
.editorial-row {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 120px auto;
  gap: 0;
  position: relative;
}

.editorial-row.reverse {
  flex-direction: row-reverse;
}

.editorial-img-col {
  flex: 1.2;
  height: 700px;
  overflow: hidden;
  position: relative;
}

.editorial-img-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
  pointer-events: none;
}

.editorial-row.reverse .editorial-img-col::after {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1), transparent);
}

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

.editorial-row:hover .editorial-img-col img {
  transform: scale(1.05);
}

.editorial-text-col {
  flex: 1;
  padding: 60px 80px;
  position: relative;
  background: #fff;
  margin-left: -60px;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.editorial-row.reverse .editorial-text-col {
  margin-left: 0;
  margin-right: -60px;
}

.editorial-watermark {
  position: absolute;
  top: -20px;
  right: 40px;
  font-family: "Space Grotesk", serif;
  font-size: 10rem;
  font-style: italic;
  color: var(--luxury-dark);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.editorial-row.reverse .editorial-watermark {
  right: auto;
  left: 40px;
}

.editorial-label {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-teal);
  display: block;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.editorial-text-col h3 {
  font-family: "Space Grotesk", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--luxury-dark);
  margin-bottom: 25px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.editorial-text-col p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2;
  color: #666;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #555;
  letter-spacing: 0.5px;
}

.service-features li i {
  color: var(--brand-teal);
  font-size: 0.7rem;
}

.vip-badge {
  display: inline-block;
  background: var(--luxury-dark);
  color: var(--brand-teal-light);
  padding: 8px 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 20px;
  border-radius: 2px;
}

/* =========================================
   HOSPITALITY SECTION - DARK MODE OVERRIDES
   ========================================= */

.hospitality-dark-section {
  padding: 120px 0;
  background-color: var(--luxury-dark); /* Plugs into your #0a0a0a */
  min-height: 80vh;
  overflow: hidden;
}

/* 1. Toggle Buttons */
.hospitality-dark-section .toggle-btn.luxury-tab {
  color: #555; /* Dimmer inactive state */
}

.hospitality-dark-section .toggle-btn.luxury-tab:hover,
.hospitality-dark-section .toggle-btn.luxury-tab.active {
  color: var(--brand-teal-light);
}

.hospitality-dark-section .toggle-btn.luxury-tab::after {
  background: var(--brand-teal-light);
}

/* 2. Editorial Content Boxes */
.hospitality-dark-section .editorial-text-col {
  background: #111111; /* Deep charcoal to pop slightly off the background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8); /* Darker shadow for depth */
}

/* 3. Typography & Watermarks */
.hospitality-dark-section .editorial-watermark {
  color: #ffffff;
  opacity: 0.02; /* Subtle white watermark */
}

.hospitality-dark-section .editorial-text-col h3 {
  color: #ffffff;
}

.hospitality-dark-section .editorial-text-col p {
  color: #a09b95; /* Soft beige/grey for readable body text */
}

.hospitality-dark-section .editorial-label {
  color: var(--brand-teal);
}

/* =========================================
   TECH MANIFESTO & VISION SECTIONS
   ========================================= */

.tech-manifesto {
  background-color: #111111; /* Deep, rich tech black */
  color: #fff;
  padding: 120px 20px;
  background-image: radial-gradient(
    circle at 50% 0%,
    rgba(229, 204, 152, 0.05) 0%,
    transparent 70%
  );
}

.manifesto-container {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.manifesto-header h2 {
  font-family: "Space Grotesk", serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-top: 10px;
}

.manifesto-intro {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 2;
  color: #b0b0b0;
  font-weight: 300;
}

/* 5-Pillar Grid */
.tech-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tech-capability-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 204, 152, 0.1);
  padding: 40px;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.tech-capability-card:hover {
  background: rgba(229, 204, 152, 0.05);
  transform: translateY(-5px);
  border-color: rgba(229, 204, 152, 0.3);
}

.capability-icon {
  font-size: 1.8rem;
  color: #ba9b72;
  margin-bottom: 25px;
}

.tech-capability-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #e5cc98;
}

.tech-capability-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #999;
  font-weight: 300;
}

/* Highlighted Ecosystem Card spans multiple columns */
.ecosystem-card {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(229, 204, 152, 0.1) 0%,
    rgba(229, 204, 152, 0.02) 100%
  );
  border-left: 4px solid #ba9b72;
}

.ecosystem-card h4 {
  font-size: 1.2rem;
  color: #fff;
}

.ecosystem-card p {
  font-size: 1.1rem;
  color: #d8c8b8;
}

/* --- VISION SECTION --- */
.vision-section {
  background-color: #fff;
  padding: 120px 20px;
}

.vision-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-content {
  flex: 1.2;
}

.vision-statement {
  background: #faf9f7;
  padding: 40px;
  border-left: 2px solid var(--brand-orange);
}

.vision-image {
  flex: 1;
  height: 600px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

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

@media screen and (max-width: 960px) {
  .vision-container {
    flex-direction: column;
    gap: 50px;
  }
  .vision-image {
    width: 100%;
    height: 400px;
  }
}
.btn-luxury-outline {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: transparent;
  color: var(--luxury-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.btn-luxury-outline:hover {
  background: var(--luxury-dark);
  color: #fff;
  border-color: var(--luxury-dark);
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .editorial-text-col {
    padding: 40px;
  }
}

@media screen and (max-width: 960px) {
  .luxury-headline {
    font-size: 3.5rem;
  }

  .editorial-row,
  .editorial-row.reverse {
    flex-direction: column;
    margin-bottom: 80px;
  }

  .editorial-img-col {
    width: 100%;
    height: 400px;
  }

  .editorial-text-col {
    margin: -40px 20px 0;
    width: calc(100% - 40px);
  }

  .editorial-row.reverse .editorial-text-col {
    margin: -40px 20px 0;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .toggle-container-luxury {
    margin: 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .luxury-headline {
    font-size: 2.5rem;
  }

  .luxury-tab {
    padding: 15px 20px;
    font-size: 0.7rem;
  }

  .editorial-text-col h3 {
    font-size: 2rem;
  }
}

/* =========================================================== 
   CREATIVE ENGINEER SIGNATURE
   =========================================================== */
.footer-credit {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: #A0AAB2; /* Premium cool grey to match the SaaS UI */
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.footer-credit a {
    font-family: var(--font-tech); /* Gives your name that engineered edge */
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.footer-credit a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 168, 150, 0.6); /* Subtle teal glow on hover */
}

/* ==============================================================
   REDMI 13C MOBILE FIXES (max-width: 480px)
   All critical mobile layout issues addressed here
   ============================================================== */

/* ---------------------------------------------------------------
   1. HERO SECTION - Fix text hiding under fixed navbar
   --------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .hero__container {
    padding-top: 90px !important; /* Push content below the 75px fixed navbar */
    min-height: 100vh !important;
    height: auto !important;
    box-sizing: border-box;
    overflow: hidden;
    width: 100% !important;
  }

  .hero__content h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin: 0 0 15px 0 !important;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero__content p {
    font-size: 0.85rem !important;
    margin-bottom: 15px;
  }

  .hero__btn {
    display: block;
    width: 80%;
    margin: 10px auto 0 !important;
    text-align: center;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ---------------------------------------------------------------
   2. HAMBURGER MOBILE MENU - Reduce wasted space; center Client Portal
   --------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .navbar__menu {
    height: auto !important;       /* Don't force full-screen height */
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    padding-bottom: 20px;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    padding: 0.75rem 1rem !important;  /* Tighter vertical padding per link */
    font-size: 1rem !important;
  }

  /* Client Portal button: narrow, centred */
  .navbar__btn.mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    width: 100%;
  }

  .navbar__btn.mobile .button {
    width: 60% !important;      /* Don't stretch edge-to-edge */
    height: 48px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 0.9rem;
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------
   3. INDUSTRY CARDS - Centre the grid on mobile
   --------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin: 15px auto !important;   /* auto left/right centres the grid */
    padding: 0 10px !important;
    width: calc(100% - 20px) !important;
    max-width: 100% !important;
    justify-items: center;
  }

  .industry {
    width: 100% !important;
    min-height: 130px !important;
    height: auto !important;
  }

  .industry img {
    height: 90px !important;
  }

  .industry h3 {
    font-size: 0.75rem !important;
    padding: 6px 4px !important;
  }
}

/* ---------------------------------------------------------------
   4. TECHNOLOGY HERO & CONTACT HERO - Fix text overflow
      Prevent any element from bleeding outside the viewport
   --------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  /* Make hero containers never overflow horizontally */
  .hero__container,
  [class*="hero"] {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* mono-text headers (e.g. SYSTEM_ARCHITECTURE) - shrink & wrap */
  .mono-text,
  h1.mono-text {
    font-size: 1.4rem !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
  }

  /* Section after hero that overflows */
  .tech-bg-light,
  .contact-bg,
  .contact-bg-light,
  .solutions-bg,
  .tech-bg {
    overflow-x: hidden !important;
    width: 100% !important;
    padding: 60px 12px !important;
  }

  /* Tech dashboard cards: stack to single column so nothing overflows */
  .tech-dashboard {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .tech-glass-card {
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .span-full,
  .span-2 {
    grid-column: 1 !important;
  }

  /* Status badges row - allow wrap */
  [style*="display: flex"][style*="gap: 20px"] {
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .status-badge {
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
  }
}

/* ---------------------------------------------------------------
   5. SOLUTIONS PAGE - Solid background; 2-column image+info layout
   --------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  /* Replace the background image with solid dark colour */
  .solutions-section {
    background: #f0efe9 !important;  /* Solid off-white; no image */
    background-image: none !important;
    background-attachment: scroll !important;
    padding: 60px 10px !important;
    overflow-x: hidden !important;
  }

  /* Each featured solution: image left, content right, side by side */
  .featured-solution {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;  /* 2 equal columns */
    gap: 10px !important;
    margin-bottom: 30px !important;
    align-items: start !important;
    direction: ltr !important;   /* Override rtl reversal */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .featured-solution.featured-reverse {
    direction: ltr !important;
  }

  /* Shrink the image column */
  .solution-image {
    height: 130px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  .solution-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* Text column: compact */
  .solution-content {
    padding: 5px 6px !important;
    text-align: left !important;
  }

  .glass-title {
    font-size: 0.8rem !important;
    gap: 6px !important;
    margin-bottom: 6px !important;
    flex-wrap: wrap;
  }

  .glass-title i {
    font-size: 1rem !important;
  }

  .solution-content p {
    font-size: 0.72rem !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
  }

  .glass-list {
    padding: 0 !important;
  }

  .glass-list li {
    font-size: 0.7rem !important;
    margin-bottom: 5px !important;
    gap: 5px !important;
  }
}

/* ---------------------------------------------------------------
   6. CAREERS & VACANCIES - Compact filters; 3-column job cards
   --------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  /* Filter buttons: smaller and tighter */
  .filter-container {
    gap: 8px !important;
    margin-bottom: 25px !important;
    padding: 0 10px;
    justify-content: center;
  }

  .filter-btn {
    padding: 7px 14px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.5px !important;
    border-radius: 50px;
  }

  /* Jobs grid: 3 cards per row */
  .jobs-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 0 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Override the earlier 1-column mobile override from line 3168 */
  .jobs-container .job-card {
    height: 160px !important;
    min-height: 160px !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  .jobs-container .job-card-overlay {
    padding: 8px !important;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(0, 0, 0, 0.1) 100%
    ) !important;
  }

  .jobs-container h3 {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  .job-tags {
    margin-bottom: 4px !important;
  }

  .tag {
    font-size: 0.55rem !important;
    padding: 2px 4px !important;
    margin-right: 2px;
  }

  .view-btn {
    font-size: 0.6rem !important;
    gap: 4px !important;
  }

  /* Careers hero text */
  .section-header.centered-vacancies h2 {
    font-size: 1.8rem !important;
  }

  .section-header.centered-vacancies p {
    font-size: 0.85rem !important;
  }
}

/* ==============================================================
   NAVBAR MODERNISATION — Desktop & Mobile
   A cleaner, frosted-glass look with subtle transitions
   ============================================================== */

/* ── Desktop navbar: add glass effect + bottom border ── */
.navbar__container {
  background: rgba(18, 23, 20, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 168, 150, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Nav links: tighter, cleaner */
.navbar__links {
  font-size: 0.82rem !important;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding: 0 0.9rem !important;
  transition: color 0.25s ease;
}

/* Underline slide-in effect on hover */
.navbar__links::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar__links:hover::after,
.navbar__links.active::after {
  width: 60%;
}

/* LOGIN / Client Portal button: pill style */
.button {
  background: var(--brand-accent) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

.button:hover {
  background: #008f7e !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 150, 0.45);
}

/* ── Mobile navbar: modern slide panel ── */
@media screen and (max-width: 960px) {
  .navbar__container {
    height: 65px !important;
    padding: 0 16px !important;
    position: fixed !important;
  }

  /* Hamburger bars: rounder, thinner */
  .navbar__toggle .bar {
    width: 22px !important;
    height: 2px !important;
    margin: 5px auto !important;
    border-radius: 2px;
    background: #fff !important;
  }

  /* Mobile menu panel: glass effect */
  .navbar__menu {
    background: rgba(15, 20, 17, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 2px solid var(--brand-accent) !important;
    top: 65px !important; /* Matches new navbar height */
    height: calc(100vh - 65px) !important;
  }

  /* Links inside panel */
  .navbar__links {
    font-size: 0.9rem !important;
    letter-spacing: 1.5px;
    padding: 0.9rem 1.5rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    color: #e8e8e8 !important;
  }

  .navbar__links:hover,
  .navbar__links.active {
    color: var(--brand-accent) !important;
    background: rgba(0, 168, 150, 0.06);
  }

  /* Remove the underline pseudo element on mobile */
  .navbar__links::after {
    display: none;
  }
}

/* ==============================================================
   RESOURCES PAGE — Visual-break section text coverage
   ============================================================== */
@media screen and (max-width: 480px) {
  .visual-break {
    height: auto !important;        /* Let it grow to contain all text */
    min-height: 360px !important;
    background-attachment: scroll !important; /* Fix parallax on mobile */
  }

  .visual-overlay {
    padding: 50px 20px !important;
    align-items: center;
  }

  .visual-overlay h2 {
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
    line-height: 1.25;
  }

  .visual-overlay p {
    font-size: 0.85rem !important;
    margin-bottom: 20px !important;
    line-height: 1.6;
  }

  .visual-overlay .hero__btn {
    width: auto !important;
    padding: 11px 28px !important;
    font-size: 0.85rem !important;
    margin: 0 auto !important;
    display: inline-block;
  }
}

/* ==============================================================
   ABOUT PAGE — OUR DIRECTION cards in 2 columns
   ============================================================== */
@media screen and (max-width: 480px) {
  /* OUR DIRECTION: 2 column grid */
  .about-values-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 10px !important;
  }

  .value-card {
    padding: 16px 12px !important;
    border-radius: 10px !important;
    text-align: center;
  }

  .value-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }

  .value-card h3 {
    font-size: 0.85rem !important;
    margin-bottom: 8px !important;
  }

  .value-card p {
    font-size: 0.72rem !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }

  /* Shrink the section padding */
  .white-section {
    padding: 50px 12px !important;
  }

  .heading-dark {
    font-size: 1.6rem !important;
    margin-bottom: 20px !important;
  }
}

/* ==============================================================
   ABOUT PAGE — WHY WE'RE DIFFERENT (featured content)
   Mobile: stack image on top, text below, compact
   ============================================================== */
@media screen and (max-width: 480px) {
  .about-featured-content {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 10px !important;
  }

  .featured-box {
    order: unset !important;
    padding: 0 !important;
    flex-direction: column;
  }

  .featured-box img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
  }

  .featured-box h3 {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }

  .featured-box p {
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
  }

  .featured-box li {
    font-size: 0.78rem !important;
    margin-bottom: 8px !important;
    padding-left: 22px !important;
  }
}

/* ==============================================================
   ABOUT PAGE — VALUES SHOWCASE (WHAT DRIVES US)
   Mobile: 2 columns side by side
   ============================================================== */
@media screen and (max-width: 480px) {
  .values-showcase {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 8px !important;
  }

  .value-item {
    padding: 14px 10px !important;
    border-left-width: 3px;
  }

  .value-number {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
  }

  .value-title {
    gap: 8px !important;
    margin-bottom: 6px !important;
    flex-wrap: wrap;
  }

  .value-title i {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
  }

  .value-title h4 {
    font-size: 0.8rem !important;
  }

  .value-item p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  .light-section {
    padding: 40px 10px !important;
  }

  .subtext-dark {
    font-size: 0.8rem !important;
    margin-bottom: 25px !important;
  }
}

/* ==============================================================
   WHY US PAGE — Flip cards: 2 columns mobile
   ============================================================== */
@media screen and (max-width: 480px) {
  .kinetic-pillars-section {
    padding: 40px 10px !important;
  }

  .flip-grid-container {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .flip-card {
    height: 200px !important;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 16px !important;
  }

  .icon-wrapper {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .flip-card-front h3 {
    font-size: 0.8rem !important;
    line-height: 1.3;
  }

  .flip-card-back h3 {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
    padding-bottom: 6px !important;
  }

  .flip-card-back ul li {
    font-size: 0.68rem !important;
    margin-bottom: 5px !important;
    padding-left: 14px !important;
    line-height: 1.35;
  }

  /* Stats row (98%, 24/7, 100%) */
  .white-section [style*="grid-template-columns"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .white-section [style*="font-size: 3rem"] {
    font-size: 1.8rem !important;
  }
}

/* ==============================================================
   GLOBAL MOBILE TEXT REDUCTION (max-width: 480px)
   Sweeps across all pages for comfortable reading
   ============================================================== */
@media screen and (max-width: 480px) {

  /* ── Headings ── */
  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.4rem !important; }
  h3 { font-size: 1.05rem !important; }
  h4 { font-size: 0.9rem !important; }

  /* ── General body copy ── */
  p, li, span, a, label {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
  }

  /* ── Section padding ── */
  section, .white-section, .light-section,
  .resources-hero, .vault-section, .faq-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* ── Vault / doc cards ── */
  .doc-card {
    padding: 16px !important;
  }

  .doc-card-image {
    height: 130px !important;
    margin-bottom: 12px !important;
  }

  .doc-card h3 {
    font-size: 0.88rem !important;
  }

  .doc-card p {
    font-size: 0.75rem !important;
  }

  .doc-link {
    font-size: 0.72rem !important;
  }

  .resource-category {
    padding: 18px 12px !important;
    margin-bottom: 18px !important;
  }

  .category-header h3 {
    font-size: 0.95rem !important;
  }

  .category-header p {
    font-size: 0.72rem !important;
  }

  /* ── FAQ ── */
  summary {
    padding: 14px 16px !important;
    font-size: 0.82rem !important;
  }

  .faq-content {
    font-size: 0.78rem !important;
    padding: 0 16px 16px !important;
  }

  /* ── Resources hero ── */
  .resources-hero h1 {
    font-size: 1.8rem !important;
  }

  .resources-hero p {
    font-size: 0.85rem !important;
  }

  /* ── About hero split ── */
  .about-split-section {
    padding: 70px 12px 40px !important;
  }

  .about-images {
    height: 260px !important;
  }

  .main-title {
    font-size: 1.5rem !important;
    margin-bottom: 16px !important;
  }

  .desc-text {
    font-size: 0.78rem !important;
    margin-bottom: 20px !important;
  }

  .check-list li {
    font-size: 0.78rem !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .btn-primary {
    padding: 11px 24px !important;
    font-size: 0.8rem !important;
  }

  /* ── What we do ── */
  .what-we-do {
    font-size: 1.5rem !important;
    margin-top: 24px !important;
  }

  /* ── Footer ── */
  .footer__container {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 0 12px 30px !important;
  }

  .footer__heading {
    font-size: 0.7rem !important;
    margin-bottom: 12px !important;
  }

  .footer__link, .footer__text {
    font-size: 0.72rem !important;
  }

  .footer__logo-img {
    width: 70px !important;
  }

  .footer__bottom p {
    font-size: 0.65rem !important;
  }
}