html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
  padding-top: 60px;
  /* same height as navbar */
  overflow-x: hidden;
}

@media(max-width: 700px) {
  body {
    padding-top: 90px;
  }
}

@media(max-width: 500px) {
  body {
    padding-top: 100px;
  }
}
.text-center {
  text-align: center;
}
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- NAVBAR ---------------- */
/* ---------- STICKY NAVBAR ---------- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  background: #f5f5f5;
  color: #222;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav h2 {
  font-size: 24px;
  flex: 0 0 auto;
  margin: 0;
  font-weight: 700;
  color: #1c085d;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  /* flex: 1; */
  margin: 0 40px;
}

nav li {
  white-space: nowrap;
}

nav a {
  text-decoration: none;
  color: #1c085d;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
  display: inline-block;
  padding: 5px 0;
}

nav a:hover {
  color: #222;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  width: 25px;
  height: 30px;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #222;
  margin: 1px 0;
  transition: 0.3s ease;
  border-radius: 2px;
  display: block;
  transform: rotate(0deg);
  opacity: 1;
  position: relative;
}

/* Hide span 3 by default */
.hamburger span:nth-child(3) {
  opacity: 0;
  position: absolute;
}

/* On active - hide outer lines (1, 4), show and rotate middle lines (2, 3) */
.hamburger.active span:nth-child(1) {
  opacity: 0;
}

.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(4) {
  opacity: 0;
}

/* when scrolling */
nav.scrolled {
  background: #fff;
  color: #222;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

nav.scrolled a {
  color: #555 !important;
}

nav.scrolled a:hover {
  color: #222 !important;
}

nav.scrolled .hamburger span {
  background: #222;
}

/* Overlay background - applies to all screens */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media(max-width: 1200px) {
  nav {
    padding: 16px 40px;
  }

  nav ul {
    gap: 25px;
  }

  nav a {
    font-size: 15px;
  }
}

@media(max-width: 900px) {
  nav {
    padding: 14px 25px;
  }

  nav h2 {
    font-size: 20px;
  }

  nav ul {
    gap: 16px;
  }

  nav a {
    font-size: 13px;
  }
}

@media(max-width: 700px) {
  nav {
    padding: 12px 15px;
    min-height: auto;
    flex-wrap: nowrap;
  }

  nav h2 {
    font-size: 18px;
  }

  .hamburger {
    display: flex;
    order: 2;
    position: relative;
    z-index: 1002;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
  }

  /* Side Panel Overlay */
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px 20px;
    transition: right 0.4s ease-in-out;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    margin: 0;
  }

  nav ul.active {
    right: 0;
  }

  nav li {
    white-space: normal;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
  }

  nav li:first-child {
    padding-top: 20px;
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
    color: #1c085d;
  }

  nav a:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  nav.scrolled ul {
    background: #fff;
  }

  nav.scrolled ul a {
    color: #111;
  }

  nav.scrolled ul a:hover {
    background: rgba(0, 0, 0, 0.08);
  }
}

@media(max-width: 500px) {
  nav {
    padding: 10px 12px;
  }

  nav h2 {
    font-size: 16px;
  }

  nav ul {
    margin: 0;
  }

  nav a {
    font-size: 13px;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
    margin: 1px 0;
  }
}

/* ---------------- HERO ---------------- */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 60px;
  color: white;
  text-align: left;
}

@media(max-width: 900px) {
  .hero {
    padding: 60px 40px;
    min-height: 80vh;
    grid-template-columns: 1fr;
  }
}

@media(max-width: 700px) {
  .hero {
    padding: 40px 20px;
    min-height: 70vh;
    grid-template-columns: 1fr;
  }
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 550px;
  z-index: 10;
  position: relative;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 30px;
  opacity: 0.95;
  font-size: 16px;
}

@media(max-width: 900px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media(max-width: 700px) {
  .hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
}

.btn {
  padding: 12px 28px;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-right: 15px;
  transition: 0.3s ease;
  font-size: 15px;
}

.btn.secondary {
  background: #ffd600;
  color: #222;
}

.btn.secondary:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.primary {
  background: #0ea5e9;
  color: white;
}

.outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* ---------------- SECTIONS ---------------- */
section {
  padding: 100px 80px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media(max-width: 900px) {
  section {
    padding: 60px 40px;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width: 700px) {
  section {
    padding: 40px 20px;
  }
}



.card {
  padding: 30px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

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

/* ---------- INTRO & ABOUT COMBINED SECTION ---------- */

.intro-about-section {
  background: #1a1a1a;
  color: white;
  padding: 120px 60px;
  position: relative;
}

.intro-about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-about-text {
  z-index: 2;
}

.intro-about-text h2 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-about-text h2 strong {
  color: #ffd600;
}

#intro-description {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-box {
  background: rgba(255, 214, 0, 0.08);
  border-left: 4px solid #ffd600;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.about-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd600;
  margin-bottom: 12px;
}

.about-box p {
  font-size: 16px;
  color: #bbb;
  line-height: 1.6;
}

.intro-btn {
  background: #ffd600;
  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
  color: #222;
}

.intro-btn:hover {
  background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 214, 0, 0.3);
}

.intro-about-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.intro-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-about-image:hover img {
  transform: scale(1.05);
}

@media(max-width: 900px) {
  .intro-about-section {
    padding: 80px 40px;
  }

  .intro-about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-about-text h2 {
    font-size: 40px;
  }

  #intro-description {
    font-size: 16px;
  }

  .intro-about-image {
    height: 350px;
  }
}

@media(max-width: 700px) {
  .intro-about-section {
    padding: 60px 20px;
  }

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

  .intro-about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #intro-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .about-box {
    padding: 20px;
    margin-bottom: 25px;
  }

  .about-box h3 {
    font-size: 18px;
  }

  .about-box p {
    font-size: 14px;
  }

  .intro-btn {
    padding: 12px 32px;
    font-size: 14px;
  }

  .intro-about-image {
    height: 280px;
    order: -1;
  }
}

/* ---------------- STATS ---------------- */
.stats {
  background: #f5f7fa;
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 60px 40px;
  
}

.stats > div {
  flex: 1;
}

.stats h2 {
  font-size: 40px;
  color: #0ea5e9;
  margin-bottom: 10px;
}

.stats p {
  color: #555;
  font-size: 16px;
}

@media(max-width: 900px) {
  .stats {
    padding: 40px 20px;
  }

  .stats h2 {
    font-size: 32px;
  }

  .stats p {
    font-size: 14px;
  }
}

@media(max-width: 700px) {
  .stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .stats h2 {
    font-size: 28px;
  }
}

/* ---------------- CTA ---------------- */
.cta {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 80px;
}

/* ---------- CLIENTS SECTION ---------- */

.clients-section {
  padding: 80px 60px;
  background: #fff;
  text-align: center;
}

.clients-section h2 {
  font-size: 24px;
  color: #555;
  margin-bottom: 60px;
  font-weight: 600;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-logo img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
}

@media(max-width: 900px) {
  .clients-section {
    padding: 60px 40px;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
  }
}

@media(max-width: 700px) {
  .clients-section {
    padding: 40px 20px;
  }

  .clients-section h2 {
    font-size: 20px;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }

  .client-logo {
    height: 60px;
  }
}

/* ---------- LET'S TALK CTA SECTION ---------- */

.lets-talk-section {
  background: #ffd600;
  padding: 80px 60px;
}

.lets-talk-content {
  max-width: 1000px;
  margin: 0 auto;
}

.lets-talk-section h2 {
  font-size: 48px;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.lets-talk-section > .lets-talk-content > p {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 50px;
  line-height: 1.6;
}

.lets-talk-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  color: #222;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #222;
  box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  opacity: 1;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.send-btn {
  background: #222;
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 20px;
}

.send-btn:hover {
  background: #444;
  transform: translateY(-2px);
}

@media(max-width: 900px) {
  .lets-talk-section {
    padding: 60px 40px;
  }

  .lets-talk-section h2 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 700px) {
  .lets-talk-section {
    padding: 40px 20px;
  }

  .lets-talk-section h2 {
    font-size: 28px;
  }

  .lets-talk-section > .lets-talk-content > p {
    font-size: 16px;
  }
}

/* ---------- FOOTER ---------- */

.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 60px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffd600;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd600;
}

@media(max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media(max-width: 900px) {
  .footer {
    padding: 60px 40px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width: 700px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-col h3 {
    font-size: 14px;
  }

  .footer-col ul li {
    font-size: 13px;
  }
}


/* ---------- FOOTER ---------- (OLD) */


/* ---------------- RESPONSIVE ---------------- */
@media(max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ---------- SERVICES (Clearpaths STYLE) ---------- */

.services {
  background: #f8fafc;
  /* light gray, not red */
  padding: 120px 80px;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.services-header p {
  color: #666;
  font-size: 16px;
}

/* row layout */
.service-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* card */
.service-item {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  transition: 0.35s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* image */
.service-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* text */
.service-item h3 {
  padding: 24px 24px 8px;
  font-size: 20px;
}

.service-item p {
  padding: 0 24px 28px;
  color: #666;
  font-size: 15px;
}

@media(max-width: 900px) {
  .services {
    padding: 80px 40px;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .services-header {
    margin-bottom: 60px;
  }
}

@media(max-width: 700px) {
  .services {
    padding: 60px 20px;
  }

  .services-header h2 {
    font-size: 24px;
  }

  .services-header p {
    font-size: 14px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .service-row {
    gap: 20px;
  }

  .service-item h3 {
    font-size: 17px;
    padding: 18px 18px 6px;
  }

  .service-item p {
    font-size: 13px;
    padding: 0 18px 20px;
  }

  .service-item img {
    height: 180px;
  }
}

/* ---------- SERVICES SCROLL SECTION ---------- */

.services-scroll-section {
  padding: 120px 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.services-scroll-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  scroll-behavior: smooth;
}

.service-slide {
  display: none;
  grid-column: 1 / -1;
}

.service-slide.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.service-image-container {
  position: sticky;
  top: 150px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.service-content {
  padding-right: 40px;
}

.service-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.2;
}

.service-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-btn {
  display: inline-block;
  background: #ffd600;
  color: #222;
  padding: 14px 35px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 16px;
}

.service-btn:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

/* Service Navigation Dots */
.service-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffd600;
  width: 32px;
  border-radius: 6px;
}

@media(max-width: 900px) {
  .services-scroll-section {
    padding: 80px 40px;
  }

  .services-scroll-container {
    gap: 40px;
  }

  .service-slide.active {
    grid-template-columns: 1fr;
  }

  .service-image-container {
    position: static;
    height: 350px;
    order: -1;
  }

  .service-content {
    padding-right: 0;
  }

  .service-content h2 {
    font-size: 36px;
  }

  .service-content p {
    font-size: 16px;
  }
}

@media(max-width: 700px) {
  .services-scroll-section {
    padding: 60px 20px;
  }

  .service-image-container {
    height: 280px;
  }

  .service-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .service-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .service-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ========== PREMIUM SERVICES SECTION ========== */

/* ========== MODERN SERVICES SCROLL SECTION ========== */

.services-section {
  padding: 60px 40px 100px 40px;
  background: #f5f5f5;
}

.services-header {
  max-width: 1400px;
  margin: 0 auto 40px;
}

.services-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.services-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
}

/* Services Wrapper with Navigation */
.services-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  min-height: 520px;
  overflow: visible;
}

/* Navigation Buttons */
.services-nav-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: white;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.services-nav-btn:hover {
  border-color: #1a1a1a;
  background: #f0f0f0;
  transform: scale(1.05);
}

.services-nav-btn:active {
  transform: scale(0.95);
}

.services-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

.services-nav-btn:disabled:hover {
  border-color: #ddd;
  background: white;
  transform: scale(1);
}

.services-nav-btn svg {
  width: 24px;
  height: 24px;
}

/* Horizontal Scroll Container */
.services-container {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex: 1;
  cursor: grab;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: flex-start;
}

.services-container:active {
  cursor: grabbing;
}

/* Hide webkit scrollbar */
.services-container::-webkit-scrollbar {
  display: none;
}

/* Service Track */
.services-track {
  display: flex;
  gap: 40px;
}

/* Service Card */
.service-card {
  min-width: 380px;
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

/* Floating Content Box */
.service-card-content {
  position: absolute;
  bottom: -50px;
  left: 30px;
  right: 30px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 100px;
}

.service-card-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
}

.service-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  word-break: break-word;
}

.service-card-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  word-break: break-word;
}

.services-scrollbar-track {
  display: none;
}

/* ========== SERVICES RESPONSIVE ========== */

@media (max-width: 1200px) {
  .services-section {
    padding: 60px 40px;
  }

  .services-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .services-header p {
    font-size: 14px;
  }

  .services-container {
    gap: 30px;
    padding-bottom: 15px;
  }

  .service-card {
    min-width: 300px;
  }

  .service-card-image {
    height: 360px;
  }

  .service-card-content {
    padding: 24px;
    border-radius: 16px;
  }

  .service-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-card-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 16px;
  }

  .services-header h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .services-header p {
    font-size: 13px;
  }

  .services-container {
    gap: 40px;
    overflow-x: visible;
    flex-direction: column;
    align-items: center;
  }

  .services-track {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
  }

  .service-card {
    min-width: unset;
    width: 100%;
    max-width: 320px;
    scroll-snap-align: unset;
  }

  .service-card-image {
    height: 340px;
    border-radius: 20px;
  }

  .service-card-image img {
    border-radius: 20px;
  }

  .service-card-content {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    margin-top: 20px;
    padding: 20px;
    border-radius: 16px;
  }

  .service-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .service-card-content p {
    font-size: 12px;
  }
}

.contact-info-section {
  background: #fff;
  color: #222;
  padding: 60px 40px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 0 auto;
  align-items: flex-start;
}

@media(max-width: 1100px) {
  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 40px 0 40px;
  }

  .contact-info-maps {
    justify-content: flex-start;
  }
}

@media(max-width: 700px) {
  .contact-info-section {
    padding: 40px 20px 0 20px;
    gap: 30px;
  }

  .contact-info-maps {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info-maps iframe {
    width: 100%;
    height: 220px;
  }

  .contact-info-details h1 {
    font-size: 24px;
  }

  .contact-info-details p {
    font-size: 14px;
  }
}

.contact-info-details {
  font-size: 15px;
}

.contact-info-details h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-info-details p {
  margin-bottom: 18px;
  color: #444;
  font-size: 15px;
}

.contact-info-details b,
.contact-info-details strong {
  font-weight: 700;
}

.contact-info-details .contact-label {
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 4px;
  display: block;
  font-size: 15px;
}

.contact-info-details .contact-location {
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 2px;
  display: block;
  font-size: 15px;
}

.contact-info-details .contact-phone {
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
  font-size: 15px;
}

.contact-info-maps {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.contact-info-maps iframe {
  border: 0;
  border-radius: 8px;
  width: 340px;
  height: 320px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* ---------- IMPACT BANNER (Creating Meaningful Impact) ---------- */

.impact-banner {
  padding: 80px 60px;
  background: #f5f5f5;
}

.impact-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

.impact-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551632436-cbf8dd35adfa?w=1600&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
}

.impact-banner-content {
  position: relative;
  z-index: 1;
  padding: 40px 50px;
  max-width: 420px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.impact-banner-content h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.impact-banner-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #f3f3f3;
  max-width: 360px;
}

.impact-banner-btn {
  align-self: flex-start;
  margin-top: 10px;
  padding: 10px 26px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.impact-banner-btn:hover {
  transform: translateY(-1px);
  background: #f9f9f9;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .impact-banner {
    padding: 60px 40px;
  }

  .impact-banner-content {
    padding: 32px 34px;
  }
}

@media (max-width: 700px) {
  .impact-banner {
    padding: 40px 20px;
  }

  .impact-banner-inner {
    min-height: 240px;
  }

  .impact-banner-content h2 {
    font-size: 22px;
  }

  .impact-banner-content p {
    font-size: 14px;
  }
}

@media(max-width: 1100px) {
  .contact-info-maps {
    justify-content: flex-start;
  }
}

@media(max-width: 700px) {
  .contact-info-maps {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info-maps iframe {
    width: 100%;
    height: 220px;
  }
}

/* ---------- TESTIMONIALS SECTION ---------- */

.testimonials-section {
  padding: 120px 60px;
  background: #fff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.testimonials-header p {
  font-size: 18px;
  color: #555;
}

.testimonials-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  overflow: hidden;
  min-height: 500px;
  position: relative;
}

.testimonial-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  transform: scale(0.75);
  opacity: 0.3;
  pointer-events: none;
  background: #f5f5f5;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
}

.testimonial-card.active {
  grid-column: 2 / 4;
  grid-row: 1;
  transform: scale(1);
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  width: 60vw;
  min-height: 500px;
  margin: 0 auto;
}

/* Image Column */
.testimonial-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.testimonial-card.active .testimonial-image {
  position: relative;
  flex: 1;
  min-width: 55%;
  height: 100%;
}

/* Arrow Icon */
.testimonial-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #ffd600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  cursor: pointer;
  border: none;
  padding: 0;
}

.testimonial-card.active .testimonial-arrow {
  opacity: 1;
  pointer-events: auto;
}

/* Overlay Text Column */
.testimonial-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card.active .testimonial-overlay {
  position: relative;
  opacity: 1;
  padding: 50px 40px;
  /* background: rgba(0, 0, 0, 0.7); */
  background: rgb(0 0 0 / 0%);
  flex: 1;
  min-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Content */
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  display: block;
  margin: 0;
}

.testimonial-card.active .testimonial-quote {
  font-size: 24px;
  color: white;
  line-height: 1.5;
  font-weight: 600;
}

.testimonial-role {
  font-size: 13px;
  color: #888;
  display: block;
  margin: 0;
}

.testimonial-card.active .testimonial-role {
  font-size: 14px;
  color: #e8e8e8;
  margin: 0;
}

.testimonial-company {
  font-size: 14px;
  color: #888;
  display: block;
  margin: 0;
  font-weight: 500;
}

.testimonial-card.active .testimonial-company {
  font-size: 15px;
  color: white;
  margin: 0;
  font-weight: 600;
}

/* Logo */
.testimonial-logo {
  display: none;
}

.testimonial-logo img {
  max-height: 35px;
  width: auto;
  opacity: 0.9;
}

.testimonial-card.active .testimonial-logo {
  display: block;
  padding: 0;
  border: none;
}

/* Navigation Arrows */
.testimonials-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #222;
  color: #ffd600;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #ffd600;
  color: #222;
  transform: scale(1.1);
}

@media(max-width: 900px) {
  .testimonials-section {
    padding: 80px 40px;
  }

  .testimonials-header h2 {
    font-size: 36px;
  }

  .testimonials-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    min-height: 400px;
  }

  .testimonial-card.active {
    grid-column: 1 / 4;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }

  .testimonial-card.active .testimonial-overlay {
    padding: 40px 30px;
  }

  .testimonial-card.active .testimonial-quote {
    font-size: 20px;
  }
}

@media(max-width: 700px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .testimonials-header p {
    font-size: 16px;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;

  }

  .testimonial-card {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
    display: none;
    min-width: 90%;
  }

  .testimonial-card.active {
    display: grid;
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .testimonial-card.active .testimonial-image {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 350px;
  }

  .testimonial-card {
    display: none;
  }

  .testimonial-card.active {
    display: grid;
    grid-column: 1;
    grid-template-columns: 1fr;
    min-height: 350px;
  }

  .testimonial-card.active .testimonial-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 350px;
  }

  .testimonial-card.active .testimonial-overlay {
    grid-column: 1;
    grid-row: 1;
    opacity: 1;
    padding: 30px;
  }

  .testimonial-arrow {
    width: 45px;
    height: 45px;
    font-size: 24px;
    top: 16px;
    right: 16px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .testimonial-card.active .testimonial-quote {
    font-size: 18px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ---------- CAREERS PAGE ---------- */

.careers-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 20px;
  min-height: 100vh;
}

.careers-container {
  max-width: 1100px;
  margin: 0 auto;
}

.careers-hero {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 20px;
}

.careers-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.careers-intro {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Career Cards Grid */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}
.careers-grid.values {
  grid-template-columns: repeat(3, minmax(300px, 1fr));
}
/* Mobile */
@media (max-width: 768px) {
  .careers-grid.values {
    grid-template-columns: 1fr; /* 👈 Show only 1 card */
  }
}
.career-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: #ffd600;
}

.career-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.career-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.career-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Highlighted compensation card */
.career-card--compensation {
  grid-column: 1 / 3;
  text-align: left;
  background: radial-gradient(circle at top left, #fff7cc 0%, #ffffff 45%, #f3f4ff 100%);
  border-color: rgba(255, 214, 0, 0.5);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.career-card--compensation::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top right, rgba(255, 214, 0, 0.25), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.career-card--compensation > * {
  position: relative;
  z-index: 1;
}

.career-compensation-summary {
  font-size: 15px;
  color: #333;
  margin-bottom: 24px;
}

.salary-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.salary-band-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.salary-band-label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.salary-band-range {
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 4px;
}

.salary-band-description {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

/* Section Blocks */
.careers-section-block:not(#values1) {
  background: white;
  border-radius: 16px;
  padding: 50px 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid #ffd600;
}

/* Careers two-column blocks (Responsibilities + Looking For) */
.careers-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.careers-two-col .careers-section-block:not(#values1) {
  margin-bottom: 0;
}

.career-section-header {
  margin-bottom: 35px;
}

.career-section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Centered section headers (used on Values section) */
.career-section-header.text-center h2 {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Careers List */
.careers-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-list li {
  padding: 15px 0;
  padding-left: 35px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  position: relative;
}

.careers-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd600;
  font-weight: 700;
  font-size: 20px;
}

.careers-list li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

/* Growth Text */
.growth-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

/* Culture highlight card (home values section) */
.culture-card {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  background: #000;
  display: flex;
  flex-direction: column;
}

.culture-card-image {
  height: 100%;
  min-height: 220px;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=800&fit=crop');
  background-size: cover;
  background-position: center;
}

.culture-card-body {
  position: relative;
  margin-top: -40px;
  background: #ffffff;
  border-radius: 26px 26px 0 0;
  padding: 28px 26px 24px;
}

.culture-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #111;
}

.culture-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.culture-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 4px;
}

.culture-index {
  font-size: 12px;
  font-weight: 600;
  color: #777;
}

.culture-card-image--mission {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=800&fit=crop');
}

.culture-card-image--values {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=800&h=800&fit=crop');
}

.culture-card-image--culture {
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&h=800&fit=crop');
}

@media (max-width: 768px) {
  .culture-card {
    max-width: 100%;
  }

  .culture-card-image {
    height: 200px;
  }
}

/* CTA Button */
.careers-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
}

.cta-button {
  display: inline-block;
  background: #ffd600;
  color: #1a1a1a;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 214, 0, 0.3);
  cursor: pointer;
  border: 2px solid #ffd600;
}

.cta-button:hover {
  background: #1a1a1a;
  color: #ffd600;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 214, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .careers-section {
    padding: 60px 15px;
  }

  .careers-hero {
    padding: 40px 15px;
    margin-bottom: 60px;
  }

  .careers-hero h1 {
    font-size: 32px;
  }

  .careers-intro {
    font-size: 16px;
  }

  .careers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .careers-section-block {
    padding: 30px 20px;
  }

  .careers-two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .career-section-header h2 {
    font-size: 22px;
  }

  .careers-list li {
    font-size: 15px;
  }

  .cta-button {
    padding: 15px 40px;
    font-size: 16px;
  }
}

.openings-list {
  margin: 40px 0 30px 0;
}

.opening {
  background: #f8fafc;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.opening-title {
  font-size: 20px;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 8px;
}

.opening-desc {
  color: #444;
  font-size: 15px;
  margin-bottom: 10px;
}

.opening-apply {
  display: inline-block;
  background: #4a86d9;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  text-decoration: none;
  font-size: 15px;
  margin-top: 8px;
  transition: 0.2s;
}

.opening-apply:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.careers-reachout {
  margin-top: 40px;
  text-align: center;
}

.careers-reachout a {
  color: #0ea5e9;
  font-weight: 600;
  text-decoration: underline;
  font-size: 16px;
}

@media(max-width: 900px) {
  .careers-section {
    padding: 50px 30px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .careers-section h1 {
    font-size: 32px;
  }
}

@media(max-width: 700px) {
  .careers-section {
    padding: 30px 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  
  .careers-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .careers-section p {
    font-size: 14px;
  }
  
  .opening-title {
    font-size: 16px;
  }
  
  .opening-desc {
    font-size: 13px;
  }

  .opening {
    padding: 18px 20px;
    margin-bottom: 18px;
  }

  .opening-apply {
    font-size: 13px;
    padding: 9px 24px;
  }

  .careers-reachout a {
    font-size: 14px;
  }
}

/* ---------- FAQ SECTION ---------- */

.faq-section {
  background: #f5f5f5;
  padding: 100px 40px;
}

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

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

.faq-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-question.active {
  background: #ffd600;
  color: #1a1a1a;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
}

.faq-answer.active {
  max-height: 400px;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 80px 40px;
  }

  .faq-header h2 {
    font-size: 36px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer.active {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-header h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px;
  }

  .faq-toggle {
    font-size: 20px;
  }

  .faq-answer.active {
    max-height: 500px;
    padding: 0 18px 18px 18px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}