/* ==============================
   Reset & Base
   ============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  background-color: #050706; /* Primary near-black */
  color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container Utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==============================
   Header & Navigation
   ============================== */
.site-header {
  border-top: 6px solid rgba(255, 255, 255, 0.1);
  background-color: #050706;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 6px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.logo img {
  height: 110px;
  width: auto;
}

/* Navigation List */
.nav {
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-item {
  color: #ffffff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #FAE2EE; /* Secondary pink */
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger Icon */
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  background-color: #ffffff;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Mobile Nav (hidden by default) */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    background-color: #050706;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-item {
    margin: 1rem 0;
  }
  .nav-toggle {
    display: block;
  }
}
/* Mobile Navigation Fix */
@media (max-width: 768px) {
  .nav-list {
    display: none;               /* Hide nav by default on mobile */
    flex-direction: column;
    background-color: #050706;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;               /* Make sure menu is above other content */
  }

  .nav-list.open {
    display: flex;              /* Show nav when toggled open */
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item {
    margin: 1rem 0;
    padding: 0 1rem;
  }

  .nav-toggle {
    display: block;             /* Show hamburger button on mobile */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;              /* Above nav-list for clickability */
  }
}

/* ==============================
   Hero Section
   ============================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 7, 6, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FAE2EE; /* Secondary pink */
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #FAE2EE;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: transparent;
  color: #FAE2EE;
}

.btn-primary:hover {
  background-color: #FAE2EE;
  color: #050706;
}

/* ==============================
   Page Content (Headings, Text)
   ============================== */
.page-content {
  flex: 1;
  padding: 4rem 0;
}

.page-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FAE2EE;
}

.page-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-content p {
  margin-bottom: 1.5rem;
  color: #dddddd;
}

.page-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content ul li {
  margin-bottom: 0.75rem;
  color: #dddddd;
}

/* Service Cards */
.service-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

.service-card .card-content {
  flex: 1;
}

.service-card .card-image img {
  max-width: 150px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive: stack vertically on smaller screens */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-card .card-image img {
    max-width: 100px;
    margin-top: 1rem;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.value-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 6px;
}

/* Solutions Section */
.solutions-section .solution-block {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.solution-block ul {
  margin-left: 1.5rem;
}

.solution-block li {
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-section label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #ffffff;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: #cccccc;
}

.contact-section button {
  background-color: #FAE2EE;
  color: #050706;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-section button:hover {
  opacity: 0.9;
}

/* CAPTCHA spacing */
.g-recaptcha {
  margin-bottom: 1rem;
}

/* ===== Footer ===== */
.site-footer {
  background-color: #050706;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  text-align: center;
  color: #888888;
  font-size: 0.875rem;
}

/* ===== Responsive Helpers ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}.about-section {
  display: flex;
  align-items: flex-start; /* Align top edges */
  gap: 2rem; /* space between text and image */
}

.text-content {
  flex: 1; /* take available space */
}

.image-content {
  flex: 0 0 300px; /* fix image container width */
}

.image-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.about-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 60%;
}

.about-image {
  flex: 1 1 35%;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.services-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.services-image {
  flex: 1 1 300px;
  text-align: center;
}

.services-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.services-content {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.services-gallery {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-gallery img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-card .card-image img {
    max-width: 100px;
    margin-top: 1rem;
  }
}

/* Duplicate .service-card selector removed to avoid conflicts */

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .services-content {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-card .card-image img {
    max-width: 100px;
    margin-top: 1rem;
  }
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr; /* Stack on smaller screens */
  }
}

.solution-block {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}
/* Target only lists inside the Solutions section */
.solutions-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.solutions-section ul li {
  margin-bottom: 0.4rem;
  line-height: 1.4;
  font-size: 0.95rem;
}

/* Tighter spacing for nested lists */
.solutions-section ul ul {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  padding-left: 1rem;
}

.solutions-section ul ul li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}
/* CAREERS PAGE */

.careers-hero {
  position: relative;
  height: 40vh;
  overflow: hidden;
}

.careers-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.job-listing {
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: .5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background-color: #fff;
}

.job-listing:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-toggle {
  width: 100%;
  padding: .4rem;
  text-align: left;
  font-size: 1.2rem;
  background: #FAE2EE;
  color: #0d0d0d;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.job-details {
  display: none;
  padding: .5rem;
  background-color: #090909;
  color: #f7f4f4 !important;  /* Darker text */
}

.job-details strong {
  color: #fbfafa !important; /* Darker strong text */
}

.job-details.open {
  display: block;
}
.job-skills-list {
  margin-left: 4rem;     /* deeper indent */
  padding-left: 3rem;    /* extra padding from the bullet */
  list-style-position: outside;
}

.job-skills-list li {
  margin-bottom: 0.15rem !important; /* closer together than default */
}


@media (max-width: 768px) {
  .careers-hero {
    height: 40vh;
  }

  .job-toggle {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}
