/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #1f2937;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

button:active {
  transform: scale(0.97);
}

.service-section .img-mobile {
  display: none;
  width: 95%;
  margin-bottom: 12px;
  object-fit: cover;
  border-radius: 15px;
}

/* UTIL */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* BUTTONS */
.btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary, .btn.submit {
  background: #ff6a00;
  color: white;
}

.btn.primary:hover, .btn.submit:hover {
  background: #e65c00;
}

.btn.outline {
  background: transparent;
  border: 1px solid #ccc;
}

.btn.outline:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}

.btn.light {
  background: white;
  color: #ff6a00;
}

.logo {
  padding: 4px 12px;
}

.logo img {
  height: 64px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 10px 4%;
  /* border-bottom: 1px solid #eee; */
  /* border-bottom: 1px solid rgba(0,0,0,0.05); */
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  font-size: 18px;
  z-index: 1000;
  /* background: white; */
  color: white;
  background: linear-gradient(
    135deg,
    #121c78 0%,
    #2434a1 50%,
    #4b5fd1 100%
  );
  border-bottom: 4px solid rgba(13, 21, 105, 0.1);
}

/* .navbar::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.12),
      transparent 40%
    );

  pointer-events: none;
} */

.navbar .btn {
  visibility: hidden;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

.nav-links a,
.dropdown-toggle {
  color: white;
  position: relative;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

/* hover glow */
.nav-links a:hover,
.dropdown-toggle:hover {
  /* color: #ff6a00; */
  background: #121c78;
}

/* subtle underline animation */
.nav-links a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 2px;
  width: 0%;
  height: 2px;
  transition: width 0.25s ease;
}

.nav-links a::after {
  background: white;
}

.dropdown-toggle::after {
  background: white;
}

.nav-links a:hover::after {
  width: calc(86%);
}

.dropdown-toggle:hover::after {
  width: calc(70%);
}

.nav-links.active {
  transform: translateY(0);
}

.nav-links.active ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-links.active ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-links.active ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-item {
  position: relative;
}

.hamburger {
  display: none;
  cursor: pointer;
  height: 20px;
  width: 24px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

.dropdown-toggle {
  display: flex;
  gap: 4px;
  align-items: center;
}

 /* MEGA MENU WRAPPER */
.mega {
  position: relative;
}

/* PANEL */
.mega-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 840px;
  backdrop-filter: blur(10px);
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
  display: flex;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.25s ease;
  z-index: 1000;
}

/* SHOW */
.mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mega:hover .dropdown-toggle svg {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* LEFT SIDE */
.mega-left {
  width: 50%;
  padding: 20px;
  border-right: 1px solid #eee;
}

.mega-left a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.25s ease;
}

.mega-left a::after {
  background: #ff6a00;
}

.mega-left a:hover {
  /* background: #f9fafb;
  color: #ff6a00; */
    background: linear-gradient(
    to right,
    rgba(255,106,0,0.08),
    rgba(255,106,0,0.02)
  );
  transform: translateX(4px);
}

.mega-left svg {
  stroke: #888;
  transition: 0.2s;
}

.mega-left a:hover svg {
  stroke: #ff6a00;
  transform: scale(1.1);
}

/* RIGHT SIDE */
.mega-right {
  width: 50%;
  min-width: 300px; /* prevents shrinking */
  padding: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  background: linear-gradient(
    135deg,
    rgba(255,106,0,0.05),
    transparent
  );
  border-radius: 0 20px 20px 0;
}

.mega-content {
  width: 100%;
}

.mega-content img {
  /* height: 48px; */
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mega-content h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.mega-content p {
  color: #666;
}

.menu-item {
  transition: all 0.25s ease;
}

/* ACTIVE MENU ITEM */
.menu-item.active {
  background: #fff3eb;
  color: #ff6a00;
  border-left: 3px solid #ff6a00;
  padding-left: 9px;
}

.menu-item.active svg {
  stroke: #ff6a00;
}

/* ========================================= */
/* HERO */

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-text span {
  color: #ff6a00;
}

.hero-text p {
  margin: 15px 0;
  color: #666;
}

.hero-actions {
  margin-top: 20px;
}

.hero-actions .btn {
  margin-right: 10px;
}

/* layout inside slide */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-image {
  height: 320px;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO FADE SLIDER */
.hero-slider {
  position: relative;
  overflow: hidden;
  transition: margin-top 0.3s ease;
}

/* stack all slides on top of each other */
.slides {
  position: relative;
}

/* each slide sits in the same spot */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
}

/* active slide fades in */
.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide .hero-text {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.6s ease;
}

.slide.active .hero-text {
  transform: translateY(0);
  opacity: 1;
}

/* STATS */
.stats {
  background: #f9fafb;
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 40px 0;
}

.stat h2 {
  color: #ff6a00;
  font-size: 32px;
}

/* SERVICES */
.services {
  padding: 60px 0;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.services-hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(255,106,0,0.08),
    transparent 60%
  );
  overflow: hidden;
}

/* subtle pattern layer */
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,106,0,0.15), transparent 40%);
  pointer-events: none;
}

/* center content */
.hero-inner {
  text-align: center;
  line-height: 1.5;
}

.services-hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.services-hero h1 span {
  color: #ff6a00;
}

.services-hero p {
  max-width: 600px;
  margin: auto;
  color: #555;
  font-size: 18px;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Visual Improvements on Service section */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  margin-top: 24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

  border: 1px solid rgba(0,0,0,0.04);
}

.service-description {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;

  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;

  transition: all 0.25s ease;
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-item svg {
  width: 22px;
  height: 22px;

  color: #ff6a00;
  flex-shrink: 0;

  margin-top: 4px;
}

.feature-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #0f172a;
}

.feature-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* =================================================== */

.card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.card img {
  height: 80px;
  margin-bottom: 16px;
}

/* TECHNOLOGY */
.technology {
  background: #f9fafb;
  padding: 60px 20px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.tech-grid h2 {
  margin-bottom: 16px;
}

.tech-image {
  height: 250px;
  background: #f3f4f6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.technology span {
  color: #ff6a00;
}

/* CTA */
.cta {
  background: #ff6a00;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 32px;
}

.cta p {
  margin: 15px 0;
}

/* ========================= */

/* DOTS */
.slider-controls {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #ff6a00;
}

/* INTRO SECTION */
.intro {
  background: #ffffff;
  padding: 80px 28px;
  text-align: center;
  position: relative;
}

/* subtle pattern (optional but nice) */
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,0.05), transparent);
  pointer-events: none;
}

.intro-content {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.intro h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
}

.intro h2 span {
  color: #ff6a00;
}

.intro .lead {
  margin-top: 20px;
  font-size: 18px;
  color: #444;
}

.intro p {
  margin-top: 15px;
  color: #666;
  line-height: 1.6;
}

/* ================================================================ */
.news {
  padding: 80px 16px;
  background: #f9fafb;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.news-text {
  display: flex;
  flex-direction: column;
  gap: 16px; /* controls spacing between label, h2, button */
}

.news-text .label {
  color: #ff6a00;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-text .btn {
  width: fit-content;
}

/* .news-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
} */

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.08),
    0 5px 15px rgba(255,106,0,0.08);
  padding: 10px; /* 👈 creates breathing space */
}
/* 
.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-card p {
  padding: 10px;
  font-size: 14px;
} */

/* ================================================================ */
 /* FOOTER */
.footer {
  /* background: #f58214; */
  /* background: #ff6a00; */
  background: #121c78;
  color: white;
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer-column a, .footer-column p {
  color: white;
  font-size: 14px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.bordered {
  border-left: 2px solid rgba(255,255,255,0.5);
  border-right: 2px solid rgba(255,255,255,0.5);
  padding-left: 40px;
}

.contact-list li {
  display: flex;
  gap: 16px;
}

.contact-list li svg {
  fill: white;
}

.contact-list li p {
  max-width: 85%;
}

.member-logo {
  max-width: 120px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.9;
}

/* ===================SERVICE SECTIONS */
.service-section {
  padding: 80px 28px;
  scroll-margin-top: 100px;
  transition: all 0.5s ease;
  min-height: 55vh;
  line-height: 1.5;
}

/* ACTIVE SECTION */
.service-section.active {
  padding-left: calc(20px - 4px); /* keeps alignment */
}

.service-section.light {
  background: #f9fafb;
}

.service-section.active img {
  transform: scale(1.03);
}

/* Title highlight */
.service-section h2 {
  transition: color 0.3s ease;
  margin-left: 20px;
}

.service-section.active h2 {
  color: #ff6a00;
}

/* TWO COLUMN (reuse but upgrade) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > div {
  direction: ltr;
}

/* IMAGE */
.service-section img {
  width: 90%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-section img:hover {
  transform: scale(1.02);
}

/* BULLET POINTS */
.service-points {
  margin-top: 12px;
  padding-left: 18px;
}

.service-points li {
  margin-bottom: 10px;
  color: #555;
}

/* ===============Advantages of outsourcing================== */
/* PAGE HERO */
.page-hero {
  padding: 60px 0;
}

/* BENEFITS */
/* 
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
} */

.benefits {
  padding: 60px 0;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  position: relative;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  background: white;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* subtle gradient glow */
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,106,0,0.08), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

/* icon */
.benefit-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* hover effect */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.benefit-card:hover::before {
  opacity: 1;
}

/* title */
.benefit-card h3 {
  margin-bottom: 10px;
}

/* text */
.benefit-card p {
  color: #666;
  line-height: 1.5;
}

/* PROCESS */
.process {
  background: #f9fafb;
  padding: 60px 0;
  text-align: center;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffe3d1;
  z-index: 0;
}

.step h4::before {
  content: attr(data-step);
  display: inline-block;
  margin: 0 10px 10px 0;
  color: #ff6a00;
  padding: 1px 5px;
  border: 1px solid #ff6a00;
  border-radius: 50%;
  font-weight: bold;
}

.step:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

/* ===============Contact page================== */
/* CONTACT */
.contact {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* LEFT INFO */

.contact-info {
  padding: 24px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info a, .apply-job a {
  color: #0a66c2;
  text-decoration: underline;
  transition: 0.2s;
}

.social-buttons a {
  color: white;
}

.social-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #f3f4f6;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

/* ICON SIZE */
.social-btn svg {
  width: 16px;
  height: 16px;
}

/* HOVER EFFECT */
.social-btn.fb:hover, .social-btn.linkedin:hover {
  background: #ff6a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,106,0,0.25);
}

.social-btn.fb {
  background: #1877f2;
}

.social-btn.linkedin {
  background: #0a66c2;
}


.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: #555;
  align-items: flex-start;
}

.info-item p {
  line-height: 1.8;
}

.info-item:hover {
  transform: translateX(4px);
  transition: 0.2s;
}

.info-item svg {
  stroke: #ff6a00;
}

.info-item a:hover, .apply-job a:hover {
  color: #ff6a00;
}

/* FORM */
.contact-form {
  background: #f9fafb;
  padding: 24px;
  border-radius: 15px;
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6a00;
}

/* MAP */
.map iframe {
  display: block;
}

/* ===============About Us================== */
/* VALUES */
.values {
  padding: 60px 0;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* INDUSTRIES */
.capabilities {
  padding: 60px 0;
  text-align: center;
}

.core-values {
  padding: 60px 0;
  text-align: center;
}

.value-item {
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.value-item .icon {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255,106,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item svg {
  stroke: #ff6a00;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.cap-card {
  height: 220px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: white;
  border: 1px solid #eee;
}

.cap-card .overlay {
  width: 100%;
  padding: 8px;
  /* background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white; */
  background: rgba(255, 255, 255, 0.85);
  color: #333;
}

.cap-card h3 {
  margin-bottom: 5px;
}

.cap-card p {
  font-size: 14px;
  opacity: 0.9;
}

.cap-card:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

/* ================= Careers Page ================= */
.careers-hero {
  padding: 100px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(255,106,0,0.08),
    transparent
  );
  text-align: center;
}

.hero-label {
  color: #555;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.careers-hero h1 {
  font-size: 42px;
}

.hero-inner span {
  color: #ff6a00;
}

.careers-hero p {
  max-width: 600px;
  margin: 15px auto;
}

.why-join h2, .culture h2 {
  margin-bottom: 8px;
}

.why-join {
  text-align: center;
}

.why-join, .culture-grid, .jobs {
  padding: 80px 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  padding: 20px;
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s ease;
  /* position: relative;
  overflow: hidden; */
}

/* subtle gradient glow */
.why-card::before {
  content: "";
  /* position: absolute; */
  inset: 0;
  opacity: 0;
  transition: 0.3s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  background: linear-gradient(
    135deg,
    rgba(255,106,0,0.08),
    transparent
  );
}

/* .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
} */

.why-card h4 {
  margin-bottom: 8px;
}

/* ICON STYLE */
.why-card .icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255,106,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.why-card svg {
  stroke: #ff6a00;
}

.culture {
  background: #f9fafb;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.culture-image img {
  width: 100%;
  border-radius: 15px;
  height: 320px;
  object-fit: cover;
}

.culture-text {
  line-height: 1.5;
}

.job-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: white;
  transition: all 0.3s ease;
}

/* 
.job-card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  transition: 0.3s;
} */

/* .job-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
} */

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-left: 4px solid #ff6a00;
}

/* LEFT SIDE */
.job-left h4 {
  margin-bottom: 6px;
}

.job-left p {
  color: #666;
  font-size: 14px;
}

/* TAGS */
.job-tags {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.job-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
}

/* RIGHT SIDE */
.job-right {
  flex-shrink: 0;
}

.apply-job {
  margin-top: 24px;
}

/* ================= NEWS & UPDATES ================= */

.news-hero {
  padding: 100px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(255,106,0,0.08),
    transparent
  );
  /* background: #f9fafb; */
  text-align: center;
}

.news-intro {
  padding: 40px 0 12px 0;
  text-align: center;
}

.news-intro-box {
  max-width: 520px;
  margin: auto;
  /* background: #fff7f2; */
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,106,0,0.1);
  line-height: 1.5;
}

.news-intro-box p {
  margin-bottom: 20px;
}

.news-feed {
  padding: 12px 0 60px 0;
}

.feed-title {
  text-align: center;
  margin-bottom: 30px;
}

.iframe-mobile {
  display: none;
}

/* center + frame */
.fb-container {
  max-width: 520px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.08),
    0 5px 15px rgba(255,106,0,0.08);
  padding: 10px; /* 👈 creates breathing space */
}

/* soften iframe look */
.fb-container iframe {
  border-radius: 12px;
}

/* ===================== */
/* PRIVACY POLICY */

.policy-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255,106,0,0.08),
    transparent
  );
}

.policy {
  padding: 60px 0;
  max-width: 800px;
}

.policy h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #1f2937;
}

.policy p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy ul li {
  margin-bottom: 8px;
  color: #555;
}

.last-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.policy-contact {
  margin: 16px 0;
  padding: 15px;
  border-radius: 12px;
  background: #f9fafb;
}

.policy-contact ul li {
  list-style-type: none;
}

/* ================= Terms & Conditions Page ================= */

.legal-content ul {
  margin-left: 16px;
}

.legal-content h2 {
  border-left: 3px solid #ff6a00;
  padding-left: 10px;
}

/* ================= RESPONSIVE SYSTEM ================= */

/* TABLET */
@media (max-width: 1024px) {

  .hero-content,
  .tech-grid,
  .contact-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  

  .nav-links a,
  .dropdown-toggle {
    padding: 12px 2px;
    font-size: 14px
  }

  .navbar .btn {
    display: none
  }

  .service-grid, .values-grid,
  .cap-grid, .benefit-grid, 
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-section .container {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 36px;
  }
  
  .intro, .service-section {
    padding: 60px 28px;
  }

  .intro h2 {
    font-size: 28px;
  }

  .service-section h2 {
    font-size: 20px;
  }

  .service-section p, .service-section li {
    font-size: 16px;
  }

  .service-section img {
    display: none;
  }

  .service-section .img-mobile {
    display: flex;
    height: 240px;
    margin-bottom: 20px;
  }
  
  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}


/* MOBILE */
@media (max-width: 768px) {

  /* CONTAINER */
  .container {
    width: 92%;
  }

  /* HERO */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    height: 220px;
  }

  .card img {
    height: 48px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .intro h2 {
    font-size: 24px;
  }

  /* BUTTON spacing */
  .btn {
    width: 100%;
  }

  /* GRIDS → SINGLE COLUMN */
  .service-grid, .cap-grid,
  .industry-grid, .news-cards, .news-grid,
  .contact-grid, .service-section .container {
    grid-template-columns: 1fr;
  }

  .values-grid, .footer-grid, .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-column.bordered.enquiry {
    grid-column: 1 / span 2
  }

  .footer-column.company { order: 1;}
  .footer-column.sla { order: 2 }
  .footer-column.bordered.enquiry {order: 3;}
  /* STATS */
  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .bordered {
    border: none;
    padding-left: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .btn.primary {
    display: none; /* hide top button on mobile */
  }

  /* mega menu becomes accordion */
  .mega-menu {
    display: none;
    position: static;
    width: 100%;
    flex-direction: column;
    box-shadow: none;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .mega.active .mega-menu {
    display: block;
  }

  .mega-left,
  .mega-right {
    width: 100%;
  }

  .mega-right {
    display: none; /* hide preview panel on mobile */
  }

  .mega-left {
    margin-top: 8px;
    padding-left: 10px;
    border-left: 2px solid rgba(255,106,0,0.2);
    border-bottom: 2px solid rgba(255,106,0,0.2);
    border-right: none;
  }

  .mega-left .menu-item {
    font-size: 14px;
    padding: 12px 0;
  }

  .mega-left svg {
    stroke: #999;
  }

  .mega-left a:active svg {
    stroke: #ff6a00;
  }

  .navbar {
    align-items: center;
    backdrop-filter: blur(8px);
  }

  .navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
      to right,
      transparent,
      rgba(255,106,0,0.4),
      transparent
    );
    z-index: -1;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;            /* sits RIGHT below navbar */
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 96%;
    padding: 12px 20px;
    margin: 0 4px;
    background: white;
    border: 1px solid #d7d7d7;
    border-radius: 0 0 16px 16px;
    box-shadow: 
      0 10px 30px rgba(0,0,0,0.08),
      0 2px 10px rgba(255,106,0,0.08);
  }

  .nav-links a,
  .dropdown-toggle {
    color: #333;
    padding: 12px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a:active,
  .dropdown-toggle:active {
    background: rgba(255,106,0,0.08);
    color: #ff6a00;
    padding-left: 6px;
    transition: 0.2s;
  }

  .nav-item {
    width: 100%;
  }

  /* Disable hover dropdown on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Make dropdown expand inline */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .dropdown-menu a {
    padding: 10px 0;
  }

  .nav-links a:hover, .dropdown-toggle:hover {
    background: unset;
  }

  .intro, .service-section {
    padding: 16px 28px;
  }

  .intro .lead {
    font-size: 16px;
  }

  .intro p {
    font-size: 14px;
  }

  .service-section {
    min-height: unset;
  }

  .service-section h2 {
    font-size: 16px;
  }

  .service-section p, .service-section li, .why-card p {
    font-size: 14px;
  }

  .service-section img {
    display: none;
  }

  .service-section .img-mobile {
    display: flex;
    height: 160px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .benefit-card h3 {
    font-size: 16px;
  }

  .careers-hero h1 {
    font-size: 28px;
  }

  .hero-inner {
    padding: 0 12px;
  }

  .why-card {
    padding: 12px;
  }

  .why-join, .jobs {
      padding: 40px 20px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .job-right {
    width: 100%;
  }

  .job-right .btn {
    width: 100%;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .culture-image img {
    height: 200px;
}

  .contact-info {
    padding: 0 20px;
  }
  
  .news-intro-box .btn.primary {
    display: unset;
  }

  .iframe-desktop {
    display: none;
  }

  .iframe-mobile {
    display: block;
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-column ul {
    padding-left: 12px;
   }

  .footer-column ul li {
    margin-bottom: 8px;
    line-height: 1.5;
  }
}