
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body { 
  height: 100%; 
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Lock scroll when modal open */
body.modal-open {
  overflow: hidden;
}

/* ============ NAVBAR ============ */
.navbar {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 60;
  transition:
    background-color .25s ease,
    box-shadow .25s ease,
    color .18s ease,
    padding .18s ease;
  background: transparent;
  color: #fff;
  pointer-events: none; /* children control pointer events */
}

.nav-left { 
  display: flex; 
  align-items: center; 
  pointer-events: auto; 
}

.nav-logo img {
  height: 65px; 
 
  width: auto;
  display: block; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  pointer-events: auto;
}

.nav-links .nav-link {
  text-decoration: none;
  color: #ea5b26;
  font-size: 11px;
  letter-spacing: .8px;
  transition: color .18s ease;
}

.nav-links .nav-link:hover { 
  color: #e8eef8; 
}

/* hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 8px;
  border-radius: 8px;
  color: rgba(255,255,255,0.95);
}

/* mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  background: radial-gradient(circle at 30% 40%, rgba(60,30,120,.12), rgba(0,0,0,.85));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .25s ease, visibility .25s ease;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active { 
  display: block; 
  opacity: 1; 
  visibility: visible; 
}

.mobile-menu-inner {
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.mobile-link {
  color: #e8eef8;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 12px 20px;
}

.mobile-link:hover { 
  color: #fff; 
  transform: translateY(-3px); 
}

/* SCROLLED NAVBAR STATE (after user scrolls) */
.navbar.scrolled {
  background: #fff;
  color: #0b1220;
  box-shadow: 0 6px 18px rgba(6,10,20,0.08);
  padding: 12px 40px;
}

.navbar.scrolled .nav-link { 
  color: #ea5b26; 
}

.navbar.scrolled .nav-logo { 
  color: #ea5b26; 
}

.navbar.scrolled .hamburger { 
  color: #ea5b26; 
}

/* hamburger -> X animation */
.hamburger .line { 
  transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .18s ease; 
}
.hamburger.open .line1 { 
  transform: translateY(5px) rotate(45deg); 
}
.hamburger.open .line2 { 
  opacity: 0; 
  transform: scaleX(.1); 
}
.hamburger.open .line3 { 
  transform: translateY(-5px) rotate(-45deg); 
}

/* NAVBAR MEDIA QUERIES */
@media (max-width: 1024px) {
  .navbar {
    padding: 18px 32px;
  }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
  }
  .hamburger { 
    display: inline-flex; 
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 14px 18px;
  }

  .nav-logo {
    font-size: 14px;
  }
}

/* ============================================================================================ */
/* SECTION WITH VIDEO BACKGROUND */
.about-hero-video {
  position: relative;
  width: 100%;
  min-height: 380px;
  padding: 120px 20px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background video */
.about-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
  filter: brightness(0.55) contrast(1.1);
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: -1;
}

/* TEXT BLOCK */
.about-hero-inner {
  max-width: 1000px;
  padding: 0 20px;
  color: #ffffff;
}

/* Title */
.about-hero-title {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* Blue highlighted part */
.about-highlight {
  font-weight: 700;
  background: linear-gradient(90deg, #2b63ff, #4e83ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.about-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(230,240,255,0.92);
  max-width: 900px;
  margin: 0 auto;
}

/* ABOUT HERO MEDIA QUERIES */
@media (max-width: 900px){
  .about-hero-title { 
    font-size: 40px; 
  }
  .about-hero-text  { 
    font-size: 16px; 
    max-width: 95%; 
  }
}

@media (max-width: 600px){
  .about-hero-video {
    padding: 100px 16px;
  }
  .about-hero-title { 
    font-size: 32px; 
  }
  .about-hero-text {
    font-size: 15px;
  }
  .video-overlay { 
    background: rgba(0,0,0,0.75); 
  }
}

@media (max-width: 400px){
  .about-hero-title {
    font-size: 28px;
  }
}

/* =================================================================================================================== */

.page-content {
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 14, 34, 0.55), transparent 10%),
    radial-gradient(circle at 85% 25%, rgba(116, 61, 162, 0.45), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(106,166,255,0.35), transparent 30%),
    #000;
  background-attachment: fixed;
  color:#fff;
}

/* ===================================================================================================================== */
/* WORK CARDS SECTION */
.work-cards-section {
  position: relative;
  background: transparent;
  padding: 72px 24px 90px;
  color: #fff;
  overflow: hidden;
}

.work-cards-grid,
.confidential-card {
  position: relative;
  z-index: 1;
}

/* GRID */
.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

/* CARD */
.work-card {
  background: #111219;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}

.work-card:hover {
  cursor: pointer;
}

/* MEDIA TOP */
.work-card-media {
  position: relative;
  width: 100%;
  padding-top: 58%;
  overflow: hidden;
}

.work-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* TEXT BLOCK */
.work-card-body {
  padding: 18px 22px 24px;
}

.work-card-body h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.work-card-body ul {
  list-style: none;
  font-size: 13px;
  line-height: 1.7;
  padding: 0;
  color: rgba(235,238,255,0.88);
}

.work-card-body li::before {
  content: "• ";
  color: #6fa6ff;
}

/* NEW: SEE SAMPLES BUTTON */
.sample-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #ea5b26;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, transform .16s ease, box-shadow .16s ease;
}

.sample-btn:hover {
    background: rgba(255, 255, 255, 0.06);
  color: #ea5b26;
}

/* CONFIDENTIAL CARD */
.confidential-card {
  background: #111219;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px 30px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.confidential-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 8px;
  background: radial-gradient(circle,#8fb2ff,#4451c4);
  display:flex;
  align-items:center;
  justify-content:center;
}

.confidential-icon svg {
  width:18px;
  height:18px;
  stroke:#fff;
  fill:none;
}

.confidential-title {
  font-size: 16px;
  margin-bottom:12px;
  color:#c5d1ff;
}

.confidential-text {
  font-size: 13px;
  line-height:1.5;
  color:rgba(215,224,255,0.9);
}

.confidential-card {
  background: #111219;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px 30px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.confidential-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 8px;
  background: radial-gradient(circle,#8fb2ff,#4451c4);
  display:flex;
  align-items:center;
  justify-content:center;
}

.confidential-icon svg {
  width:18px;
  height:18px;
  stroke:#fff;
  fill:none;
}

.confidential-title {
  font-size: 16px;
  margin-bottom:12px;
  color:#c5d1ff;
}

.confidential-text {
  font-size: 13px;
  line-height:1.5;
  color:rgba(215,224,255,0.9);
  margin-bottom: 18px;
}

/* NEW CONTACT NOW BUTTON */
.contact-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: #ea5b26;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  /* box-shadow: 0 5px 13px rgba(12,44,140,0.65); */
  transition: background .18s ease, transform .16s ease, box-shadow .16s ease;
}

.contact-now-btn:hover {
  background: #fadbdb;
  transform: translateY(-1px);
  color: #ea5b26;
  /* box-shadow: 0 20px 42px rgba(12,44,140,0.8); */
}

@media (max-width: 500px) {
  .confidential-card {
    padding: 26px 18px;
  }

  .contact-now-btn {
    width: 100%;
    font-size: 13px;
  }
}


/* WORK CARDS MEDIA QUERIES */
@media (max-width: 1024px) {
  .work-cards-section {
    padding: 64px 20px 80px;
  }
}

@media (max-width: 900px) {
  .work-cards-grid {
    grid-template-columns:1fr;
    max-width:600px;
  }
}

@media (max-width: 600px) {
  .work-cards-section {
    padding: 52px 16px 70px;
  }
}

@media (max-width: 500px) {
  .work-card-body h3 { 
    font-size:14px; 
  }
  .work-card-body ul { 
    font-size:12px; 
  }
  .confidential-card { 
    padding:26px 18px; 
  }
  .sample-btn {
    width: 100%;
  }
}

/* ================================================================= */
/* CAREERS SECTION (unchanged, kept for reuse elsewhere) */

.careers-section {
  padding: 120px 60px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}

/* LEFT CONTENT */
.careers-title {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 14px;
}
.careers-title span {
  font-weight: 700;
  color: #2b63ff;
}
.careers-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(240,240,255,0.88);
}

/* ROLE BOX */
.roles-box {
  background: #0f1116;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 32px;
  max-width: 550px;
}
.roles-box h4 {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
}
.roles-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 28px;
  font-size: 14px;
  color: rgba(225,233,255,0.9);
}

/* BUTTON */
.career-btn {
  background: #2365ff;
  color: #fff;
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.25s;
}
.career-btn:hover {
  background:#4b82ff;
  transform: translateY(-3px);
}

/* RIGHT IMAGE BLOCK */
.careers-right img {
  width: 350px;
  opacity: 0.9;
}
.image-caption {
  font-size: 13px;
  margin-top: 6px;
  color: rgba(255,255,255,0.6);
}

/* CAREERS MEDIA QUERIES */
@media(max-width:1020px){
  .careers-section { 
    flex-direction: column; 
    gap:50px; 
    padding:100px 30px; 
  }
  .careers-right { 
    text-align:center; 
  }
  .careers-right img { 
    width:60%; 
  }
  .roles-grid { 
    grid-template-columns:1fr 1fr; 
  }
}

@media(max-width:600px){
  .careers-section {
    padding: 80px 18px;
  }
  .careers-title { 
    font-size:38px; 
  }
  .careers-text { 
    font-size:15px; 
  }
  .roles-box { 
    padding:22px; 
  }
  .roles-grid { 
    grid-template-columns:1fr; 
    font-size:14px; 
  }
  .career-btn { 
    width:100%; 
    text-align:center; 
    justify-content:center; 
  }
  .careers-right img { 
    width:85%; 
  }
}

@media(max-width:400px){
  .careers-title {
    font-size:32px;
  }
}

/* ================================================================= */
/* SAMPLE MODAL (POPUP) */

.sample-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.sample-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sample-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

/* modal content */
.sample-modal-dialog {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: #05060b;
  border-radius: 18px;
  border: 1px solid rgba(118,143,255,0.55);
  box-shadow: 0 30px 80px rgba(0,0,0,0.85);
  padding: 20px 20px 24px;
  z-index: 1;
}

/* close button */
.sample-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,16,35,0.9);
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}

.sample-modal-close:hover {
  background: rgba(40,60,120,0.95);
  transform: translateY(-1px);
}

/* video wrapper */
.sample-modal-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

/* video */
.sample-modal-video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
}

/* fullscreen button */
.sample-modal-fullscreen {
  position: absolute;
  right: 12px;
  bottom: 10px;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.55);
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}

.sample-modal-fullscreen:hover {
  background: rgba(55,85,160,0.9);
  transform: translateY(-1px);
}

/* MODAL MEDIA QUERIES */
@media (max-width: 900px) {
  .sample-modal-dialog {
    max-width: 720px;
    padding: 18px 16px 20px;
  }

  .sample-modal-video {
    max-height: 65vh;
  }
}

@media (max-width: 600px) {
  .sample-modal {
    padding: 16px;
  }

  .sample-modal-dialog {
    padding: 16px 12px 18px;
    border-radius: 14px;
  }

  .sample-modal-close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .sample-modal-video {
    max-height: 60vh;
  }

  .sample-modal-fullscreen {
    right: 10px;
    bottom: 8px;
    height: 28px;
    min-width: 28px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .sample-modal {
    padding: 10px;
  }
}

/* ================================================================= */
/* ========== FOOTER ========== */
/* ========== FOOTER ========== */
.site-footer {
  background: #05060a;
  color: #e5ecff;
  padding: 48px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP AREA */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* BRAND BLOCK */
.footer-brand {
  max-width: 520px;
}

/* .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
} */

.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo-img {
  height: 45px;   /* Adjust this value to match your layout */
  width: auto;
  display: block;
}


/* circular pill with HD */
.footer-logo-pill {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #6aa6ff, #3044c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-logo-text span {
  font-weight: 700;
}

/* tagline */
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(227, 235, 255, 0.9);
  margin: 0 0 18px;
}

/* social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(240, 245, 255, 0.96);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.footer-social-btn:hover {
  background: rgba(90, 140, 255, 0.25);
  border-color: rgba(120, 185, 255, 0.8);
  transform: translateY(-2px);
}

/* NAV COLUMN */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(210, 220, 255, 0.95);
  margin: 0 0 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
  text-decoration: none;
  padding: 2px 0;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* CONTACT COLUMN */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-icon {
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.footer-contact p {
  margin: 0;
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
}

.footer-contact-sub {
  color: rgba(180, 190, 210, 0.9);
}

/* DIVIDER */
.footer-divider {
  margin: 32px 0 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(160, 172, 198, 0.9);
}

.footer-copy {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(200, 210, 235, 0.95);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* FOOTER media queries */
@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1.6fr 1fr;
    row-gap: 32px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 420px;
  }


}

@media (max-width: 1024px) {
  .footer-tagline {
  font-size: 18px;
}

.footer-contact p {
  font-size: 18px; 
}
.footer-nav a {
  font-size: 18px;
}}

@media (max-width: 700px) {
  .site-footer {
    padding: 40px 18px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-links {
    font-size: 12px;
  }
}
@media (max-width: 540px){
    .footer-tagline {
  font-size: 16px;
}

.footer-contact p {
  font-size: 16px; 
}
.footer-nav a {
  font-size: 16px;
}

.footer-heading {
  font-size: 18px;
}}