
        :root{
            --nav-bg:#0b2a4a;
            --btn:#1b75bc;
            --btn-hover:#155d95;
            --text:#0f172a;
            --shadow: 0 10px 25px rgba(0,0,0,.12);
        }

        html, body { height:100%; }
        body{
            margin:0;
            font-family:'Poppins', sans-serif;
            color:var(--text);
            background:#f6f8fb;
        }

        /* ===== FIXED HEADER + NAV ===== */
        #siteHeader{
            position:fixed;
            top:0; left:0; right:0;
            z-index:9999;
            background:var(--nav-bg);
            box-shadow: var(--shadow);
        }

        #siteNav{
            position:fixed;
            left:0; right:0;
            top:72px; /* header height */
            z-index:9998;
            background:var(--nav-bg);
            border-top:1px solid rgba(255,255,255,.08);
        }

        /* push page content below fixed bars */
        #pageContent{
            padding-top:132px; /* 72 header + ~60 nav */
            min-height: calc(100vh - 132px);
        }

        /* header alignment */
        #siteHeader .header-row{
            min-height:72px;
            align-items:center;
        }

        .logo-item a{
            display:flex;
            align-items:center;
            gap:12px;
            text-decoration:none;
        }
        .logo-item img{
            height:55px !important;
            width:auto !important;
            object-fit:contain;
        }

        /* button */
        .btn-opex{
            background:var(--btn) !important;
            color:#fff !important;
            border:none !important;
            padding:10px 18px !important;
            border-radius:6px !important;
            font-weight:600 !important;
            box-shadow: 0 8px 18px rgba(27,117,188,.25);
        }
        .btn-opex:hover{
            background:var(--btn-hover) !important;
            color:#fff !important;
        }

        /* navbar look */
        #siteNav .navbar{
            padding:10px 0 !important;
        }
        #siteNav .navbar-nav .nav-link{
            color:rgba(255,255,255,.90) !important;
            font-weight:500 !important;
            padding:10px 14px !important;
            border-radius:8px;
        }
        #siteNav .navbar-nav .nav-link:hover{
            color:#fff !important;
            background:rgba(255,255,255,.08);
        }
        .navbar-toggler{
            border:1px solid rgba(255,255,255,.25) !important;
        }

        /* dropdown */
        .dropdown-menu{
            border:none !important;
            border-radius:12px !important;
            box-shadow: var(--shadow);
            padding:10px !important;
            min-width:260px;
        }
        .dropdown-item{
            border-radius:10px !important;
            padding:10px 12px !important;
            font-weight:500;
        }
        .dropdown-item:hover{
            background:#eef6ff !important;
            color:#0b2a4a !important;
        }


/* CTA */
.footer-cta{
  background: linear-gradient(90deg, #0ea5b7, #0b2a4a);
  color:#fff;
  padding:44px 0;
  margin-top:32px;
}
.footer-cta h3{
  font-weight:700;
  font-size:23px;
  letter-spacing:.2px;
}
.footer-cta p{
  opacity:.9;
  font-size:14px;
  margin-top:6px;
}
.btn-cta{
  padding:10px 18px !important;
  border-radius:10px !important;
}

/* Footer bg */
.footer-main{
  background:#071d33;
  color:rgba(255,255,255,.9);
  padding:38px 0 0;
}

/* cards equal height */
.footer-card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:22px;
  height:100%;
  min-height: 420px;
  display:flex;
  flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.footer-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* headings */
.footer-title{
  color:#fff;
  font-weight:700;
  font-size:18px;
  margin-bottom:14px;
}

/* brand */
.footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

/* Logo container */
.footer-brand img{
    width:75px;
    height:58px;
    object-fit:contain;
    background:#ffffff;
    padding:0px;
    border-radius:0px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Brand name */
.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    display: block;
    letter-spacing: 0.5px;
}
.brand-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #cce2ff;
    display: block;
    line-height: 1.2;
    margin-top: 2px;
}
/* Optional subtle tagline if you add later */
.footer-brand-tagline{
    font-size:15px;
    font-weight:400;
    letter-spacing:0.5px;
    color:rgba(255,255,255,.7);
    margin-top:3px;
}

/* Hover polish */
.footer-brand:hover img{
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
    transition: all .25s ease;
}
.footer-desc{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.75;
  margin:12px 0 0;
}

/* social */
.footer-social{
  display:flex;
  gap:10px;
  margin-top:16px;
}
.footer-social a{
  width:38px; height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff !important;
  text-decoration:none;
}
.footer-social a i{ font-size:18px; }
.footer-social a:hover{
  background: rgba(27,117,188,.25);
  border-color: rgba(27,117,188,.45);
}

/* contact list */
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-list li{
  display:flex;
  gap:10px;
  margin-bottom:12px;
  color:rgba(255,255,255,.82);
}
.footer-list i{
  font-size:20px;
  margin-top:2px;
  color:#7dd3fc;
}
.footer-list a{
  color:#fff !important;
  text-decoration:none;
}
.footer-list a:hover{
  color:#7dd3fc !important;
  text-decoration:none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,.86) !important;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.4;
        transition: all 0.25s ease;
    }

        .footer-links a i {
            font-size: 14px;
            color: #7dd3fc;
            min-width: 18px;
        }

        .footer-links a:hover {
            color: #7dd3fc !important;
            transform: translateX(4px);
        }

            .footer-links a:hover i {
                color: #38bdf8;
            }


/* map */
.footer-map{
  margin-top:auto;              /* pushes map to bottom of card */
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
}
.footer-map iframe{
  display:block;
  width:100%;
  height:190px;
  border:0;
}

/* bottom bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:22px;
  padding:14px 0;
  background:#06182a;
}
.footer-bottom .small{ color:rgba(255,255,255,.75); }
.footer-bottom-links a{
  color:rgba(255,255,255,.85) !important;
  text-decoration:none;
}
.footer-bottom-links a:hover{ color:#fff !important; }
.footer-bottom-links .sep{
  margin:0 10px;
  opacity:.5;
}

/* Mobile */
@media(max-width:768px){
  .footer-cta{ text-align:center; }
  .footer-cta .text-md-right{ text-align:center !important; }
  .footer-cta .btn{ margin-top:10px; }
  .footer-card{ min-height:auto; }
}
.brand-name{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #ffffff;
    line-height: 1.1;
}



/* Optional hover polish */
.brand-name:hover{
    color: #7dd3fc;
    transition: color .25s ease;
}

/* ===============================
   MOBILE ADJUSTMENT
================================ */
@media (max-width: 768px){
    .brand-name{
        font-size: 16px;
                  text-align:left !important;

    }
    .brand-tagline{
        font-size: 13px;
                  text-align:left !important;

    }
}/* ===== Responsive (Mobile) ===== */
@media (max-width: 767.98px){

  /* header becomes 2 lines like screenshot */
  #siteHeader{
    padding: 10px 0;
  }

  #siteHeader .header-row{
    min-height:auto !important;
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    row-gap:0px;
  }

  #siteHeader .header-row > .col-md-6{
    width:100% !important;
    max-width:100% !important;
    flex:0 0 100% !important;
  }

  .logo-item a{
    justify-content:center !important;
  }

  .logo-item img{
    height:38px !important;
  }

  .brand-name{
   text-align:left !important;

    font-size:18px !important;

  }




.btn-opex{
    font-size:13px !important;
    border-radius:8px !important;
  }

  /* nav moves below expanded header */
  #siteNav{
    top: 132px !important; /* because header now taller */
  }

  /* hamburger button look like screenshot */
  #siteNav .navbar-toggler{
    text-align:left !important;
    border:1px solid rgba(11,42,74,.25) !important;
    border-radius:3px !important;
    background:#bfe3ff !important;

  }

  /* icon dark */
  #siteNav .navbar-toggler-icon{
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(11,42,74,0.95)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  /* collapse menu panel (white, clean, not grey) */
  #siteNav .navbar-collapse{
    margin-top:10px;
    border:1px solid rgba(11,42,74,.10);
    border-radius:14px;
    padding:10px;
    box-shadow: var(--shadow);
  }
  @media (max-width: 767.98px){
  .dropdown-menu .dropdown-item{

    padding: 12px 12px !important;   /* bigger tap area */
    font-size: 14px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;  /* wrap text */
  }
  .text-right {
    text-align: right !important;
}
}

/* Extra small phones */
@media (max-width: 400px){
  .dropdown-menu .dropdown-item{
    font-size: 13px !important;
    padding: 11px 10px !important;
  }
}
  #siteNav .navbar-nav{
    width:100%;
  }
  #siteNav .nav-item{
    width:100%;
  }

  #siteNav .navbar-nav .nav-link{
    width:100%;
    padding:12px 14px !important;
    border-radius:12px;
  }

  /* dropdown inside collapse */
  #siteNav .dropdown-menu{
    position: static !important;
    float:none !important;
    width:100% !important;
    margin-top:6px !important;
    box-shadow:none !important;
    border:1px solid rgba(11,42,74,.08) !important;
  }

  /* push content correctly on mobile */
  #pageContent{
    padding-top: 210px !important; /* header expanded + nav */
  }
}

/* ===== ULTRA PREMIUM CORPORATE BACKGROUND ===== */
body {
    background: radial-gradient(1100px 520px at 50% -160px, rgba(27,117,188,.14), rgba(255,255,255,0) 65%), radial-gradient(900px 420px at 90% 10%, rgba(14,165,233,.08), rgba(255,255,255,0) 60%), linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #ffffff 100%);
    background-attachment: fixed;
    color: var(--opex-text);
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* -----------------------------
   HERO BANNER
----------------------------- */
/* =========================================================
   HERO / BANNER (Corporate)
   Use with:
   <div class="banner">
     <div class="slider">
       <img src="..." alt="">
       <div class="banner-content">...</div>  (optional)
     </div>
   </div>
========================================================= */

.banner {
     
    margin: 20px auto 20px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 28px 70px rgba(2,6,23,.18);
    isolation: isolate; /* keeps overlays clean */
}

    /* Banner height control */
    .banner .slider {
        position: relative;
        width: 100%;
        height: 460px; /* desktop */
        overflow: hidden;
    }

        /* Image = cinematic crop */
        .banner .slider img {
            width: 100%;
            height: 100%;
            display: block;
            object-position: center; /* adjust if needed */
                  }

        /* Professional overlay (readability + depth) */
        .banner .slider::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(10,34,60,.55) 0%, rgba(10,34,60,.28) 38%, rgba(10,34,60,.12) 62%, rgba(10,34,60,0) 100% ), linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.18) 100% );
            pointer-events: none;
        }

    /* Soft highlight for glassy corporate look */
    .banner::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 22px;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
        pointer-events: none;
        z-index: 3;
    }

    /* Bottom fade into page background */
    .banner::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 120px;
        background: linear-gradient(180deg, rgba(244,247,251,0), #f4f7fb);
        pointer-events: none;
        z-index: 2;
    }

    /* Optional: text on banner (if you add .banner-content inside .slider) */
    .banner .banner-content {
        position: absolute;
        left: clamp(18px, 4vw, 56px);
        bottom: clamp(18px, 4vw, 52px);
        max-width: 720px;
        color: #fff;
        z-index: 4; /* above overlays */
        text-shadow: 0 10px 24px rgba(0,0,0,.28);
    }

    .banner .banner-title {
        font-size: clamp(24px, 3vw, 44px);
        line-height: 1.12;
        margin: 0 0 10px;
        font-weight: 800;
        letter-spacing: .2px;
    }

    .banner .banner-subtitle {
        margin: 0 0 16px;
        font-size: clamp(14px, 1.2vw, 18px);
        line-height: 1.6;
        opacity: .95;
    }

    .banner .banner-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

/* Responsive heights */
@media (max-width: 1199.98px) {
    .banner .slider {
        height: 420px;
    }
}

@media (max-width: 991.98px) {
    .banner {
        border-radius: 18px;
    }

        .banner .slider {
            height: 360px;
        }

        .banner::after {
            height: 95px;
        }
}

@media (max-width: 767.98px) {
    .banner {
        margin: 10px 12px 22px;
        border-radius: 16px;
    }

        .banner .slider {
            height: 280px;
        }

            .banner .slider::after {
                /* stronger overlay on mobile for readability */
                background: linear-gradient(90deg, rgba(10,34,60,.60) 0%, rgba(10,34,60,.25) 55%, rgba(10,34,60,0) 100%), linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.22) 100%);
            }

        .banner::after {
            height: 80px;
        }
}

/* -----------------------------
   HEADLINE BELOW BANNER
----------------------------- */
.fancy-title {
    max-width: 1100px;
    margin: 10px auto 10px;
    font-size: 35px;
    line-height: 1.35;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #0b2a4a, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.6px;

}



    .fancy-title span {
        color: #1b75bc;
    }

/* -----------------------------
   TWO SOLUTION CARDS (ENTERPRISE)
----------------------------- */
.solutions-preview {
    position: relative;
    padding: 16px 12px;
    margin-top: 2px;
    border-radius: 24px;
    background: linear-gradient(180deg,#ffffff,#f7faff);
    box-shadow: 0 22px 50px rgba(2,6,23,.10);
}

.solution-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 16px 36px rgba(2,6,23,.10);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 70px rgba(2,6,23,.18);
    }

.solution-title {
    font-size: 17px;
    font-weight: 800;
    color: #0b2a4a;
    line-height: 1.35;
    margin-bottom: 14px;
}

.solution-image {
    border-radius: 14px;
    overflow: hidden;
}

    .solution-image img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        transition: transform .35s ease;
    }

.solution-card:hover img {
    transform: scale(1.05);
}

/* -----------------------------
   RESPONSIVE – MOBILE FIRST
----------------------------- */
@media (max-width: 991.98px) {
    .banner .slider {
        height: 360px;
    }

    .fancy-title {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .banner {
        border-radius: 16px;
        margin: 0 auto 20px;
    }

        .banner .slider {
            height: 28vh;
            
        }

    .fancy-title {
        font-size: 24px;
        padding: 0 12px;
    }

    .solutions-preview {
        padding: 8px 7px;
    }

    .solution-image img {
        height: 180px;
    }
}

@media (max-width: 420px) {
    .banner .slider {
        height: 28vh;
    }

    .fancy-title {
        font-size: 21px;
    }
}
/* ================================
   CUSTOMER LOGOS – 2 ROW SCROLL
================================ */
.customer-logos.logo-marquee {
    position: relative;
    overflow: hidden;
}

    /* Fade edges (premium look) */
    .customer-logos.logo-marquee::before,
    .customer-logos.logo-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        z-index: 2;
        pointer-events: none;
    }

    .customer-logos.logo-marquee::before {
        left: 0;
        background: linear-gradient(90deg,#ffffff,transparent);
    }

    .customer-logos.logo-marquee::after {
        right: 0;
        background: linear-gradient(270deg,#ffffff,transparent);
    }

/* Each scrolling row */
.logo-row {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

/* Row 1 – Left to Right */
.rows-3 .logo-row:nth-child(1) {
    animation: scrollLeft 45s linear infinite;
    padding-bottom:20px;
}

/* Row 2 – Right to Left */
.rows-3 .logo-row:nth-child(2) {
    animation: scrollRight 50s linear infinite;
    padding-bottom: 20px;
}

/* Row 3 – Left to Right (slower for depth) */
.rows-3 .logo-row:nth-child(3) {
    animation: scrollLeft 55s linear infinite;
    padding-bottom: 20px;
}

.logo-row .slide {
    display: flex;
    gap: 26px;
    margin-right: 26px;
}

/* Logo card */
.logo-row a {
    width: 160px;
    height:70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 10px 22px rgba(2,6,23,.06);
    flex: 0 0 auto;
    padding: 12px;
    pointer-events: none; /* 🔒 disables click */
    cursor: default;
}

/* Logo image */
.logo-row img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
    opacity: 1;
    transition: all .25s ease;
}
/* Hover polish */
.logo-row a:hover img {
    filter: none;
    opacity: 1;
}
/* Hover effect */
.logo-row a:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(2,6,23,.14);
}

/* Pause animation on hover */
.customer-logos:hover .logo-row {
    animation-play-state: paused;
}

/* Animations */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-row a {
        width: 140px;
        height: 72px;
    }
}
/* ================================
   GLOBAL SECTION HEADER STYLES
   (Reusable across entire website)
================================ */
.section-header {
    text-align: center; /* CENTER ALL TEXT */
}

/* Center divider */
.section-divider {
    width: 150px;
    height: 4px;
    border-radius: 999px;
    margin: 80px auto 40px; /* CENTER DIVIDER */
    background: linear-gradient(90deg, #1b75bc, #0b2a4a);
    width: 90px;
}

/* Title */
.section-title {
    margin-bottom:30px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: #0b2a4a;
    letter-spacing: -0.3px;
}

    /* Highlight span */
    .section-title span {
        font-weight: 600;
        color: #111827;
    }

/* Subtitle */
.section-subtitle {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: #475569;
    font-weight: 500;
    padding: 5px 8px 20px; /* top:5px | left-right:8px | bottom:10px */
    text-align:left
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .section-divider {
        width: 90px;
        margin:60px auto 30px; /* CENTER DIVIDER */
    }
}
/* =========================
   GLOBAL TOKENS (ALL PAGES)
========================= */
:root {
    --opex-navy: #0b2a4a;
    --opex-navy2: #0a223a;
    --opex-blue: #1b75bc;
    --opex-sky: #35b8ff;
    --opex-text: #0f172a;
    --opex-muted: #5b6b7b;
    --opex-border: rgba(15,23,42,.10);
    --opex-radius: 18px;
    --opex-shadow: 0 18px 40px rgba(2,6,23,.10);
    --opex-shadow2: 0 10px 22px rgba(2,6,23,.08);
}

/* ===== ULTRA PREMIUM CORPORATE BACKGROUND ===== */
body {
    background: radial-gradient(1100px 520px at 50% -160px, rgba(27,117,188,.14), rgba(255,255,255,0) 65%), radial-gradient(900px 420px at 90% 10%, rgba(14,165,233,.08), rgba(255,255,255,0) 60%), linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #ffffff 100%);
    background-attachment: fixed;
    color: var(--opex-text);
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}


/* Section spacing */
.opex-section {
    padding: 56px 0;
}

/* Generic card */
.opex-card {
    background: #fff;
    border: 1px solid var(--opex-border);
    border-radius: var(--opex-radius);
    box-shadow: var(--opex-shadow2);
    padding: 22px;
}

/* Titles */
.opex-h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.2px;
}

.opex-subtitle {
    margin: 0 0 12px;
    color: var(--opex-muted);
    font-weight: 600;
    font-size: 15px;
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: #475569;
    font-weight: 500;
}

.opex-text {
    color: #334155;
    line-height: 1.7;
    font-size: 14px;
}

/* Media image */
.opex-media {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.06);
}

/* =========================
   LEFT TABS (BUTTON LIST)
========================= */
.opex-panel {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--opex-border);
    border-radius: var(--opex-radius);
    box-shadow: var(--opex-shadow2);
    padding: 15px;
}

.opex-tab-btn {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(15,23,42,.08);
    background: #fff;
    border-radius: 14px;
    padding: 14px 14px;
    margin: 10px 0;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    box-shadow: 0 8px 18px rgba(2,6,23,.06);
    position: relative;
}

.opex-tab-title {
    display: block;
    font-weight: 800;
    font-size: 16px;
    color: var(--opex-text);
}

.opex-tab-sub {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--opex-muted);
    font-weight: 600;
}

.opex-tab-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(27,117,188,.22);
    box-shadow: 0 12px 26px rgba(2,6,23,.10);
}

.opex-tab-btn.is-active {
    border-color: rgba(27,117,188,.35);
    box-shadow: 0 18px 34px rgba(27,117,188,.18);
}

    .opex-tab-btn.is-active::before {
        content: "";
        position: absolute;
        left: 0;
        top: 12px;
        bottom: 12px;
        width: 4px;
        border-radius: 6px;
        background: linear-gradient(180deg, var(--opex-blue), var(--opex-sky));
    }

/* =========================
   RIGHT CONTENT TOGGLE
========================= */
.opex-tab-content {
    display: none;
}

    .opex-tab-content.is-active {
        display: block;
    }

.opex-section {
    padding: 2px 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .opex-section {
        padding: 0px 0;
    }

    .opex-media {
        height: 200px;
    }
}

.opex-media {
    height: 260px;
}
/* TOP: title always stays on top */
/* =========================
   FIXED HEADER & FOOTER
   INSIDE RIGHT CONTENT CARD
========================= */

/* Make the text column a vertical layout */
.opex-feature-text {
    display: flex;
    flex-direction: column;
    height: 260px; /* fixed stable height */
}

/* TOP: title always visible */
.opex-feature-top {
    flex: 0 0 auto;
    padding-bottom: 6px;
}

/* MIDDLE: scrollable content */
.opex-feature-body {
    flex: 1 1 auto;
    padding: 0px 0px 0px;
}

    /* Smooth scrollbar (optional, professional) */
    .opex-feature-body::-webkit-scrollbar {
        width: 5px;
    }

    .opex-feature-body::-webkit-scrollbar-thumb {
        background: rgba(27,117,188,.35);
        border-radius: 10px;
    }

/* BOTTOM: button fixed */
.opex-feature-footer {
    flex: 0 0 auto;
    padding-top: 2px;
    border-top: 1px solid rgba(15,23,42,.08);
}

    /* Button polish */
    .opex-feature-footer .btn {
        padding: 8px 18px;
        font-size: 13px;
        border-radius: 999px;
    }

/* =========================
   CARD HEIGHT STABILITY
========================= */
.opex-card {
    min-height: 320px;
}

/* =========================
   RESPONSIVE FIX
========================= */
@media (max-width: 767.98px) {
    .opex-feature-text {
        height: auto;
    }

   
}

.text-right {
    text-align: right !important;
}
/* button */
/* =========================
   OPEX PRIMARY CTA BUTTON
========================= */

/* Small variant */
.btn-opex-sm {
    min-width: 120px;
    width: 30%;
    height: 36px;
    font-size: 13px !important;
}
/* =========================
   SOLUTION PILLARS (3 CARDS)
========================= */
.opex-pillar-section {
    background: #ffffff;
}

.opex-pillar-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    padding: 26px 22px 20px;
    box-shadow: 0 14px 34px rgba(2,6,23,.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex;
    flex-direction: column; /* important for bottom button */
}  /* top accent glow */

.opex-pillar-card:hover {
    transform: translateY(-3px);
    border-color: rgba(27,117,188,.22);
    box-shadow: 0 22px 50px rgba(2,6,23,.12);
}

/* Icon */
.opex-pillar-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(27,117,188,.08), rgba(255,255,255,.0));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .opex-pillar-icon img {
        max-width: 125px;
        max-height: 125px;
        display: block;
    }

.opex-pillar-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    margin: 20px 0 6px;
    color: #0f172a;
}

.opex-pillar-tag {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1b75bc;
    margin-bottom: 14px;
}

/* Content box (replacing your black border box) */
.opex-pillar-box {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 14px;
    padding: 16px 16px;
    color: #334155;
    line-height: 1.65;
    font-size: 14.5px;
    flex: 1 1 auto; /* makes button stick at bottom */
}

    .opex-pillar-box p {
        margin: 0 0 10px;
    }

        .opex-pillar-box p:last-child {
            margin-bottom: 0;
        }

/* Button always at bottom + centered */
.opex-pillar-btn {
    margin-top: 16px;
    align-self: center;
    min-width: 250px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .opex-title {
        font-size: 26px;
    }

    .opex-desc {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .opex-title {
        font-size: 22px;
    }

    .opex-divider {
        width: 80px;
    }

    .opex-pillar-btn {
        min-width: 210px;
    }
}



/* Left image frame */
.opex-why-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 40px rgba(2,6,23,.12);
}

    .opex-why-media img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }

/* Right card */
.opex-why-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(2,6,23,.10);
    padding: 5px 5px 5px;
    position: relative;
}

    

/* List styling */
.opex-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .opex-why-list li {
        display: flex;
        gap: 14px;
        padding: 10px 6px 10px 10px;
        border-radius: 14px;
        transition: background .15s ease, transform .15s ease;
    }

        .opex-why-list li + li {
            border-top: 1px dashed rgba(15,23,42,.12);
        }

        .opex-why-list li:hover {
            background: rgba(27,117,188,.06);
            transform: translateY(-1px);
        }

/* Dot */
.opex-why-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 7px;
    flex: 0 0 auto;
    background: linear-gradient(180deg, #1b75bc, #35b8ff);
    box-shadow: 0 8px 18px rgba(27,117,188,.25);
}

/* Text */
.opex-why-head {
    font-weight: 800;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 4px;
}

.opex-why-text1 {
    color: #475569;
    font-size: 14.5px;
    line-height: 1.65;
}

/* CTA */
.opex-why-cta {
    padding-top: 14px;
    display: flex;
    justify-content: flex-start;
}

/* button look (common) */
.opex-pill-btn {
    min-width: 190px;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    font-weight: 700 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .opex-why-media img {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .opex-why-media img {
        height: 260px;
    }

    .opex-why-card {
        padding: 18px 16px 14px;
    }
}
/* Wrapper */
.main-subtitle {
    max-width: 960px;
    margin: 0 auto;
    letter-spacing: -0.4px;
    line-height: 1.75;
}



/* =========================================================
   MODULAR SEQUENCE SECTIONS (as per your HTML)
   Works with:
   .opex-section .opex-modular-block .opex-modular-alt
========================================================= */

/* Section wrapper */
.opex-modular-block {
    padding: 44px 0; /* nice spacing */
}

/* Alternate background so sections look in sequence */
.opex-modular-alt {
    background: radial-gradient(900px 420px at 50% 0%, rgba(27,117,188,.10), rgba(255,255,255,0) 62%), linear-gradient(180deg, #f6faff 0%, #ffffff 55%, #f6faff 100%);
    border-top: 1px solid rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(15,23,42,.06);
}

/* Tighten header inside this section only */
.opex-modular-block  {
    padding: 0 0 18px;
    margin: 0 auto 10px;
}

.opex-modular-block {
    margin-bottom: 24px;
}

.opex-modular-block {
    margin: 0 auto 6px;
}

.opex-modular-block .section-subtitle {
    margin-top: 8px;
    max-width: 900px;
}

/* Row alignment */
.opex-modular-row {
    margin-top: 8px;
}

/* Image card look */
.opex-modular-image {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 40px rgba(2,6,23,.10);
    display: inline-block;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .opex-modular-image:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 58px rgba(2,6,23,.14);
    }

    .opex-modular-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 14px;
    }

/* Text block (like Canva) */
.opex-modular-text {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
    margin: 0;
    max-width: 760px;
}

/* Better spacing between image and text on desktop */
@media (min-width: 992px) {
    .opex-modular-row .col-lg-7 {
        padding-left: 28px;
    }
    /* second section where image is right */
    .opex-modular-row .order-lg-1 {
        padding-right: 28px;
        padding-left: 0;
    }
}

/* Mobile polish */
@media (max-width: 991.98px) {
    .opex-modular-block {
        padding: 32px 0;
    }

    .opex-modular-text {
        font-size: 15px;
    }

    .opex-modular-image {
        padding: 12px;
    }
}
/* WHY CHOOSE - Canva Style Layout */
.opex-why-block {
    padding: 5px 0;
    background: #ffffff;
}

.opex-why-row {
    margin-top: 10px;
    margin-bottom: 10px;
}

.opex-why-text1 {
    font-size: 16px;
    line-height: 1.85;
    color: #2b3645;
    margin: 0;
}

/* Image card */


/* Highlight paragraph */
.opex-highlight {
    background: #1b75bc;
    color: #fff;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
    margin: 1px auto 1px;
}

/* Bottom blue text */
.opex-why-bottom {
    text-align: center;
    padding-top: 6px;
}

.opex-why-bottom-line {
    color: #1b75bc;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.opex-why-bottom-sub {
    color: #1b75bc;
    font-size: 16px;
    font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 991px) {
   

    .opex-highlight {
        font-size: 15px;
    }

    .opex-why-bottom-line {
        font-size: 16px;
    }

    .opex-why-bottom-sub {
        font-size: 14px;
    }
}


/* =========================================================
   MODULAR SEQUENCE SECTIONS (as per your HTML)
   Works with:
   .opex-section .opex-modular-block .opex-modular-alt
========================================================= */

/* Section wrapper */
.opex-modular-block {
    padding: 44px 0; /* nice spacing */
}

/* Alternate background so sections look in sequence */
.opex-modular-alt {
    background: radial-gradient(900px 420px at 50% 0%, rgba(27,117,188,.10), rgba(255,255,255,0) 62%), linear-gradient(180deg, #f6faff 0%, #ffffff 55%, #f6faff 100%);
    border-top: 1px solid rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(15,23,42,.06);
}

/* Tighten header inside this section only */
.opex-modular-block  {
    padding: 0 0 18px;
    margin: 0 auto 10px;
}

.opex-modular-block  {
    margin-bottom: 28px;
}

.opex-modular-block{
    margin: 0 auto 6px;
}

.opex-modular-block .section-subtitle {
    margin-top: 8px;
    max-width: 900px;
}

/* Row alignment */
.opex-modular-row {
    margin-top: 8px;
}


/* Text block (like Canva) */
.opex-modular-text {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
    margin: 0;
    max-width: 760px;
}

/* Better spacing between image and text on desktop */
@media (min-width: 992px) {
    .opex-modular-row .col-lg-7 {
        padding-left: 28px;
    }
    /* second section where image is right */
    .opex-modular-row .order-lg-1 {
        padding-right: 28px;
        padding-left: 0;
    }
}

/* Mobile polish */
@media (max-width: 991.98px) {
    .opex-modular-block {
        padding: 32px 0;
    }

    .opex-modular-text {
        font-size: 15px;
    }

    .opex-modular-image {
        padding: 12px;
    }
}


/* =========================================
   OPEX – WHY / MODULAR BLOCK (two sections)
   Works with: .opex-why-block, .opex-why-row,
               .opex-why-text, .opex-why-image
========================================= */

/* Block background + spacing */
.opex-why-block {
    padding: 0 10px;
    position: relative;
}

    /* alternate background for sequence (1st white, 2nd light) */
    .opex-why-block:nth-of-type(even) {
        background: linear-gradient(180deg,#f6fbff 0%, #ffffff 100%);
    }

/* Row spacing */
.opex-why-row {
    margin-top: 10px;
}

/* Text style */
.opex-why-text {
    font-size: 17px;
    line-height: 1.75;
    color: #1f2a37;
    margin: 0;
    padding: 2px 0;
    max-width: 960px;
}

/* Make text look premium (left border accent) */
.opex-why-text {
    padding-left: 18px;
    border-left: 4px solid rgba(27,117,188,.35);
}


/* Modular image card (re-use your image box style) */
.opex-modular-image,
.opex-why-image {
    background: transparent; /* remove the white background */
    box-shadow: none; /* remove shadow */
    border-radius: 0; /* remove rounding if not needed */
    display: inline-block;
    text-align: center;
}

    /* hover lift */
    .opex-modular-image:hover,
    .opex-why-image:hover {
        transform: translateY(-6px);
       
    }

    /* image sizing */
    .opex-modular-image img,
    .opex-why-image img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 12px;
        max-width: 420px;
        max-height: 270px;
        margin: 0 auto;
        object-fit: contain;
    }

/* Header alignment consistency */
.opex-why-block .section-header {
    margin-bottom: 0px;
}

/* Remove extra big gap if any default */
.opex-why-block {
    margin-bottom: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    

    .opex-why-text {
        max-width: 100%;
        font-size: 16px;
        padding-left: 14px;
    }

    .opex-modular-image img,
    .opex-why-image img {
        max-width: 340px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .opex-why-block {
        padding: 0px 0;
    }

    .opex-why-text {
        font-size: 15px;
    }
}

/* =========================================
   MOBILE INTERFACE SECTION (Highlight + List)
   Uses your HTML:
   .opex-highlight, .opex-why-bottom, .opex-feature-list
========================================= */

/* Section spacing + soft background */
.opex-modular-block {
    padding: 5px 0;
    background: linear-gradient(180deg,#f6fbff 0%, #ffffff 65%, #ffffff 100%);
}

/* Highlight message (top box) */
.opex-highlight {
    max-width: 980px;
    margin: 10px auto 26px; /* CENTER + LIMIT WIDTH */
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);
    border-left: 6px solid rgba(27,117,188,.95);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(2,6,23,.10);
    color: #0f172a;
    font-size: 15.5px;
    line-height: 1.75;
    text-align: center;
}

/* Blue statement lines */
.opex-why-bottom {
    text-align: center;
    margin: 0 auto 22px;
    padding: 0 10px;
}

.opex-why-bottom-line {
    font-weight: 700;
    color: #1b75bc;
    letter-spacing: .2px;
    line-height: 1.35;
    margin: 6px 0;
    font-size: 16px;
}

/* Section header tightening */
.opex-modular-block {
    margin-top: 18px;
    margin-bottom: 28px;
}

/* Row spacing */
.opex-modular-row {
    margin-top: 10px;
}

/* Improve the image card */
.opex-modular-image {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 45px rgba(2,6,23,.10);
    transition: transform .35s ease, box-shadow .35s ease;
    display: inline-block;
}

    .opex-modular-image:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 70px rgba(2,6,23,.18);
    }

    .opex-modular-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        max-width: 420px;
        margin: 0 auto;
        
    }

/* Feature list = modern bullets + card feel */
.opex-feature-list {
    list-style: none;
    margin: 0;
    padding: 18px 18px 18px 20px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(2,6,23,.08);
}

    .opex-feature-list li {
        position: relative;
        padding: 10px 10px 10px 34px;
        margin: 6px 0;
        color: #0f172a;
        font-size: 15.5px;
        line-height: 1.55;
        border-radius: 10px;
        transition: background .25s ease, transform .25s ease;
    }

        /* Blue check-dot */
        .opex-feature-list li:before {
            content: "";
            position: absolute;
            left: 12px;
            top: 16px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #1b75bc;
            box-shadow: 0 0 0 4px rgba(27,117,188,.14);
        }

        .opex-feature-list li:hover {
            background: rgba(27,117,188,.06);
            transform: translateX(3px);
        }

/* Responsive */
@media (max-width: 991px) {
    .opex-modular-block {
        padding: 5px 0;
    }

    .opex-highlight {
        margin: 10px 12px 22px;
        font-size: 15px;
    }

    .opex-feature-list {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .opex-highlight {
        padding: 14px 14px;
    }

    .opex-why-bottom-line {
        font-size: 14.5px;
    }

    .opex-feature-list li {
        font-size: 14.7px;
    }
}
img, .no-save {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none; /* iOS long-press menu */
    pointer-events: none; /* stops right click on img */
}

.no-save-wrap {
    pointer-events: auto;
}
.opex-why-media1 {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 40px rgba(2,6,23,.12);
}



.opex-why-media1 img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}
@media (max-width: 992px) {
    .opex-why-media1 img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .opex-why-media1 img {
        height: 360px;
    }

}


.opex-autonomy-wrap {
    max-width: 980px; /* keeps Canva look */
}


/* two items */
.opex-autonomy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 10px;
    text-align: left;
}

/* card row */
.opex-autonomy-item {
    display: flex;
    gap: 10px;
    padding: 8px 8px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(2,6,23,.08);
    position: relative;
    overflow: hidden;
}

    /* left accent line */
    .opex-autonomy-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        bottom: 4px;
        width: 4px;
        border-radius: 10px;
        opacity: .9;
    }

    .opex-autonomy-item:hover {
        transform: translateY(-3px);
        border-color: rgba(27,117,188,.22);
        box-shadow: 0 26px 60px rgba(2,6,23,.14);
    }

.opex-autonomy-icon {

    border-radius: 18px;
    display: flex;
    align-items: inherit;
    justify-content: center;
}

    .opex-autonomy-icon img {
        width: 66px;
        height: 66px;
        display: block;
    }

.opex-autonomy-head {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 2px 0 6px;
}

.opex-autonomy-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569;
    font-weight: 500;
}

/* responsive */
@media (max-width: 991px) {
    .opex-autonomy {
        padding: 5px 0;
    }

    .opex-autonomy-title {
        font-size: 28px;
    }

    .opex-autonomy-sub {
        font-size: 15.5px;
    }
}

@media (max-width: 576px) {
    .opex-autonomy-title {
        font-size: 22px;
    }

    .opex-autonomy-item {
        padding: 16px 14px;
    }

    .opex-autonomy-icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

        .opex-autonomy-icon img {
            width: 64px;
            height: 64px;
        }

    .opex-autonomy-head {
        font-size: 16px;
    }

    .opex-autonomy-text {
        font-size: 14.5px;
    }
}
/* ==============================
   DIVERSIFIED DOMAINS (NEW)
============================== */


.opex-domains-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.opex-domains-tag {
    font-size: 13px;
    font-weight: 800;
    color: #0b2a4a;
    background: rgba(27,117,188,.08);
    border: 1px solid rgba(27,117,188,.18);
    padding: 8px 12px;
    border-radius: 999px;
}

/* Grid */
.opex-domains-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top:30px;
}

/* Card */
.opex-domain-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 16px 40px rgba(2,6,23,.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

    /* top accent glow */
    .opex-domain-card::before {
        content: "";
        position: absolute;
        left: -40px;
        top: -60px;
        width: 180px;
        height: 180px;
        pointer-events: none;
    }

    .opex-domain-card:hover {
        transform: translateY(-4px);
        border-color: rgba(27,117,188,.22);
        box-shadow: 0 26px 60px rgba(2,6,23,.14);
    }

.opex-domain-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.opex-domain-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(27,117,188,.08), rgba(255,255,255,.0));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .opex-domain-icon img {
        max-width: 125px;
        max-height: 125px;
        display: block;
    }

.opex-domain-mini {
    font-size: 12.5px;
    font-weight: 800;
    color: rgba(11,42,74,.80);
    letter-spacing: .2px;
}

.opex-domain-name {
    font-size: 16.5px;
    font-weight: 900;
    color: #1b75bc; /* your blue like screenshot */
    margin: 6px 0 8px;
    line-height: 1.25;
}

.opex-domain-text {
    font-size: 14.8px;
    line-height: 1.7;
    color: #475569;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .opex-domains-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .opex-domains {
        padding: 5px 0;
    }

    .opex-domains-title {
        font-size: 30px;
    }

    .opex-domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .opex-domains-title {
        font-size: 22px;
    }

    .opex-domains-sub {
        font-size: 15px;
    }

    .opex-domains-grid {
        grid-template-columns: 1fr;
    }

    .opex-domain-card {
        min-height: auto;
    }
}
.process-diagram {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Label Row */
.process-labels {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: -12px; /* Adjusts upward to align close to image */
    padding: 0 30px;
}

/* Each Label */
.process-step {
    font-size: 16px;
    font-weight: 600;
    min-width: 100px;
    padding: 6px 0;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

    /* Hover effect (optional) */
    .process-step:hover {
        background-color: rgba(0, 123, 255, 0.05);
        transform: scale(1.05);
    }


/* Card Layout */
.feature-block {
    border: 1px solid #e1e8f0;
    border-left: 5px solid #2c6ed5;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
    transition: all 0.3s ease;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

    .feature-block:hover {
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.15);
        transform: translateY(-4px);
    }

/* Main Heading */
.feature-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

    .feature-heading::before {
        content: '✓';
        color: #22c55e;
        position: absolute;
        left: 0;
        top: 0;
    }

/* Subheadings like CAPA, 4M etc. */
.feature-subheading {
    font-size: 16px;
    font-weight: 600;
    color: #2c6ed5;
    margin-top: 16px;
    margin-bottom: 6px;
}

/* Text Content */
.feature-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
}

/* Optional Icon Layout (for grid-style sections) */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.feature-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.feature-content p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-block {
        padding: 13px;
    }

    .feature-heading {
        font-size: 18px;
    }

    .feature-subheading {
        font-size: 15px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon img {
        margin-bottom:5px;
    }
}
/* =========================================================
   ECOSYSTEM PARTNERS SECTION
========================================================= */
.opex-partnersx {
    padding: 10px 0 10px;
    background: #fff;
}

.opex-partnersx-wrap {
    max-width: 1100px;
}

/* two cards layout */
.opex-partnersx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
    margin-top: 14px;
}

/* partner card */
.opex-partner-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    padding: 20px 20px 18px;
    box-shadow: 0 14px 34px rgba(2,6,23,.08);
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .opex-partner-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 14px;
        bottom: 14px;
        width: 4px;
        border-radius: 10px;
        background: linear-gradient(180deg, var(--opex-blue), var(--opex-sky));
        opacity: .95;
    }

    .opex-partner-card:hover {
        transform: translateY(-3px);
        border-color: rgba(27,117,188,.22);
        box-shadow: 0 26px 60px rgba(2,6,23,.14);
    }

.opex-partner-title {
    margin: 0 0 10px;
    padding-left: 14px;
    font-size: 22px;
    font-weight: 900;
    color: var(--opex-blue);
    letter-spacing: -0.2px;
}

.opex-partner-text {
    margin: 0 0 12px;
    padding-left: 14px;
    font-size: 15.5px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
}

/* highlight paragraph (blue strip) */
.opex-partner-highlight {
    margin-top: 8px;
    margin-left: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--opex-blue);
    color: #fff;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(27,117,188,.18);
}

/* Optional logo strip */
.opex-partnersx-logos {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(15,23,42,.10);
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    align-items: center;
}

.opex-logo-item {
    text-align: center;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;
    padding: 14px 12px;
    box-shadow: 0 12px 30px rgba(2,6,23,.06);
}

    .opex-logo-item img {
        max-width: 220px;
        height: 64px;
        object-fit: contain;
        display: block;
        margin: 0 auto 10px;
    }

    .opex-logo-item a {
        font-weight: 800;
        color: var(--opex-blue);
        text-decoration: none;
    }

        .opex-logo-item a:hover {
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 991.98px) {
    .opex-hdr-title {
        font-size: 24px;
    }

    .opex-partnersx-grid {
        grid-template-columns: 1fr;
    }

    .opex-partnersx-logos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .opex-winwin-media {
        padding: 10px;
    }

    .opex-partner-card {
        padding: 16px 14px;
    }

    .opex-partner-title {
        font-size: 19px;
    }

    .opex-partner-text {
        font-size: 14.7px;
    }
}
/* =========================================================
   PARTNERS CONTACT ROW (Phone / Email) — FINAL (matches your HTML)
========================================================= */

/* full bar look */
.opex-partnersx-contact {
    margin-top: 14px;
    padding: 2px 6px;
    border: 0px solid rgba(15,23,42,.10);
    align-items: center; /* bootstrap row supports this */
}

    /* remove extra space from <p> */
    .opex-partnersx-contact .section-subtitle {
        margin: 0 !important;
        font-size: 15px;
        font-weight: 800;
        color: #0b2a4a;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        line-height: 1.2;
    }

    /* icons */
    .opex-partnersx-contact .col-md-6:first-child .section-subtitle::before {
        content: "📞";
        font-size: 16px;
    }

    .opex-partnersx-contact .col-md-6:last-child .section-subtitle::before {
        content: "✉️";
        font-size: 16px;
    }

    /* RIGHT ALIGN FIX for your existing .text-right */
    .opex-partnersx-contact .text-right {
        text-align: right;
    }

        .opex-partnersx-contact .text-right .section-subtitle {
            justify-content: flex-end;
        }

    /* small hover polish */
    .opex-partnersx-contact .section-subtitle:hover {
        color: #1b75bc;
    }

/* Mobile: stack + center */
@media (max-width: 767.98px) {
    .opex-partnersx-contact {
        padding: 2px 4px;
        text-align: center;
    }

        .opex-partnersx-contact .col-md-6 {
            text-align: center !important;
        }

            .opex-partnersx-contact .col-md-6 + .col-md-6 {
                margin-top: 8px;
            }

        .opex-partnersx-contact .section-subtitle {
            justify-content: center !important;
            font-size: 14.5px;
        }
}
.opex-pillar-row {
   padding-bottom:12px;
}