@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* STEP 1: ROOT FONT SIZE BASELINE (1rem = 10px) */
html {
  font-size: 62.5% !important;
  /* 10px baseline: 1rem = 10px */
}

/* Lenis Performance Reset - Prevents browser double-smoothing lag */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-size: 1.6rem !important;
  /* Default body font 16px */
  line-height: 1.6;
}

/* GLOBAL HEADING TYPOGRAPHY - PLUS JAKARTA SANS */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.title,
.hero-title,
.contacts-title,
.heading .title,
.section-title,
.page-header h1,
.careers-hero-section h1,
.why-hero-section h1,
.service-banner-card-light h3,
.sector-card h3,
.process-box h3,
.counter-box p {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* REMOVE CHAT WIDGET & POPUP DEFINITIVELY */
.contact-tab,
.contact-popup,
#contactPopup,
.overlay#overlay,
iframe[title*="chat" i],
iframe[title*="tawk" i],
iframe[src*="tawk.to" i],
[aria-label="Chat widget"],
#tawk-bubble-container,
.tawk-min-container,
.tawk-custom-color,
.whatsapp-float {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* FIXED HEADER & PURE CSS CLEARANCE (PRODUCTION SAFE) */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

.header--spacer {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
}

/* BACKGROUND & TOP CLEARANCE */
.content-wrapper {
  background: radial-gradient(circle at top, #0b1220, #050814);
  padding: 0 !important;
  color: #fff;
  font-family: system-ui, sans-serif;
  margin-top: 92px !important;
  /* Pure CSS clearance so hero section never tucks under header */
}

/* HEADER AUTO-HIDE ON SCROLL DOWN & AUTO-SHOW ON SCROLL UP */
#site-header {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
  will-change: transform;
}

#site-header.headroom--unpinned,
#site-header.swingOutX,
#site-header.nav-hidden {
  transform: translateY(-115%) !important;
}

#site-header.headroom--pinned,
#site-header.swingInX,
#site-header.nav-visible {
  transform: translateY(0) !important;
}

.hero-slider-wrapper {}

/* HERO SLIDE & GRID */
.hero-slide {
  padding-top: 9.0rem !important;
  padding-bottom: 5.0rem !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 5.0rem;
}

/* TITLE - BRAND GRADIENT */
.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #04a9fa, #026596);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05rem;
  margin-top: 1.0rem !important;
}

/* TEXT */
.hero-text {
  margin-top: 2.0rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #b6c2d9;
  line-height: 1.8;
  max-width: 55.0rem;
  letter-spacing: 0.3px;
}

/* BUTTONS */
.hero-btns {
  margin-top: 3.0rem;
  display: flex;
  gap: 1.5rem;
}

/* PRIMARY BUTTON */
.btn-primary,
.btn-outline {
  padding: 1.2rem 2.2rem;
  border-radius: 1.2rem;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition: 0.3s ease;
}

/* PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #04a9fa, #026596);
  color: #fff;
  box-shadow: 0 12px 30px rgba(4, 169, 250, 0.25);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(4, 169, 250, 0.35);
}

/* OUTLINE */
.btn-outline {
  border: 1px solid rgba(4, 169, 250, 0.4);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(4, 169, 250, 0.12);
  border-color: #04a9fa;
}

/* IMAGE PREMIUM */
.hero-image img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(4, 169, 250, 0.25));
  animation: float 4s ease-in-out infinite;
  transition: 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.04);
}

/* FLOAT ANIMATION */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .content-wrapper {
    margin-top: 80px !important;
  }

  .hero-slide {
    padding-top: 6.0rem !important;
    padding-bottom: 2.0rem !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }
}

.content-wrapper {
  background:
    radial-gradient(circle at 20% 20%, rgba(4, 169, 250, 0.25), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(58, 189, 251, 0.18), transparent 40%),
    radial-gradient(circle at bottom, #070b16, #03050c);

  position: relative;
  /*padding: 80px 0;*/
  color: #fff;
  font-family: system-ui, sans-serif;
  overflow: hidden;
}

/* subtle glow noise overlay for luxury feel */
.content-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/stardust.png");
  opacity: 0.05;
  pointer-events: none;
}


/*....................................*/


.image-box {
  height: 388px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  display: block;


  /* ONLY TOP PREMIUM LIGHT SHADOW */
  box-shadow:
    0 -10px 25px rgba(0, 0, 0, 0.10),
    /* top shadow */
    0 -2px 6px rgba(0, 0, 0, 0.06);
  /* soft top depth */

  transition: none !important;
  transform: none !important;
}

/* no hover effect */
.image-box img:hover {
  transform: none !important;
  filter: none !important;

  box-shadow:
    0 -10px 25px rgba(0, 0, 0, 0.10),
    0 -2px 6px rgba(0, 0, 0, 0.06);

}



/*...........................................................*/

/* Section */
.corporate-training-section {
  padding: 90px 0;
  background: #e5e5e5;
}

/* Badge */
.section-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Title */
.title {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 10px;
}

/* underline accent */
.title-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #04a9fa, #026596);
  margin: 18px 0 28px;
  border-radius: 5px;
}

/* Description */
.desc {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 18px;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #04a9fa;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: .3px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #04a9fa;
  color: #fff;
  transform: translateY(-2px);
}

/* Image box */
.image-box {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
  border-radius: 6px;
}

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

.desc {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

/* SINGLE UNIFIED HEADING LINE BAR OVERRIDE */
.heading-line {
  display: inline-block !important;
  width: 75px !important;
  height: 4px !important;
  background: linear-gradient(135deg, #04a9fa, #026596) !important;
  border-radius: 4px !important;
  margin-top: 8px !important;
  margin-bottom: 20px !important;
  position: relative !important;
}

.heading.align-center .heading-line,
.heading-center .heading-line,
.align-center .heading-line,
.services-header .heading-line {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.heading-line .short-line,
.heading-line .long-line {
  display: none !important;
}

.corporate-training-section .heading-line {
  margin-bottom: 10px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.corporate-training-section .desc {
  margin-top: 5px !important;
}

.corporate-training-section .heading {
  margin-bottom: 0 !important;
}

.corporate-training-section .desc:first-of-type {
  margin-top: 0 !important;
}

/* better spacing between paragraphs */
.desc+.desc {
  margin-top: 10px;
}

/*...............................................*/

/* =========================
   HERO STYLE COUNTER SECTION
========================= */
.project-counter {
  padding: 100px 20px;
  font-family: system-ui, sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(4, 169, 250, 0.25), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(77, 163, 255, 0.18), transparent 45%),
    radial-gradient(circle at bottom, #070b16, #03050c);
}

/* glow */
.project-counter::before,
.project-counter::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(140px);
  opacity: 0.25;
  z-index: 0;
  animation: floatGlow 10s ease-in-out infinite;
}

.project-counter::before {
  background: #ff6a3d;
  top: -120px;
  left: -120px;
}

.project-counter::after {
  background: #4da3ff;
  bottom: -150px;
  right: -120px;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(40px);
  }
}

/* heading */
.heading {
  color: #fff;
  margin-bottom: 50px;
}

.heading-title {
  /*font-size: 2.2rem;*/
  margin-bottom: 10px;
}

.heading-text {
  color: #1f2937;
  ;
  max-width: 600px;
  margin: auto;
}

/* container */
.counter-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  position: relative;
  z-index: 2;
}

/* card */
.counter-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(58, 189, 251, 0.15);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 35px 20px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.counter-box:hover {
  transform: translateY(-10px);
  border-color: #3abdfb;
  box-shadow: 0 25px 60px rgba(4, 169, 250, 0.18);
}

/* number */
.counter-box h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #3abdfb;
  display: inline-block;
}

/* text */
.counter-box p {
  color: #a7b0c6;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* glow */
.counter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(58, 189, 251, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s ease;
}

.counter-box:hover::before {
  opacity: 1;
}


/*..........................................*/
.socials {
  display: flex;
  gap: 1px;
  align-items: center;
}

.social__item {
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Boxy look */
  border-radius: 0px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;
  /* Hover animation remove kar di gayi hai */
  transition: border-color 0.25s ease;
}

/* ICON centered perfectly */
.icon {
  width: 14px;
  /* Icon ko box size ke hisaab se adjust kiya */
  height: 14px;
  stroke: #ffffff;
  stroke-width: 1.6;
  fill: none;
}

/* Hover band, bas halka sa border color change (optional) */
.social__item:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/*testimonial*/
/*.......................*/

.testimonial-premium {
  padding: 100px 0;
  background: #e5e5e5;
}

.title {
  font-size: 36px;
  color: #111;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.divider-gold {
  width: 60px;
  height: 1px;
  background: #04a9fa;
}

.testimonial-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.quote-icon {
  font-size: 80px;
  color: black;
  font-family: serif;
  margin-bottom: -20px;
  line-height: 1;
}

.testimonial-card .text {
  font-size: 22px;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 35px;
}

.author-box .name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.author-box .role {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: sans-serif;
}

.swiper-pagination {
  margin-top: 30px !important;
  position: relative !important;
}

.swiper-pagination-bullet-active {
  background: Black;
  !important;
}

.testimonial-premium .section-title {
  margin-bottom: 0 !important;
}

.testimonial-premium .heading {
  margin-bottom: 0 !important;
}

.testimonial-premium .heading-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 8px 0 !important;
}

.testimonial-premium .testimonial-wrapper {
  margin-top: 10px !important;
}

/* HEADER LAYOUT FIXES FOR SINGLE LINE NAVIGATION & RIGHT ALIGNED BUTTONS */
@media (min-width: 992px) {
  .header .header-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
  }

  .primary-menu,
  .primary-menu-right-shifted {
    margin-left: auto !important;
    margin-right: 15px !important;
  }

  .primary-menu-menu {
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  .primary-menu-menu>li {
    padding: 10px 10px !important;
  }

  .primary-menu-menu>li>a {
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  .nav-add {
    margin-right: 15px !important;
    padding: 0 !important;
  }

  .user-menu {
    position: absolute !important;
    right: 40px !important;
    top: calc(100% - 15px) !important;
    transform: none !important;
    margin-top: 0 !important;
    z-index: 100 !important;
  }
}

/* BRAND LOGO - RESPONSIVE, CRISP & PROPORTIONAL ON ALL DEVICES */
.header .logo {
  position: relative !important;
  z-index: 100 !important;
  overflow: visible !important;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: 250px !important;
  height: auto !important;
}

.header .logo a,
.header .logo .logo-link {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  position: relative !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  text-decoration: none !important;
}

.header .logo img {
  display: block !important;
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  height: 78px !important;
  max-height: 82px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08)) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.header .logo img:hover {
  transform: scale(1.03) !important;
}

/* HERO SLIDER ENHANCEMENTS & CURSOR CONTROL */
.hero-slider-wrapper,
.hero-slider-wrapper *,
.swiper-container.main-slider,
.swiper-container.main-slider *,
.hero-slide,
.hero-slide * {
  cursor: default !important;
}

.hero-slider-wrapper a,
.hero-slider-wrapper button,
.hero-slider-wrapper .btn-primary,
.hero-slider-wrapper .btn-outline,
.hero-slider-wrapper .swiper-pagination-bullet,
.hero-slider-wrapper .swiper-button-next,
.hero-slider-wrapper .swiper-button-prev {
  cursor: pointer !important;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
}

.swiper-container.main-slider {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-container.main-slider .swiper-pagination {
  position: absolute;
  bottom: 0px !important;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.swiper-container.main-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.35s ease;
  cursor: pointer;
  margin: 0 !important;
}

.swiper-container.main-slider .swiper-pagination-bullet-active {
  background: #04a9fa !important;
  width: 34px;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(4, 169, 250, 0.7);
}

/* CAREERS HERO PARALLAX RESPONSIVE */
@media (max-width: 768px) {
  .careers-hero-section {
    padding: 90px 15px 70px !important;
    background-attachment: scroll !important;
  }

  .careers-hero-section h1 {
    font-size: 2.2rem !important;
  }

  .careers-hero-section p {
    font-size: 1rem !important;
  }
}

/* OUR SERVICES RESPONSIVE GRID & CARD WRAPPING FIXES */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 30px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.service-card {
  background: #ffffff !important;
  border-radius: 14px !important;
  padding: 24px 20px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  border-top: 4px solid #04a9fa !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  height: 100% !important;
}

.service-card h2,
.service-card h3,
.service-card h4 {
  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  text-align: center !important;
  line-height: 1.35 !important;
  font-size: 2.0rem !important;
  font-weight: 800 !important;
  margin-top: 15px !important;
  margin-bottom: 12px !important;
  color: #0f172a !important;
}

.service-card p {
  color: #64748b !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.7rem !important;
  line-height: 1.8 !important;
  text-align: center !important;
  margin-bottom: 14px !important;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ABOUT HERO PARALLAX RESPONSIVE */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 90px 15px 70px !important;
    background-attachment: scroll !important;
  }

  .about-hero-section h1 {
    font-size: 2.2rem !important;
  }

  .about-hero-section p {
    font-size: 1rem !important;
  }
}

/* SERVICE BANNER CARDS & ADVANCED SERVICES STYLING */
.service-banner-card {
  background: rgba(11, 18, 32, 0.75);
  border: 1px solid rgba(4, 169, 250, 0.22);
  border-radius: 20px;
  padding: 45px 35px;
  margin-bottom: 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

.service-banner-card:hover {
  border-color: rgba(4, 169, 250, 0.55);
  box-shadow: 0 20px 45px rgba(4, 169, 250, 0.18);
  transform: translateY(-4px);
}

.service-badge-tag {
  display: inline-block;
  background: rgba(4, 169, 250, 0.15);
  color: #04a9fa;
  border: 1px solid rgba(4, 169, 250, 0.3);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-right: 8px;
  margin-bottom: 14px;
}

@media (max-width: 992px) {
  .service-banner-card {
    padding: 30px 20px;
  }
}

/* LIGHT THEME SERVICES PAGE & CARDS */
.services-page-wrapper {
  background-color: #ffffff !important;
  color: #1e293b !important;
}

.service-banner-card-light {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
  border: 1px solid #e0f2fe !important;
  border-radius: 20px !important;
  padding: 45px 35px !important;
  margin-bottom: 40px !important;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.04) !important;
  transition: all 0.35s ease !important;
}

.service-banner-card-light:hover {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  border-color: #7dd3fc !important;
  box-shadow: 0 12px 30px rgba(4, 169, 250, 0.1) !important;
  transform: translateY(-4px) !important;
}

.service-badge-tag-light {
  display: inline-block;
  background: rgba(4, 169, 250, 0.1);
  color: #0284c7;
  border: 1px solid rgba(4, 169, 250, 0.25);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-right: 8px;
  margin-bottom: 14px;
}

.service-card-image-box-light {
  background: #ffffff;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

/* ==========================================
   STEP 3: FULL RESPONSIVENESS MEDIA QUERIES
   ========================================== */

/* Large Tablets & Small Laptops (<= 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 100% !important;
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

/* Tablets & Mobile Screens (<= 991px) */
@media (max-width: 991px) {
  html {
    font-size: 56.25% !important;
    /* 1rem = 9px on tablets */
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 3.5rem !important;
    text-align: center !important;
  }

  .hero-content {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-title {
    font-size: 3.8rem !important;
  }

  .hero-btns {
    justify-content: center !important;
  }

  .hero-image img {
    max-height: 35.0rem !important;
  }

  .service-banner-card-light {
    padding: 3.0rem 2.0rem !important;
    margin-bottom: 2.5rem !important;
  }

  .service-banner-card-light .row {
    flex-direction: column-reverse !important;
  }

  .service-banner-card-light .col-lg-6 {
    padding-right: 1.5rem !important;
  }

  .corporate-training-section .row {
    flex-direction: column !important;
  }
}

/* Smartphones (<= 768px) */
@media (max-width: 768px) {
  html {
    font-size: 50% !important;
    /* 1rem = 8px on mobile screens */
  }

  .careers-hero-section,
  .why-hero-section {
    padding: 8.0rem 1.5rem 6.0rem !important;
  }

  .careers-hero-section h1,
  .why-hero-section h1 {
    font-size: 2.8rem !important;
  }

  .service-banner-card-light h3 {
    font-size: 2.2rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 2.0rem !important;
  }

  .sector-card {
    padding: 2.0rem !important;
  }

  .btn-primary,
  .btn-outline {
    padding: 1.2rem 2.0rem !important;
    font-size: 1.4rem !important;
  }
}

/* Small Smartphone Screens (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem !important;
  }

  .hero-btns {
    flex-direction: column !important;
    width: 100% !important;
    gap: 1.0rem !important;
  }

  .btn-primary,
  .btn-outline {
    width: 100% !important;
    text-align: center !important;
  }

  .service-banner-card-light {
    padding: 2.0rem 1.5rem !important;
  }
}

/* INDUSTRIES ENJAZION SUPPORTS - CLEAN LIGHT THEME GRID */
.industry-card-light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.6rem;
  padding: 2.6rem 2.2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 0.4rem 1.5rem rgba(15, 23, 42, 0.03);
}

.industry-card-light:hover {
  transform: translateY(-0.6rem);
  border-color: #04a9fa;
  box-shadow: 0 1.2rem 3.0rem rgba(4, 169, 250, 0.14);
}

.industry-icon-box-light {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.4rem;
  background: rgba(4, 169, 250, 0.08);
  border: 1px solid rgba(4, 169, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.0rem;
  color: #04a9fa;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.industry-card-light:hover .industry-icon-box-light {
  background: #04a9fa;
  color: #ffffff;
  border-color: #04a9fa;
  transform: scale(1.08);
  box-shadow: 0 0.6rem 1.8rem rgba(4, 169, 250, 0.3);
}

.industry-icon-box-light svg {
  width: 2.4rem !important;
  height: 2.4rem !important;
  max-width: 2.4rem !important;
  max-height: 2.4rem !important;
  display: block !important;
}

.industry-card-title-light {
  font-size: 1.7rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 1.0rem !important;
  line-height: 1.35 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.industry-card-desc-light {
  color: #64748b !important;
  font-size: 1.35rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

/* GLOBAL RESPONSIVE SAFETY OVERRIDES */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

img,
video,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {

  .container,
  .container-fluid {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .primary-menu-right-shifted {
    margin-left: 0 !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .search-modal-content {
    width: 95% !important;
    padding: 2.0rem 1.5rem !important;
  }
}

/* ===================================================
   CENTERED NAVBAR WITH ICON-OVER-TEXT STACKED LINKS
   =================================================== */
.header-content-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.primary-menu-center-custom {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  margin: 0 1.5rem !important;
}

.nav-icon-stacked-list {
  display: flex !important;
  align-items: center !important;
  gap: 2.2rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-icon-stacked-item {
  position: relative !important;
  padding: 0.5rem 0 !important;
}

.nav-icon-stacked-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  text-decoration: none !important;
  padding: 0.75rem 1.4rem !important;
  color: #1e293b !important;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  line-height: 1.2 !important;
  border-radius: 30px !important;
  background: transparent !important;
}

.nav-icon-stacked-item.active .nav-icon-stacked-link,
.nav-icon-stacked-link:hover {
  color: #0072ff !important;
  background: rgba(0, 114, 255, 0.06) !important;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.05) !important;
}

/* Active indicator line under active menu link */
.nav-icon-stacked-item.active::after {
  display: none !important;
}

.nav-dropdown-arrow {
  font-size: 0.8rem !important;
  margin-left: 0.2rem !important;
  color: #64748b !important;
}

/* Dropdown Menu Submenu styling */
.nav-icon-stacked-item .dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1.2rem !important;
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.12) !important;
  list-style: none !important;
  padding: 0.8rem !important;
  min-width: max-content !important;
  display: none !important;
  z-index: 9999 !important;
}

.nav-icon-stacked-item:hover .dropdown {
  display: block !important;
  animation: fadeInModal 0.2s ease-out !important;
}

.nav-icon-stacked-item .dropdown li {
  margin-bottom: 0.2rem !important;
}

.nav-icon-stacked-item .dropdown li a {
  display: block !important;
  padding: 0.7rem 1.2rem !important;
  color: #334155 !important;
  text-decoration: none !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  border-radius: 0.8rem !important;
  white-space: nowrap !important;
  transition: background 0.2s ease !important;
}

.nav-icon-stacked-item .dropdown li a:hover {
  background: #eff6ff !important;
  color: #0072ff !important;
}

/* ============================================
   HAMBURGER BUTTON STYLES
   ============================================ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid rgba(0, 114, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger-btn:hover {
  background: rgba(0, 114, 255, 0.07);
  border-color: rgba(0, 114, 255, 0.4);
}

.ham-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #1e293b;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger-btn.is-active .ham-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger-btn.is-active .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-active .ham-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.hamburger-btn.is-active .ham-line {
  background: #0072ff;
}

/* Mobile nav backdrop */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-backdrop.is-active {
  opacity: 1;
}

/* ============================================
   MOBILE RESPONSIVE NAV
   ============================================ */
@media (max-width: 991px) {
  .header {
    padding: 4px 0 !important;
  }

  .header .header-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 76px !important;
    width: 100% !important;
  }

  .header .logo {
    max-width: 220px !important;
    margin: 0 !important;
  }

  .header .logo img {
    height: 68px !important;
    max-height: 72px !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06)) !important;
  }

  /* Show hamburger button */
  .hamburger-btn {
    display: flex;
    margin-left: auto !important;
  }

  /* Hide nav by default on mobile */
  .primary-menu-center-custom {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12) !important;
    border-top: 1px solid #e2e8f0 !important;
    z-index: 999 !important;
    flex: unset !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
    opacity: 0 !important;
    display: block !important;
  }

  /* When mobile menu is open */
  .primary-menu-center-custom.mobile-open {
    max-height: 90vh !important;
    opacity: 1 !important;
    overflow-y: auto !important;
  }

  /* Show mobile-nav-backdrop */
  .mobile-nav-backdrop {
    display: block;
  }

  /* Nav list stacks vertically */
  .nav-icon-stacked-list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0.75rem 0 !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  }

  /* Each nav item full-width */
  .nav-icon-stacked-item {
    padding: 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
  }
  .nav-icon-stacked-item:last-child {
    border-bottom: none !important;
  }

  /* Nav links full-width with left alignment */
  .nav-icon-stacked-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 1.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 0 !important;
    width: 100% !important;
    background: transparent !important;
  }

  .nav-icon-stacked-item.active .nav-icon-stacked-link,
  .nav-icon-stacked-link:hover {
    background: #f8faff !important;
    box-shadow: none !important;
    padding-left: 2rem !important;
  }

  /* Mobile dropdown - static/block */
  .nav-icon-stacked-item .dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid #e2e8f0 !important;
    border-radius: 0 !important;
    background: #f8faff !important;
    padding: 0.25rem 0 !important;
    display: none !important;
    min-width: unset !important;
    width: 100% !important;
  }

  /* Show dropdown on tap (toggled by JS) */
  .nav-icon-stacked-item.dropdown-open .dropdown {
    display: block !important;
    animation: none !important;
  }

  .nav-icon-stacked-item .dropdown li a {
    padding: 0.85rem 2rem !important;
    border-radius: 0 !important;
    font-size: 1rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  .nav-icon-stacked-item .dropdown li:last-child a {
    border-bottom: none !important;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 3px 0 !important;
  }

  .header .header-content-wrapper {
    min-height: 72px !important;
  }

  .header .logo {
    max-width: 195px !important;
  }

  .header .logo img {
    height: 64px !important;
    max-height: 68px !important;
  }

  .primary-menu-center-custom {
    top: 76px !important;
  }

  .content-wrapper {
    margin-top: 78px !important;
  }
}

/* SCROLL REVEAL ANIMATIONS (Triggers on scroll, not on page load) */
.reveal-on-scroll {
  opacity: 0 !important;
  transform: translateY(45px) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-delay-1 {
  transition-delay: 0.15s !important;
}

.reveal-delay-2 {
  transition-delay: 0.3s !important;
}

.reveal-delay-3 {
  transition-delay: 0.45s !important;
}