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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- PRELOADER OVERLAY STYLING --- */
#page-loader {
    position: fixed;
    inset: 0;
    background-color: #f5f7fb; /* Matches your website's background color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensures it stays on top of all other elements */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Class to hide the loader once the page loads */
#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* --- YOUR CUSTOM LOADER CSS --- */
.loader {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    font-size: 30px;
    background: radial-gradient(circle closest-side,#081d88 94%,#00000000) right/calc(200% - 1em) 100%;
    animation: l24 1s infinite alternate linear;
}

.loader::before {
    content: "Loading...";
    line-height: 1em;
    color: #0000;
    background: inherit;
    background-image: radial-gradient(circle closest-side,#fff 94%,#000);
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes l24 {
    100% { background-position: left; }
}
/* TOP INFORMATION BAR*/

.top-bar {
    background-color: #0b1f4b;
    color: white;
    width: 100%;
    font-size: 13px;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;

    color: white;
    text-decoration: none;

    white-space: nowrap;
}

.top-bar-item svg,
.top-bar svg {
    width: 17px;
    height: 17px;
    max-width: 17px;
    max-height: 17px;
    flex-shrink: 0;
}

.top-bar-left .top-bar-item svg {
    color: #66c7ff;
}

.top-bar-right .top-bar-item svg {
    color: #66c7ff;
}

/* Phone and email hover */

.top-bar-right .top-bar-item {
    transition: 0.3s ease;
}

.top-bar-right .top-bar-item:hover {
    color: #66c7ff;
}


/* SOCIAL MEDIA*/

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-decoration: none;

    border-radius: 50%;

    transition: 0.3s ease;
}

.social-links svg {
    width: 16px;
    height: 16px;

    fill: currentColor;
}

.social-links a:hover {
    background-color: #66c7ff;
    color: #0b1f4b;
    transform: translateY(-2px);
}


/* MOBILE*/

@media (max-width: 768px) {

    .top-bar-content {
        justify-content: center;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-item {
        font-size: 12px;
    }

    .social-links {
        gap: 4px;
    }

}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f7fb;
    color: #222;
}

/* =========================================================
   SPLIT TWO-TONE NAVBAR (NAV-09)
   ========================================================= */
.nav-09,
.nav-09 *,
.nav-09 *::before,
.nav-09 *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-09 {
  --left-bg: #ffffff;
  --right-bg: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  --left-text: #1e293b;
  --right-text: #ffffff;
  --accent: #0284c7;
  font-family: 'Space Grotesk', 'Outfit', -apple-system, sans-serif;
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
  background: var(--left-bg);
  border-bottom: 1px solid #e2e8f0;
}

.nav-09__left {
  background: var(--left-bg);
  display: flex;
  align-items: center;
  padding: 0 2rem 0 2.5rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
  min-width: 220px;
}

.nav-09__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-09__logo-img {
  height: 54px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
}

.nav-09__center {
  background: var(--left-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-09__links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}

.nav-09__links a {
  display: block;
  color: #334155;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.55rem 1.05rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-09__links a:hover {
  color: var(--accent);
  background: #f0f9ff;
}

.nav-09__links a.is-active,
.nav-09__links a.active {
  color: var(--accent);
  font-weight: 700;
  background: #e0f2fe;
}

.nav-09__right {
  background: var(--right-bg);
  display: flex;
  align-items: center;
  padding: 0 2rem 0 2.5rem;
  gap: 0.75rem;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%);
}

.nav-09__btn {
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-09__btn--ghost {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.nav-09__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.35);
}

.nav-09__btn--dark {
  background: #071534;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.nav-09__btn--dark:hover {
  background: #0f244e;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.4);
  color: #ffffff;
}

/* Mobile Split Two-Tone */
#nav-09-toggle {
  display: none;
}

.nav-09__mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  height: 72px;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-09__mobile-logo {
  display: flex;
  align-items: center;
}

.nav-09__mobile-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-09__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 8px;
}

.nav-09__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

#nav-09-toggle:checked ~ .nav-09__mobile-bar .nav-09__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#nav-09-toggle:checked ~ .nav-09__mobile-bar .nav-09__hamburger span:nth-child(2) {
  opacity: 0;
}

#nav-09-toggle:checked ~ .nav-09__mobile-bar .nav-09__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-09__mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 0.75rem 1.5rem 1.25rem;
  position: sticky;
  top: 72px;
  z-index: 999;
  border-bottom: 3px solid #0284c7;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.nav-09__mobile-menu a {
  display: block;
  color: #334155;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.7rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-09__mobile-menu a:hover,
.nav-09__mobile-menu a.is-active {
  color: #0284c7;
  background: #f0f9ff;
  padding-left: 1rem;
}

.nav-09__mobile-menu a.nav-09__mobile-cta {
  color: #0284c7;
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.85rem;
}

#nav-09-toggle:checked ~ .nav-09__mobile-menu {
  display: flex;
}

@media (max-width: 1100px) {
  .nav-09 {
    display: none !important;
  }
  .nav-09__mobile-bar {
    display: flex !important;
  }
}

.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}



.hero-container {
    position: relative;
    z-index: 2;

    max-width: 900px;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(5, 30, 80, 0.927),
        rgba(13, 39, 84, 0.69),
        rgba(10, 50, 120, 0.568)
    );

    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    position: absolute;
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    animation: heroSlideshow 16s infinite;
}

.hero-background img:nth-child(1) {
    animation-delay: 0s;
}

.hero-background img:nth-child(2) {
    animation-delay: 4s;
}

.hero-background img:nth-child(3) {
    animation-delay: 8s;
}

.hero-background img:nth-child(4) {
    animation-delay: 12s;
}

@keyframes heroSlideshow {

    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.hero-title1 {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #00d2ff;
    background: linear-gradient(135deg, #00f2fe 0%, #38bdf8 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    text-align: left;
}

.hero-title2 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    text-align: left;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.typewriter-cursor {
    display: inline-block;
    width: 4px;
    height: 0.85em;
    background-color: #38bdf8;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
    animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .hero-title1 {
        font-size: 56px;
    }
    .hero-title2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title1 {
        font-size: 42px;
    }
    .hero-title2 {
        font-size: 35px;
    }
    .typewriter-cursor {
        width: 3.5px;
        height: 0.8em;
    }
}

@media (max-width: 480px) {
    .hero-title1 {
        font-size: 34px;
    }
    .hero-title2 {
        font-size: 28px;
    }
    .typewriter-cursor {
        width: 3px;
    }
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 18px;
}

.hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #e2e8f0;
    max-width: 800px;
    margin: 10px 0 24px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-button-services {
    display: inline-block;
    padding: 14px 25px;

    background-color: #150d6b;
    color: white;

    text-decoration: none;
    font-weight: 600;

    border-radius: 8px;

    transition: 0.3s;
}

.hero-button-services:hover {
    background-color: #b348a3;
    transform: translateY(-3px);
}

.hero-button-contact {
    display: inline-block;
    padding: 14px 25px;

    background-color: transparent;
    color: white;

    text-decoration: none;
    font-weight: 600;

    border: 2px solid #150d69;
    border-radius: 8px;

    transition: 0.3s;
}

.hero-button-contact:hover {
    background-color: #170e73;
    color: white;
    transform: translateY(-3px);
}

/* CONTACT SECTION*/
.section-padding {
    padding: 80px 20px;
    background-color: #359aff1b;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;

    align-items: stretch;
}


/* CONTACT INFO PANEL*/

.contact-info-panel {
    background: linear-gradient(
        145deg,
        #0b1f4b,
        #1d1296
    );

    color: white;
    padding: 45px 40px;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 35px;
}


/* CONTACT DETAILS*/

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

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 18px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    transition: 0.3s ease;
}

.contact-detail-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(5px);
}

.contact-detail-card svg {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    color: #66c7ff;
}

.contact-detail-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-detail-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);

    margin: 0;
}


/* FORM PANEL */

.contact-form-panel {
    background-color: white;

    padding: 45px 40px;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    border: 1px solid #e5e8ef;
}

/* FORM ROW*/
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-row .form-group {
    margin-bottom: 0;
}

/* FORM LABEL*/
.form-label {
    display: block;

    font-size: 14px;
    font-weight: 600;

    color: #222;

    margin-bottom: 8px;
}

/* INPUTS*/
.form-control {
    width: 100%;

    padding: 13px 15px;

    font-family: inherit;
    font-size: 15px;

    color: #222;
    background-color: #f8f9fc;

    border: 1px solid #d9deea;
    border-radius: 8px;

    outline: none;

    transition: 0.3s ease;
}

.form-control:focus {
    background-color: white;

    border-color: #1d1296;

    box-shadow: 0 0 0 3px rgba(29, 18, 150, 0.1);
}

/* TEXTAREA*/
textarea.form-control {
    min-height: 140px;

    resize: vertical;
}

/* SUBMIT BUTTON*/
#btn-submit-form {
    width: 100%;
    padding: 1rem;

    border: none;
    border-radius: 8px;

    background-color: #19c235;
    color: white;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

#btn-submit-form:hover {
    background-color: #25792f;
    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(29, 18, 150, 0.2);
}

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

    .section-padding {
        padding: 60px 20px;
    }

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

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 25px;
    }

    .contact-info-title {
        font-size: 28px;
    }

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

    .form-group-row .form-group {
        margin-bottom: 20px;
    }
}
/*Footer*/
footer {
    background-color: #0b1f4b;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px), 
        radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, #0b1f4b 1.5px),
        linear-gradient(135deg, #0b1f4b 0%, #1d1296 100%);
    
    background-size: 20px 20px; 
    
    background-position: 0 0, 10px 10px;
    
    color: white;
    padding-top: 60px;
    margin-top: 50px;
}

 .footer-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
 }

 .footer-col{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
 }

.footer-logo{
    height: 60px;
    width: auto ;
    object-fit: contain;

}
 
 .footer-slogan {
    font-size: 14px;
    line-height: 1.6;
    color: #b5c4df;
 }

  .footer-col svg{
    width: 24px;
    height: 24px;
    fill: #66c7ff;
    transform: 0.3s ease;
}

.footer-col svg:hover{
    fill: #ffffff;
    transform: scale(1.1);
}

.footer-social {
    margin-top: 5px;
    gap: 20px;
}

 .footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #66c7ff;
 }

 .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
 }

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

 .footer-links a  :hover {
    color: #66c7ff;
    padding-left: 5px;
    text-decoration: underline;
 }

 .footer-contact-heading {
    color: #66c7ff;
    font-size: 18px;
 }

 .footer-contact-heading p {
    color: #dee4ea;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
 }

 .footer-text{
    color: #719dc9;
    font-size: 14px;
    line-height: 1;
 }

 .footer-bottom {
    background-color: #071534;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #8fa3cc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 @media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }
 }

 /*--------------About Page--------------------------------------*/

.about-hero{
    position: relative;
    background-image: url("./lab images/about-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
}

/* Dark overlay */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 30, 80, 0.927),
        rgba(13, 39, 84, 0.69),
        rgba(10, 50, 120, 0.568)
    );
}
/* Keep all text above overlay */
.about-hero > * {
    position: relative;
    z-index: 2;
}

.about-hero .breadcrumb {
    font-size: 14px;
    color: #dbeafe;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.about-hero h3 {
    font-size: 20px;
    font-weight: 500;
    color: #38bdf8; 
    margin-bottom: 20px;
}

.about-hero p {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 60px 15px;
        min-height: 300px;
        background-position: 60% center;
    }

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

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

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

/*-----------Who we are section----------*/
.who-we-are {
    padding: 80px 20px;
    background-color: #359aff1b;
    text-align: center;
}

.who-we-are-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #204fb6;
    margin-bottom: 10px;
    font-weight: 600;
}

.who-we-are h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.who-we-are p{
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.pillar-card {
    background: #0230fc1b;
    padding: 35px 25px;
    border-radius: 13px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.pillar-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .who-we-are {
        padding: 50px 15px;
    }

    .who-we-are h3 {
        font-size: 26px;
    }

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

/*-----------Our Expertise section----------*/
.expertise-section {
    padding: 80px 20px;
    background-color: #ffffff; 
    text-align: center;
}

.expertise-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-section h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #204fb6; 
    margin-bottom: 10px;
    font-weight: 600;
}

.expertise-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
}


.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.expertise-section .card {
    background: #f8fafc;
    padding: 35px 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0; 
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.expertise-section .card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
    border-color: #204fb6; /* Highlights border with brand blue on hover */
}

.expertise-section .card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.expertise-section .card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media screen and (max-width: 768px) {
    .expertise-section {
        padding: 50px 15px;
    }

    .expertise-section h3 {
        font-size: 26px;
    }

    .expertise-grid {
        grid-template-columns: 1fr; /* 1 column (stacked) on mobile phones */
    }
}

/*---------------Team section---------------*/
.team-section {
    padding: 80px 20px;
    background-color: #359aff1b;
    text-align: center;
    color: #ffffff;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #38bdf8;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #202f6b;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    margin-top: 30px;
}

.pc-04__card {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #15151d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
    text-align: left;
}

.pc-04__portrait {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

/* 
  to add the image later swap out the 
  .pc-04__pfp div for an <img> tag like this:
  <img src="./path-to-photo.jpg" alt="Name" class="pc-04__img">
  And add CSS: .pc-04__img { width: 100%; height: 100%; object-fit: cover; }
*/
.pc-04__pfp {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, 0.92);
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.pc-04__card:hover .pc-04__pfp {
    transform: scale(1.08);
}

.pc-04__body {
    padding: 20px 22px;
    text-align: center;
}

.pc-04__body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.pc-04__body p {
    color: #38bdf8;
    font-size: 0.88rem;
    margin: 0;
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .team-section {
        padding: 50px 15px;
    }

    .team-section h3 {
        font-size: 26px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
/*------stripe-about-page-------*/
.contact-strip {
    width: 100%;
    background: linear-gradient(135deg, #071530 0%, #0645a8 100%);
    padding: 12px 24px;
    box-sizing: border-box;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.contact-strip-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1.2;
}

.contact-intro h2 {
    margin: 0 0 2px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.contact-intro p {
    margin: 0;
    max-width: 380px;
    color: #dbeafe;
    font-size: 12px;
    line-height: 1.35;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.flask-icon {
    font-size: 17px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item span {
    display: block;
    margin-bottom: 1px;
    color: #bfdbfe;
    font-size: 11px;
    font-weight: 500;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
}

.contact-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-button {
    padding: 9px 18px;
    background: #ffffff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0645a8;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    box-sizing: border-box;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.contact-button .arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.contact-button:hover {
    background: #38bdf8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.contact-button:hover .arrow {
    transform: translateX(3px);
}

.contact-button:hover .arrow {
    transform: translateX(5px);
}

@media screen and (max-width: 1100px) {

    .contact-strip-container {
        gap: 20px;
    }

    .contact-intro h2 {
        font-size: 23px;
    }

    .contact-intro p {
        font-size: 13px;
    }

    .contact-item {
        min-width: auto;
    }

    .contact-item strong {
        font-size: 15px;
    }

    .contact-button {
        min-width: 180px;
    }

}

@media screen and (max-width: 768px) {

    .contact-strip {
        padding: 40px 20px;
    }

    .contact-strip-container {
        flex-direction: column;
        align-items: stretch;

        gap: 25px;
    }

    .contact-intro {
        flex: none;

        align-items: flex-start;
    }

    .contact-intro h2 {
        font-size: 25px;
    }

    .contact-intro p {
        max-width: none;
    }

    .contact-item {
        width: 100%;
    }

    .contact-item strong {
        white-space: normal;
    }

    .contact-divider {
        width: 100%;
        height: 1px;
    }

    .contact-button {
        width: 100%;
    }

}

/*-------------Services page---------------*/
/* =====================================================
   SERVICES HERO
===================================================== */

.services-hero {
    min-height: 360px;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
    background: #eef5ff;
    overflow: hidden;
}

.services-hero-content {
    padding: 60px 40px 60px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.breadcrumb {
    font-size: 13px;
    color: #334155;
    margin-bottom: 20px;
}

.services-hero h1 {
    font-size: 46px;
    line-height: 1.1;
    color: #071a41;
    margin: 0 0 12px;
}

.services-hero h3 {
    color: #164da3;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px;
}

.services-hero p {
    max-width: 550px;
    color: #334155;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.services-hero-image {
    position: relative;
    min-height: 360px;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =====================================================
   COMMON SECTION HEADING
===================================================== */

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.section-heading span {
    width: 25px;
    height: 2px;
    background: #164da3;
}

.section-heading h2 {
    margin: 0;
    font-size: 17px;
    color: #123f8c;
    text-transform: uppercase;
}


/* =====================================================
   CORE SERVICES
===================================================== */

.core-services {
    padding: 30px 4% 50px;
    background: #ffffff;
}

.services-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;

    padding: 22px 18px;

    min-height: 260px;

    border: 1px solid #dce5f2;
    border-radius: 9px;

    background: #ffffff;

    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

    box-shadow:
        0 12px 25px rgba(15, 23, 42, 0.10);
}

.service-icon {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}


/* Icon backgrounds */

.food-icon {
    color: #43a047;
    background: #eaf7ec;
}

.drug-icon {
    color: #2873ca;
    background: #eaf2ff;
}

.pharma-icon {
    color: #8d52c7;
    background: #f3eaff;
}

.leather-icon {
    color: #8a5a3c;
    background: #f6ece5;
}

.environment-icon {
    color: #3a9b55;
    background: #eaf7ed;
}

.consultancy-icon {
    color: #1585a5;
    background: #e8f6fa;
}

.training-icon {
    color: #ef791b;
    background: #fff0e3;
}

.consumable-icon {
    color: #e25575;
    background: #fdebef;
}


.service-card h3 {
    font-size: 17px;
    color: #111827;
    margin: 0 0 14px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.service-card li {
    position: relative;

    padding-left: 17px;

    font-size: 12px;
    color: #475569;

    margin-bottom: 8px;
}

.service-card li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 6px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #1552a3;
}

.service-card a {
    color: #1552a3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.service-card a span {
    margin-left: 7px;
    font-size: 17px;
}


/* =====================================================
   WHY CHOOSE
===================================================== */

.why-choose {
    margin: 0 4% 35px;

    padding: 20px 25px 25px;

    border-radius: 9px;

    background: #f3f7fd;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    max-width: 1200px;
    margin: auto;
}

.why-item {
    text-align: center;

    padding: 10px 15px;

    border-right: 1px solid #d7e1ef;
}

.why-item:last-child {
    border-right: none;
}

.why-item svg {
    width: 38px;
    height: 38px;

    color: #174e9e;

    margin-bottom: 10px;
}

.why-item h3 {
    font-size: 13px;
    line-height: 1.4;

    margin: 0;

    color: #17233b;
}

.why-item p {
    margin: 2px 0 0;

    font-size: 12px;
    color: #475569;
}


/* =====================================================
   TESTING PROCESS
===================================================== */

.testing-process {
    padding: 5px 4% 45px;
}

.process-grid {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.process-item {
    width: 150px;
    text-align: center;
}

.process-icon {
    width: 64px;
    height: 64px;

    border: 1px solid #9eb7d8;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 10px;
}

.process-icon svg {
    width: 30px;
    height: 30px;
    color: #164da3;
}

.process-item h3 {
    font-size: 13px;
    color: #173b75;

    margin: 0 0 7px;
}

.process-item p {
    font-size: 11px;
    line-height: 1.5;

    color: #64748b;

    margin: 0;
}

.process-arrow {
    color: #1a5bb5;
    font-size: 24px;

    margin: 20px 12px 0;
}


/* =====================================================
   INDUSTRIES
===================================================== */

.industries-section {
    padding: 10px 4% 30px;
}

.industries-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(8, 1fr);

    border: 1px solid #dce5f2;
    border-radius: 8px;

    overflow: hidden;
}

.industry-item {
    min-height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-right: 1px solid #dce5f2;

    text-align: center;

    padding: 10px;
}

.industry-item:last-child {
    border-right: none;
}

.industry-item svg {
    width: 32px;
    height: 32px;

    color: #1753a3;
}

.industry-item span {
    font-size: 11px;
    color: #334155;
}


/* =====================================================
   CTA
===================================================== */

.services-cta {
    max-width: 1200px;

    margin: 0 auto 35px;

    padding: 25px 35px;

    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #063b91,
            #084eae
        );

    color: #ffffff;
}

.cta-content h2 {
    margin: 0 0 8px;

    font-size: 22px;
}

.cta-content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.5;

    color: #dbeafe;

    max-width: 600px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    background: #ffffff;

    color: #164da3;

    border-radius: 5px;

    text-decoration: none;

    font-weight: 600;

    white-space: nowrap;
}

.cta-button svg {
    width: 20px;
    height: 20px;
}


/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 992px) {

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

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-item {
        border-bottom: 1px solid #d7e1ef;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-item:nth-child(4) {
        border-right: none;
    }

    .industry-item:nth-child(-n+4) {
        border-bottom: 1px solid #dce5f2;
    }

}


@media screen and (max-width: 768px) {

    /* HERO */

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

    .services-hero-content {
        padding: 45px 25px;
    }

    .services-hero-image {
        min-height: 250px;
        order: -1;
    }

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


    /* SERVICES */

    .core-services {
        padding: 35px 15px;
    }

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

    .service-card {
        min-height: auto;
    }


    /* WHY */

    .why-choose {
        margin: 0 15px 35px;
        padding: 20px 15px;
    }

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

    .why-item {
        border-right: none;
        border-bottom: 1px solid #d7e1ef;
        padding: 20px 10px;
    }

    .why-item:nth-child(odd) {
        border-right: 1px solid #d7e1ef;
    }

    .why-item:nth-last-child(-n+2) {
        border-bottom: none;
    }


    /* PROCESS */

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .process-item {
        width: 100%;
        max-width: 280px;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 5px;
    }


    /* INDUSTRIES */

    .industries-section {
        padding: 10px 15px 30px;
    }

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

    .industry-item {
        border-right: 1px solid #dce5f2;
        border-bottom: 1px solid #dce5f2;
    }

    .industry-item:nth-child(even) {
        border-right: none;
    }

    .industry-item:nth-last-child(-n+2) {
        border-bottom: none;
    }


    /* CTA */

    .services-cta {
        margin: 0 15px 30px;

        padding: 25px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

}


@media screen and (max-width: 480px) {

    .services-hero h1 {
        font-size: 31px;
    }

    .services-hero h3 {
        font-size: 16px;
    }

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

    .section-heading h2 {
        font-size: 14px;
    }

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

    .why-item,
    .why-item:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid #d7e1ef;
    }

    .why-item:last-child {
        border-bottom: none;
    }

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

}
/* =================================
   SERVICE INFO POPUP
================================= */

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 20, 45, 0.65);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    backdrop-filter: blur(5px);
}


/* SHOW POPUP */

.service-modal.active {
    opacity: 1;
    visibility: visible;
}


/* POPUP CARD */

.service-modal-card {
    position: relative;

    width: 100%;
    max-width: 520px;

    background: #ffffff;

    border-radius: 18px;

    padding: 40px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);

    transform: translateY(25px) scale(0.96);

    transition: transform 0.3s ease;
}


/* CARD ANIMATION */

.service-modal.active .service-modal-card {
    transform: translateY(0) scale(1);
}


/* CLOSE BUTTON */

.modal-close {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #eef4ff;

    color: #164da8;

    font-size: 27px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #164da8;
    color: #ffffff;
}


/* ICON */

.modal-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;

    color: #164da8;

    border-radius: 50%;

    margin-bottom: 20px;
}

.modal-icon svg {
    width: 32px;
    height: 32px;
}


/* TITLE */

.service-modal-card h2 {
    margin: 0 0 12px;

    font-size: 28px;

    color: #0f2447;
}


/* DESCRIPTION */

.modal-description {
    margin: 0 0 25px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}


/* SERVICE LIST */

.modal-services {
    background: #f6f9ff;

    border-radius: 12px;

    padding: 20px;

    margin-bottom: 25px;
}

.modal-services h4 {
    margin: 0 0 14px;

    font-size: 16px;

    color: #0f2447;
}

.modal-services ul {
    list-style: none;

    padding: 0;
    margin: 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.modal-services li {
    position: relative;

    padding-left: 22px;

    font-size: 14px;

    color: #475569;

    line-height: 1.5;
}

.modal-services li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #164da8;
}


/* CONTACT BUTTON */

.modal-contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 13px 22px;

    background: #164da8;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 600;

    transition: background 0.3s ease;
}

.modal-contact-btn:hover {
    background: #0d3782;
}

.modal-contact-btn span {
    font-size: 18px;
}


/* =================================
   MOBILE POPUP
================================= */

@media screen and (max-width: 600px) {

    .service-modal {
        padding: 15px;
    }

    .service-modal-card {
        padding: 30px 22px;

        max-height: 90vh;

        overflow-y: auto;

        border-radius: 15px;
    }

    .service-modal-card h2 {
        font-size: 24px;
    }

    .modal-description {
        font-size: 14px;
    }

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

    .modal-icon {
        width: 52px;
        height: 52px;
    }

    .modal-icon svg {
        width: 28px;
        height: 28px;
    }

    .modal-contact-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

/* =========================
   SERVICES HERO
========================= */

.services-hero {
    display: flex;
    align-items: center;
    min-height: 380px;
    background: #eef5ff;
    overflow: hidden;
}

.services-hero-content {
    width: 45%;
    padding: 60px 40px 60px 5%;
    position: relative;
    z-index: 2;
}

.services-hero .breadcrumb {
    font-size: 13px;
    color: #334155;
    margin-bottom: 18px;
}

.services-hero h1 {
    font-size: 44px;
    line-height: 1.1;
    color: #0f2447;
    margin: 0 0 12px;
    font-weight: 700;
}

.services-hero h3 {
    font-size: 18px;
    font-weight: 500;
    color: #164da8;
    margin: 0 0 20px;
}

.services-hero p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    margin: 0;
}

.services-hero-image {
    width: 55%;
    height: 380px;
    overflow: hidden;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 768px) {

    .services-hero {
        flex-direction: column;
        min-height: auto;
    }

    .services-hero-content {
        width: 100%;
        box-sizing: border-box;
        padding: 45px 20px 30px;
        text-align: center;
    }

    .services-hero h1 {
        font-size: 34px;
    }

    .services-hero h3 {
        font-size: 17px;
    }

    .services-hero p {
        font-size: 14px;
        margin: 0 auto;
    }

    .services-hero-image {
        width: 100%;
        height: 260px;
    }

}

/* =========================================================
   TASK & TESTING PAGE STYLES
   ========================================================= */

.testing-page-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TESTING HERO --- */
.testing-hero {
    display: flex;
    align-items: center;
    min-height: 400px;
    background: linear-gradient(135deg, #071530 0%, #0b224d 50%, #0e2a5c 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.testing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.testing-hero-content {
    width: 48%;
    padding: 60px 40px 60px 6%;
    position: relative;
    z-index: 2;
}

.testing-hero .breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testing-hero .breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.testing-hero .breadcrumb a:hover {
    color: #38bdf8;
}

.testing-hero .breadcrumb svg {
    width: 14px;
    height: 14px;
}

.testing-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.testing-hero h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #38bdf8;
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}

.testing-hero p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

.testing-hero-image {
    width: 52%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.testing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

/* --- SECTION HEADERS --- */
.testing-section-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.testing-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0b327b;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.testing-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #0284c7;
    border-radius: 2px;
}

/* --- SECTION 1: KEY TESTING DOMAINS --- */
.testing-domains-section {
    padding: 60px 0 50px;
    background-color: #ffffff;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.domain-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 12px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-5px);
    border-color: #0284c7;
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.12);
}

.domain-img-wrap {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
}

.domain-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.domain-card:hover .domain-img-wrap img {
    transform: scale(1.08);
}

.domain-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}

/* --- SECTION 2: DETAILED TASKS WE PERFORM --- */
.detailed-tasks-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.detailed-tasks-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.detailed-task-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.detailed-task-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
    border-color: #cbd5e1;
}

.detailed-task-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #e2e8f0;
    position: relative;
}

.detailed-task-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.detailed-task-card:hover .detailed-task-img img {
    transform: scale(1.06);
}

.detailed-task-body {
    padding: 16px 14px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.detailed-task-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #f1f5f9;
}

.task-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.task-checklist li {
    font-size: 11.8px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.35;
    font-weight: 500;
}

.task-checklist li svg {
    width: 13px;
    height: 13px;
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- SECTION 3: TYPES OF ANALYSIS / TECHNIQUES WE USE --- */
.techniques-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.technique-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(11, 31, 75, 0.08);
    border-color: #93c5fd;
}

.technique-img {
    height: 85px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 4px;
}

.technique-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.technique-card:hover .technique-img img {
    transform: scale(1.08);
}

.technique-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 6px;
}

.technique-card p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* --- SECTION 4: OUR TESTING PROCESS --- */
.testing-process-section {
    padding: 60px 0 70px;
    background: #f8fafc;
}

.process-stepper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
}

/* Continuous connecting line behind badges */
.process-stepper::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(to right, #0284c7 0, #0284c7 6px, transparent 6px, transparent 12px);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-badge-wrap {
    position: relative;
    margin-bottom: 14px;
}

.process-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.08);
}

.process-step-icon svg {
    width: 30px;
    height: 30px;
}

.process-step-number {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #0b1f4b;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.process-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f2447;
    margin: 10px 0 6px;
}

.process-step p {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
    padding: 0 4px;
}

/* --- SECTION 5: CTA BANNER --- */
.testing-cta-banner {
    background: linear-gradient(135deg, #071530 0%, #0b224d 60%, #10336d 100%);
    border-radius: 16px;
    padding: 28px 40px;
    margin: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(11, 31, 75, 0.2);
    position: relative;
    overflow: hidden;
}

.testing-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.testing-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testing-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
}

.testing-cta-icon svg {
    width: 28px;
    height: 28px;
}

.testing-cta-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px;
}

.testing-cta-text p {
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0;
}

.testing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: transparent;
    border: 1.5px solid #38bdf8;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.testing-cta-btn:hover {
    background: #38bdf8;
    color: #071530;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

/* --- RESPONSIVE BREAKPOINTS FOR TESTING PAGE --- */
@media (max-width: 1200px) {
    .domains-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .detailed-tasks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .techniques-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .process-stepper {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 36px;
    }
    .process-stepper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .testing-hero {
        flex-direction: column;
        min-height: auto;
    }
    .testing-hero-content {
        width: 100%;
        padding: 45px 20px 30px;
        text-align: center;
    }
    .testing-hero .breadcrumb {
        justify-content: center;
    }
    .testing-hero h1 {
        font-size: 32px;
    }
    .testing-hero p {
        margin: 0 auto;
    }
    .testing-hero-image {
        width: 100%;
        height: 240px;
    }
    .testing-hero-image img {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detailed-tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-stepper {
        grid-template-columns: repeat(2, 1fr);
    }
    .testing-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .testing-cta-left {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .detailed-tasks-grid {
        grid-template-columns: 1fr;
    }
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    .process-stepper {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CONTACT PAGE (TTPL / TRANSDICAL THEME)
   ========================================================= */

.contact-hero-section {
    background-color: #050b18;
    background-image: 
        radial-gradient(circle at 50% 10%, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    padding: 70px 20px 90px;
    color: #ffffff;
    min-height: calc(100vh - 200px);
}

.contact-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin: 0 auto 18px;
    max-width: 760px;
}

.contact-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 28px;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-cyan-expert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00c2cb;
    color: #041426;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 194, 203, 0.3);
}

.btn-cyan-expert:hover {
    background-color: #38e1ea;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 194, 203, 0.45);
    color: #041426;
}

.btn-dark-solutions {
    display: inline-flex;
    align-items: center;
    background-color: rgba(15, 23, 42, 0.7);
    color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-dark-solutions:hover {
    background-color: rgba(30, 41, 59, 0.9);
    border-color: #00c2cb;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- CONTACT FORM CARD --- */
.contact-card {
    max-width: 820px;
    margin: 0 auto;
    background: #09152b;
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 16px;
    padding: 44px 48px;
    text-align: left;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(14, 165, 233, 0.08);
    position: relative;
}

.contact-card-header {
    margin-bottom: 28px;
}

.contact-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
}

.contact-card-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.contact-label .req-star {
    color: #00c2cb;
    font-weight: bold;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid transparent;
    border-radius: 8px;
    padding: 13px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #94a3b8;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #00c2cb;
    box-shadow: 0 0 0 3.5px rgba(0, 194, 203, 0.25);
}

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

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

/* --- CHECKBOX GRID --- */
.checkboxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 4px;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.custom-checkbox-label:hover {
    color: #ffffff;
}

.custom-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 1.5px solid #475569;
    border-radius: 4px;
    background-color: rgba(15, 23, 42, 0.6);
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin: 0;
}

.custom-checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: scale(0);
    transition: 0.15s transform ease-in-out;
    box-shadow: inset 1em 1em #00c2cb;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.custom-checkbox-label input[type="checkbox"]:checked {
    background-color: #09152b;
    border-color: #00c2cb;
}

.custom-checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.btn-submit-req {
    width: 100%;
    background-color: #00c2cb;
    color: #041426;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 194, 203, 0.3);
    margin-top: 10px;
}

.btn-submit-req:hover {
    background-color: #38e1ea;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0, 194, 203, 0.45);
}

.btn-submit-req:active {
    transform: translateY(0);
}

.nav-btn-expert {
    background-color: #00c2cb !important;
    color: #041426 !important;
    font-weight: 700 !important;
    padding: 10px 18px !important;
    border-radius: 8px;
}

.nav-btn-expert:hover {
    background-color: #38e1ea !important;
    transform: translateY(-2px);
}

/* --- RESPONSIVE CONTACT PAGE --- */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 32px;
    }
    .contact-card {
        padding: 30px 22px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .checkboxes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-hero-actions {
        flex-direction: column;
    }
    .btn-cyan-expert,
    .btn-dark-solutions {
        width: 100%;
        justify-content: center;
    }
}

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


/* =========================================================
   INDUSTRIES PAGE STYLES
   ========================================================= */

.industries-hero {
    display: flex;
    align-items: center;
    min-height: 380px;
    background: linear-gradient(135deg, #071530 0%, #0b224d 50%, #0e2a5c 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.industries-hero-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.industries-hero .breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.industries-hero .breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.industries-hero .breadcrumb a:hover {
    color: #38bdf8;
}

.industries-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.industries-hero h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #38bdf8;
    margin: 0 auto 16px;
    max-width: 700px;
}

.industries-hero p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 680px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0 auto;
}

/* --- INDUSTRIES SECTION --- */
.industries-section {
    padding: 70px 0;
    background-color: #f8fafc;
}

.industries-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.industries-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.industry-card-main {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.industry-card-main:hover {
    transform: translateY(-6px);
    border-color: #0284c7;
    box-shadow: 0 16px 32px rgba(2, 132, 199, 0.12);
}

.industry-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.industry-card-main:hover .industry-card-icon {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.06);
}

.industry-card-icon svg {
    width: 28px;
    height: 28px;
}

.industry-card-main h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 10px;
}

.industry-card-main p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
}

.industry-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.industry-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #0284c7;
    background: #f0f9ff;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #e0f2fe;
}

.industries-grid-main.grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.industry-card-img-wrap {
    width: 100%;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
    background: #e2e8f0;
}

.industry-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card-main:hover .industry-card-img-wrap img {
    transform: scale(1.05);
}

.btn-industry-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #0284c7;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    margin-top: 14px;
}

.btn-industry-cta:hover {
    background: #0369a1;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .industries-grid-main.grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- INDUSTRY VALUE PROPS --- */
.industry-value-section {
    padding: 60px 0;
    background: #ffffff;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 24px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.value-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0f2447;
    margin: 12px 0 6px;
}

.value-card p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    margin: 0 auto;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .industries-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .industries-grid-main {
        grid-template-columns: 1fr;
    }
    .value-grid {
        grid-template-columns: 1fr;
    }
    .industries-hero h1 {
        font-size: 32px;
    }
}


/* =========================================================
   REDESIGNED CONTACT PAGE (TRANSDICAL THEME)
   ========================================================= */

.contact-hero-redesign {
    display: flex;
    align-items: center;
    min-height: 400px;
    background: linear-gradient(135deg, #071530 0%, #0b224d 50%, #0e2a5c 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.contact-hero-redesign::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    width: 50%;
    padding: 60px 40px 60px 6%;
    position: relative;
    z-index: 2;
}

.contact-hero-content .breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-hero-content .breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-hero-content .breadcrumb a:hover {
    color: #38bdf8;
}

.contact-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contact-hero-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #38bdf8;
    margin: 0 0 14px;
}

.contact-hero-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 600px;
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

.contact-hero-image {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to right, transparent, black 25%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 25%);
}

@media (max-width: 992px) {
    .contact-hero-redesign {
        flex-direction: column;
        min-height: auto;
    }
    .contact-hero-content {
        width: 100%;
        padding: 50px 24px 30px;
        text-align: center;
    }
    .contact-hero-content .breadcrumb {
        justify-content: center;
    }
    .contact-hero-image {
        position: relative;
        width: 100%;
        height: 260px;
    }
    .contact-hero-image img {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* --- MAIN CONTACT SECTION --- */
.contact-main-wrapper {
    background-color: #f8fafc;
    padding: 70px 0 90px;
}

.contact-main-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: flex-start;
}

/* Left Column: Info Cards */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-banner {
    background: linear-gradient(145deg, #0b1f4b 0%, #0f2b68 100%);
    border-radius: 16px;
    padding: 32px 28px;
    color: #ffffff;
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: 0 10px 30px rgba(11, 31, 75, 0.12);
}

.contact-info-banner h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
}

.contact-info-banner p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.contact-feature-card:hover {
    border-color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.1);
}

.contact-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-feature-card:hover .contact-feature-icon {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.05);
}

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

.contact-feature-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 6px;
}

.contact-feature-details p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-feature-details a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-feature-details a:hover {
    color: #0369a1;
    text-decoration: underline;
}

.contact-badge-pill {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #0284c7;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    padding: 3px 8px;
    margin-top: 6px;
}

/* Right Column: Requirement Form */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 36px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-form-header {
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 18px;
}

.contact-form-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 6px;
}

.contact-form-header p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-input-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.contact-input-group label .required {
    color: #ef4444;
}

.contact-field-control {
    width: 100%;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.contact-field-control:focus {
    background-color: #ffffff;
    border-color: #0284c7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.contact-field-control::placeholder {
    color: #94a3b8;
}

select.contact-field-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

textarea.contact-field-control {
    resize: vertical;
    min-height: 100px;
}

/* Service checkboxes */
.contact-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 4px;
}

.service-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    color: #475569;
    font-weight: 500;
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 10px;
    transition: all 0.2s ease;
    user-select: none;
}

.service-check-item:hover {
    border-color: #0284c7;
    background: #f0f9ff;
    color: #0284c7;
}

.service-check-item input[type="checkbox"] {
    accent-color: #0284c7;
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin: 0;
}

.btn-submit-theme {
    width: 100%;
    background: linear-gradient(135deg, #0b1f4b 0%, #0284c7 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.btn-submit-theme:hover {
    background: linear-gradient(135deg, #071530 0%, #0369a1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(2, 132, 199, 0.35);
}

.btn-submit-theme:active {
    transform: translateY(0);
}

/* Bottom Strip */
.contact-guarantee-strip {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.guarantee-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.guarantee-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eff6ff;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 18px;
    height: 18px;
}

.guarantee-item h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f2447;
    margin: 0;
}

.guarantee-item p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-main-container {
        grid-template-columns: 1fr;
    }
    .contact-guarantee-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-row-2 {
        grid-template-columns: 1fr;
    }
    .contact-services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form-card {
        padding: 24px 18px;
    }
    .contact-hero-redesign h1 {
        font-size: 32px;
    }
}

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


/* =========================================================
   OUR SOLUTIONS PAGE (PAGE 3)
   ========================================================= */

.solutions-hero {
    display: flex;
    align-items: center;
    min-height: 380px;
    background: linear-gradient(135deg, #071530 0%, #0b224d 50%, #0e2a5c 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.solutions-hero .hero-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.solutions-hero .breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.solutions-hero .breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.solutions-hero .breadcrumb a:hover {
    color: #38bdf8;
}

.solutions-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.solutions-hero h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #38bdf8;
    margin: 0 auto 16px;
    max-width: 720px;
}

.solutions-hero p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 700px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0 auto;
}

/* Solutions Section */
.solutions-page-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.solutions-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.solution-card-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
}

.solution-card-block:hover {
    border-color: #0284c7;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.1);
}

.solution-card-block.reverse {
    direction: rtl;
}

.solution-card-block.reverse > * {
    direction: ltr;
}

.solution-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.solution-media img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.solution-card-block:hover .solution-media img {
    transform: scale(1.03);
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solution-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.solution-num-pill {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff;
    background: #0284c7;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.solution-cat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.solution-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #0f2447;
    line-height: 1.25;
    margin: 0;
}

.solution-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #0284c7;
    margin: 0;
}

.solution-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

.solution-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    margin-top: 4px;
}

.solution-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.solution-list-item svg {
    width: 16px;
    height: 16px;
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0284c7;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
    margin-top: 6px;
    align-self: flex-start;
}

.btn-solution-cta:hover {
    background: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .solution-card-block {
        grid-template-columns: 1fr;
        padding: 30px 22px;
        gap: 24px;
    }
    .solution-card-block.reverse {
        direction: ltr;
    }
    .solution-media img {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .solution-list-grid {
        grid-template-columns: 1fr;
    }
    .solutions-hero h1 {
        font-size: 32px;
    }
}


/* =========================================================
   HOME PAGE (PIXEL-PERFECT BLUEPRINT THEME)
   ========================================================= */

/* Hero Section */
.home-hero-section {
    padding: 60px 0 70px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.home-hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.home-hero-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #0284c7;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.home-hero-tagline span {
    color: #0f2447;
}

.home-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    color: #0b1f4b;
    margin: 0;
    letter-spacing: -0.5px;
}

.home-hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
    margin: 0;
}

.home-hero-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 8px 0;
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
}

.hero-check-item svg {
    width: 18px;
    height: 18px;
    color: #0284c7;
    flex-shrink: 0;
}

.home-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.btn-home-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b1f4b;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(11, 31, 75, 0.25);
}

.btn-home-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
    color: #ffffff;
}

.btn-home-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0b1f4b;
    border: 1.5px solid #cbd5e1;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-home-secondary:hover {
    border-color: #0284c7;
    color: #0284c7;
    background: #f0f9ff;
    transform: translateY(-2px);
}

.home-hero-right {
    position: relative;
}

.home-hero-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
}

.home-hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-tech-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.floating-tech-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #eff6ff;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-tech-icon svg {
    width: 20px;
    height: 20px;
}

.floating-tech-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f2447;
    margin: 0;
}

.floating-tech-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

/* Industries Strip */
.home-industries-bar {
    padding: 40px 0 50px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.home-bar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #0284c7;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.home-industries-strip-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.industry-strip-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industry-strip-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(56, 189, 248, 0.22);
}

.industry-strip-img-wrap {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    background: #0b1e45;
}

.industry-strip-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.industry-strip-item:hover .industry-strip-img-wrap img {
    transform: scale(1.08);
}

.industry-strip-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    text-align: center;
    padding: 10px 8px;
    line-height: 1.25;
    transition: color 0.25s ease;
}

.industry-strip-item:hover .industry-strip-label {
    color: #38bdf8;
}

/* About TTPL Showcase Section (Two-Column Aligned) */
.home-about-showcase-section {
    padding: 85px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.home-about-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 55px;
    align-items: center;
}

.home-about-showcase-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    height: 100%;
    min-height: 420px;
}

.home-about-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-about-showcase-media:hover img {
    transform: scale(1.03);
}

.home-about-media-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(7, 21, 52, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.home-about-media-badge .badge-accent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.home-about-media-badge .badge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.home-about-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-about-showcase-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f2447;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.home-about-showcase-content p.about-lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: #334155;
    margin: 0 0 14px;
    font-weight: 500;
}

.home-about-showcase-content p.about-secondary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
    margin: 0 0 24px;
}

.about-showcase-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.about-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
}

.about-point-item svg {
    width: 22px;
    height: 22px;
    color: #0284c7;
    background: #e0f2fe;
    padding: 3px;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #071534;
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(7, 21, 52, 0.15);
    width: fit-content;
}

.btn-about-link:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .home-about-showcase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .home-about-showcase-media {
        min-height: 300px;
        max-height: 380px;
    }
    .home-about-showcase-content h2 {
        font-size: 30px;
    }
}

/* Instruments Grid */
.home-instruments-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.home-instruments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.inst-thumb-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.inst-thumb-card:hover {
    border-color: #0284c7;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(2, 132, 199, 0.1);
}

.inst-thumb-img {
    width: 64px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inst-thumb-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.inst-thumb-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Performance Metrics Bar */
.home-metrics-bar {
    padding: 38px 0;
    background: linear-gradient(135deg, #071530 0%, #0b224d 50%, #0e2a5c 100%);
    color: #ffffff;
}

.home-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
}

.metric-icon svg {
    width: 26px;
    height: 26px;
}

.metric-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2px;
}

.metric-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    color: #cbd5e1;
    margin: 0;
}

/* Services Grid */
.home-services-section {
    padding: 70px 0;
    background: #ffffff;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.home-service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.home-service-card:hover {
    background: #ffffff;
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.1);
}

.home-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.home-service-card:hover .home-service-icon {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.05);
}

.home-service-icon svg {
    width: 24px;
    height: 24px;
}

.home-service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 12px;
}

.home-service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-service-bullets li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    color: #64748b;
    position: relative;
    padding-left: 12px;
}

.home-service-bullets li::before {
    content: "•";
    color: #0284c7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Triple Feature Section */
.home-triple-feature-section {
    padding: 70px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.home-triple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

.home-feature-col-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.home-feature-col-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 18px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.why-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.why-check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.why-check-item svg {
    width: 14px;
    height: 14px;
    color: #0284c7;
    flex-shrink: 0;
}

/* Mini process stepper */
.mini-process-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-process-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
}

.mini-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0284c7;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #0f2447;
}

/* Testimonial Box */
.testimonial-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #475569;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0f2447;
    margin: 0;
}

.testimonial-author p {
    font-size: 11.5px;
    color: #64748b;
    margin: 2px 0 6px;
}

.star-rating {
    color: #f59e0b;
    display: flex;
    gap: 3px;
}

.star-rating svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Home Bottom CTA & Contact */
.home-bottom-cta-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.home-bottom-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.home-cta-left-card {
    background: linear-gradient(145deg, #071530 0%, #0b224d 100%);
    border-radius: 16px;
    padding: 36px 28px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.home-cta-left-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.home-cta-left-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.btn-home-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #071530;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-home-cta-white:hover {
    background: #0284c7;
    color: #ffffff;
    transform: translateY(-2px);
}

.home-cta-form-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-cta-form-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f2447;
    margin: 0;
}

.home-mini-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: #64748b;
}

.home-cta-form-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.home-input-sm {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    color: #0f172a;
    box-sizing: border-box;
}

.home-input-sm:focus {
    border-color: #0284c7;
    outline: none;
}

.btn-home-form-submit {
    background: #0b1f4b;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-home-form-submit:hover {
    background: #0284c7;
}

.home-map-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    position: relative;
}

.home-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .home-hero-container {
        grid-template-columns: 1fr;
    }
    .home-industries-strip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .home-about-instruments-grid {
        grid-template-columns: 1fr;
    }
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-triple-grid {
        grid-template-columns: 1fr;
    }
    .home-bottom-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero-title {
        font-size: 36px;
    }
    .home-industries-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-instruments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .home-hero-checklist {
        grid-template-columns: 1fr;
    }
    .home-instruments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-metrics-grid {
        grid-template-columns: 1fr;
    }
    .home-services-grid {
        grid-template-columns: 1fr;
    }
    .why-check-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   UNIFIED FOOTER SOCIAL ICONS
   ========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social a svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    color: #ffffff !important;
    fill: currentColor !important;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0284c7;
    border-color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.4);
    color: #ffffff;
}

.footer-social a:hover svg {
    color: #ffffff !important;
    transform: scale(1.08);
}


/* =========================================================
   WORKING PROCESS SECTION (TESTING & ABOUT PAGES)
   ========================================================= */

.testing-process-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.process-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.process-card-step {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-card-step:hover {
    background: #ffffff;
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.1);
}

.process-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #0284c7;
    background: #eff6ff;
    border: 1px solid rgba(2, 132, 199, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
}

.process-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #0b1f4b;
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.process-card-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #0f2447;
    margin: 0;
}

.process-card-step p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* Why Choose TTPL (About Page) */
.why-tdpl-section {
    padding: 80px 0;
    background: #f8fafc;
}

.why-tdpl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.why-tdpl-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.why-tdpl-card:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.why-tdpl-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #eff6ff;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-tdpl-icon svg {
    width: 26px;
    height: 26px;
}

.why-tdpl-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 10px;
}

.why-tdpl-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

@media (max-width: 992px) {
    .process-grid-6, .why-tdpl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-grid-6, .why-tdpl-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   FLOATING WHATSAPP "BOOK A TEST" BUTTON
   ========================================================= */

.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff !important;
    padding: 12px 20px 12px 16px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.whatsapp-float-btn:hover {
    background: #128C7E;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.55);
    color: #ffffff !important;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 600px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }
    .whatsapp-float-btn span {
        display: none;
    }
}


/* =========================================================
   UNIVERSAL CONTAINER & SYSTEM ALIGNMENT
   ========================================================= */

.container,
.testing-page-container,
.who-we-are-container,
.contact-main-container {
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Top Bar alignment */
.top-bar .container {
    max-width: 1440px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 8px 32px !important;
    box-sizing: border-box !important;
}

/* Home Hero alignment */
.hero-section {
    padding: 90px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-container {
    max-width: 1240px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
}

/* About Hero alignment */
.about-hero {
    padding: 90px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 400px !important;
}

.about-hero-content {
    max-width: 1240px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Footer Container alignment */
.footer-container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 24px 40px 24px !important;
    box-sizing: border-box !important;
}

.contact-strip-container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .container,
    .testing-page-container,
    .who-we-are-container,
    .contact-main-container,
    .hero-container,
    .about-hero-content,
    .footer-container,
    .contact-strip-container,
    nav,
    .top-bar .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* =========================================================
   STANDARDIZED 4-COLUMN FOOTER
   ========================================================= */

footer {
    background-color: #071534;
    color: #ffffff;
    width: 100%;
    padding-top: 50px;
    margin-top: 0;
    position: relative;
    border-top: 1px solid rgba(56, 189, 248, 0.15);
}

.footer-container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 24px 40px 24px !important;
    display: grid !important;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr !important;
    gap: 30px !important;
    box-sizing: border-box !important;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-slogan {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.footer-heading, .footer-contact-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #38bdf8;
    margin: 0 0 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

.footer-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

.footer-bottom {
    background-color: #040c1f;
    text-align: center;
    padding: 18px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    margin: 0;
}

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

@media (max-width: 580px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* =========================================================
   QUERY SUBMISSION & WHATSAPP POPUP MODAL
   ========================================================= */
.query-feedback-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.28s ease;
    box-sizing: border-box;
}

.query-feedback-modal.show {
    display: flex;
    opacity: 1;
}

.query-modal-card {
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    border-radius: 22px;
    padding: 34px 28px 28px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}

.query-feedback-modal.show .query-modal-card {
    transform: scale(1);
}

.query-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.query-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.query-modal-icon-wrap {
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1);
}

.query-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.query-modal-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.query-whatsapp-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 0;
    text-align: left;
}

.query-whatsapp-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #166534;
}

.query-whatsapp-box-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    margin: 0 0 14px 0;
}

.query-modal-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    width: 100%;
}

.query-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25D366;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
}

.query-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.45);
    color: #ffffff !important;
}

.query-btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

/* =========================================================
   HOMEPAGE REPOSITIONING DESIGN SYSTEM (PHASE 1)
   ========================================================= */

/* What We Do Section */
.what-we-do-section {
    padding: 90px 0;
    background: #ffffff;
}

.home-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px;
}

.home-section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.home-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.home-section-header p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.what-we-do-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 34px 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.what-we-do-card:hover {
    transform: translateY(-5px);
    border-color: #38bdf8;
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
}

.what-we-do-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 233, 0.15) 100%);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.what-we-do-card-icon svg {
    width: 28px;
    height: 28px;
}

.what-we-do-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.what-we-do-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 20px;
}

.what-we-do-card a.card-link-arrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0284c7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.what-we-do-card a.card-link-arrow:hover {
    gap: 10px;
}

.what-we-do-cta-wrap {
    text-align: center;
    margin-top: 50px;
}

/* Our Approach Section (5 Steps) */
.home-approach-section {
    padding: 95px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.approach-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.approach-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.approach-step-card:hover {
    transform: translateY(-4px);
    border-color: #0284c7;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.1);
}

.step-num-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.approach-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.approach-step-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Why TTPL Section (5 Pillars) */
.home-why-tdpl-section {
    padding: 95px 0;
    background: #ffffff;
}

.why-pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.why-pillar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.why-pillar-card:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.09);
}

.why-pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0369a1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-pillar-icon svg {
    width: 26px;
    height: 26px;
}

.why-pillar-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.why-pillar-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Final Consultative CTA - Compact & Balanced */
.home-final-cta-section {
    padding: 44px 20px;
    background: linear-gradient(135deg, #071534 0%, #0c2356 50%, #0369a1 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-final-cta-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-final-cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.home-final-cta-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.55;
    margin-bottom: 22px;
}

.home-final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cta-cyan {
    background: #38bdf8;
    color: #071534 !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
}

.btn-cta-cyan:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline-white {
    background: transparent;
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
}

.btn-cta-outline-white:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Media Queries for Phase 1 */
@media (max-width: 1100px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    .approach-steps-grid {
        grid-template-columns: 1fr;
    }
    .why-pillars-grid {
        grid-template-columns: 1fr;
    }
    .home-section-header h2 {
        font-size: 28px;
    }
    .home-final-cta-section {
        padding: 36px 16px;
    }
    .home-final-cta-content h2 {
        font-size: 24px;
    }
    .home-final-cta-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }
}

/* =========================================================
   PHASE 2: ABOUT TTPL PAGE STYLES
   ========================================================= */

.about-page-hero {
    position: relative;
    background-image: url("./lab images/about-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0 95px;
    overflow: hidden;
    color: #ffffff;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 21, 52, 0.94) 0%,
        rgba(12, 35, 86, 0.88) 50%,
        rgba(3, 105, 161, 0.8) 100%
    );
    z-index: 1;
}

.about-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.about-page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.about-page-hero p.about-hero-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    line-height: 1.65;
    color: #cbd5e1;
    max-width: 780px;
    margin: 0 auto;
}

/* Who We Are Section */
.about-who-section {
    padding: 95px 0;
    background: #ffffff;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-who-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 12px 0 20px;
    letter-spacing: -0.5px;
}

.about-who-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 20px;
}

.about-who-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-who-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.about-who-card:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.about-who-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-who-icon svg {
    width: 24px;
    height: 24px;
}

.about-who-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.about-who-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Vision & Mission Section */
.about-vm-section {
    padding: 90px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.about-vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.about-vm-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

.about-vm-card:hover {
    transform: translateY(-4px);
    border-color: #0284c7;
    box-shadow: 0 14px 35px rgba(2, 132, 199, 0.1);
}

.about-vm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0284c7;
    background: #e0f2fe;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.about-vm-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.about-vm-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Core Values (5 Cards) */
.about-values-section {
    padding: 95px 0;
    background: #ffffff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about-value-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: left;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.09);
}

.about-value-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #0284c7;
    background: #e0f2fe;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.about-value-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.about-value-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Our Strength (4 Pillars) */
.about-strengths-section {
    padding: 95px 0;
    background: #071534;
    color: #ffffff;
}

.about-strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-strength-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 34px 26px;
    transition: all 0.3s ease;
}

.about-strength-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(56, 189, 248, 0.18);
}

.about-strength-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.about-strength-icon svg {
    width: 26px;
    height: 26px;
}

.about-strength-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.about-strength-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
}

/* Responsive queries for About Page */
@media (max-width: 1100px) {
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page-hero h1 {
        font-size: 34px;
    }
    .about-page-hero p.about-hero-sub {
        font-size: 16px;
    }
    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-vm-grid {
        grid-template-columns: 1fr;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-strengths-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PHASE 5: PRODUCTS & TECHNOLOGY PAGE STYLES
   ========================================================= */

.products-hero {
    position: relative;
    background: linear-gradient(135deg, #071534 0%, #0c2356 55%, #0369a1 100%);
    padding: 110px 0 85px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.products-hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.products-breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.products-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.products-breadcrumb a:hover {
    color: #38bdf8;
}

.products-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.products-hero p.products-hero-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18.5px;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 36px;
}

/* Category Quick Jump Bar */
.category-jump-bar {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 40px;
    padding: 8px 12px;
    max-width: 100%;
}

.jump-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jump-pill span.num {
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 7px;
    border-radius: 12px;
    color: #38bdf8;
}

.jump-pill:hover,
.jump-pill.active {
    background: #0284c7;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.jump-pill:hover span.num,
.jump-pill.active span.num {
    background: #ffffff;
    color: #0284c7;
}

/* Products Main Container */
.products-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Category Section */
.product-category-section {
    padding: 85px 0 60px;
    scroll-margin-top: 90px;
}

.product-category-section.alt-bg {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Category Split Showcase */
.category-showcase-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 44px;
}

.category-showcase-split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.category-showcase-split.reverse .category-showcase-text {
    order: 2;
}

.category-showcase-split.reverse .category-showcase-image {
    order: 1;
}

.category-showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    border: 1px solid #e2e8f0;
}

.category-showcase-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-showcase-image:hover img {
    transform: scale(1.03);
}

.category-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #0284c7;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.category-showcase-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.category-showcase-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 22px;
}

.category-highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 26px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.highlight-item svg {
    width: 18px;
    height: 18px;
    color: #0284c7;
    flex-shrink: 0;
}

/* 4-Card Product Grid */
.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    position: relative;
}

.product-card-item:hover {
    transform: translateY(-4px);
    border-color: #0284c7;
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.12);
}

.prod-card-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #0284c7;
    background: #e0f2fe;
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
}

.product-card-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 10px;
}

.product-card-item p.prod-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 18px;
    flex-grow: 1;
}

/* Specs list in card */
.prod-spec-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.prod-spec-box .spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.prod-spec-box .spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: #64748b;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.spec-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #0f172a;
}

/* Documentation pills */
.doc-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.doc-pill {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.doc-pill svg {
    width: 10px;
    height: 10px;
}

/* Action button inside card */
.btn-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #0284c7;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    margin-top: auto;
}

.btn-card-action:hover {
    background: #0369a1;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
    transform: translateY(-1px);
}

/* How to Procure / Support Pathway */
.procure-pathway-section {
    padding: 90px 0;
    background: #071534;
    color: #ffffff;
}

.procure-pathway-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.procure-pathway-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 16px;
}

.procure-pathway-header p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
}

.procure-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.procure-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.procure-step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #38bdf8;
    transform: translateY(-3px);
}

.procure-step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.procure-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.procure-step-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
}

/* Responsive queries */
@media (max-width: 1100px) {
    .products-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .procure-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 34px;
    }
    .products-hero p.products-hero-sub {
        font-size: 16px;
    }
    .category-showcase-split,
    .category-showcase-split.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .category-showcase-image img {
        height: 250px;
    }
    .products-cards-grid {
        grid-template-columns: 1fr;
    }
    .procure-steps-grid {
        grid-template-columns: 1fr;
    }
    .category-highlights-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PHASE 6: EXPERTISE PAGE STYLES
   ========================================================= */

.expertise-hero {
    position: relative;
    background-image: url("./lab images/services-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0 85px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.expertise-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 21, 52, 0.94) 0%,
        rgba(12, 35, 86, 0.90) 50%,
        rgba(3, 105, 161, 0.82) 100%
    );
    z-index: 1;
}

.expertise-hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.expertise-breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.expertise-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.expertise-breadcrumb a:hover {
    color: #38bdf8;
}

.expertise-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.expertise-hero p.expertise-hero-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18.5px;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 36px;
}

/* Stats Strip */
.expertise-stats-bar {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 40px;
    padding: 10px 24px;
    max-width: 100%;
}

.stat-pill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
}

.stat-pill-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
}

/* Approach Section */
.expertise-approach-section {
    padding: 95px 0;
    background: #ffffff;
}

.expertise-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.expertise-approach-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 12px 0 20px;
    letter-spacing: -0.5px;
}

.expertise-approach-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 24px;
}

.approach-pillars-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.approach-pillar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.approach-pillar-card:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.approach-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-pillar-icon svg {
    width: 24px;
    height: 24px;
}

.approach-pillar-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.approach-pillar-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* 8 Domains Grid */
.expertise-domains-section {
    padding: 95px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.expertise-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px;
}

.expertise-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 16px;
    letter-spacing: -0.5px;
}

.expertise-section-header p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: #475569;
}

.domains-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.domain-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.domain-card-item:hover {
    transform: translateY(-4px);
    border-color: #0284c7;
    box-shadow: 0 14px 32px rgba(2, 132, 199, 0.12);
}

.domain-card-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.domain-card-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.domain-card-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    display: block;
}

.domain-card-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 12px;
}

.domain-card-item p.domain-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    margin: 0 0 18px;
    flex-grow: 1;
}

.domain-capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.domain-capabilities-list li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.domain-capabilities-list li svg {
    width: 15px;
    height: 15px;
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 2px;
}

.domain-card-link {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #0284c7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: all 0.2s ease;
}

.domain-card-link:hover {
    color: #0369a1;
    transform: translateX(3px);
}

/* Scenarios We Solve Section */
.expertise-scenarios-section {
    padding: 95px 0;
    background: #ffffff;
}

.scenarios-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.scenario-card-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.scenario-card-item:hover {
    border-color: #38bdf8;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transform: translateY(-3px);
}

.scenario-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #0284c7;
    background: #e0f2fe;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}

.scenario-card-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 16px;
}

.scenario-block-box {
    margin-bottom: 14px;
}

.scenario-label-wrap {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.scenario-label-wrap.challenge {
    color: #dc2626;
}

.scenario-label-wrap.solution {
    color: #0284c7;
}

.scenario-block-box p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

/* Consultation Workflow */
.expertise-workflow-section {
    padding: 95px 0;
    background: #071534;
    color: #ffffff;
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.workflow-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.workflow-step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #38bdf8;
    transform: translateY(-3px);
}

.workflow-step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.workflow-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.workflow-step-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
}

/* Responsive Queries for Expertise Page */
@media (max-width: 1200px) {
    .domains-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .expertise-approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .scenarios-grid-4 {
        grid-template-columns: 1fr;
    }
    .workflow-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-hero h1 {
        font-size: 34px;
    }
    .expertise-hero p.expertise-hero-sub {
        font-size: 16px;
    }
    .domains-grid-8 {
        grid-template-columns: 1fr;
    }
    .workflow-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PHASE 7: PARTNERS & COLLABORATIONS PAGE STYLES
   ========================================================= */

.partners-hero {
    position: relative;
    background-image: url("./lab images/about-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0 85px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.partners-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 21, 52, 0.94) 0%,
        rgba(12, 35, 86, 0.90) 50%,
        rgba(3, 105, 161, 0.82) 100%
    );
    z-index: 1;
}

.partners-hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.partners-breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partners-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.partners-breadcrumb a:hover {
    color: #38bdf8;
}

.partners-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.partners-hero p.partners-hero-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18.5px;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 36px;
}

/* Principles Section */
.partners-principles-section {
    padding: 95px 0;
    background: #ffffff;
}

.partners-principles-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.partners-principles-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 12px 0 20px;
    letter-spacing: -0.5px;
}

.partners-principles-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 24px;
}

/* Ecosystem 4 Pillars Section */
.partners-pillars-section {
    padding: 95px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pillars-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.pillar-card-item:hover {
    transform: translateY(-4px);
    border-color: #0284c7;
    box-shadow: 0 14px 32px rgba(2, 132, 199, 0.12);
}

.pillar-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-card-icon svg {
    width: 26px;
    height: 26px;
}

.pillar-card-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: block;
}

.pillar-card-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 12px;
}

.pillar-card-item p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    margin: 0 0 20px;
    flex-grow: 1;
}

.pillar-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pillar-features-list li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pillar-features-list li svg {
    width: 15px;
    height: 15px;
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Partner Pathways */
.partners-pathways-section {
    padding: 95px 0;
    background: #ffffff;
}

.pathways-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pathway-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 34px 28px;
    transition: all 0.3s ease;
}

.pathway-card:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.pathway-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 12px 0 12px;
}

.pathway-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 18px;
}

/* Responsive Queries for Partners Page */
@media (max-width: 1200px) {
    .pillars-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .partners-principles-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pathways-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ================================================= */
/*          INTERACTIVE TECHNICAL MODALS / POPUPS    */
/* ================================================= */
.tdpl-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tdpl-modal-card {
    background: #ffffff;
    border-radius: 20px;
    max-width: 880px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(20, 184, 166, 0.2);
    transform: translateY(24px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    color: #1e293b;
}

.tdpl-modal-overlay.active .tdpl-modal-card {
    transform: translateY(0) scale(1);
}

.tdpl-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s ease;
    z-index: 10;
}

.tdpl-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.tdpl-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: #0f766e;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.tdpl-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
}

.tdpl-modal-subtitle {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
}

.tdpl-modal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.tdpl-modal-spec-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
}

.tdpl-modal-spec-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tdpl-modal-spec-box h4 svg {
    width: 18px;
    height: 18px;
    color: #0d9488;
}

.tdpl-modal-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tdpl-modal-spec-list li {
    font-size: 13.5px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.tdpl-modal-spec-list li::before {
    content: "•";
    color: #0d9488;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.tdpl-modal-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 16px;
}

.tdpl-modal-footer-info {
    font-size: 13.5px;
    color: #64748b;
}

.tdpl-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.tdpl-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
    color: #ffffff;
}

/* Interactive Pill Trigger Buttons */
.tech-modal-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    color: #0d9488;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    text-decoration: none;
}

.tech-modal-trigger-btn:hover {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .tdpl-modal-card {
        padding: 28px 20px;
    }
    .tdpl-modal-grid-2 {
        grid-template-columns: 1fr;
    }
    .tdpl-modal-title {
        font-size: 22px;
    }
    .tdpl-modal-footer-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .tdpl-modal-btn {
        justify-content: center;
    }
}










/* =========================================================
   TASK & TESTING PAGE STYLES
   ========================================================= */

.testing-page-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TESTING HERO --- */
.testing-hero {
    display: flex;
    align-items: center;
    min-height: 400px;
    background: linear-gradient(135deg, #071530 0%, #0b224d 50%, #0e2a5c 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.testing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.testing-hero-content {
    width: 48%;
    padding: 60px 40px 60px 6%;
    position: relative;
    z-index: 2;
}

.testing-hero .breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testing-hero .breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.testing-hero .breadcrumb a:hover {
    color: #38bdf8;
}

.testing-hero .breadcrumb svg {
    width: 14px;
    height: 14px;
}

.testing-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.testing-hero h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #38bdf8;
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}

.testing-hero p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

.testing-hero-image {
    width: 52%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.testing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

/* --- SECTION HEADERS --- */
.testing-section-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.testing-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0b327b;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.testing-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #0284c7;
    border-radius: 2px;
}

/* --- SECTION 1: KEY TESTING DOMAINS --- */
.testing-domains-section {
    padding: 60px 0 50px;
    background-color: #ffffff;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.domain-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 12px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-5px);
    border-color: #0284c7;
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.12);
}

.domain-img-wrap {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
}

.domain-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.domain-card:hover .domain-img-wrap img {
    transform: scale(1.08);
}

.domain-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}

/* --- SECTION 2: DETAILED TASKS SLIDESHOW --- */
.detailed-tasks-section {
    padding: 60px 0 70px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.detailed-tasks-section .testing-page-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.tasks-slider-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
}

.tasks-slider-header-wrap .testing-section-header {
    margin-bottom: 0;
    text-align: left;
}

.tasks-slider-header-wrap .testing-section-header h2::after {
    left: 0;
    transform: none;
}

.tasks-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tasks-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f2447;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.tasks-slider-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.tasks-slider-btn:hover {
    background: #0284c7;
    border-color: #0284c7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.tasks-slider-btn:active {
    transform: scale(0.94);
}

.detailed-tasks-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 4px 16px;
}

.detailed-tasks-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.detailed-tasks-slider-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.detailed-tasks-slider-track::-webkit-scrollbar {
    display: none;
}

.detailed-task-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.detailed-task-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    border-color: #38bdf8;
}

.detailed-task-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.detailed-task-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.detailed-task-card:hover .detailed-task-img img {
    transform: scale(1.08);
}

.detailed-task-body {
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.detailed-task-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f1f5f9;
    line-height: 1.3;
}

.task-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8.5px;
}

.task-checklist li {
    font-size: 12.5px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.35;
    font-weight: 500;
}

.task-checklist li svg {
    width: 14px;
    height: 14px;
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Dots */
.tasks-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.tasks-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tasks-slider-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.tasks-slider-dot.active {
    width: 28px;
    border-radius: 6px;
    background: #0284c7;
}

/* Responsive adjustments for slideshow cards */
@media (max-width: 1150px) {
    .detailed-task-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 270px;
    }
}

@media (max-width: 768px) {
    .tasks-slider-header-wrap {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .tasks-slider-header-wrap .testing-section-header {
        text-align: center;
    }
    .tasks-slider-header-wrap .testing-section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .detailed-task-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 240px;
    }
}

@media (max-width: 520px) {
    .detailed-task-card {
        flex: 0 0 85%;
        min-width: 220px;
    }
}

/* --- SECTION 3: TYPES OF ANALYSIS / TECHNIQUES WE USE --- */
.techniques-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.technique-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(11, 31, 75, 0.08);
    border-color: #93c5fd;
}

.technique-img {
    height: 85px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 4px;
}

.technique-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.technique-card:hover .technique-img img {
    transform: scale(1.08);
}

.technique-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f2447;
    margin: 0 0 6px;
}

.technique-card p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* --- SECTION 4: OUR TESTING PROCESS --- */
.testing-process-section {
    padding: 60px 0 70px;
    background: #f8fafc;
}

.process-stepper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
}

/* Continuous connecting line behind badges */
.process-stepper::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(to right, #0284c7 0, #0284c7 6px, transparent 6px, transparent 12px);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-badge-wrap {
    position: relative;
    margin-bottom: 14px;
}

.process-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.08);
}

.process-step-icon svg {
    width: 30px;
    height: 30px;
}

.process-step-number {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #0b1f4b;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.process-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f2447;
    margin: 10px 0 6px;
}

.process-step p {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
    padding: 0 4px;
}

/* --- SECTION 5: CTA BANNER --- */
.testing-cta-banner {
    background: linear-gradient(135deg, #071530 0%, #0b224d 60%, #10336d 100%);
    border-radius: 16px;
    padding: 28px 40px;
    margin: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(11, 31, 75, 0.2);
    position: relative;
    overflow: hidden;
}

.testing-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.testing-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testing-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
}

.testing-cta-icon svg {
    width: 28px;
    height: 28px;
}

.testing-cta-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px;
}

.testing-cta-text p {
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0;
}

.testing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: transparent;
    border: 1.5px solid #38bdf8;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.testing-cta-btn:hover {
    background: #38bdf8;
    color: #071530;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

/* --- RESPONSIVE BREAKPOINTS FOR TESTING PAGE --- */
@media (max-width: 1200px) {
    .domains-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .techniques-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .process-stepper {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 36px;
    }
    .process-stepper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .testing-hero {
        flex-direction: column;
        min-height: auto;
    }
    .testing-hero-content {
        width: 100%;
        padding: 45px 20px 30px;
        text-align: center;
    }
    .testing-hero .breadcrumb {
        justify-content: center;
    }
    .testing-hero h1 {
        font-size: 32px;
    }
    .testing-hero p {
        margin: 0 auto;
    }
    .testing-hero-image {
        width: 100%;
        height: 240px;
    }
    .testing-hero-image img {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-stepper {
        grid-template-columns: repeat(2, 1fr);
    }
    .testing-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .testing-cta-left {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    .process-stepper {
        grid-template-columns: 1fr;
    }
}