/* ----- base & colour ----- */
:root {
  --brand-blue: #0032FD;
  /* updated primary */
  --brand-dark: #000000;
  --font-heading: 'Libre Bodoni', serif;
  --font-menu: 'Lufga', 'Segoe UI', system-ui, -apple-system, sans-serif;
}


        /* Regular */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/fonnts.com-LufgaRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/fonnts.com-LufgaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Light */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/fonnts.com-LufgaLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/fonnts.com-LufgaItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

      
         p, a, button, li, span {
             font-family: 'Lufga';
        }

  /*    h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Bodoni' !important;
}
 */

* {
  box-sizing: border-box;
}

/* body {
  font-family: var(--font-menu);
}
 */
/* headings: Libre Bodoni */
h1,
h2,
h3,
h4,
h5,
h6,
.heading-libre {
  font-family: var(--font-heading);
  font-weight: 700;
}


.hero-section {
    position: relative;
    height: 500px;
    background: url(https://images.unsplash.com/photo-1517694712202-14dd9538aa97?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* When used as a slider, reset the static bg and let the carousel control height/overflow */
.hero-section.hero-slider-section {
    height: auto;
    background: none;
    overflow: visible;
    display: block;
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: none;
}

/* ----- Sticky header ----- */
header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

header.header-sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

/* Shrink the mini-bar when sticky so only the nav stays prominent */
header.header-sticky .top-mini-bar{
  display: none;
}
/* ----- top mini bar (unchanged style) ----- */
.top-mini-bar {
  background-color: var(--brand-dark);
  color: #ffffff;
  font-size: 0.85rem;
}

.top-mini-bar a {
  color: #ffffff;
  text-decoration: none;
}

.top-mini-bar .social-icons i {
  background: #fff;
  color: #000;
  border-radius: 50%;
  padding: 4px 7px;
  font-size: 0.8rem;
}

/* ----- MAIN HEADER (logo + search inline on desktop) ----- */
.main-header {
  background-color: var(--brand-blue);
  padding: 0.6rem 1rem;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.logo-img {
  max-width: 160px;
  height: auto;
  display: block;
}


.search-container .form-control {
  border-radius: 4px 0 0 4px;
  border: none;
}

.search-container .btn {
  background-color: #ffffff;
  border: none;
  border-radius: 0 4px 4px 0;
  color: var(--brand-blue);
}


/* desktop search inside header */
.header-search-desktop {
  flex: 1;
  max-width: 600px;
  margin-left: auto;
}

.header-search-desktop .input-group {
  width: 100%;
}

.header-search-desktop .form-control {
  border-radius: 6px 0 0 6px;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.header-search-desktop .btn {
  background-color: #ffffff;
  border: none;
  border-radius: 0 6px 6px 0;
  color: var(--brand-blue);
  padding: 0.5rem 1.2rem;
}

/* hide desktop search on mobile, show mobile search row */
.header-search-desktop {
  display: none;
}

.search-full-row {
  display: block;
}

@media (min-width: 992px) {
  .header-search-desktop {
    display: block;
  }

  .search-full-row {
    display: none !important;
  }
}

/* custom toggler - visible only on mobile */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 0.25rem 0.4rem;
  font-size: 1.8rem;
  color: white;
  line-height: 1;
  transition: 0.2s;
  flex-shrink: 0;
  margin-left: auto;
  display: block;
}

.custom-toggler:hover {
  opacity: 0.8;
}

.custom-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

/* hide toggler on large screens */
@media (min-width: 992px) {
  .custom-toggler {
    display: none !important;
  }
}

/* ----- SEARCH FULL WIDTH (mobile only) ----- */
.search-full-row {
  background-color: var(--brand-blue);
  padding: 0 1rem 0.8rem 1rem;
}

.search-full-row .input-group {
  width: 100%;
}

.search-full-row .form-control {
  border-radius: 6px 0 0 6px;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
}

.search-full-row .btn {
  background-color: #ffffff;
  border: none;
  border-radius: 0 6px 6px 0;
  color: var(--brand-blue);
  padding: 0.6rem 1.2rem;
}

.search-full-row .btn:hover {
  background-color: #f0f4ff;
}

/* ----- NAVBAR (collapsible with slide from right) ----- */
.custom-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-family: var(--font-menu);
  padding: 0;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Override Bootstrap collapse to slide from right on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem 1rem;
    overflow-y: auto;
    z-index: 1050;
    display: block !important;
    visibility: hidden;
  }

  .navbar-collapse.show {
    right: 0;
    visibility: visible;
  }

  /* overlay when menu open */
  .navbar-collapse.show::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /*   background: rgba(0, 0, 0, 0.3); */
    z-index: -1;
  }

  /* close button inside slide menu */
  .navbar-collapse .close-menu-btn {
    display: block !important;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1f2a44;
    padding: 0.2rem 0.5rem;
    margin-bottom: 1rem;
    text-align: right;
    width: 100%;
    cursor: pointer;
  }

  .navbar-collapse .close-menu-btn:hover {
    color: var(--brand-blue);
  }

  .custom-navbar .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0.5rem !important;
    text-align: left;
  }

  .custom-navbar .navbar-nav {
    width: 100%;
  }

  /* dropdown inside slide */
  .mega-dropdown {
    position: relative !important;
    width: 100%;
  }

  .mega-dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    box-shadow: none !important;
    background: #f0f4ff;
    border-radius: 8px;
    padding: 0.6rem 0.5rem;
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 50, 253, 0.1);
    border-top: 3px solid var(--brand-blue);
    overflow-x: hidden;
  }

  /* Single-column layout for folder blocks inside mobile panel */
  .mega-dropdown .dropdown-menu .row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mega-dropdown .dropdown-menu .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
  }

  .mega-dropdown .dropdown-menu .folder-block {
    background: #ffffff;
    border-radius: 6px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(0, 50, 253, 0.08);
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .mega-dropdown .dropdown-menu .folder-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1.4;
  }

  .mega-dropdown .dropdown-menu .folder-title {
    font-size: 0.9rem;
    flex: 1;
    align-self: center;
  }

  .mega-dropdown .dropdown-menu .folder-sub {
    width: 100%;
    margin-top: 0.4rem;
    padding-left: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0;
  }

  .mega-dropdown .dropdown-menu .file-item {
    font-size: 0.82rem;
    padding: 0.25rem 0 0.25rem 1rem;
    width: 100%;
  }
}

/* close button hidden on desktop */
.close-menu-btn {
  display: none;
}

/* Desktop nav: normal horizontal */
@media (min-width: 992px) {
  .custom-navbar .navbar-collapse {
    display: flex !important;
    visibility: visible !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    overflow: visible !important;
    transition: none !important;
    right: auto !important;
  }

  .custom-navbar .navbar-nav {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 0.25rem;
  }

  .custom-navbar .nav-link {
    position: relative;
    border-bottom: none;
    padding: 0.9rem !important;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #1f2a44;
    transition: color 0.2s ease;
  }

  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active {
    color: var(--brand-blue);
  }

  /* Blue triangle indicator under active / hovered links
     Skip it for the dropdown toggle so it doesn't stack with the caret */
  .custom-navbar .nav-link:not(.dropdown-toggle).active::after,
  .custom-navbar .nav-link:not(.dropdown-toggle):hover::after {
    content: '▲';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--brand-blue);
    line-height: 1;
  }

  /* Bootstrap caret for dropdown toggle */
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.3em;
    vertical-align: 0.2em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.2s ease;
  }

  /* Rotate caret when dropdown is open */
  .mega-dropdown:hover .dropdown-toggle::after,
  .mega-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .close-menu-btn {
    display: none !important;
  }

  /* ---- HOVER-to-open on desktop ---- */
  /* Show dropdown on hover without needing a click */
  .mega-dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1;
    pointer-events: auto;
  }

  /* Smooth fade-in */
  .mega-dropdown > .dropdown-menu {
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
  }

  .mega-dropdown.show > .dropdown-menu,
  .mega-dropdown:hover > .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
  }

  /* desktop dropdown (mega) */
  .mega-dropdown .dropdown-menu {
    padding: 2rem 1.5rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--brand-blue);
    background: #ffffff;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .mega-dropdown .dropdown-menu .folder-block {
    background: #f8faff;
    border-radius: 18px;
    padding: 1.4rem 1rem;
    border: 1px solid rgba(0, 50, 253, 0.05);
    margin-bottom: 0;
    height: 100%;
    transition: all 0.2s ease;
  }

  .mega-dropdown .dropdown-menu .folder-block:hover {
    background: #ffffff;
    border-color: rgba(0, 50, 253, 0.15);
    box-shadow: 0 6px 16px rgba(0, 50, 253, 0.04);
  }
}

/* tablet mega menu — inside the slide panel, same as mobile */
@media (min-width: 768px) and (max-width: 991.98px) {
  .mega-dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    padding: 0.6rem 0.5rem;
    background: #f0f4ff;
    border-radius: 8px;
    box-shadow: none !important;
    border-top: 3px solid var(--brand-blue);
    overflow-x: hidden;
  }

  .mega-dropdown .dropdown-menu .folder-block {
    background: #ffffff;
    border-radius: 6px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(0, 50, 253, 0.08);
    height: auto;
  }

  .mega-dropdown .dropdown-menu .folder-block:hover {
    background: #f8faff;
    border-color: rgba(0, 50, 253, 0.2);
    box-shadow: none;
  }
}

/* ----- MEGA MENU (base — desktop only, mobile/tablet handled above) ----- */
.mega-dropdown {
  position: static !important;
}

/* On mobile/tablet the dropdown-menu stays in the slide panel (static).
   On desktop it stretches full-width under the navbar (absolute). */
@media (min-width: 992px) {
.mega-dropdown .dropdown-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw;
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    overflow-x: hidden;
}
}

.mega-dropdown .dropdown-menu .folder-block {
  background: white;
  border-radius: 14px;
  padding: 1rem 0.8rem;
  /* border: 1px solid rgba(0, 50, 253, 0.05); */
  border: 0px;
  margin-bottom: 0.8rem;
  height: 100%;
  transition: 0.15s;
}

.mega-dropdown .dropdown-menu .folder-block:hover {
  border-color: rgba(0, 50, 253, 0.2);
  box-shadow: 0 4px 12px rgba(0, 50, 253, 0.04);
}

.mega-dropdown .dropdown-menu .folder-icon {
  font-size: 1.8rem;
  color: var(--brand-blue);
}

.mega-dropdown .dropdown-menu .folder-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #001a7a;
  font-size: 1.3rem;
  margin: 0.2rem 0 0.3rem 0;
}

.mega-dropdown .dropdown-menu .file-item {
  display: block;
  padding: 0.2rem 0 0.2rem 0.5rem;
  font-size: 0.9rem;
  color: #1f2a44;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: 0.1s;
}

.mega-dropdown .dropdown-menu .file-item i {
  margin-right: 6px;
  color: var(--brand-blue);
  opacity: 0.7;
  font-size: 0.75rem;
}

.mega-dropdown .dropdown-menu .file-item:hover,
.mega-dropdown .dropdown-menu .file-item.active {
  border-left-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(0, 50, 253, 0.02);
  border-radius: 0 4px 4px 0;
}

.mega-dropdown .dropdown-menu .file-item.active {
  font-weight: 600;
}

.mega-dropdown .dropdown-menu .folder-sub {
  margin-top: 0.3rem;
}

/* ----- HERO SLIDER SECTION ----- */
.hero-slider-section {
  position: relative;
  padding: 0;
  background: none;
}

.hero-slider-section .carousel,
.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
  height: 580px;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Subtle zoom on active slide */
  transform: scale(1.04);
  transition: transform 6s ease;
}

.carousel-item.active .hero-bg {
  transform: scale(1);
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

/* Centered content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* Tag label above title */
.hero-tag {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  font-family: var(--font-menu);
}

.hero-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

h2.hero-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}


.hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-menu);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: var(--font-menu);
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
}

.hero-buttons .btn-primary:hover {
  background-color: #0025cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 50, 253, 0.35);
}

.hero-buttons .btn-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.hero-buttons .btn-light:hover {
  background-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

/* Dot indicators */
.hero-indicators {
  bottom: 1.4rem;
  gap: 6px;
  margin: 0;
}

.hero-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-indicators .active {
  background: #ffffff;
  width: 28px;
  border-radius: 5px;
}

/* Prev / Next arrow buttons */
.hero-ctrl {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  opacity: 1 !important;
}

.hero-ctrl:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-ctrl.carousel-control-prev { left: 1.5rem; }
.hero-ctrl.carousel-control-next { right: 1.5rem; }

.hero-ctrl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.hero-ctrl-icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

/* Slide entrance animation */
.carousel-item .hero-tag,
.carousel-item .hero-title,
.carousel-item .hero-subtitle,
.carousel-item .hero-buttons {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.carousel-item.active .hero-tag   { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.carousel-item.active .hero-title  { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.carousel-item.active .hero-subtitle{ opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.carousel-item.active .hero-buttons{ opacity: 1; transform: translateY(0); transition-delay: 0.52s; }

/* Responsive */
@media (max-width: 991px) {
  .hero-slider-section .carousel,
  .hero-slider-section .carousel-inner,
  .hero-slider-section .carousel-item {
    height: 480px;
  }

  .hero-title { font-size: 1.9rem; }
}

@media (max-width: 768px) {
  .hero-slider-section .carousel,
  .hero-slider-section .carousel-inner,
  .hero-slider-section .carousel-item {
    height: 520px;
  }

  .hero-title {
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle { font-size: 0.9rem; }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-ctrl { display: none; }
}

@media (max-width: 480px) {
  .hero-slider-section .carousel,
  .hero-slider-section .carousel-inner,
  .hero-slider-section .carousel-item {
    height: 560px;
  }

  .hero-title { font-size: 1.3rem; }
  .hero-tag   { font-size: 0.68rem; }
}
.custom-footer {
  background-color: var(--brand-blue);
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.custom-footer h5 {
  font-family: var(--font-heading);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

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

.custom-footer ul li {
  margin-bottom: 0.75rem;
}

.custom-footer a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.custom-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social-icons i {
  background: #fff;
  color: var(--brand-blue);
  border-radius: 50%;
  padding: 6px 9px;
  font-size: 1rem;
  margin-left: 10px;
}

.footer-bottom-line {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

/* small adjust */
.custom-footer .contact-list i {
  min-width: 20px;
}

.bg-light.border {
  background-color: #f8fafc !important;
}

/* ----- HERO SECTION (kept for reference, main styles above) ----- */

/* ----- WHAT WE DO TAB SECTION ----- */
.what-we-do-section {
  background: #ffffff;
  padding-bottom: 3rem;
}

/* Tab nav bar */
.wwd-tab-nav {
  border-bottom: 1px solid #000;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.wwd-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wwd-tabs::-webkit-scrollbar { display: none; }

.wwd-tab {
  flex: 1;
  min-width: 160px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1.4rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  margin-bottom: -1px; /* overlap the nav border */
}

.wwd-tab:hover {
  color: #111111;
}

.wwd-tab.active {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
}

/* Panels */
.wwd-panels {
  padding: 3.5rem 0 2rem;
}

.wwd-panel {
  display: none;
}

.wwd-panel.active {
  display: block;
  animation: wwdFadeIn 0.35s ease both;
}

@keyframes wwdFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Label row */
.wwd-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-blue);
  font-family: var(--font-menu);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.wwd-dash {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--brand-blue);
  flex-shrink: 0;
}

/* Heading */
.wwd-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Body text */
.wwd-body {
  font-family: var(--font-menu);
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1.8rem;
}

/* Bullet list */
.wwd-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wwd-list li {
  font-family: var(--font-menu);
  font-size: 0.95rem;
  color: #333333;
  padding-left: 1.4rem;
  position: relative;
}

.wwd-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .wwd-heading { font-size: 2rem; }
  .wwd-panels  { padding: 2.5rem 0 1.5rem; }
}

@media (max-width: 768px) {
  .wwd-tab {
    font-size: 0.9rem;
    padding: 1rem 1rem;
    min-width: 130px;
  }

  .wwd-heading { font-size: 1.7rem; }

  .wwd-panels { padding: 2rem 0 1rem; }
}

@media (max-width: 480px) {
  .wwd-tab {
    /* font-size: 0.82rem; */
    font-size: 1rem;
    padding: 0.9rem 0.8rem;
    min-width: 110px;
  }

  .wwd-heading { font-size: 1.45rem; }
  .wwd-body    { font-size: 0.9rem; }
}

/* ----- WHO WE ARE SECTION ----- */
.who-we-are-section {
  padding: 2rem 0;
  background: #ffffff;
}

.section-label {
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-menu);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.section-heading .highlight {
  color: var(--brand-blue);
}

.section-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 2.5rem;
  font-family: var(--font-menu);
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-blue);
  color: #ffffff;
  border-radius: 50%;
  margin-top: 0.25rem;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  font-family: var(--font-menu);
}

/* Image Container */
.image-container {
  position: relative;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Stats Box */
.stats-box {
  position: absolute;
  bottom: -30px;
  left: 0;
  background: var(--brand-blue);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  display: flex;
  gap: 3rem;
  box-shadow: 0 8px 24px rgba(0, 50, 253, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  font-family: var(--font-menu);
}

/* Responsive */
@media (max-width: 1024px) {
  .who-we-are-section {
    padding: 3rem 0;
  }

  .section-heading {
    font-size: 2rem;
  }

  .stats-box {
    bottom: -25px;
    padding: 1.2rem 1.5rem;
    gap: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .who-we-are-section {
    padding: 2.5rem 0;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 0.95rem;
  }

  .features-list {
    gap: 1.5rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .stats-box {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .feature-item {
    gap: 1rem;
  }

  .feature-title {
    font-size: 0.95rem;
  }

  .stats-box {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item {
    text-align: left;
  }

  .stat-number {
    font-size: 1.3rem;
  }
}

/* ----- STATS SECTION ----- */
.stats-section {
  padding: 0rem 0;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stats-card {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-label {
  font-family: var(--font-menu);
  font-size: 0.8rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.stats-divider {
    width: 1px;
    height: 160px;
    background-color: #d8d8d8;
    margin: 0 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-card {
    min-width: 180px;
    padding: 1.5rem 1rem;
  }

  .stats-number {
    font-size: 2rem;
  }

  .stats-label {
    font-size: 0.75rem;
  }

  .stats-divider {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 2.5rem 0;
  }

  .stats-grid {
    flex-direction: column;
  }

  .stats-card {
    min-width: 100%;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e8e8e8;
  }

  .stats-card:last-child {
    border-bottom: none;
  }

  .stats-number {
    font-size: 2rem;
  }

  .stats-label {
    font-size: 0.8rem;
  }

  .stats-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 2rem 0;
  }

  .stats-card {
    padding: 1.2rem 1rem;
  }

  .stats-number {
    font-size: 1.8rem;
  }

  .stats-label {
    font-size: 0.75rem;
  }
}

/* ----- OUR SERVICES SECTION ----- */
.services-section {
  padding: 4rem 0;
  background: #ffffff;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.services-header .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  background-color: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-menu);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-header .btn:hover {
  background-color: #0025cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 50, 253, 0.2);
}

.services-header .btn svg {
  width: 18px;
  height: 18px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #e0e0e0;
  background: #ffffff;
}

.service-card {
  padding: 2rem 1.8rem;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-child(n + 4) {
  border-bottom: none;
}

.service-card:hover {
  background-color: #f9f9f9;
  box-shadow: inset 0 0 0 1px rgba(0, 50, 253, 0.05);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  line-height: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.service-description {
  font-family: var(--font-menu);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-menu);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.service-link:hover {
  gap: 1rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-section {
    padding: 3rem 0;
  }

  .services-header .section-heading {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.8rem 1.5rem;
  }

  .service-number {
    font-size: 1.8rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 2.5rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid #e0e0e0;
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card:nth-child(n + 3) {
    border-bottom: 1px solid #e0e0e0;
  }

  .service-card:nth-child(n + 5) {
    border-bottom: none;
  }

  .services-header .section-heading {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.5rem 1.2rem;
  }

  .service-number {
    font-size: 1.6rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 2rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.2rem 1rem;
    border-right: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }

  .service-card:last-child {
    border-bottom: none !important;
  }

  .services-header .section-heading {
    font-size: 1.5rem;
  }

  .service-number {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.8rem;
  }

  .services-header .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ----- TECHNOLOGIES SECTION ----- */
.technologies-section {
  padding: 4rem 0;
  background: #f8f9fc;
}

.technologies-header {
  margin-bottom: 3rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-menu);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.view-all-btn:hover {
  gap: 1rem;
}

.view-all-btn svg {
  width: 20px;
  height: 20px;
}

.technologies-header .section-heading {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.technologies-header .section-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  max-width: 800px;
}

/* Technologies Grid */
.technologies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.technology-card {
  position: relative;
  height: 280px;
 /*  background: #ffffff; */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.technology-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.technology-card > * {
  position: relative;
  z-index: 2;
}

.technology-card:hover {
  box-shadow: 0 12px 32px rgba(0, 50, 253, 0.12);
  border-color: var(--brand-blue);
}

/* Featured Card */
.featured-card {
  background: var(--brand-blue);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.featured-card .card-content {
  width: 100%;
}

.featured-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

/* Regular Card Styling */
.card-icon {
  width: 16px;
  height: 16px;
  background: var(--brand-blue);
  margin-bottom: 1.2rem;
  border-radius: 2px;
}

.technology-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

/* .card-hover {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: #ffffff;
      transform: translateY(100%);
      transition: transform 0.3s ease;
      border-top: 2px solid var(--brand-blue);
    }
 */

.card-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: var(--brand-blue);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid var(--brand-blue);
  height: 100%;
  /* border-radius: 0 0 8px 8px; */
  /* overflow: hidden; */
}

.hover-text {
  font-family: var(--font-menu);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 1rem 0;
}

.technology-card:hover .card-hover {
  transform: translateY(0);
}

.technology-card:hover .technology-title {
  transform: translateY(-280px);
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #fff;
  padding: 10px 20px;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-menu);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.featured-card .view-more-btn {
  color: var(--brand-blue);
}

.view-more-btn:hover {
  gap: 1rem;
}

.view-more-btn svg {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .technologies-section {
    padding: 3rem 0;
  }

  .technologies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .technologies-header .section-heading {
    font-size: 2rem;
  }

  .technology-card {
    height: 260px;
  }

  .featured-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .technologies-section {
    padding: 2.5rem 0;
  }

  .technologies-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .technologies-header .section-heading {
    font-size: 1.8rem;
  }

  .technologies-header .section-description {
    font-size: 0.95rem;
  }

  .technology-card {
    height: 240px;
  }

  .featured-text {
    font-size: 1.1rem;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .technologies-section {
    padding: 2rem 0;
  }

  .technologies-header .section-heading {
    font-size: 1.5rem;
  }

  .technologies-header .section-description {
    font-size: 0.9rem;
  }

  .technology-card {
    height: 220px;
    padding: 1.5rem;
  }

  .card-icon {
    width: 12px;
    height: 12px;
  }

  .technology-title {
    font-size: 1.1rem;
  }

  .featured-text {
    font-size: 1rem;
  }

  .hover-text {
    font-size: 0.85rem;
  }
}

/* Add vertical spacing between cards in who-we-are section */
.who-we-are-section .card {
  margin-bottom: 1.5rem;
}

/* ----- COMPANIES WE TRUST SECTION ----- */
.companies-section {
  padding: 4rem 0;
  background: #ffffff;
}

.companies-header {
  text-align: center;
  margin-bottom: 3rem;
}

.companies-header .section-label {
  margin-bottom: 1rem;
}

.companies-header .section-heading {
  font-size: 2.5rem;
}

/* Companies Grid */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 200px;
}

.company-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Row 1: 25% - 50% - 25% */
.company-card:nth-child(1) {
  grid-column: span 5;
}

.company-card:nth-child(2) {
  grid-column: span 10;
}

.company-card:nth-child(3) {
  grid-column: span 5;
}

/* Row 2: 20% - 30% - 50% */
.company-card:nth-child(4) {
  grid-column: span 4;
}

.company-card:nth-child(5) {
  grid-column: span 6;
}

.company-card:nth-child(6) {
  grid-column: span 10;
}

/* Stat Cards */
.stat-card {
  text-align: center;
  padding: 2rem;
  flex-direction: column;
  gap: 0.8rem;
}

.stat-card-blue {
  background: var(--brand-blue);
  color: #ffffff;
}

.stat-card-gray {
  background: #e8e8e8;
  color: #333333;
}

.stat-card-light-gray {
  background: #f0f0f0;
  color: #333333;
}

.stat-card-beige {
  background: #ffd89b;
  color: #333333;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.stat-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Testimonial Cards */
.testimonial-card {
  position: relative;
  padding: 1rem;
  overflow: hidden;
}

.testimonial-card-dark {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.testimonial-card:nth-child(2) {
  background-image: url('../images/home/insight.png');
  background-size: cover;
  background-position: top center;
}

.testimonial-card:nth-child(6) {
  background-image: url('../images/home/insight1.png');
  background-size: cover;
  background-position: top center;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 63%);
  z-index: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-text {
  font-family: var(--font-menu);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
  color: #ffffff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.author-title {
  font-family: var(--font-menu);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .companies-section {
    padding: 3rem 0;
  }

  .companies-grid {
    grid-template-columns: repeat(20, 1fr);
    gap: 1.2rem;
    grid-auto-rows: 180px;
  }

  .company-card:nth-child(1) {
    grid-column: span 5;
  }

  .company-card:nth-child(2) {
    grid-column: span 10;
  }

  .company-card:nth-child(3) {
    grid-column: span 5;
  }

  .company-card:nth-child(4) {
    grid-column: span 4;
  }

  .company-card:nth-child(5) {
    grid-column: span 6;
  }

  .company-card:nth-child(6) {
    grid-column: span 10;
  }

  .companies-header .section-heading {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .stat-title {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .companies-section {
    padding: 2.5rem 0;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-rows: 160px;
  }

  .company-card:nth-child(1),
  .company-card:nth-child(2),
  .company-card:nth-child(3),
  .company-card:nth-child(4),
  .company-card:nth-child(5),
  .company-card:nth-child(6) {
    grid-column: span 1;
  }

  .companies-header .section-heading {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-title {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
  }

  .author-name {
    font-size: 0.8rem;
  }

  .author-title {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .companies-section {
    padding: 2rem 0 12rem;
}

  .companies-grid {
    grid-auto-rows: 140px;
    gap: 0.8rem;
  }

  .companies-header .section-heading {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-title {
    font-size: 0.9rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    /* padding: 1.2rem; */
    padding:1rem 2rem 17rem;  }

  .testimonial-text {
    font-size: 0.8rem;
  }

  .author-avatar {
    width: 32px;
    height: 32px;
  }

  .author-name {
    font-size: 0.75rem;
  }

  .author-title {
    font-size: 0.65rem;
  }
}

/* ----- SECTORS OF FOCUS SECTION ----- */
.sectors-section {
  padding: 4rem 0;
  background: #ffffff;
}

.sectors-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}

.sectors-header .section-label {
  margin-bottom: 0.5rem;
}

.sectors-header .section-heading {
  font-size: 2.5rem;
  margin: 0;
}

/* Sectors Tabs Container */
.sectors-tabs-container {
  display: flex;
  gap: 3rem;
}

/* Tab List */
.sectors-tab-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 220px;
  border-right: 2px solid #e0e0e0;
}

.sector-tab {
  padding: 1.2rem 1.5rem;
  background: #ffffff;
  border: none;
  border-left: 4px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.sector-tab:hover {
  background: #f8f9fc;
  border-left-color: var(--brand-blue);
}

.sector-tab.active {
  background: var(--brand-blue);
  color: #ffffff;
  border-left-color: var(--brand-blue);
}

.sector-tab span {
  display: block;
}

/* Tab Content */
.sectors-tab-content {
  flex: 1;
  min-height: 500px;
}

.sector-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.sector-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sector-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.sector-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.sector-description {
  font-family: var(--font-menu);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  margin: 0 0 1.5rem 0;
}

/* Sector Tags */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f0f0f0;
  color: var(--brand-blue);
  font-family: var(--font-menu);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sectors-section {
    padding: 3rem 0;
  }

  .sectors-header {
    flex-direction: column;
  }

  .sectors-header .section-heading {
    font-size: 2rem;
  }

  .sectors-tabs-container {
    gap: 2rem;
  }

  .sectors-tab-list {
    min-width: 200px;
  }

  .sector-tab {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .sectors-tab-content {
    min-height: 450px;
  }

  .sector-image {
    height: 250px;
  }

  .sector-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .sectors-section {
    padding: 2.5rem 0;
  }

  .sectors-tabs-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .sectors-tab-list {
    min-width: 100%;
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
    flex-direction: row;
    overflow-x: auto;
  }

  .sector-tab {
    padding: 1rem;
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .sector-tab:hover {
    border-bottom-color: var(--brand-blue);
  }

  .sector-tab.active {
    border-bottom-color: var(--brand-blue);
    background: #ffffff;
    color: var(--brand-blue);
  }

  .sectors-tab-content {
    min-height: 400px;
  }

  .sector-image {
    height: 220px;
  }

  .sector-title {
    font-size: 1.4rem;
  }

  .sector-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .sectors-section {
    padding: 2rem 0;
  }

  .sectors-header .section-heading {
    font-size: 1.5rem;
  }

  .sectors-tab-list {
    gap: 0;
  }

  .sector-tab {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .sectors-tab-content {
    min-height: 350px;
  }

  .sector-image {
    height: 180px;
  }

  .sector-title {
    font-size: 1.2rem;
  }

  .sector-description {
    font-size: 0.85rem;
  }

  .sector-tags {
    gap: 0.6rem;
  }

  .tag {
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
  }
}

/* ----- COUNTER SECTION ----- */
.counter-section {
  padding: 4rem 0;
  background: #f8f9fc;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  margin: 0;
}

.counter-label {
  font-family: var(--font-menu);
  font-size: 0.85rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .counter-section {
    padding: 3rem 0;
  }

  .counter-grid {
    gap: 2rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .counter-section {
    padding: 2.5rem 0;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .counter-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .counter-section {
    padding: 2rem 0;
  }

  .counter-grid {
    gap: 1rem;
  }

  .counter-number {
    font-size: 2rem;
  }

  .counter-label {
    font-size: 0.8rem;
  }
}

/* ----- FAQ SECTION ----- */
.faq-section {
  padding: 4rem 0;
  background: #ffffff;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-sidebar .section-label {
  margin-bottom: 0.5rem;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color:#000;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

.faq-description {
  font-family: var(--font-menu);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid #0032fd;
}

.faq-item:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(0, 50, 253, 0.08);
}

.faq-header {
  width: 100%;
  padding: 1.5rem;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-header:hover {
  background: #f9f9f9;
}

.faq-header.active {
  background: var(--brand-blue);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.faq-header.active .faq-question {
  color: #ffffff;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--brand-blue);
  transition: transform 0.3s ease;
}

.faq-header.active .faq-icon {
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}

.faq-content.active {
  max-height: 500px;
}

.faq-content p {
    font-family: var(--font-menu);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #fefefe;
    padding: 1.5rem;
    margin: 0;
    background-color: #0032fd;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-container {
    gap: 2.5rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-header {
    padding: 1.2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2.5rem 0;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-description {
    font-size: 0.9rem;
  }

  .faq-header {
    padding: 1.2rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-content p {
    font-size: 0.9rem;
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2rem 0;
  }

  .faq-container {
    gap: 1.5rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-description {
    font-size: 0.85rem;
  }

  .faq-header {
    padding: 1rem;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-content p {
    font-size: 0.85rem;
    padding: 1rem;
  }
}

/* ----- CTA INNOVATION SECTION ----- */
.cta-innovation-section {
  /* background: #0a0a1a; */
  /* overflow: hidden; */
  position: relative;
  z-index: 2;
}

.cta-innovation-top {
  padding: 5rem 0 4rem;
  background: linear-gradient(300deg, transparent 20%, #0a0a1a 0%);
  width: 60%;
  position: absolute;
  overflow: visible;
  z-index: 121;
}

.cta-innovation-content {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  max-width: 600px;
}

.cta-innovation-accent {
  width: 4px;
  min-height: 80px;
  background: var(--brand-blue);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.cta-innovation-text {
  flex: 1;
}

.cta-innovation-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--brand-blue);
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.3px;
}

.cta-innovation-desc {
  font-family: var(--font-menu);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem 0;
}

.cta-innovation-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.8rem;
  background: transparent;
  color: var(--brand-blue);
  border: 1.5px solid var(--brand-blue);
  border-radius: 4px;
  font-family: var(--font-menu);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-innovation-btn:hover {
  background: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 50, 253, 0.3);
}

.cta-innovation-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.cta-innovation-btn:hover svg {
  transform: translate(2px, -2px);
}

.cta-innovation-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cta-innovation-image img {
  width: 100%;
  /* height: 100%; */
  height: 500px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
  border-top: 100px solid #0a0a1a;
}
@media(max-width: 768px) {
  .cta-innovation-image img {
    height: 100%;
  }
}


.cta-innovation-section:hover .cta-innovation-image img {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-innovation-top {
    padding: 4rem 0 3rem;
  }

  .cta-innovation-heading {
    font-size: 1.9rem;
  }

  .cta-innovation-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .cta-innovation-top {
    padding: 3rem 0 2.5rem;
  }

  .cta-innovation-heading {
    font-size: 1.6rem;
  }

  .cta-innovation-desc {
    font-size: 0.9rem;
  }

  .cta-innovation-image {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .cta-innovation-top {
    padding: 2.5rem 0 2rem;
  }

  .cta-innovation-content {
    gap: 1.2rem;
  }

  .cta-innovation-heading {
    font-size: 1.35rem;
  }

  .cta-innovation-desc {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .cta-innovation-accent {
    min-height: 60px;
  }

  .cta-innovation-image {
    height: 50px;
  }

  .cta-innovation-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ----- INSIGHTS & UPDATES SECTION ----- */
.insights-section {
  padding: 5rem 0;
  background: #ffffff;

}

.insights-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.insights-header .section-label {
  margin-bottom: 1rem;
}

.insights-header .section-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.insights-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  background-color: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-menu);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.insights-view-all-btn:hover {
  background-color: #0025cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 50, 253, 0.25);
  color: #ffffff;
}

.insights-view-all-btn svg {
  width: 18px;
  height: 18px;
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* Insight Card */
.insight-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #ebebeb;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 50, 253, 0.12);
  border-color: rgba(0, 50, 253, 0.15);
}

.insight-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Card Image */
.insight-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.insight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insight-card:hover .insight-image {
  transform: scale(1.05);
}

/* Card Body */
.insight-body {
  padding: 1.8rem 2rem 2rem;
}

.insight-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.35;
  margin: 0 0 1rem 0;
  transition: color 0.3s ease;
}

.insight-card:hover .insight-title {
  color: var(--brand-blue);
}

.insight-excerpt {
  font-family: var(--font-menu);
  font-size: 0.92rem;
  line-height: 1.7;
  color: #666666;
  margin: 0 0 1.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Meta */
.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid #f0f0f0;
}

.insight-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.insight-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.insight-author-name {
  font-family: var(--font-menu);
  font-size: 0.82rem;
  font-weight: 600;
  color: #333333;
}

.insight-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-menu);
  font-size: 0.8rem;
  color: #999999;
  font-weight: 500;
}

.insight-date svg {
  color: #999999;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .insights-section {
    padding: 3.5rem 0;
  }

  .insights-header .section-heading {
    font-size: 2rem;
  }

  .insights-grid {
    gap: 2rem;
  }

  .insight-image-wrapper {
    height: 220px;
  }

  .insight-body {
    padding: 1.5rem 1.5rem 1.8rem;
  }

  .insight-title {
    font-size: 1.15rem;
  }

  .insight-excerpt {
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  .insights-section {
    padding: 2.5rem 0;
  }

  .insights-header .section-heading {
    font-size: 1.8rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .insight-image-wrapper {
    height: 240px;
  }

  .insight-body {
    padding: 1.5rem;
  }

  .insight-title {
    font-size: 1.15rem;
  }

  .insight-excerpt {
    font-size: 0.88rem;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 480px) {
  .insights-section {
    padding: 2rem 0;
  }

  .insights-header .section-heading {
    font-size: 1.5rem;
  }

  .insights-grid {
    gap: 1.5rem;
  }

  .insight-image-wrapper {
    height: 200px;
  }

  .insight-body {
    padding: 1.2rem;
  }

  .insight-title {
    font-size: 1.05rem;
  }

  .insight-excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
  }

  .insight-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .insights-view-all-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}


/* ----- IP SUPPORT CTA BANNER ----- */
.ip-support-section {
  padding: 0;
  overflow: hidden;
}

/* Wrapper: photo fills the full background */
.ip-support-inner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: stretch;
  background: url('../images/home/home_bg.png') right center / cover no-repeat;
  background-color: #5a6a78; /* fallback if image missing */
}

/* Dark left content panel with diagonal right edge via clip-path */
.ip-support-content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 58%;
  background: #0d1117;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  padding: 5rem 4.5rem 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading with white left-bar accent */
.ip-support-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 1.4rem 0;
  padding-left: 1.1rem;
  border-left: 4px solid #ffffff;
}

/* "Specific Technology?" in brand blue */
.ip-support-highlight {
  color: var(--brand-blue);
  display: block;
}

/* Body copy */
.ip-support-body {
  font-family: var(--font-menu);
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem 0;
  max-width: 400px;
}

/* White outlined CTA button */
.ip-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.5rem;
    background: #ffffff;
    color: #0032fd;
    text-decoration: none;
    font-family: var(--font-menu);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    border: 2px solid #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
    width: fit-content;
}

.ip-support-btn:hover {
  background: transparent;
  color: #ffffff;
}

.ip-support-btn svg {
  flex-shrink: 0;
  stroke: currentColor;
  transition: stroke 0.2s ease;
}

/* Right image area — transparent so .ip-support-inner bg shows through */
.ip-support-image {
  flex: 1;
  /* purely decorative spacer; background comes from .ip-support-inner */
}

/* Responsive */
@media (max-width: 1199px) {
  .ip-support-content {
    width: 62%;
    padding: 3rem 4rem 3rem 3rem;
  }

  .ip-support-heading {
    font-size: 1.85rem;
  }
}

@media (max-width: 991px) {
  .ip-support-content {
    width: 68%;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    padding: 2.8rem 3.5rem 2.8rem 2.5rem;
  }

  .ip-support-heading {
    font-size: 1.65rem;
  }
}

@media (max-width: 767px) {
  .ip-support-inner {
    flex-direction: column;
    background-position: center top;
  }

  .ip-support-content {
    width: 100%;
    clip-path: none;
    padding: 2.5rem 1.8rem;
  }

  .ip-support-heading {
    font-size: 1.55rem;
  }

  .ip-support-body {
    font-size: 0.9rem;
    max-width: 100%;
  }

  /* Show the photo below the text on mobile */
  .ip-support-image {
    min-height: 220px;
    background: url('../images/ip-support-handshake.jpg') center / cover no-repeat;
    background-color: #5a6a78;
  }
}

@media (max-width: 480px) {
  .ip-support-content {
    padding: 2rem 1.4rem;
  }

  .ip-support-heading {
    font-size: 1.35rem;
    padding-left: 0.9rem;
  }

  .ip-support-body {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .ip-support-btn {
    font-size: 0.85rem;
    padding: 0.65rem 1.2rem;
  }

  .ip-support-image {
    min-height: 180px;
  }
}

/* ----- PAGE HERO BANNER (inner pages: flashfire-search, etc.) ----- */
.page-hero-section {
  position: relative;
  width: 100%;
  height: 340px;
  background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e12e7d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark overlay — matches the design's muted blue-grey tint */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 50, 0.55);
  z-index: 1;
}

/* Centered title + subtitle */
.page-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.page-hero-subtitle {
  font-family: var(--font-menu);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Breadcrumb strip pinned to bottom-left */
.page-hero-breadcrumb {
  position: absolute;
  bottom: 1.4rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-menu);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero-sep {
  opacity: 0.6;
  font-weight: 400;
}

.folder-title
{
  rotate: -90deg;
}

    p.mob_title {
        text-align: left;
        margin-top: 1rem;
        font-size: 1rem;
        color: #0031fa;
    }
/* Responsive */
@media (max-width: 768px) {

  .folder-title
{
  rotate: 0deg ;
}

    p.mob_title {
        text-align: left;
        margin-top: 1rem;
        font-size: 1.1rem;
        padding-left: 30px;
        color: #0031fa;
    }

  .page-hero-section {
    height: 260px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  .page-hero-breadcrumb {
    font-size: 0.7rem;
    left: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero-section {
    height: 240px;
  }

  .page-hero-title {
    font-size: 1.6rem;
  }

  .page-hero-subtitle {
    font-size: 0.7rem;
  }

  .page-hero-breadcrumb {
    font-size: 0.65rem;
    flex-wrap: wrap;
    gap: 0.3rem;
  }

 .who-we-are-section .card .card-body{
   padding:10px;
  }

  .who-we-are-section .card {
    margin-bottom: 0.5rem;
}
  .who-we-are-section .card p{
    margin-bottom: 0rem;
}

}

/* ----- CONTACT SECTION ----- */
 .contact-section {
  padding: 3.5rem 0 4rem;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.contact-card {
  border-radius: 30px;
  padding: 2rem;
}

/* .contact-office-card {
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(16, 33, 97, 0.08);
} */

.contact-form-card {
  background: #eff4ff;
  border: 1px solid rgba(0, 50, 253, 0.12);
  box-shadow: 0 28px 60px rgba(16, 33, 97, 0.08);
}

.contact-office-copy {
  margin: 1rem 0 2rem;
  color: #4f556a;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 560px;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info-icon {
  min-width: 46px;
  min-height: 46px;
  border-radius: 16px;
  background: rgba(0, 50, 253, 0.1);
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  font-size: 1.2rem;
}

.contact-info-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 0.15rem;
}

.contact-info-text {
  font-size: 0.95rem;
  color: #555f7a;
  line-height: 1.6;
}

.contact-form-header .section-heading {
  margin-top: 0.35rem;
  margin-bottom: 0.6rem;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 520px;
}

.contact-form-header .section-description {
  margin-bottom: 1.4rem;
  max-width: 520px;
  color: #475569;
}

.service-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.service-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.service-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 0.85rem;
  border-radius: 14px;
  border: 1px solid #dce1f0;
  background: #ffffff;
  color: #293145;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.service-option:hover {
  border-color: rgba(0, 50, 253, 0.5);
}

.service-option.active {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #ffffff;
}

.service-option input {
  display: none;
}

.contact-form .form-label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.required-star {
  color: #d92d20;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce1f0;
  background: #f9fbff;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  color: #28303f;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 50, 253, 0.12);
}

.contact-form .form-select {
  appearance: none;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.6rem;
  border: 1px solid rgba(13, 64, 255, 0.08);
}

.contact-submit-btn {
  width: 100%;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: none;
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-submit-btn:hover {
  background: #0216c0;
}

@media (max-width: 991.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* .contact-card {
    padding: 1.8rem;
  } */
}

@media (max-width: 767.98px) {
  .contact-section {
    /* padding: 2.5rem 0 3rem; */
     padding: 1rem 0 3rem;
  }

  .service-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .service-selector {
    grid-template-columns: 1fr;
  }

  /* .contact-card {
    padding: 1.6rem;
  } */

  .contact-form-header .section-heading {
    font-size: 1.6rem;
  }
}



.servicesSwiper{
    padding:20px 10px 70px;
}
/* Premium Navigation Buttons */
.swiper-button-next,
.swiper-button-prev{
    width:60px !important;
    height:60px !important;
    border-radius:50%;
    background:rgba(255,255,255,0.95);
    border:1px solid rgba(212,175,55,.35);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:all .35s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:20px !important;
    font-weight:700;
    color:#222;
    transition:.35s;
}

/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:linear-gradient(135deg,#D4AF37,#F5E7A3);
    border-color:#D4AF37;
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 18px 40px rgba(212,175,55,.35);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after{
    color:#fff;
}

/* Disabled State */
.swiper-button-disabled{
    opacity:.4;
    cursor:not-allowed;
}

/* Position */
.swiper-button-prev{
    left:5px;
}

.swiper-button-next{
    right:5px;
}

/* Responsive */
@media(max-width:768px){

    .swiper-button-next,
    .swiper-button-prev{
        width:48px;
        height:48px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:16px;
    }

    .swiper-button-prev{
        left:5px;
    }

    .swiper-button-next{
        right:5px;
    }

}
.swiper-pagination-bullet{
    width:12px;
    height:12px;
}

.swiper-pagination-bullet-active{
    background:#d4af37;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

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

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

.service-title{
    text-align:center;
    margin:15px 0;
}

.service-description{
    text-align:center;
    padding:0 20px 25px;
    color:#666;
}


/*----------------newly added styles----------*/

.confidentiality-section{
  padding-top:60px !important;

}

/* .stats-counter-two-grid{
  border-top:2px solid #f5f5f5 !important;
} */

@media(max-width:600px){
  .ip-support-inner {
    flex-direction: row;
    background-position: center top;
}

.cta-innovation-top {
    padding: 2rem 0 0rem;
    background: linear-gradient(300deg, transparent 20%, #0a0a1a 0%);
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 121;
}

.cta-innovation-section {
    background: #0a0a1a;
}

/* .company-card.testimonial-card.testimonial-card-dark{
   height:300px !important;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: normal;
    height: 85%;
} */

.testimonial-content:nth-child(1){
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-grid {
    
    gap: 0rem;
    
}

.about-page-content{
  margin-top:0px !important;
}
.who-we-are-section {
    padding-bottom:0px !important;
}

.foundational-content{
  margin-top:20px !important;
}

.philosophy-description{
  margin-bottom:10px !important;
}

.philosophy-section-content{
   margin-top:10px !important;
  margin-bottom:30px !important;
}

.trustworthy-sec-description{
  margin-top:0px !important;
}

.trustworthy-heading{
  margin-bottom:10px !important;
}

.technaus-trustworthy-desc{
  padding-top:20px !important;
}

.internal-efficiency-sec{
  margin-top:0px !important;
}

.pioneer-ip-search{
  margin-top:20px !important;
}

.pioneer-ip-description{
  margin-bottom:20px !important;
}

.pioneer-ip-image{
  margin-top:20px !important;
}

.customer-facing-sec{
  margin-top:0px !important;
}

.customer-facing-desc{
  margin-bottom:20px !important;
}

.trendscaper-label{
  margin-top:20px !important;
}

.trendscaper-desc{
  margin-bottom:20px !important;

}

.connectly-sec{
 margin-top:0px !important;
}

.connectly-sec-points{
  margin-top:20px !important;
}

.connectly-secure-section-image{
 margin-top:20px !important;
}

.why-ip-industry-desc{
  margin-top:20px !important;
}

.why-ip-industry-content{
  margin-bottom:20px !important;
}

.why-ip-industry-section{
  margin-bottom:30px !important;
}

.join-career-container{
  padding-left:0px !important;
  padding-right:0px !important;
}

.join-career-sec{
  padding-bottom:0px !important;
}

.technehaus-advantage-heading{
  margin-bottom:20px !important;
}

.technehaus-advantage-points{
  margin-top:20px !important;
}

.our-people-heading{
  margin-top:20px !important;
}

.technological-breadth-points{
 margin-top:20px !important;
}

.technological-breadth-image{
  margin-top:20px !important;
}

.high-yield-heading{
   margin-top:20px !important;
}

.high-yield-image{
   margin-top:20px !important;
}

.trust-numbers-desc{
  margin-bottom:20px !important;
}

.trust-numbers-heading{
 margin-bottom:20px !important;
}

.confidentiality-heading{
 margin-top:20px !important;
}

.confidentiality-image{
  margin-top:20px !important;
}

.what-we-solve-heading{
  margin-top:40px !important;
}

.what-we-solve-desc{
  margin-top:10px !important;
}

.what-we-do-section {
    padding-bottom: 20px !important;
}


.wwd-body {
    margin-bottom: 0px !important;
}

.what-sets-up-heading{
  margin-top:40px !important;
}

.what-sets-up-desc{
   margin-top:10px !important;
}

.wwd-tabs {
    display: flex;
    flex-direction: column;
}

.wwd-tab-nav {
   border-bottom: 1px solid #fff;
   
}

.beyond-prior-desc{
  margin-top:10px !important;
}

.iron-clad-patent-desc{
  margin-top:10px !important;
}

.illustrations-desc{
  margin-top:10px !important;
}

.streamlined-patent-filing-desc{
  margin-top:10px !important;
}

.invalidity-opposition-desc{
  margin-top:10px !important;
}

.validity-assessment-desc{
  margin-top:10px !important;
}

.freedom-to-operate-desc{
  margin-top:10px !important;
}

.evidence-of-use-desc{
  margin-top:10px !important;
}

.legal-status-alert-desc{
  margin-top:10px !important;
}

.claim-charting-desc{
  margin-top:10px !important;
}

.standard-essentiality-desc{
  margin-top:10px !important;
}

.claim-chart-desc{
  margin-top:10px !important;
}
.ip-monitization-sec{
  padding-left:10px !important;
  padding-right:10px !important;
}
.ip-monitization-row{
  margin-top:30px !important;
  margin-bottom:10px !important;
}

.ip-monitization-points{
  margin-top:10px !important;
}

.triz-driven-desc{
  margin-top:10px !important;
}

.strategic-scouting-desc{
  margin-top:10px !important;
}

.holistic-ip-desc{
  margin-top:10px !important;
}

.competitive-intelligence-desc{
  margin-top:10px !important;
}

.parent-docket-desc{
  margin-top:10px !important;
}

.idf-management-desc{
  margin-top:10px !important;
}

.office-actions-desc{
  margin-top:10px !important;
}

.contract-management-desc{
  margin-top:10px !important;
}

.patent-proof-desc{
  margin-top:10px !important;
}

.regulatory-check-desc{
  margin-top:10px !important;
}

.toxicology-desc{
  margin-top:10px !important;
}

.clinical-trial-desc{
  margin-top:10px !important;
}

.academic-literatures-desc{
  margin-top:10px !important;
}

.sentiment-desc{
  margin-top:10px !important;
}

.risk-assessment-desc{
  margin-top:10px !important;
}

.energy-heavy-industries-desc{
  margin-top:10px !important;
}

.energy-heavy-content{
  margin-bottom:10px !important;
}

.energy-heavy-industries-heading{
  margin-bottom:0px !important;
}

.energy-heavy-industries-card{
  margin-bottom:30px !important;
}

.life-sciences-desc{
   margin-top:0px !important;
}

.life-sciences-content{
  margin-bottom:10px !important;
}

.life-sciences-heading{
  margin-bottom:10px !important;
}
.life-sciences-card{
  margin-bottom:34px !important;
}

.semiconductor-hardware-desc{
   margin-top:0px !important;
}

.semiconductor-hardware-content{
  margin-bottom:10px !important;
}

.semiconductor-hardware-heading{
 margin-bottom:10px !important;
}

.semiconductor-hardware-card{
   margin-bottom:34px !important;
}

.automotive-mobility-heading{
   margin-bottom:10px !important;
}

.automotive-mobility-desc{
   margin-top:0px !important;
}

.automotive-mobility-content{
  margin-bottom:10px !important;
}

.automotive-mobility-card{
  margin-bottom:34px !important;
}

.home-first-heading{
  margin-bottom:0px !important;
}

.trifecta-advantage-heading{
  margin-top:30px !important;
}

.home-legal-image{
  margin-top:0px !important;
}

.core-differentiators-heading{
  margin-bottom:0px !important;
}

.technologies-header .header-top{
  gap:0px !important;
}

.technehaus-commands-heading{
  margin-top:0px !important;
}

.trusted-by-industry-heading{
   margin-bottom:0px !important;
}

.trusted-industry-serve-cont{
   margin-bottom:20px !important;
}

.insights-new-header{
   margin-bottom:20px !important;
}

.insights-section {
    padding-top: 10px !important;;
}

.custom-footer {
    padding-top: 2rem !important;  
}
}

.career-section{
    padding:80px 20px;
    background:#f7f9fc;
}

.career-container{
    max-width:1200px;
    margin:auto;
}

.career-header{
    text-align:center;
    margin-bottom:50px;
}

.career-header h2{
    font-size:40px;
    font-weight:700;
    color:#162447;
    margin:15px 0;
}

.career-header p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.career-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#e9f3ff;
    color:#0056d6;
    font-size:14px;
    font-weight:600;
}

.mt{
    margin-top:80px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    gap:25px;
}

.benefit-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #edf0f6;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#0056d6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.benefit-card h3{
    font-size:20px;
    color:#162447;
    margin-bottom:15px;
}

.benefit-card p{
    color:#666;
    line-height:1.7;
}

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

.job-category{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:5px solid #0056d6;
    transition:.35s;
}

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

.job-category h3{
    color:#162447;
    font-size:22px;
    margin-bottom:20px;
}

.job-category ul{
    list-style:none;
}

.job-category ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#555;
    line-height:1.6;
}

.job-category ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#0056d6;
    font-weight:bold;
}

@media(max-width:768px){

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

.benefits-grid,
.jobs-grid{
    grid-template-columns:1fr;
}

.benefit-card,
.job-category{
    padding:25px;
}

}