*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Alexandria',sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:24px 70px;
    border-bottom:1px solid rgba(255,255,255,.25);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.navbar.scrolled {
    background: #ffffff;
    padding: 12px 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}


.navbar.scrolled nav a {
    color: #111 !important;
    background: transparent !important;
}

.navbar.scrolled nav a.active {
    color: #0F8BB2 !important;
    background: transparent !important;
}

.navbar.scrolled nav,
.navbar.scrolled nav ul,
.navbar.scrolled nav ul li {
    background: transparent !important; 
}


.navbar.scrolled .desktop-quote {
    background: #c9281f;
    color: #fff;
}

.navbar.scrolled .hamburger {
    color: #111;
}

/* Keep mobile menu colors unchanged when scrolled */
@media (max-width:991px){

    .navbar.scrolled .nav-menu,
    .navbar.scrolled .nav-menu.active{
        background:#fff !important;
    }

    .navbar.scrolled .nav-menu ul{
        background:#fff !important;
    }

    .navbar.scrolled .nav-menu a{
        color:#111 !important;
    }

    .navbar.scrolled .nav-menu a.active{
        color:#0F8BB2 !important;
    }

    .navbar.scrolled .mobile-quote .quote-btn{
        background:#c9281f !important;
        color:#fff !important;
    }

}

.navbar.scrolled .nav-menu a {
    color: #fff;
}

.navbar.scrolled .nav-menu a.active {
    color: #6fd2ff;
}

.navbar.scrolled .nav-menu .quote-btn {
    background: #fff;
    color: #111;
}

.logo img{
    width:240px;
}

nav ul{
    display:flex;
    gap:48px;
    list-style:none;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

nav a.active{
    color:#6fd2ff;
    background: transparent !important;
}

.quote-btn{
    background:#fff;
    color:#111;
    text-decoration:none;
    height:50px;
    padding:0 26px;
    border-radius:999px;
    font-size:16px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

/* HERO */

.hero{
    height:100vh;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

video.hero-image{
    z-index:0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.overlay{
    position:absolute;
    inset:0;
    z-index:1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background: rgba(0,0,0,0.70);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1100px;
    text-align:center;
    color:#fff;
    padding:0 20px;
    transform:translateY(70px);
}

.hero-content h1{
    font-size:64px;
    font-weight:500;
    line-height:1.15;
    margin-bottom:24px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.hero-content h1 span{
    display:block;
}

.hero-content p{
    max-width:1050px;
    margin:auto;
    font-size:20px;
    line-height:1.6;
    font-weight:400;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-top:40px;

    height:60px;
    padding:0 32px;

    background:#fff;
    color:#111;
    text-decoration:none;

    border-radius:999px;

    font-size:18px;
    font-weight:700;
    line-height:1;
    white-space:nowrap;
}

.quote-btn i,
.hero-btn i{
    transform:rotate(-135deg);
    display:inline-block;
}

.quote-btn i{
    font-size:18px;
}

.hero-btn i{
    font-size:20px;
}


.hamburger{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
    z-index:101;
}

.hamburger.menu-open{
    color:#111;
}

.mobile-quote{
    display:none;
}



/* TABLET */

@media (max-width:1200px){

    .navbar.scrolled {
        padding: 12px 40px;
    }
    
    .navbar{
        padding:25px 40px;
    }

    nav ul{
        gap:20px;
    }

    nav a {
        font-size:15px;
    }

    .logo img{
        width:180px;
    }

    .quote-btn {
        height: 42px;
        padding: 0 18px;
        font-size: 13px;
    }

    .hero-content h1{
        font-size:54px;
    }

    .hero-content p{
        font-size:18px;
    }
}

@media (max-width:1280px) and (min-width:992px) {
    nav ul {
        gap: 16px;
    }
    nav a {
        font-size: 14px;
    }
    .logo img {
        width: 160px;
    }
    .quote-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
        white-space: nowrap;
    }
    .navbar {
        padding: 20px 32px;
    }
    .navbar.scrolled {
        padding: 10px 32px;
    }
}

/* MOBILE */

@media (max-width:991px){

    .navbar{
        padding:20px 24px;
    }

    .logo img{
        width:180px;
    }

    .desktop-quote{
        display:none;
    }

    .hamburger{
        display:block;
    }

.nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:300px;
    height:100vh;
    background:#fff;
    transition:.4s;
    padding-top:100px;
    z-index:100;
}



@media (max-width:991px){

    .nav-menu a{
        color:#111 !important;
        font-weight:600;
    }

    .nav-menu a.active{
        color:#0F8BB2 !important;
    }

    .mobile-quote .quote-btn{
        background:#000 !important;
        color:#fff !important;
    }

}

    .nav-menu.active{
        right:0;
    }

    .nav-menu ul{
        flex-direction:column;
        gap:25px;
        padding:0 30px;
    }

    .mobile-quote{
        display:block;
        margin-top:20px;
    }

    .mobile-quote .quote-btn{
        width:100%;
        justify-content:center;
    }

    .hero{
        min-height:100vh;
        align-items:center;
        padding-top:0;
    }

    .hero-content{
        transform:none;
    }

    .hero-content h1{
        font-size:36px;
        max-width:100%;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .hero-btn{
        height:54px;
        padding:0 24px;
        font-size:15px;
        white-space:nowrap;
    }
}

/* SMALL MOBILE */

@media (max-width:576px){

    .hero{
        padding-top:110px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-btn{
        width:auto;
        padding:0 20px;
        font-size:14px;
        white-space:nowrap;
    }

    .nav-menu{
        width:100%;
    }
}

/* =========================
   EXPERIENCE STATS SECTION
========================= */

.experience-section{
    padding:80px 0;
    background:#ffffff;
}

.experience-grid{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    align-items:stretch;
}


.experience-grid .stat-card{
    background:#f5f5f5;
    border-radius:32px;
    padding:50px 24px;
    height:200px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    transition:transform .2s ease !important;
}

.experience-grid .stat-card:hover{
    transform:translateY(-8px);
}

.card-bottom h2{
    font-size:56px;
    font-weight:600;
    line-height:1;
    color:#000;
}

.card-bottom h2 span{
    color:#1ec7e8;
    font-size:42px;
    vertical-align:top;
}

.card-bottom p{
    margin-top:12px;

    font-size:18px;
    font-weight:400;

    color:#8b8b8b;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .experience-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .experience-section{
        padding:40px 0;
    }

    .experience-grid{
        grid-template-columns:1fr;
    }

    .stat-card{
        min-height:0;
        height:auto;
    }

    .card-bottom h2{
        font-size:48px;
    }

    .card-bottom h2 span{
        font-size:36px;
    }
}


/* =========================
   CORE SERVICES SECTION
========================= */

.services-section {
    padding: 100px 0;
    background: #fff;
}

/* Header */

.services-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 20px;
}

/* Badge */

.services-badge {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background: #0F8BB2;
    color: #fff;
    border: 2px solid #007B8A;
    border-radius: 999px;
    height: 56px;
    width: fit-content;
    padding: 0 28px;
    margin: 0 auto 24px;

}

.badge-track {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0;
}

@keyframes badgeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.services-header h2 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.services-header p {
    font-size: 19px;
    color: #000000;
    max-width:100%;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */

.services-grid {
    width: min(1500px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    gap: 56px;
    align-items: stretch;
}

/* Service Navigation */

.services-list {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 8px 0;
}

.service-tier-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0F8BB2;
    margin-bottom: 16px;
}

.service-tier-label-secondary {
    margin-top: 28px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 4px;
    cursor: pointer;
    transition: padding-left .3s ease;
    border-bottom: 1px solid #ECECEC;
}

.services-list .service-item:first-of-type {
    border-top: 1px solid #ECECEC;
}

.service-item:hover {
    padding-left: 12px;
}

.service-num {
    font-size: 17px;
    font-weight: 500;
    color: #B8B8B8;
    min-width: 28px;
    transition: color .25s;
}

.service-item.active .service-num {
    color: #0F8BB2;
}

.service-name {
    flex: 1;
    font-size: 21px;
    font-weight: 400;
    color: #5C5C5C;
    line-height: 1.3;
    transition: color .25s, font-weight .25s;
}

.service-item.active .service-name {
    color: #111;
    font-weight: 500;
}

.service-arrow {
    font-size: 18px;
    color: #C7C7C7;
    transition: color .25s, transform .3s ease;
}

.service-item.active .service-arrow {
    color: #0F8BB2;
    transform: rotate(-90deg);
}

/* Image Panel */

.services-panel {
    position: relative;
}

.panel-image-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
    max-height: 520px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.35);
}

.panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 6s ease;
}

.panel-img.active {
    opacity: 1;
    transform: scale(1);
}

.panel-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 42%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.panel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 56px 56px 60px;
    color: #fff;
    max-width: 900px;
}

.caption-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7FE0FF;
    margin-bottom: 16px;
}

.caption-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
}

.caption-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    max-width: 640px;
}

.caption-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}

.caption-tags::-webkit-scrollbar {
    display: none;
}

.caption-tag-pill {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

/* Tablet */

@media (max-width: 1200px) {
    .services-header h2 {
        font-size: 44px;
        white-space: normal;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .services-badge {
        width: fit-content;
        height: 44px;
    }
    .badge-track {
        font-size: 18px;
    }
    .panel-image-wrap {
        height: 100%;
    }
    .caption-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 32px;
    }
    .service-name {
        font-size: 19px;
    }
    .service-arrow {
        font-size: 16px;
    }
    .panel-caption {
        padding: 40px 40px 44px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .services-section {
        padding: 70px 0;
    }

    .services-header {
        margin-bottom: 36px;
    }

    .services-badge {
        width: fit-content;
        height: 38px;
    }

    .badge-track {
        font-size: 13px;
    }

    .services-header h2 {
        font-size: 28px;
        white-space: normal;
        max-width: 100%;
    }

    .services-header p {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-panel {
        order: -1;
    }

    .panel-image-wrap {
        aspect-ratio: 4/3;
        min-height: unset;
        height: auto;
        border-radius: 22px;
    }

    .panel-caption {
        padding: 28px 24px 30px;
    }

    .caption-tag {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .caption-title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .caption-desc {
        font-size: 14px;
        display: block;
    }

    .caption-tags {
        margin-top: 14px;
        gap: 8px;
    }

    .caption-tag-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .services-list {
        height: auto;
        padding: 0;
    }

    .service-tier-label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .service-tier-label-secondary {
        margin-top: 24px;
    }

    .service-item {
        padding: 16px 4px;
    }

    .service-item:hover {
        padding-left: 4px;
    }

    .service-num {
        font-size: 14px;
        min-width: 22px;
    }

    .service-name {
        font-size: 16px;
    }

    .service-arrow {
        font-size: 14px;
    }
}

/* Small mobile */

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 24px;
    }
    .caption-title {
        font-size: 17px;
    }
    .service-name {
        font-size: 15px;
    }
}

/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
    padding: 50px 0;
    background: #fff;
}

.industries-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.industries-badge {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background: #0F8BB2;
    color: #fff;
    border: 2px solid #007B8A;
    border-radius: 999px;
    height: 56px;
    width: fit-content;
    padding: 0 28px;
    margin: 0 auto 24px;
}

.ind-badge-track {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0;
}

.industries-header h2 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.industries-header p {
    font-size: 19px;
    color: #000;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.7;
}

/* 2x2 Grid — always visible */

.industries-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 58vh 58vh;
    max-width: 100%;
}

.ind-cell {
    position: relative;
    overflow: hidden;
}

.ind-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.ind-img-a,
.ind-img-b {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.6s ease;
}

.ind-img-b {
    opacity: 0;
}

.ind-cell.text-cell {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 36px;
    gap: 8px;
    transition: opacity 0.6s ease;
}

.ind-cell.text-cell.dark {
    background: #022d37;
    color: #fff;
}

.ind-cell.text-cell.light {
    background: #DEF7FF;
    color: #000;
}

.ind-cell.text-cell i {
    font-size: 34px;
}

.ind-cell.text-cell h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.ind-cell.text-cell p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
    max-width: 480px;
    font-weight: 400;
}

/* fade class applied during swap */
.ind-cell.fading {
    opacity: 0;
}



/* Tablet */

@media (max-width: 1200px) {
    .industries-header h2 {
        font-size: 44px;
        white-space: normal;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    .industries-header h2 { font-size: 38px; }
    .industries-grid { grid-template-rows: 300px 300px; }
    .ind-cell.text-cell { padding: 36px 36px; }
    .ind-cell.text-cell h3 { font-size: 22px; }
}

/* Mobile */

@media (max-width: 768px) {
    .industries-section { padding: 60px 0; }
    .industries-header h2 { font-size: 26px; }
    .industries-badge { width: fit-content; height: 38px; }
    .ind-badge-track { font-size: 13px; }
    .industries-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 280px auto 280px auto;
    }

    .industries-grid .ind-cell:nth-child(1) { order: 1; }
    .industries-grid .ind-cell:nth-child(2) { order: 2; }
    .industries-grid .ind-cell:nth-child(3) { order: 4; }
    .industries-grid .ind-cell:nth-child(4) { order: 3; }

    .ind-cell.img-cell {
        height: 280px;
    }
    .ind-cell.text-cell { padding: 28px 24px; min-height: 200px; }
    .ind-cell.text-cell h3 { font-size: 18px; }
    .ind-cell.text-cell p { font-size: 14px; }
}


/* =========================
   TURNKEY SOLUTIONS SECTION
========================= */

.turnkey-section {
    padding: 50px 0;
    background: #fff;
}

.turnkey-grid {
    width: min(1400px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.turnkey-image-wrap {
    position: relative;
}

.turnkey-image-wrap img {
    width: 100%;
    display: block;
    max-height: 600px;
}

.turnkey-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background: #0F8BB2;
    color: #fff;
    border: 2px solid #007B8A;
    border-radius: 999px;
    height: 48px;
    width: 180px;
    z-index: 2;
}

.tk-badge-track {
    display: flex;
    white-space: nowrap;
     animation: badgeScroll 16s linear infinite;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 12px;
}

.turnkey-content h2 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    line-height: 1.1;
    margin-bottom: 16px;
}

.turnkey-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 680px;
}

.turnkey-steps {
    display: flex;
    flex-direction: column;
}

.turnkey-step {
    display: grid;
    grid-template-columns: 56px 160px 1fr;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.tk-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #9FE2EA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tk-icon-wrap i {
    font-size: 25px;
    color: #000000;
}

.tk-step-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
}

.tk-step-desc {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
    max-width: 500px;
}

/* Tablet */

@media (max-width: 1200px) {
    .turnkey-grid {
        gap: 48px;
    }
    .turnkey-content h2 {
        font-size: 44px;
    }
    .turnkey-step {
        grid-template-columns: 56px 160px 1fr;
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .turnkey-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .turnkey-badge {
        right: 12px;
        top: -14px;
        width: 160px;
        height: 40px;
    }
    .tk-badge-track {
        font-size: 13px;
    }
    .turnkey-content h2 {
        font-size: 38px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .turnkey-section {
        padding: 60px 0;
    }
    .turnkey-content h2 {
        font-size: 26px;
        white-space: normal;
    }
    .turnkey-subtitle {
        font-size: 15px;
    }
    .turnkey-step {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
    }
    .tk-step-desc {
        grid-column: 1 / -1;
        font-size: 14px;
    }
    .tk-icon-wrap {
        width: 48px;
        height: 48px;
    }
    .tk-icon-wrap i {
        font-size: 18px;
    }
    .tk-step-text h4 {
        font-size: 16px;
    }
}


/* =========================
   OUR PRODUCTS SECTION
========================= */

.products-section{
    padding:120px 0;
    background:#fff;
}

.products-header{
    width:min(1400px,92%);
    margin:0 auto 40px;
    text-align:center;
}

.products-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.prod-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:0;
}

.products-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.products-header p{
    max-width:100%;
    margin:auto;
    font-size:19px;
    line-height:1.7;
    color:#000;
}

@media(max-width:1200px){
    .products-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media(max-width:991px){
    .products-section{
        padding:80px 0;
        overflow:hidden;
    }
    .products-cards-wrap{
        width:92%;
        overflow:visible;
    }
    .products-cards-track{
        height:440px;
    }
    .product-card{
        width:300px;
        height:380px;
    }
    .product-card.is-active-card{
        height:400px;
    }
}

@media(max-width:768px){
    .products-section{
        padding:60px 0;
        overflow:hidden;
    }
    .products-badge{
        width:fit-content;
        height:38px;
    }
    .prod-badge-track{
        font-size:13px;
    }
    .products-header h2{
        font-size:30px;
        white-space:normal;
        max-width:90%;
    }
    .products-header p{
        font-size:15px;
        max-width:100%;
    }
    .products-cards-wrap{
        width:100%;
        padding:0;
        overflow:visible;
    }
    .products-cards-track{
        height:420px;
        margin-top:10px;
        width:100%;
        overflow:visible;
    }
    .product-card{
        width:260px;
        height:360px;
        border-radius:18px;
    }
    .product-card.is-active-card{
        height:380px;
    }
    .product-card-content{
        left:16px;
        right:16px;
        bottom:16px;
    }
    .product-card-content h3{
        font-size:18px;
        margin-bottom:6px;
    }
    .product-card-content p{
        font-size:12px;
        line-height:1.45;
    }
    .products-cards-controls{
        margin-top:48px;
        gap:36px;
    }
    .cards-arrow{
        width:42px;
        height:42px;
        font-size:14px;
    }
}

@media(max-width:420px){
    .product-card{
        width:240px !important;
        height:340px !important;
    }
    .product-card.is-active-card{
        height:360px !important;
    }
    .products-cards-track{
        height:400px !important;
    }
}
.products-cards-wrap{
    width:min(1700px,96%);
    margin:auto;
    position:relative;
    padding:0 4px;
    overflow:hidden;
}

.products-cards-track{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:0;
    overflow:visible;
    position:relative;
    height:460px;
    margin-top:20px;
}


.product-card{
    position:absolute;
    top:50%;
    left:50%;
    flex:none;
    width:380px;
    height:400px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 16px 36px -14px rgba(0,0,0,.22);
    transition:transform .7s cubic-bezier(.25,.8,.25,1),
               opacity .7s ease,
               height .7s ease,
               box-shadow .7s ease;
    will-change:transform, opacity, height;
}

.product-card.is-active-card{
    height:430px;
}

.product-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.product-card:hover img{
    transform:scale(1.06);
}

.product-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.3) 42%,
        rgba(0,0,0,0) 70%
    );
}

.product-card-tags{
    position:absolute;
    top:18px;
    left:18px;
    right:60px;
    z-index:2;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.card-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:rgba(255,255,255,.95);
    color:#111;
    font-size:12px;
    font-weight:600;
    padding:6px 12px;
    border-radius:999px;
}

.card-tag i{
    font-size:11px;
    color:#0F8BB2;
}

.card-icon-btn{
    position:absolute;
    top:18px;
    right:18px;
    z-index:2;
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-size:13px;
}

.product-card-content{
    position:absolute;
    left:24px;
    right:24px;
    bottom:24px;
    z-index:2;
    color:#fff;
}

.product-card-content h3{
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:10px;
}

.product-card-content p{
    font-size:13.5px;
    line-height:1.55;
    color:rgba(255,255,255,.82);
    margin-bottom:18px;
    max-width:95%;
}

@media(max-width:768px){
    .products-cards-track{
        height:360px;
        padding:20px 0;
    }
    .product-card{
        width:280px;
        height:320px;
    }
}

.card-cta{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    letter-spacing:.02em;
    padding:6px 6px 6px 20px;
    border-radius:999px;
}

.card-cta .cta-arrow{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    transition:background .25s;
}

.card-cta:hover .cta-arrow{
    background:#0F8BB2;
}

.products-cards-controls{
    display:flex;
    justify-content:center;
    gap:32px;
    margin-top:28px;
}

.cards-arrow{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1.5px solid #ccc;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#111;
    font-size:16px;
    transition:background .25s, color .25s, border-color .25s;
}

.cards-arrow:hover{
    background:#c9281f;
    border-color:#9b1c15;
    color:#fff;
}

@media(max-width:1200px){
    .product-card{
        flex:0 0 calc((100% - 24px)/2);
        height:440px;
    }
}

@media(max-width:768px){
    .product-card{
        flex:0 0 88%;
        height:400px;
    }
    .product-card-content h3{
        font-size:20px;
    }
    .products-header h2{
        font-size:32px;
    }
}

/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.why-section {
    position: relative;
    padding: 50px 0;
}


.why-inner {
    position: relative;
    z-index: 1;
    width: min(1400px, 92%);
    margin: auto;
}

.why-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background: #0F8BB2;
    color: #fff;
    border: 2px solid #007B8A;
    border-radius: 999px;
    height: 56px;
    width: 200px;
    margin: 0 auto 24px;
}

.why-badge-track {
    display: flex;
    white-space: nowrap;
     animation: badgeScroll 16s linear infinite;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 12px;
}

.why-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.why-header p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.why-icon i {
    font-size: 22px;
    color: #111;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}

.why-card p {
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}
/* Tablet */

@media (max-width: 1200px) {
    .why-header h2 {
        font-size: 44px;
        white-space: normal;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .why-badge {
        width: fit-content;
        height: 44px;
    }
    .why-badge-track {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-header h2 {
        font-size: 38px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    .why-header h2 {
        font-size: 28px;
        white-space: normal;
    }
    .why-header p {
        font-size: 15px;
    }
    .why-badge {
        width: fit-content;
        height: 38px;
    }
    .why-badge-track {
        font-size: 13px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-card {
        padding: 24px 20px;
    }
    .why-card h3 {
        font-size: 18px;
    }
    .why-card p {
        font-size: 14px;
    }
    .why-icon {
        width: 48px;
        height: 48px;
    }
    .why-icon i {
        font-size: 18px;
    }
}


/* =========================
   OUR PROJECTS SECTION
========================= */

.projects-section {
    padding: 50px 0;
    background: #F5F5F5;
}

.projects-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.projects-badge {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background: #0F8BB2;
    color: #fff;
    border: 2px solid #007B8A;
    border-radius: 999px;
    height: 56px;
    width: fit-content;
    padding: 0 28px;
    margin: 0 auto 24px;
}

.proj-badge-track {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0;
}

.projects-header h2 {
    font-size: 50px;
    font-weight: 500;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.projects-header p {
    font-size: 19px;
    color: #000000;
    line-height: 1.7;
}

/* Grid */

.projects-grid {
    display: flex;
    gap: 6px;
    width: 100%;
    height: 380px;
}

.proj-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.proj-card.active {
    flex: 3.5;
}

.proj-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.proj-card:hover img {
    transform: scale(1.04);
}

.proj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    transition: opacity 0.4s ease;
}

.proj-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.proj-card.active .proj-card-info {
    opacity: 1;
    transform: translateY(0);
}

.proj-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.proj-location i {
    font-size: 14px;
    color: #1ec7e8;
}

.proj-location span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.proj-card-info h3 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

/* Footer */

.projects-footer {
    text-align: center;
    margin-top: 40px;
}

.proj-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 40px;
    border-radius: 999px;
    border: 1.5px solid #c9281f;
    background: transparent;
    color: #c9281f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.25s, color 0.25s;
}

.proj-view-all:hover {
    background: #c9281f;
    color: #ffffff;
}

/* Tablet */

@media (max-width: 1200px) {
    .projects-header h2 {
        font-size: 44px;
        white-space: normal;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .projects-grid {
        height: 420px;
    }
}

@media (max-width: 1024px) {
    .projects-header h2 { font-size: 38px; }
    .projects-grid { height: 360px; }
    .proj-card-info h3 { font-size: 20px; }
}

/* Mobile */

@media (max-width: 768px) {
    .projects-section { padding: 60px 0; }
    .projects-header h2 {
        font-size: 28px;
        white-space: normal;
    }
    .projects-header p { font-size: 15px; }
    .projects-badge { width: fit-content; height: 38px; }
    .proj-badge-track { font-size: 13px; }
    .projects-grid {
        flex-direction: column;
        height: auto;
        gap: 6px;
        padding: 0 4%;
    }
    .proj-card {
        height: 200px;
        flex: none;
        border-radius: 16px;
    }
    .proj-card.active {
        height: 320px;
        flex: none;
    }
    .proj-card-info {
        opacity: 1;
        transform: translateY(0);
    }
    .proj-card-info h3 { font-size: 18px; }
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
}

.cta-inner {
    position: relative;
    z-index: 2;
    width: min(1400px, 92%);
    margin: 0 auto;
    max-width: 620px;
    margin-left: max(4%, calc((100% - 1400px) / 2 + 4%));
}

.cta-inner h2 {
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    min-width: 800px;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 620px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.25s, color 0.25s;
}

.cta-btn:hover {
    background: #c9281f;
    color: #fff;
}

.cta-btn i {
    font-size: 16px;
}

/* Tablet */

@media (max-width: 1024px) {
    .cta-section {
        height: 420px;
    }
    .cta-inner h2 {
        font-size: 44px;
    }
    .cta-inner {
        margin-left: 5%;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .cta-section {
        height: auto;
        padding: 70px 0;
    }
    .cta-inner {
        margin-left: 4%;
        margin-right: 4%;
        max-width: 100%;
    }
    .cta-inner h2 {
        font-size: 32px;
        min-width: 0;
    }
    .cta-inner p {
        font-size: 15px;
    }
    .cta-btn {
        height: 50px;
        font-size: 15px;
        padding: 0 24px;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #f5f5f5;
    padding-top: 64px;
}

/* Top grid */

.footer-top {
    width: min(1400px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #0F8BB2;
}

/* Socials */

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 16px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-icon:hover {
    border-color: #0F8BB2;
    color: #0F8BB2;
}

/* Contact bar */

.footer-contact-bar {
    width: min(1400px, 92%);
    margin: 0 auto;
    border-top: 1px solid #ddd;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    font-size: 18px;
    color: #555;
}

.footer-contact-item span {
    font-size: 15px;
    color: #555;
}

/* Bottom bar */

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Tablet */

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-contact-bar {
        gap: 24px;
        flex-wrap: wrap;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-brand img {
        width: 150px;
    }
    .footer-contact-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer-col h4 {
        font-size: 15px;
    }
    .footer-col ul a {
        font-size: 14px;
    }
    .footer-bottom p {
        font-size: 13px;
        padding: 0 4%;
    }
}


/* =========================
   SCROLL ANIMATIONS
========================= */

/* Base hidden states */
.anim-fade-up      { opacity:0; transform:translateY(50px);              transition:opacity .7s ease, transform .7s ease; }
.anim-fade-left    { opacity:0; transform:translateX(-60px);             transition:opacity .7s ease, transform .7s ease; }
.anim-fade-right   { opacity:0; transform:translateX(60px);              transition:opacity .7s ease, transform .7s ease; }
.anim-zoom-in      { opacity:0; transform:scale(0.88);                   transition:opacity .7s ease, transform .7s ease; }
.anim-fade-in      { opacity:0;                                          transition:opacity .8s ease; }
.anim-flip-up      { opacity:0; transform:perspective(600px) rotateX(18deg) translateY(30px); transition:opacity .7s ease, transform .7s ease; }

/* On mobile: kill all horizontal slides and scale to prevent overflow & layout breaks */
@media (max-width: 768px) {
    .anim-fade-left  { transform:translateY(30px); }
    .anim-fade-right { transform:translateY(30px); }
    .anim-zoom-in    { transform:translateY(30px); }
    .anim-flip-up    { transform:translateY(30px); }

    .anim-fade-left.in-view,
    .anim-fade-right.in-view,
    .anim-zoom-in.in-view,
    .anim-flip-up.in-view  { transform:none; }
}

/* Industries grid — animate as a whole, not individual cells */
.industries-grid.anim-reveal   { opacity:0; transform:translateY(40px);  transition:opacity .8s ease, transform .8s ease; }
.industries-grid.anim-reveal.in-view { opacity:1; transform:none; }

/* Hero animation */
.hero-content { opacity:0; transform:translateY(36px); transition:opacity .9s ease .3s, transform .9s ease .3s; }
.hero-content.hero-in { opacity:1; transform:none; }

/* Visible state (added by JS) */
.anim-fade-up.in-view,
.anim-fade-left.in-view,
.anim-fade-right.in-view,
.anim-zoom-in.in-view,
.anim-fade-in.in-view,
.anim-flip-up.in-view {
    opacity:1;
    transform:none;
}

/* Stagger delays for children */
.anim-delay-1 { transition-delay:.1s; }
.anim-delay-2 { transition-delay:.2s; }
.anim-delay-3 { transition-delay:.3s; }
.anim-delay-4 { transition-delay:.4s; }
.anim-delay-5 { transition-delay:.5s; }
.anim-delay-6 { transition-delay:.6s; }



/* =========================
   CLIENTS SECTION
========================= */

.clients-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 40px;
}

.clients-header h2 {
    font-size: 50px;
    font-weight: 500;
    color: #111;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.clients-header p {
    font-size: 19px;
    color: #000;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .clients-header h2 {
        font-size: 44px;
        white-space: normal;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .clients-header h2 {
        font-size: 28px;
        white-space: normal;
    }
    .clients-header p {
        font-size: 15px;
    }
}

.clients-track-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.clients-track-wrap::before,
.clients-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.clients-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: clientsScroll 30s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes clientsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    height: 64px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: opacity(0.85);
    transition: filter 0.3s ease;
}

.client-logo img:hover {
    filter: opacity(1);
}

/* Mobile */

@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
    }
    .client-logo img {
        height: 44px;
    }
    .clients-track {
        gap: 40px;
    }
    .clients-track-wrap::before,
    .clients-track-wrap::after {
        width: 60px;
    }
}



.clients-badge {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background: #0F8BB2;
    color: #fff;
    border: 2px solid #007B8A;
    border-radius: 999px;
    height: 56px;
    width: fit-content;
    padding: 0 28px;
    margin: 0 auto 24px;
}

.clients-badge-track {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0;
}

@media (max-width: 768px) {
    .clients-badge {
        width: fit-content;
        height: 38px;
    }
    .clients-badge-track {
        font-size: 13px;
    }
}


/* =========================================================
   CONTACT PAGE — extends style.css
   Uses same fonts, container width (min(1400px,92%)),
   section padding rhythm (100px / 80px / 60px) and
   heading scale as the homepage.
========================================================= */

:root{
    --navy:#022d37;
    --teal:#0F8BB2;
    --cyan:#1ec7e8;
    --red:#E5342B;
}

.container{
    width:min(1400px,92%);
    margin:0 auto;
}

/* Reusable section heading (mirrors homepage h2 scale/weight) */
.section-heading{
    margin-bottom:32px;
}

.section-heading .eyebrow-line{
    width:56px;
    height:4px;
    background:var(--red);
    border-radius:4px;
    margin-bottom:16px;
}

.section-heading h2{
    font-size:36px;
    font-weight:700;
    color:#111;
    line-height:1.15;
}

.offices-heading{
    font-size:44px;
}

.section-heading.center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.section-heading.center .eyebrow-line{
    margin-left:auto;
    margin-right:auto;
}

@media (max-width:768px){
    .section-heading h2{
        font-size:26px;
    }
    .offices-heading{
        font-size:28px;
    }
}

@media (max-width:576px){
    .section-heading h2{
        font-size:24px;
    }
    .offices-heading{
        font-size:24px;
    }
}

/* =========================
   CONTACT HERO
========================= */

.contact-hero{
    position:relative;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.contact-hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.contact-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(to bottom, rgba(2,45,55,.5) 0%, rgba(2,45,55,.55) 60%, var(--navy) 100%),
        linear-gradient(to right, rgba(2,45,55,.75) 0%, rgba(2,45,55,.3) 55%, rgba(2,45,55,.55) 100%);
}

.contact-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    text-align:center;
    color:#fff;
    padding:0 20px;
}

.contact-hero-label{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:40px;
    padding:0 20px;
    border-radius:999px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    margin-bottom:28px;
    backdrop-filter:blur(6px);
}

.contact-hero-label i{
    color:var(--cyan);
}

.contact-hero-content h1{
    font-size:56px;
    font-weight:600;
    line-height:1.15;
    color:#fff;
    margin-bottom:22px;
}

.contact-hero-content h1 span{
    color:var(--cyan);
}

.contact-hero-content p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.75);
    max-width:560px;
    margin:0 auto;
}

.contact-hero-content .hero-btn{
    margin-top:36px;
}

@media (max-width:991px){
    .contact-hero{ height:460px; }
    .contact-hero-content h1{ font-size:32px; }
    .contact-hero-content p{ font-size:16px; }
}

@media (max-width:576px){
    .contact-hero{ height:420px; }
    .contact-hero-content h1{ font-size:26px; }
    .contact-hero-content .hero-btn{ width:220px; }
}

/* =========================
   QUICK INFO BAR
========================= */

.quick-info-bar{
    position:relative;
    z-index:3;
    margin-top:-70px;
}

.quick-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border-radius:24px;
    padding:32px 12px;
    box-shadow:0 24px 60px -20px rgba(2,45,55,.25);
}

.quick-info-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:0 20px;
    border-right:1px solid #e2e2e2;
    transition:transform .3s ease;
}

.quick-info-item:hover{
    transform:translateY(-4px);
}

.quick-info-grid .quick-info-item:last-child{
    border-right:none;
}

.quick-info-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.quick-info-item.whatsapp .quick-info-icon{
    background:#25D366;
}

.quick-info-item span{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#999;
    margin-bottom:4px;
}

.quick-info-item strong{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#111;
    line-height:1.5;
}

@media (max-width:991px){
    .quick-info-bar{ margin-top:-40px; }
    .quick-info-grid{ grid-template-columns:1fr 1fr; gap:24px; padding:28px 20px; border-radius:20px; }
    .quick-info-item{ border-right:none; padding:0; }
}

@media (max-width:576px){
    .quick-info-bar{ margin-top:-24px; }
    .quick-info-grid{ grid-template-columns:1fr; padding:24px 20px; }
    .quick-info-item{ padding:12px 0; border-bottom:1px solid #eee; }
    .quick-info-grid .quick-info-item:last-child{ border-bottom:none; }
}
/* =========================
   CONTACT MAIN (FORM + WHY US)
========================= */

.contact-main-section{
    padding:100px 0;
    background:#fff;
}

.contact-main-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:64px;
}

/* Form */

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}

.form-field{
    width:100%;
    padding:16px 18px;
    border:1px solid #e2e2e2;
    background:#f7f7f7;
    border-radius:14px;
    font-family:'Alexandria',sans-serif;
    font-size:15px;
    color:#111;
    transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.form-field:focus{
    outline:none;
    border-color:var(--teal);
    background:#fff;
    box-shadow:0 0 0 4px rgba(15,139,178,.12);
}

textarea.form-field{
    resize:vertical;
    min-height:130px;
    margin-bottom:20px;
}

.contact-submit-btn{
    width:100%;
    height:58px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:none;
    border-radius:999px;
    background:#c9281f;
    color:#fff;
    font-family:'Alexandria',sans-serif;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:background .3s ease, transform .3s ease;
}

.contact-submit-btn:hover{
    background:#9b1c15;
    transform:translateY(-2px);
}

.form-note{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:16px;
    font-size:13px;
    color:#888;
}

/* Why contact us */

.why-contact-image{
    border-radius:16px;
    overflow:hidden;
    height:180px;
    margin-bottom:28px;
}

.why-contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.why-feature{
    display:flex;
    gap:18px;
    padding:18px 0;
    border-top:1px solid #ececec;
    transition:transform .3s ease;
}

.why-feature:first-of-type{
    border-top:none;
}

.why-feature:hover{
    transform:translateX(6px);
}

.why-feature:hover .why-feature-icon{
    background:var(--teal);
    color:#fff;
}

.why-feature-icon{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:12px;
    background:#EAF6FA;
    color:var(--teal);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    transition:background .3s ease, color .3s ease;
}

.why-feature h4{
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;
}

.why-feature p{
    font-size:14px;
    line-height:1.6;
    color:#888;
}

@media (max-width:991px){
    .contact-main-grid{ grid-template-columns:1fr; gap:48px; }
    .contact-form-grid{ grid-template-columns:1fr; }
}

@media (max-width:768px){
    .contact-main-section{ padding:60px 0; }
}

/* =========================
   OFFICES SECTION
========================= */

.offices-section{
    padding:100px 0;
    background:#f6f6f6;
}

.find-us-badge{

    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}



.offices-grid{
    display:grid;
    grid-template-columns:0.6fr 1fr;
    gap:24px;
    margin-bottom:32px;
}

@media (max-width:1100px){
    .offices-grid{
        grid-template-columns:1fr;
    }
}

.office-card{
    background:#fff;
    border-radius:16px;
    padding:32px;
    height:320px;
    transition:transform .35s ease, box-shadow .35s ease;
}

.office-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 44px -18px rgba(2,45,55,.18);
}

.office-card-icon{
    width:44px;
    height:44px;
    border-radius:12px;
    background:var(--navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    margin-bottom:16px;
}

.office-card span.label{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#999;
    margin-bottom:6px;
}

.office-card h4{
    font-size:18px;
    font-weight:700;
    color:#111;
    margin-bottom:14px;
}

.office-card p{
    font-size:14px;
    line-height:1.7;
    color:#666;
    margin-bottom:14px;
}

.office-card ul{
    list-style:none;
}

.office-card ul li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#555;
    margin-bottom:8px;
}

.office-card ul li i{
    color:var(--teal);
    width:16px;
}

.office-image{
    border-radius:16px;
    overflow:hidden;
    height:320px;
}

.office-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.map-embed{
    border-radius:16px;
    overflow:hidden;
    height:420px;
    border:none;
}

.map-embed iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

@media (max-width:1100px){
    .offices-grid{ grid-template-columns:1fr 1fr; }
    .office-image{ grid-column:span 2; min-height:220px; }
}

@media (max-width:768px){
    .offices-section{ padding:60px 0; }
    .offices-grid{ grid-template-columns:1fr; }
    .office-image{ grid-column:span 1; }
    .map-embed{ height:300px; }
    .office-card{ padding:24px; }
    .office-card h4{ font-size:16px; }
}

/* =========================
   CONTACT STATS (dark)
========================= */

.contact-stats{
    background:var(--navy);
    padding:64px 0;
}

.contact-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.contact-stat{
    display:flex;
    align-items:center;
    gap:18px;
}

.contact-stat-icon{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-stat h2{
    font-size:36px;
    font-weight:700;
    color:#fff;
    line-height:1;
    margin-bottom:6px;
}

.contact-stat h2 span{
    color:var(--cyan);
}

.contact-stat p{
    font-size:14px;
    color:rgba(255,255,255,.55);
    line-height:1.5;
}

@media (max-width:991px){
    .contact-stats-grid{ grid-template-columns:1fr 1fr; gap:32px; }
}

@media (max-width:576px){
    .contact-stats-grid{ grid-template-columns:1fr; }
}

/* =========================
   CONTACT CTA BAR
========================= */

.contact-cta-section{
    padding:80px 0;
    background:#ffffff;
}

.contact-cta-bar{
    background:var(--navy);
    border-radius:24px;
    padding:56px 64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}

.contact-cta-bar h3{
    font-size:30px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
}

.contact-cta-bar p{
    font-size:15px;
    color:rgba(255,255,255,.65);
    max-width:420px;
    line-height:1.6;
}

.contact-cta-buttons{
    display:flex;
    gap:14px;
    flex-shrink:0;
}

.cta-btn-dark, .cta-btn-red{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:54px;
    padding:0 30px;
    border-radius:999px;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
}

.cta-btn-dark{
    background:#000;
    color:#fff;
}

.cta-btn-red{
    background:var(--red);
    color:#fff;
    transition:background .3s;
}

.cta-btn-red:hover{
    background:#c9281f;
}

@media (max-width:900px){
    .contact-cta-bar{ flex-direction:column; text-align:center; padding:44px 32px; }
    .contact-cta-bar p{ max-width:100%; }
}

@media (max-width:576px){
    .contact-cta-bar{ padding:32px 24px; border-radius:18px; }
    .contact-cta-bar h3{ font-size:22px; }
    .contact-cta-bar p{ font-size:14px; }
}

@media (max-width:480px){
    .contact-cta-buttons{ flex-direction:column; width:100%; }
    .cta-btn-dark, .cta-btn-red{ justify-content:center; }
}

/* =========================================================
   ABOUT PAGE — extends style.css
   Hero uses the same height, overlay treatment, and type
   scale as the Contact page hero for visual consistency.
========================================================= */

:root{
    --navy:#022d37;
    --teal:#0F8BB2;
    --cyan:#1ec7e8;
    --red:#E5342B;
}

.container{
    width:min(1400px,92%);
    margin:0 auto;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero{
    position:relative;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.about-hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.about-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(to bottom, rgba(2,45,55,.5) 0%, rgba(2,45,55,.55) 60%, var(--navy) 100%),
        linear-gradient(to right, rgba(2,45,55,.75) 0%, rgba(2,45,55,.3) 55%, rgba(2,45,55,.55) 100%);
}

.about-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    text-align:center;
    color:#fff;
    padding:0 20px;
}

.about-hero-content h1{
    font-size:56px;
    font-weight:600;
    line-height:1.15;
    color:#fff;
    margin-bottom:22px;
}

.about-hero-content h1 span{
    color:var(--cyan);
}

.about-hero-content p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.75);
    max-width:560px;
    margin:0 auto;
}

@media (max-width:991px){
    .about-hero{ height:460px; }
    .about-hero-content h1{ font-size:32px; }
    .about-hero-content p{ font-size:16px; }
}

@media (max-width:576px){
    .about-hero{ height:420px; }
    .about-hero-content h1{ font-size:26px; }
}

/* =========================
   SECTION HEADING
   (mirrors homepage h2 scale/weight)
========================= */

.section-heading{
    margin-bottom:20px;
}

.section-heading .eyebrow-line{
    width:56px;
    height:4px;
    background:var(--red);
    border-radius:4px;
    margin-bottom:16px;
}

.section-heading h2{
    font-size:36px;
    font-weight:700;
    color:#111;
    line-height:1.15;
}

/* =========================
   WHO WE ARE (floating box,
   same treatment as contact
   page's quick-info-bar)
========================= */

.who-we-are-bar{
    position:relative;
    z-index:3;
    margin-top:-70px;
    padding-bottom:100px;
}

.who-we-are-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:56px;
    align-items:center;
    background:#fff;
    border-radius:24px;
    padding:32px 40px;
    box-shadow:0 24px 60px -20px rgba(2,45,55,.25);
}

/* Badge — exact homepage badge sizing (.services-badge / .badge-track) */
.who-we-are-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin-bottom:24px;
}

.who-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

/* Heading — exact homepage heading sizing (.services-header h2) */
.who-we-are-title{
    font-size:40px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:24px;
}

@media (max-width:1200px){
    .who-we-are-title{ font-size:34px; }
}

@media (max-width:768px){
    .who-we-are-title{ font-size:28px; }
}

/* Paragraph — exact homepage paragraph sizing (.services-header p) */
.who-we-are-text p{
    font-size:19px;
    line-height:1.7;
    color:#000;
    margin-bottom:24px;
}


.who-we-are-image{
    border-radius:20px;
    overflow:hidden;
    height:auto;
    max-height:420px;
    max-width:520px;
    margin-left:auto;
}

.who-we-are-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


@media (max-width:991px){
    .who-we-are-bar{ margin-top:-40px; padding-bottom:70px; }
    .who-we-are-grid{
        grid-template-columns:1fr;
        gap:32px;
        padding:32px;
        border-radius:20px;
    }
    .who-we-are-image{ min-height:240px; max-height:280px; max-width:100%; margin-left:0; order:-1; }
    .who-we-are-badge{ width:fit-content; height:44px; padding:0 22px; }
    .who-badge-track{ font-size:13px; }

    .services-overview-bar .who-we-are-image{
        max-height:none;
        min-height:0;
        background:#fff;
    }
    .services-overview-bar .who-we-are-image img{
        object-fit:contain;
        max-height:320px;
    }
}

@media (max-width:576px){
    .who-we-are-bar{ margin-top:-24px; }
    .who-we-are-grid{ padding:24px; }
    .who-we-are-text p{ font-size:15px; }
    .who-we-are-btn{ width:100%; justify-content:center; }
    .who-we-are-badge{ height:38px; padding:0 16px; }
    .who-badge-track{ font-size:13px; }
}

/* =========================
   OUR NUMBERS SECTION
========================= */

.numbers-section{
    padding:100px 0;
    background:#F5F5F5;
}

.numbers-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.numbers-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.num-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.numbers-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.numbers-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
    white-space:nowrap;
}

.numbers-grid{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.number-item{
    position:relative;
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:36px 28px;
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.number-item::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:linear-gradient(90deg, #0F8BB2, #1ec7e8);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .4s ease;
}

.number-item:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 48px -20px rgba(2,45,55,.22);
    border-color:transparent;
}

.number-item:hover::before{
    transform:scaleX(1);
}

.number-icon-wrap{
    width:56px;
    height:56px;
    border-radius:14px;
    background:#EAF6FA;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    transition:background .35s ease, transform .35s ease;
}

.number-item:hover .number-icon-wrap{
    background:#0F8BB2;
    transform:rotate(-8deg) scale(1.05);
}

.number-icon{
    font-size:22px;
    color:#0F8BB2;
    transition:color .35s ease;
}

.number-item:hover .number-icon{
    color:#fff;
}

.number-value{
    font-size:40px;
    font-weight:700;
    color:#111;
    line-height:1;
    margin-bottom:10px;
}

.number-value span{
    color:#1ec7e8;
    font-size:30px;
    vertical-align:top;
}

.number-label{
    font-size:14px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#0F8BB2;
    margin-bottom:10px;
}

.number-desc{
    font-size:15px;
    line-height:1.65;
    color:#777;
}

/* Tablet */

@media (max-width:1200px){
    .numbers-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
    .numbers-header p{
        white-space:normal;
    }
}
@media (max-width:1024px){
    .numbers-grid{
        grid-template-columns:1fr 1fr;
        row-gap:24px;
    }
}

/* Mobile */

@media (max-width:768px){
    .numbers-section{
        padding:60px 0;
    }
    .numbers-header h2{
        font-size:28px;
    }
    .numbers-header p{
        font-size:15px;
    }
    .numbers-badge{
        width:fit-content;
        height:38px;
    }
    .num-badge-track{
        font-size:13px;
    }
    .numbers-grid{
        grid-template-columns:1fr;
        row-gap:20px;
    }
    .number-item{
        padding:28px 24px;
    }
    .number-value{
        font-size:34px;
    }
}

/* =========================
   OUR EXPERTISE SECTION
========================= */

.expertise-section{
    padding:100px 0;
    background:#fff;
}

.expertise-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.expertise-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.exp-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.expertise-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.expertise-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
    white-space:nowrap;
}

.expertise-grid{
    width:100%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    border-radius:0;
    overflow:hidden;
    box-shadow:none;
}

.expertise-card{
    position:relative;
    height:340px;
    overflow:hidden;
    border-right:1px solid rgba(255,255,255,.15);
}

.expertise-card:last-child{
    border-right:none;
}

.expertise-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.expertise-card:hover img{
    transform:scale(1.08);
}

.expertise-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(2,20,28,.92) 0%, rgba(2,20,28,.75) 32%, rgba(2,20,28,.15) 65%, rgba(2,20,28,0) 100%);
}

.expertise-card-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:26px 24px 28px;
    color:#fff;
}

.expertise-icon{
    display:block;
    font-size:26px;
    color:#fff;
    margin-bottom:16px;
}

.expertise-card-content h4{
    font-size:19px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:8px;
}

.expertise-card-content p{
    font-size:13px;
    line-height:1.6;
    color:rgba(255,255,255,.7);
}

/* Tablet */

@media (max-width:1200px){
    .expertise-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
    .expertise-header p{
        white-space:normal;
    }
}

@media (max-width:1024px){
    .expertise-header h2{
        font-size:36px;
    }
    .expertise-grid{
        grid-template-columns:1fr 1fr;
    }
    .expertise-card{
        height:300px;
        border-bottom:1px solid rgba(255,255,255,.15);
    }
    .expertise-card:nth-child(2n){
        border-right:none;
    }
    .expertise-card:nth-last-child(-n+2){
        border-bottom:none;
    }
}

/* Mobile */

@media (max-width:768px){
    .expertise-section{
        padding:60px 0;
    }
    .expertise-header h2{
        font-size:26px;
        white-space:normal;
    }
    .expertise-header p{
        font-size:15px;
    }
    .expertise-badge{
        width:fit-content;
        height:38px;
    }
    .exp-badge-track{
        font-size:13px;
    }
    .expertise-grid{
        grid-template-columns:1fr;
        gap:0;
    }
    .expertise-card{
        height:240px;
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
    }
    .expertise-card:last-child{
        border-bottom:none;
    }
    .expertise-card-content h4{
        font-size:16px;
    }
}

/* =========================
   COLD STORAGE BANNER
========================= */

.cold-banner-section{
    width:100%;
    line-height:0;
}

.cold-banner-section img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
}

@media (max-width:1024px){
    .cold-banner-section img{
        height:380px;
    }
}

@media (max-width:768px){
    .cold-banner-section img{
        height:260px;
    }
}

/* =========================
   ENGINEERING PHILOSOPHY SECTION
========================= */

.philosophy-section{
    padding:100px 0;
    background:#fff;
}

.philosophy-header{
    text-align:center;
    margin-bottom:90px;
    padding:0 20px;
}

.philosophy-quote-icon{
    display:block;
    font-size:22px;
    color:#0F8BB2;
    opacity:.5;
    margin-bottom:18px;
}

.philosophy-header h2{
    font-size:28px;
    font-weight:800;
    color:#0a1a1f;
    line-height:1.45;
    letter-spacing:-.01em;
    max-width:820px;
    margin:0 auto;
}

.philosophy-subtitle{
    font-size:12px;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#0F8BB2;
    margin-top:18px;

}

.philosophy-grid{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.philosophy-item{
    padding:0 40px;
    border-right:1px solid #e2e2e2;
    text-align:center;
    transition:transform .3s ease;
}

.philosophy-item:hover{
    transform:translateY(-4px);
}

.philosophy-item:first-child{
    padding-left:0;
}

.philosophy-item:last-child{
    border-right:none;
    padding-right:0;
}

.philosophy-num{
    display:inline-block;
    font-size:13px;
    font-weight:800;
    letter-spacing:.05em;
    color:#0F8BB2;
    margin-bottom:12px;
}

.philosophy-item h4{
    position:relative;
    font-size:20px;
    font-weight:800;
    color:#111;
    margin-bottom:16px;
    padding-bottom:14px;
}

.philosophy-item h4::after{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:32px;
    height:3px;
    border-radius:3px;
    background:#0F8BB2;
}

.philosophy-item p{
    font-size:15px;
    line-height:1.7;
    color:#6b6b6b;
}

/* Tablet */

@media (max-width:1200px){
    .philosophy-header h2{
        font-size:24px;
    }
}

@media (max-width:1024px){
    .philosophy-header h2{
        font-size:21px;
    }
    .philosophy-grid{
        grid-template-columns:1fr;
        row-gap:32px;
    }
    .philosophy-item{
        border-right:none;
        padding:0 !important;
    }
}

/* Mobile */

@media (max-width:768px){
    .philosophy-section{
        padding:60px 0;
    }
    .philosophy-quote-icon{
        font-size:18px;
        margin-bottom:14px;
    }
    .philosophy-header h2{
        font-size:20px;
    }
    .philosophy-subtitle{
        font-size:11px;
    }
    .philosophy-item h4{
        font-size:17px;
    }
    .philosophy-item p{
        font-size:13px;
    }
}


/* =========================
   OUR JOURNEY SECTION
========================= */

.journey-section{
    padding:100px 0;
    background:#f5f5f5;
}

.journey-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.journey-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.journey-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.journey-title{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.journey-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.journey-timeline{
    position:relative;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
}

.journey-line{
    position:absolute;
    top:28px;
    left:calc(100%/12);
    right:calc(100%/12);
    height:2px;
    background:#dce8ec;
}

.journey-item{
    position:relative;
    text-align:center;
    padding:0 8px;
}

.journey-icon-wrap{
    position:relative;
    z-index:2;
    width:56px;
    height:56px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#fff;
    border:2px solid var(--teal);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .3s ease, transform .3s ease;
}

.journey-icon-wrap i{
    font-size:18px;
    color:var(--teal);
    transition:color .3s ease;
}

.journey-item:hover .journey-icon-wrap{
    background:var(--teal);
    transform:translateY(-4px);
}

.journey-item:hover .journey-icon-wrap i{
    color:#fff;
}

.journey-year{
    display:block;
    font-size:20px;
    font-weight:700;
    color:var(--teal);
    margin-bottom:8px;
}

.journey-item h4{
    font-size:15px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:8px;
}

.journey-item p{
    font-size:12.5px;
    line-height:1.6;
    color:#777;
}

/* Tablet */

@media (max-width:1200px){
    .journey-title{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }

    /* Switch to a vertical, one-by-one timeline */
    .journey-timeline{
        display:flex;
        flex-direction:column;
        gap:36px;
        max-width:640px;
        margin:0 auto;
    }

    .journey-line{
        display:none;
    }

    .journey-timeline::before{
        content:'';
        position:absolute;
        top:0;
        bottom:0;
        left:27px;
        width:2px;
        background:#dce8ec;
        z-index:1;
    }

    .journey-item{
        display:flex;
        align-items:flex-start;
        gap:20px;
        text-align:left;
        padding:0;
    }

    .journey-icon-wrap{
        margin:0;
        flex-shrink:0;
    }

    .journey-content{
        display:flex;
        flex-direction:column;
    }
}

/* Mobile */

@media (max-width:768px){
    .journey-section{
        padding:60px 0;
    }
    .journey-header{
        margin-bottom:36px;
    }
    .journey-title{
        font-size:28px;
        white-space:normal;
    }
    .journey-header p{
        font-size:15px;
    }
    .journey-badge{
        height:38px;
        padding:0 16px;
    }
    .journey-badge-track{
        font-size:13px;
    }
    .journey-timeline{
        gap:28px;
    }
    .journey-icon-wrap{
        width:48px;
        height:48px;
    }
    .journey-timeline::before{
        left:23px;
    }
    .journey-year{
        font-size:17px;
    }
    .journey-item h4{
        font-size:14px;
    }
    .journey-item p{
        font-size:12px;
    }
}

/* =========================
   INDUSTRIES WE SERVE SECTION
========================= */

.ind-serve-section{
    padding:100px 0;
    background:#ffffff;
}

.ind-serve-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.ind-serve-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.ind-serve-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.ind-serve-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.ind-serve-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.ind-serve-grid{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.ind-serve-card{
    position:relative;
    height:280px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 16px 36px -18px rgba(2,45,55,.25);
}

.ind-serve-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.ind-serve-card:hover img{
    transform:scale(1.08);
}

.ind-serve-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(2,20,28,.72) 0%, rgba(2,20,28,.5) 38%, rgba(2,20,28,.15) 68%, rgba(2,20,28,0) 100%);
}

.ind-serve-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:24px 26px 26px;
    color:#fff;
}

.ind-serve-icon{
    display:block;
    font-size:24px;
    color:var(--cyan);
    margin-bottom:14px;
}

.ind-serve-content h4{
    font-size:19px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:8px;
}

.ind-serve-content p{
    font-size:13.5px;
    line-height:1.6;
    color:rgba(255,255,255,.75);
    max-width:95%;
}

/* Tablet */

@media (max-width:1200px){
    .ind-serve-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media (max-width:1024px){
    .ind-serve-grid{
        grid-template-columns:1fr 1fr;
    }
    .ind-serve-card{
        height:260px;
    }
}

/* Mobile */

@media (max-width:768px){
    .ind-serve-section{
        padding:60px 0;
    }
    .ind-serve-header{
        margin-bottom:36px;
    }
    .ind-serve-header h2{
        font-size:28px;
        white-space:normal;
    }
    .ind-serve-header p{
        font-size:15px;
    }
    .ind-serve-badge{
        height:38px;
        padding:0 16px;
    }
    .ind-serve-badge-track{
        font-size:13px;
    }
    .ind-serve-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    .ind-serve-card{
        height:220px;
    }
    .ind-serve-content h4{
        font-size:17px;
    }
}

/* =========================
   WHY CLIENTS CHOOSE US SECTION
========================= */

.why-choose-section{
    padding:100px 0;
    background:#F5F5F5;
}

.why-choose-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.why-choose-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.why-choose-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.why-choose-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.why-choose-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.why-choose-grid{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.why-choose-row{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    border-radius:18px;
    padding:30px 32px;
    transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.why-choose-row:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px -22px rgba(2,45,55,.22);
    background:#fff;
}

.why-choose-icon-wrap{
    flex-shrink:0;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#EAF6FA;
    box-shadow:none;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .3s ease, transform .3s ease;
}

.why-choose-icon-wrap i{
    font-size:19px;
    color:var(--teal);
    transition:color .3s ease;
}

.why-choose-row:hover .why-choose-icon-wrap{
    background:var(--teal);
    transform:scale(1.08);
}

.why-choose-row:hover .why-choose-icon-wrap i{
    color:#fff;
}

.why-choose-text h4{
    font-size:18px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.why-choose-text p{
    font-size:14.5px;
    line-height:1.65;
    color:#666;
}

/* Tablet */

@media (max-width:1200px){
    .why-choose-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

/* Mobile */

@media (max-width:768px){
    .why-choose-section{
        padding:60px 0;
    }
    .why-choose-header{
        margin-bottom:36px;
    }
    .why-choose-header h2{
        font-size:28px;
        white-space:normal;
    }
    .why-choose-header p{
        font-size:15px;
    }
    .why-choose-badge{
        height:38px;
        padding:0 16px;
    }
    .why-choose-badge-track{
        font-size:13px;
    }
    .why-choose-grid{
        grid-template-columns:1fr;
        gap:14px;
    }
    .why-choose-row{
        padding:24px 22px;
        gap:16px;
    }
    .why-choose-icon-wrap{
        width:44px;
        height:44px;
    }
    .why-choose-icon-wrap i{
        font-size:17px;
    }
}


/* =========================
   MISSION & VISION SECTION
========================= */

.mission-vision-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:var(--navy);
    margin-bottom:6px;
}

.mv-bg-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.35;
}

.mv-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(2,20,28,.92) 0%, rgba(2,20,28,.75) 50%, rgba(2,20,28,.92) 100%);
}

.mv-inner{
    position:relative;
    z-index:2;
    width:min(1300px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:0;
}

.mv-col{
    padding:0 56px;
}

.mv-label{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--cyan);
    margin-bottom:14px;
}

.mv-quote-icon{
    display:block;
    font-size:26px;
    color:var(--cyan);
    opacity:.6;
    margin-bottom:14px;
}

.mv-text{
    font-size:22px;
    font-weight:700;
    line-height:1.5;
    color:#fff;
    max-width:420px;
}

.mv-divider{
    position:relative;
    align-self:stretch;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 40px;
}

.mv-divider::before{
    content:'';
    position:absolute;
    top:0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:1px;
    background:rgba(255,255,255,.18);
}

/* Tablet */

@media (max-width:1024px){
    .mv-text{
        font-size:19px;
    }
    .mv-col{
        padding:0 32px;
    }
}

/* Mobile */

@media (max-width:768px){
    .mission-vision-section{
        padding:80px 0;
    }
    .mv-inner{
        grid-template-columns:1fr;
        gap:48px;
    }
    .mv-col{
        padding:0 4%;
        text-align:left;
    }
    .mv-text{
        font-size:17px;
        max-width:100%;
    }
    .mv-divider{
        padding:0;
        height:1px;
        margin:0 4%;
    }
    .mv-divider::before{
        top:0;
        bottom:auto;
        left:0;
        right:0;
        width:100%;
        height:1px;
        transform:none;
    }
}

/* =========================
   ABOUT CTA SECTION
========================= */

.about-cta-section{
    position:relative;
    overflow:hidden;
    min-height:440px;
    display:flex;
    align-items:center;
    padding:80px 0;
    background:#0F8BB2;
    margin:100px auto;
    width:min(1400px,92%);
    border-radius:28px;
}

.about-cta-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.25;
}

.about-cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(2,45,55,.9) 0%, rgba(2,45,55,.65) 55%, rgba(2,45,55,.4) 100%);
}

.about-cta-inner{
    position:relative;
    z-index:2;
    width:min(1400px,92%);
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.about-cta-text h2{
    font-size:46px;
    font-weight:700;
    color:#fff;
    line-height:1.3;
    margin-bottom:14px;
}

.about-cta-text h2 span{
    color:var(--cyan);
}

.about-cta-text p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.7);
    max-width:520px;
}

.about-cta-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}

.about-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
    height:58px;
    padding:0 8px 0 30px;
    border-radius:999px;
    border:none;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    box-shadow:0 12px 28px -10px rgba(0,0,0,.35);
    transition:transform .25s ease, box-shadow .25s ease;
}

.about-cta-btn-secondary{
    display:inline-flex;
    align-items:center;
    height:58px;
    padding:0 30px;
    border-radius:999px;
    border:2px solid #fff;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    white-space:nowrap;
    box-shadow:0 8px 20px -8px rgba(0,0,0,.3);
    transition:background .3s ease, transform .25s ease;
}

.about-cta-btn-secondary:hover{
    background:#ffffff;
    color:#111111;
    transform:translateY(-3px);
}

.about-cta-btn i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#c9281f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:background .3s ease;
}

.about-cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 32px -10px rgba(0, 0, 0, 0.45);
}

.about-cta-btn:hover i{
    background:#9b1c15;
}

/* Tablet */

@media (max-width:1024px){
    .about-cta-section{
   min-height:auto;
    }
    .about-cta-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:28px;
    }
    .about-cta-text h2{
        font-size:32px;
    }
}

/* Mobile */

@media (max-width:768px){
    .about-cta-section{
        padding:60px 0;
        min-height:auto;
        border-radius:20px;
        margin:60px auto;
    }
    .about-cta-text h2{
        font-size:26px;
    }
    .about-cta-text p{
        font-size:14.5px;
    }
    .about-cta-buttons{
        flex-direction:column;
        width:100%;
        gap:12px;
    }
    .about-cta-btn{
        width:100%;
        justify-content:space-between;
        height:54px;
        font-size:13px;
    }
    .about-cta-btn-secondary{
        width:100%;
        justify-content:center;
        height:54px;
        font-size:13px;
    }
}

/* =========================
   SERVICE HERO
========================= */

.service-hero{
    position:relative;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.service-hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.service-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(to bottom, rgba(2,45,55,.5) 0%, rgba(2,45,55,.55) 60%, #022d37 100%),
        linear-gradient(to right, rgba(2,45,55,.75) 0%, rgba(2,45,55,.3) 55%, rgba(2,45,55,.55) 100%);
}

.service-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    text-align:center;
    color:#fff;
    padding:0 20px;
}

.service-hero-content h1{
    font-size:56px;
    font-weight:600;
    line-height:1.15;
    color:#fff;
    margin-bottom:22px;
}

.service-hero-content h1 span{
    display:block;
    color:#1ec7e8;
}

.service-hero-content p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.75);
    max-width:560px;
    margin:0 auto;
}

@media (max-width:991px){
    .service-hero{ height:460px; }
    .service-hero-content h1{ font-size:32px; }
    .service-hero-content p{ font-size:16px; }
}

@media (max-width:576px){
    .service-hero{ height:420px; }
    .service-hero-content h1{ font-size:26px; }
}

/* Services Overview — image below text on mobile (overrides about.css order) */
@media (max-width:991px){
    .services-overview-bar .who-we-are-image{
        order:0 !important;
    }
}

/* =========================
   COOLING SOLUTIONS
========================= */

.primary-services-section{
    padding:100px 0;
    background:#fff;
}

.primary-services-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.primary-services-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.ps-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.primary-services-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.primary-services-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.ps-rows{
    width:min(1400px,92%);
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:32px;
}

/* Unified card */

.ps-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    background:#e9ecf3;
    border-radius:20px;
    overflow:hidden;
}

.ps-row.reverse .ps-image-panel{
    order:2;
}

.ps-row.reverse .ps-content-panel{
    order:1;
}

/* Image panel */

.ps-image-panel{
    position:relative;
    display:flex;
    flex-direction:column;
}

.ps-image-panel img{
    width:100%;
    height:auto;
    min-height:380px;
    flex:1;
    object-fit:cover;
    display:block;
}

.ps-image-features{
    background:#081F45;
    display:flex;
    align-items:center;
    justify-content:space-around;
    padding:28px 20px;
}

.ps-feature{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex:1;
}

.ps-feature-icon{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:50%;
    border:1.5px solid rgba(255,255,255,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:13px;
}

.ps-feature span{
    display:block;
    font-size:12.5px;
    font-weight:600;
    color:#fff;
    line-height:1.3;
}

.ps-feature-divider{
    width:1px;
    height:30px;
    background:rgba(255,255,255,.18);
    flex-shrink:0;
}

/* Content panel */

.ps-content-panel{
    position:relative;
    background:transparent;
    padding:28px 48px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    overflow:hidden;
}

.ps-content-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
}

.ps-num{
    font-size:26px;
    font-weight:700;
    color:var(--red);
    line-height:1;
}

.ps-content-top h3{
    font-size:26px;
    font-weight:600;
    color:#111;
    line-height:1.2;
}

.ps-content-desc{
    font-size:14.5px;
    line-height:1.6;
    color:#666;
    margin-bottom:30px;
    max-width:none;
}

.ps-features-list{
    display:flex;
    flex-direction:column;
}

.ps-feature-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:16px 0;
    border-top:1px solid #e2e2e2;
}

.ps-features-list .ps-feature-item:first-child{
    border-top:none;
    padding-top:0;
}

.ps-feature-item-icon{
    width:30px;
    height:30px;
    min-width:30px;
    background:none;
    border:none;
    border-radius:0;
    color:var(--teal);
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.ps-feature-item h4{
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;
}

.ps-feature-item p{
    font-size:13.5px;
    line-height:1.55;
    color:#777;
}

/* Tablet */

@media (max-width:1200px){
    .primary-services-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media (max-width:1024px){
    .ps-row,
    .ps-row.reverse{
        grid-template-columns:1fr;
    }

    .ps-row .ps-image-panel,
    .ps-row.reverse .ps-image-panel{
        order:-1;
    }

    .ps-content-panel{
        padding:28px 32px;
    }
    .ps-content-top h3{
        font-size:22px;
    }
    .ps-num{
        font-size:22px;
    }
    .ps-image-panel img{
        height:300px;
    }
    .ps-feature-item{
        padding:10px 0;
    }

    .ps-image-features{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:16px 12px;
        padding:20px 18px;
    }

    .ps-feature{
        flex:none;
        justify-content:flex-start;
        gap:10px;
    }

    .ps-feature-divider{
        display:none;
    }
}

/* Mobile */

@media (max-width:768px){
    .primary-services-section{
        padding:60px 0;
    }
    .primary-services-header{
        margin-bottom:36px;
    }
    .primary-services-header h2{
        font-size:28px;
        white-space:normal;
    }
    .primary-services-header p{
        font-size:15px;
    }
    .primary-services-badge{
        width:fit-content;
        height:38px;
    }
    .ps-badge-track{
        font-size:13px;
    }

    .ps-rows{
        gap:28px;
    }

    .ps-row,
    .ps-row.reverse{
        grid-template-columns:1fr;
        border-radius:18px;
    }

    .ps-row .ps-image-panel,
    .ps-row.reverse .ps-image-panel{
        order:-1;
    }

    .ps-image-panel img{
        height:220px;
    }

    .ps-image-features{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:18px 12px;
        padding:20px 18px;
    }

    .ps-feature{
        flex:none;
        justify-content:flex-start;
        gap:10px;
    }

    .ps-feature-divider{
        display:none;
    }

    .ps-content-panel{
        padding:24px 22px;
    }

    .ps-content-panel::after{
        width:100px;
    }

    .ps-content-top h3{
        font-size:20px;
    }

    .ps-num{
        font-size:20px;
    }

    .ps-content-desc{
        font-size:14px;
        margin-bottom:18px;
    }

    .ps-feature-item{
        padding:14px 0;
        gap:14px;
    }

    .ps-feature-item-icon{
        font-size:24px;
    }

    .ps-feature-item h4{
        font-size:15px;
    }

    .ps-feature-item p{
        font-size:13px;
    }
}

/* =========================
   CORE CAPABILITIES SECTION
========================= */

.beyond-section{
    padding:80px 0;
    background: #f5f5f5;
    position:relative;
    overflow:hidden;
}

.beyond-dots{
    position:absolute;
    top:60px;
    left:0;
    width:140px;
    height:140px;
    background-image:radial-gradient(rgba(15,139,178,.18) 1.5px, transparent 1.5px);
    background-size:16px 16px;
    z-index:0;
    pointer-events:none;
}

.beyond-header{
    position:relative;
    z-index:1;
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.beyond-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.beyond-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.beyond-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.beyond-header h2 span{
    color:#0F8BB2;
}

.beyond-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.beyond-grid{
    position:relative;
    z-index:1;
    width:min(1400px,92%);
    margin:0 auto 32px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.beyond-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 44px -26px rgba(2,45,55,.2);
    transition:transform .35s ease, box-shadow .35s ease;
}

.beyond-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 56px -24px rgba(2,45,55,.28);
}

.beyond-card-image{
    position:relative;
    height:170px;
}

.beyond-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.beyond-card-icon{
    position:absolute;
    left:28px;
    bottom:-24px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 24px -8px rgba(2,45,55,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.beyond-card-icon i{
    font-size:20px;
    color:var(--teal);
}

.beyond-card-body{
    padding:36px 28px 24px;
}

.beyond-card-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    margin-bottom:10px;
}

.beyond-card-top h3{
    font-size:21px;
    font-weight:700;
    color:#0a1a2e;
    line-height:1.25;
    position:relative;
    padding-bottom:10px;
}

.beyond-card-top h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:36px;
    height:3px;
    border-radius:3px;
    background:var(--teal);
}

.beyond-card-num{
    font-size:38px;
    font-weight:700;
    color:#DCE4EC;
    line-height:1;
    flex-shrink:0;
}

.beyond-card-desc{
    font-size:14px;
    line-height:1.6;
    color:#666;
    margin-bottom:14px;
}

.beyond-card-divider{
    border-top:1px solid #ececec;
    margin-bottom:14px;
}

.beyond-card-list{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.beyond-card-list li{
    list-style:none;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#333;
}

.beyond-card-list li i{
    color:var(--teal);
    font-size:15px;
    flex-shrink:0;
}

/* Bottom strip */

.beyond-strip{
    position:relative;
    z-index:1;
    width:min(1400px,92%);
    margin:0 auto;
    background:#F7F9FB;
    border:1px solid #ececec;
    border-radius:20px;
    padding:32px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.beyond-strip-item{
    display:flex;
    align-items:center;
    gap:16px;
    flex:1;
}

.beyond-strip-divider{
    width:1px;
    height:44px;
    background:#e2e2e2;
    flex-shrink:0;
}

.beyond-strip-icon{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:50%;
    background:#fff;
    border:1.5px solid #DCE4EC;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--navy);
    font-size:17px;
}

.beyond-strip-item.lead .beyond-strip-icon{
    background:var(--navy);
    border-color:var(--navy);
    color:#fff;
}

.beyond-strip-text{
    font-size:14px;
    font-weight:600;
    color:#333;
    line-height:1.4;
}

.beyond-strip-item.lead .beyond-strip-text{
    font-size:16px;
    font-weight:800;
    text-transform:uppercase;
    color:#0a1a2e;
    letter-spacing:.01em;
    position:relative;
    padding-bottom:10px;
}

.beyond-strip-item.lead .beyond-strip-text::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:28px;
    height:3px;
    border-radius:3px;
    background:var(--teal);
}

/* Tablet */

@media (max-width:1200px){
    .beyond-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media (max-width:1024px){
    .beyond-grid{
        grid-template-columns:1fr;
        gap:28px;
    }
    .beyond-strip{
        flex-wrap:wrap;
        justify-content:flex-start;
        row-gap:24px;
    }
    .beyond-strip-item{
        flex:0 0 calc(50% - 8px);
    }
    .beyond-strip-divider{
        display:none;
    }
}

/* Mobile */

@media (max-width:768px){
    .beyond-section{
        padding:60px 0;
    }
    .beyond-header{
        margin-bottom:36px;
    }
    .beyond-badge{
        width:fit-content;
        height:38px;
    }
    .beyond-badge-track{
        font-size:13px;
    }
    .beyond-header h2{
        font-size:28px;
        white-space:normal;
    }
    .beyond-header p{
        font-size:15px;
    }
    .beyond-card-body{
        padding:44px 24px 24px;
    }
    .beyond-card-top h3{
        font-size:20px;
    }
    .beyond-card-num{
        font-size:30px;
    }
    .beyond-strip{
        padding:24px 22px;
        border-radius:16px;
    }
    .beyond-strip-item{
        flex:0 0 100%;
    }
}

/* =========================
   ENGINEERING PROCESS SECTION
========================= */

.eng-process-section{
    padding:100px 0;
    background: #ffffff;
    overflow:hidden;
}

/* Standard section header (matches beyond-header / primary-services-header) */

.eng-process-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.eng-process-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.eng-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.eng-process-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.eng-process-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.eng-process-grid{
    width:min(1500px,94%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:start;
}

/* Left column */

.eng-process-left{
    display:flex;
    flex-direction:column;
}

.eng-process-bg-image{
    width:100%;
    height:320px;
    border-radius:20px;
    overflow:hidden;
}

.eng-process-bg-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Right column — steps grid with integrated numbering */

.eng-process-right{
    width:100%;
}

.eng-steps-content{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px 16px;
}

.eng-step-col{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:14px;
}

.eng-step-num{
    position:relative;
    z-index:2;
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:50%;
    background:var(--navy, #022d37);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    flex-shrink:0;
}

.eng-step-col:not(:last-child)::after{
    content:'';
    position:absolute;
    top:20px;
    left:calc(50% + 20px);
    width:calc(100% - 20px);
    height:0;
    border-top:2px dashed #B7C6CC;
    z-index:1;
}

.eng-step-icon{
    font-size:32px;
    color:var(--teal, #0F8BB2);
    line-height:1;
    margin-top:6px;
}

.eng-step-col h4{
    font-size:16px;
    font-weight:700;
    color:#0a1a2e;
    line-height:1.3;
}



.eng-step-col p{
    font-size:13.5px;
    line-height:1.6;
    color:#666;
    flex:1;
    max-width:290px;
    margin:0 auto;
}

/* Tablet */

@media (max-width:1200px){
    .eng-process-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
    .eng-process-bg-image{
        border-radius:20px;
        overflow:hidden;
        height:280px;
    }
}

@media (max-width:1024px){
    .eng-steps-content{
        grid-template-columns:repeat(3,1fr);
        row-gap:36px;
        column-gap:24px;
    }
    .eng-step-col::after{
        display:none;
    }
}

/* Mobile */

@media (max-width:768px){
    .eng-process-section{
        padding:60px 0;
    }
    .eng-process-header{
        margin-bottom:36px;
    }
    .eng-process-badge{
        width:fit-content;
        height:38px;
        padding:0 16px;
    }
    .eng-badge-track{
        font-size:12px;
    }
    .eng-process-header h2{
        font-size:28px;
        white-space:normal;
    }
    .eng-process-header p{
        font-size:15px;
    }
    .eng-process-bg-image{
        height:200px;
    }
    .eng-steps-content{
        grid-template-columns:1fr 1fr;
        row-gap:28px;
        column-gap:16px;
    }
    .eng-step-num{
        width:36px;
        height:36px;
        font-size:13px;
    }
    .eng-step-icon{
        font-size:28px;
    }
}

@media (max-width:480px){
    .eng-steps-content{
        grid-template-columns:1fr;
    }
}

/* =========================
   TECHNOLOGIES WE WORK WITH SECTION
========================= */

.tech-section{
    padding:100px 0;
    background:#F5F5F5;
}

.tech-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.tech-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.tech-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.tech-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.tech-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.tech-grid{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.tech-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 16px 36px -24px rgba(2,45,55,.2);
    transition:transform .35s ease, box-shadow .35s ease;
}

.tech-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 48px -22px rgba(2,45,55,.26);
}

.tech-card-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.tech-card-icon{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:12px;
    background:#F0F2F5;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .3s ease, transform .3s ease;
}

.tech-card-icon i{
    font-size:17px;
    color:#0a1a2e;
}

.tech-card:hover .tech-card-icon{
    background:var(--teal, #0F8BB2);
    transform:scale(1.06);
}

.tech-card:hover .tech-card-icon i{
    color:#fff;
}

.tech-card-top h4{
    font-size:16px;
    font-weight:700;
    color:#111;
    line-height:1.3;
}

.tech-card-image{
    border-radius:14px;
    overflow:hidden;
    height:200px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.tech-card-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    transition:transform .5s ease;
}

.tech-card:hover .tech-card-image img{
    transform:scale(1.06);
}

/* Tablet */

@media (max-width:1200px){
    .tech-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media (max-width:1024px){
    .tech-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* Mobile */

@media (max-width:768px){
    .tech-section{
        padding:60px 0;
    }
    .tech-header{
        margin-bottom:36px;
    }
    .tech-header h2{
        font-size:28px;
        white-space:normal;
    }
    .tech-header p{
        font-size:15px;
    }
    .tech-badge{
        width:fit-content;
        height:38px;
        padding:0 16px;
    }
    .tech-badge-track{
        font-size:13px;
    }
    .tech-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    .tech-card{
        padding:20px;
    }
    .tech-card-image{
        height:220px;
    }
}

/* =========================
   INDUSTRIES WE SUPPORT SECTION
========================= */

.ind-support-section{
    padding:100px 0;
    background:#fff;
}

.ind-support-header{
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.ind-support-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.ind-support-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.ind-support-header h2{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.ind-support-header p{
    font-size:19px;
    color:#000;
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.ind-support-list{
    width:min(1200px,92%);
    margin:auto;
    display:flex;
    flex-direction:column;
}

.ind-support-row{
    display:grid;
    grid-template-columns:220px 1fr;
    align-items:center;
    gap:36px;
    padding:28px 8px;
    border-bottom:1px solid #ececec;
    transition:padding-left .3s ease, padding-right .3s ease;
}

.ind-support-list .ind-support-row:first-child{
    border-top:1px solid #ececec;
}

.ind-support-row:hover{
    padding-left:16px;
}

.ind-support-row.reverse{
    grid-template-columns:1fr 220px;
}

.ind-support-row.reverse .ind-support-row-image{
    order:2;
}

.ind-support-row.reverse .ind-support-row-content{
    order:1;
}

.ind-support-row-image{
    position:relative;
    height:150px;
    border-radius:18px;
    overflow:hidden;
}

.ind-support-row-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.ind-support-row:hover .ind-support-row-image img{
    transform:scale(1.08);
}

.ind-support-row-content{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.ind-support-icon{
    flex-shrink:0;
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:#EAF6FA;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .3s ease, transform .3s ease;
}

.ind-support-icon i{
    font-size:19px;
    color:var(--teal, #0F8BB2);
    transition:color .3s ease;
}

.ind-support-row:hover .ind-support-icon{
    background:var(--teal, #0F8BB2);
    transform:scale(1.08);
}

.ind-support-row:hover .ind-support-icon i{
    color:#fff;
}

.ind-support-row-text h4{
    font-size:21px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:8px;
}

.ind-support-row-text p{
    font-size:14.5px;
    line-height:1.65;
    color:#666;
    max-width:520px;
}

/* Tablet */

@media (max-width:1200px){
    .ind-support-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media (max-width:900px){
    .ind-support-row,
    .ind-support-row.reverse{
        grid-template-columns:1fr;
        gap:20px;
    }
    .ind-support-row .ind-support-row-image,
    .ind-support-row.reverse .ind-support-row-image{
        order:-1;
    }
    .ind-support-row-image{
        height:200px;
    }
}

/* Mobile */

@media (max-width:768px){
    .ind-support-section{
        padding:60px 0;
    }
    .ind-support-header{
        margin-bottom:36px;
    }
    .ind-support-header h2{
        font-size:28px;
        white-space:normal;
    }
    .ind-support-header p{
        font-size:15px;
    }
    .ind-support-badge{
        width:fit-content;
        height:38px;
        padding:0 16px;
    }
    .ind-support-badge-track{
        font-size:13px;
    }
    .ind-support-row{
        padding:22px 0;
    }
    .ind-support-row:hover{
        padding-left:0;
    }
    .ind-support-row-content{
        gap:14px;
    }
    .ind-support-icon{
        width:44px;
        height:44px;
        min-width:44px;
    }
    .ind-support-row-text h4{
        font-size:18px;
    }
    .ind-support-row-text p{
        font-size:13.5px;
    }
    .ind-support-row-image{
        height:160px;
    }
}


/* =========================
   TRUSTED ENGINEERING SECTION
========================= */

.trust-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(160deg, #051822 0%, var(--navy) 55%, #063240 100%);
    overflow:hidden;
}

.trust-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:360px;
    height:360px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(30,199,232,.18) 0%, transparent 70%);
    pointer-events:none;
}

.trust-header{
    position:relative;
    z-index:1;
    text-align:center;
    margin-bottom:56px;
    padding:0 20px;
}

.trust-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0 auto 24px;
}

.trust-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.trust-header h2{
    font-size:50px;
    font-weight:500;
    color:#fff;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
}

.trust-header p{
    font-size:19px;
    color:rgba(255,255,255,.7);
    max-width:100%;
    margin:0 auto;
    line-height:1.7;
}

.trust-grid{
    position:relative;
    z-index:1;
    width:min(1300px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}

.trust-item{
    padding:44px 40px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    transition:background .35s ease;
}

.trust-item:hover{
    background:rgba(255,255,255,.04);
}

.trust-icon{
    width:56px;
    height:56px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    transition:background .3s ease, border-color .3s ease, transform .3s ease;
}

.trust-item:hover .trust-icon{
    background:var(--teal);
    border-color:var(--teal);
    transform:translateY(-4px);
}

.trust-icon i{
    font-size:22px;
    color:#7FE0FF;
    transition:color .3s ease;
}

.trust-item:hover .trust-icon i{
    color:#fff;
}

.trust-item h4{
    font-size:19px;
    font-weight:700;
    color:#fff;
    line-height:1.3;
    margin-bottom:12px;
}

.trust-item p{
    font-size:14.5px;
    line-height:1.7;
    color:rgba(255,255,255,.6);
    max-width:340px;
}

/* Tablet */

@media (max-width:1200px){
    .trust-header h2{
        font-size:44px;
        white-space:normal;
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media (max-width:900px){
    .trust-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* Mobile */

@media (max-width:768px){
    .trust-section{
        padding:60px 0;
    }
    .trust-header{
        margin-bottom:36px;
    }
    .trust-header h2{
        font-size:28px;
        white-space:normal;
    }
    .trust-header p{
        font-size:15px;
    }
    .trust-badge{
        height:38px;
        padding:0 16px;
    }
    .trust-badge-track{
        font-size:13px;
    }
    .trust-grid{
        grid-template-columns:1fr;
    }
    .trust-item{
        padding:28px 24px;
    }
    .trust-item h4{
        font-size:17px;
    }
    .trust-item p{
        font-size:14px;
        max-width:100%;
    }
}



/* =========================
   SERVICE CTA SECTION
   (identical styling to .about-cta-section,
   kept separate so each page's CTA can be
   edited independently)
========================= */

.service-cta-section{
    position:relative;
    overflow:hidden;
    min-height:440px;
    display:flex;
    align-items:center;
    padding:80px 0;
    background:#0F8BB2;
    margin:100px auto;
    width:min(1400px,92%);
    border-radius:28px;
}

.service-cta-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.25;
}

.service-cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(15,139,178,.55) 0%, rgba(2,45,55,.75) 45%, rgba(2,20,28,.95) 100%);
}

.service-cta-inner{
    position:relative;
    z-index:2;
    width:min(1400px,92%);
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.service-cta-text h2{
    font-size:46px;
    font-weight:700;
    color:#fff;
    line-height:1.3;
    margin-bottom:14px;
}

.service-cta-text h2 span{
    color:var(--cyan);
}

.service-cta-text p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.7);
    max-width:520px;
}

.service-cta-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}

.service-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
    height:58px;
    padding:0 8px 0 30px;
    border-radius:999px;
    border:none;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    box-shadow:0 12px 28px -10px rgba(0,0,0,.35);
    transition:transform .25s ease, box-shadow .25s ease;
}

.service-cta-btn-secondary{
    display:inline-flex;
    align-items:center;
    height:58px;
    padding:0 30px;
    border-radius:999px;
    border:2px solid #fff;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    white-space:nowrap;
    box-shadow:0 8px 20px -8px rgba(0,0,0,.3);
    transition:background .3s ease, transform .25s ease;
}

.service-cta-btn-secondary:hover{
    background:#ffffff;
    color:#111111;
    transform:translateY(-3px);
}

.service-cta-btn i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#c9281f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:background .3s ease;
}

.service-cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 32px -10px rgba(0, 0, 0, 0.45);
}

.service-cta-btn:hover i{
    background:#9b1c15;
}

/* Tablet */

@media (max-width:1024px){
    .service-cta-section{
        min-height:auto;
    }
    .service-cta-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:28px;
    }
    .service-cta-text h2{
        font-size:32px;
    }
}

/* Mobile */

@media (max-width:768px){
    .service-cta-section{
        padding:60px 0;
        min-height:auto;
        border-radius:20px;
        margin:60px auto;
    }
    .service-cta-text h2{
        font-size:26px;
    }
    .service-cta-text p{
        font-size:14.5px;
    }
    .service-cta-buttons{
        flex-direction:column;
        width:100%;
        gap:12px;
    }
    .service-cta-btn{
        width:100%;
        justify-content:space-between;
        height:54px;
        font-size:13px;
    }
    .service-cta-btn-secondary{
        width:100%;
        justify-content:center;
        height:54px;
        font-size:13px;
    }
}

/* =========================
   PROJECTS HERO
   (identical styling to .about-hero / .service-hero,
   kept separate so each page's hero can be
   edited independently)
========================= */

.projects-hero{
    position:relative;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.projects-hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.projects-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(to bottom, rgba(2,45,55,.5) 0%, rgba(2,45,55,.55) 60%, var(--navy) 100%),
        linear-gradient(to right, rgba(2,45,55,.75) 0%, rgba(2,45,55,.3) 55%, rgba(2,45,55,.55) 100%);
}

.projects-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    text-align:center;
    color:#fff;
    padding:0 20px;
}

.projects-hero-content h1{
    font-size:56px;
    font-weight:600;
    line-height:1.15;
    color:#fff;
    margin-bottom:22px;
}

.projects-hero-content h1 span{
    display:block;
    color:var(--cyan);
}

.projects-hero-content p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.75);
    max-width:560px;
    margin:0 auto;
}

@media (max-width:991px){
    .projects-hero{ height:460px; }
    .projects-hero-content h1{ font-size:32px; }
    .projects-hero-content p{ font-size:16px; }
}

@media (max-width:576px){
    .projects-hero{ height:420px; }
    .projects-hero-content h1{ font-size:26px; }
}

/* =========================
   FEATURED PROJECT SECTION
========================= */

.featured-project-section{
    position:relative;
    padding:100px 0;
    background:#fff;
}
.featured-project-header{
    text-align:left;
    margin-bottom:20px;
    padding:0;
}

.featured-project-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin:0;
}

.fp-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.fp-grid{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:0.62fr 1.38fr;
    gap:56px;
    align-items:start;
}

/* Content panel */

.fp-content-panel{
    display:flex;
    flex-direction:column;
}

.fp-content-panel h3{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
}

.fp-desc{
    font-size:15px;
    line-height:1.7;
    color:#666;
    margin-bottom:28px;
    padding-bottom:28px;
    border-bottom:1px solid #ececec;
}

.fp-meta-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:28px;
}

.fp-meta-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.fp-meta-icon{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:10px;
    background:#EAF6FA;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--teal, #0F8BB2);
    font-size:14px;
}

.fp-meta-label{
    display:block;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#999;
    margin-bottom:4px;
}

.fp-meta-value{
    font-size:14.5px;
    font-weight:600;
    color:#222;
    line-height:1.5;
}

.fp-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.fp-tag{
    font-size:12.5px;
    font-weight:600;
    color:var(--teal, #0F8BB2);
    background:#EAF6FA;
    border:1px solid #cfe9f1;
    border-radius:999px;
    padding:8px 16px;
}

/* Image panel */

.fp-image-panel{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.fp-main-image{
    border-radius:20px;
    overflow:hidden;
    height:420px;
}

.fp-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.fp-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.fp-thumb{
    border-radius:14px;
    overflow:hidden;
    height:170px;
}

.fp-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.fp-thumb:hover img{
    transform:scale(1.08);
}

/* Tablet */

@media (max-width:1200px){
    .fp-grid{
        gap:40px;
    }
    .fp-content-panel h3{
        font-size:44px;
    }
}

@media (max-width:1024px){
    .fp-grid{
        grid-template-columns:1fr;
    }
    .fp-main-image{
        height:360px;
    }
    .featured-project-section{
        padding:70px 0;
    }
}

/* Mobile */

@media (max-width:768px){
    .featured-project-section{
        padding:60px 0;
    }
    .featured-project-header{
        margin-bottom:36px;
    }
    .featured-project-badge{
        width:fit-content;
        height:38px;
        padding:0 16px;
    }
    .fp-badge-track{
        font-size:13px;
    }
    .fp-content-panel h3{
        font-size:28px;
    }
    .fp-desc{
        font-size:14px;
    }
    .fp-main-image{
        height:260px;
    }
    .fp-thumbs{
        grid-template-columns:repeat(2,1fr);
    }
    .fp-thumb{
        height:140px;
    }
}

/* =========================
   PROJECT CATEGORIES SECTION
========================= */

.project-cat-section{
    padding:100px 0;
    background:#F5F5F5;
}

.pc-grid{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:0.62fr 1.38fr;
    gap:56px;
    align-items:center;
}

.pc-text-panel{
    display:flex;
    flex-direction:column;
}

.project-cat-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin-bottom:24px;
}

.pc-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.pc-title{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:8px;
}

.pc-title span{
    color:var(--cyan, #1ec7e8);
}

.pc-subtitle{
    font-size:19px;
    color:#000;
    line-height:1.7;
    max-width:420px;
}

.pc-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.pc-card{
    position:relative;
    display:block;
    height:400px;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
}

.pc-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.pc-card:hover img{
    transform:scale(1.08);
}


.pc-card-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:22px 20px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.pc-card-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1.5px solid rgba(255,255,255,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:17px;
}

.pc-card-content h4{
    font-size:14px;
    font-weight:700;
    letter-spacing:.03em;
    color:#fff;
    line-height:1.4;
}

.pc-card-arrow{
    width:32px;
    height:32px;
    border-radius:50%;
    border:1.5px solid rgba(255,255,255,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:12px;
    transition:background .3s ease, border-color .3s ease;
}

.pc-card:hover .pc-card-arrow{
    background:var(--teal, #0F8BB2);
    border-color:var(--teal, #0F8BB2);
}

/* Tablet */
@media (max-width:1200px){
    .pc-grid{
        gap:40px;
    }
    .pc-title{
        font-size:44px;
    }
}

@media (max-width:1024px){
    .pc-grid{
        grid-template-columns:1fr;
    }
    .pc-text-panel{
        margin-bottom:8px;
    }
    .pc-subtitle{
        max-width:600px;
    }
    .pc-cards{
        grid-template-columns:repeat(4,1fr);
    }
    .pc-card{
        height:340px;
    }
}

/* Mobile */

@media (max-width:768px){
    .project-cat-section{
        padding:60px 0;
    }
    .project-cat-badge{
        height:38px;
        padding:0 16px;
        margin-bottom:16px;
    }
    .pc-badge-track{
        font-size:13px;
    }
    .pc-title{
        font-size:28px;
    }
    .pc-subtitle{
        font-size:15px;
        max-width:100%;
    }
    .pc-cards{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }
    .pc-card{
        height:260px;
    }
    .pc-card-content h4{
        font-size:12.5px;
    }
}

@media (max-width:480px){
    .pc-cards{
        grid-template-columns:1fr;
    }
}

/* =========================
   PROJECT GALLERY SECTION
========================= */

.project-gallery-section{
    position:relative;
    z-index:3;
    margin-top:-70px;
    padding:0 0 100px;
    background:transparent;
}

.pg-box{
    width:min(1400px,92%);
    margin:0 auto;
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 24px 60px -20px rgba(2,45,55,.25);
}

.pg-header-row{
    width:100%;
    margin:0 0 44px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
}

.project-gallery-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin-bottom:24px;
}

.pg-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.pg-title{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
}

.pg-title span{
    color:var(--cyan, #1ec7e8);
}

.pg-filters{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.pg-filter{
    font-family:'Alexandria',sans-serif;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.03em;
    color:#666;
    background:transparent;
    border:none;
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;
    transition:background .3s ease, color .3s ease;
}

.pg-filter.active{
    background:var(--navy, #022d37);
    color:#fff;
}

.pg-filter:hover:not(.active){
    background:#f0f0f0;
}

.pg-grid{
    width:100%;
    margin:0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.pg-card{
    position:relative;
    display:block;
    grid-column:span 1;
    height:280px;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
}

.pg-card:nth-child(6n+1),
.pg-card:nth-child(6n+6){
    grid-column:span 2;
}

.pg-card:nth-child(6n+1) ~ .pg-card:nth-child(6n+2),
.pg-card:nth-child(6n+1) ~ .pg-card:nth-child(6n+3){
    flex:0 0 calc(22.5% - 14px);
}

.pg-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.pg-card:hover img{
    transform:scale(1.08);
}

.pg-card-content{
    position:absolute;
    left:20px;
    right:56px;
    bottom:20px;
    z-index:2;
    color:#fff;
}

.pg-card-content h4{
    font-size:16px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:6px;
}

.pg-card-content p{
    font-size:12.5px;
    color:rgba(255,255,255,.75);
}

.pg-card-arrow{
    position:absolute;
    right:16px;
    bottom:20px;
    z-index:2;
    width:32px;
    height:32px;
    border-radius:50%;
    border:1.5px solid rgba(255,255,255,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:12px;
    transition:background .3s ease, border-color .3s ease;
}

.pg-card:hover .pg-card-arrow{
    background:var(--teal, #0F8BB2);
    border-color:var(--teal, #0F8BB2);
}

/* Tablet */

@media (max-width:1200px){
    .pg-title{
        font-size:44px;
    }
}

@media (max-width:1024px){
    .pg-header-row{
        flex-direction:column;
        align-items:flex-start;
    }
    .pg-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .pg-card{
        grid-column:span 1;
    }
    .pg-card:nth-child(6n+1),
    .pg-card:nth-child(6n+6){
        grid-column:span 2;
    }
}

/* Mobile */

@media (max-width:991px){
    .project-gallery-section{
        margin-top:-40px;
    }
    .pg-box{
        padding:32px;
        border-radius:20px;
    }
}

@media (max-width:768px){
    .project-gallery-section{
        padding:0 0 60px;
    }
    .project-gallery-badge{
        height:38px;
        padding:0 16px;
        margin-bottom:16px;
    }
    .pg-badge-track{
        font-size:13px;
    }
    .pg-title{
        font-size:28px;
    }
    .pg-filters{
        gap:6px;
    }
    .pg-filter{
        font-size:11px;
        padding:10px 14px;
    }
    .pg-grid{
        grid-template-columns:1fr;
        gap:14px;
    }
    .pg-card{
        grid-column:span 1;
        height:240px;
    }
}

@media (max-width:576px){
    .project-gallery-section{
        margin-top:-24px;
    }
    .pg-box{
        padding:24px;
    }
}
/* =========================
   CLIENT TRUST & PARTNERSHIP SECTION
========================= */

.trust-partner-section{
    padding:100px 0;
    background:#F7F9FB;
}

.tp-grid{
    width:min(1500px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:0.62fr 1.38fr;
    gap:56px;
    align-items:center;
}

.tp-text-panel{
    display:flex;
    flex-direction:column;
}

.trust-partner-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin-bottom:24px;
}

.tp-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.tp-title{
    font-size:50px;
    font-weight:500;
    color:#111;
    line-height:1.1;
    margin-bottom:24px;
}

.tp-subtitle{
    font-size:19px;
    color:#000;
    line-height:1.7;
    max-width:420px;
}

.tp-partners-panel{
    display:flex;
    flex-direction:column;
}

.tp-row{
    display:grid;
    grid-template-columns:150px 1fr;
    align-items:center;
    gap:24px;
    padding:28px 0;
    border-bottom:1px solid #e2e2e2;
}

.tp-partners-panel .tp-row:first-child{
    padding-top:0;
}

.tp-partners-panel .tp-row:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.tp-row-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#0F8BB2;
    line-height:1.4;
    position:relative;
    padding-bottom:14px;
}

.tp-row-label::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:24px;
    height:2px;
    background:#0F8BB2;
}

.tp-logos{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
    
}

.tp-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:1;
}

.tp-logo img{
    max-height:70px;
    max-width:120px;
    width:auto;
    object-fit:contain;
    filter:grayscale(0%);
}

.tp-clients{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.tp-client{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
    flex:1;
    min-width:90px;
}

.tp-client i{
    font-size:26px;
    color:#0F8BB2;
}

.tp-client span{
    font-size:13px;
    font-weight:500;
    color:#333;
    line-height:1.4;
}

/* Tablet */

@media (max-width:1200px){
    .tp-title{
        font-size:44px;
    }
    .trust-partner-badge{
        width:fit-content;
        height:44px;
        padding:0 22px;
    }
    .tp-badge-track{
        font-size:18px;
    }
}

@media (max-width:1024px){
    .tp-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .tp-row{
        grid-template-columns:1fr;
        gap:16px;
    }
    .tp-logos,
    .tp-clients{
        justify-content:flex-start;
    }
}

/* Mobile */

@media (max-width:768px){
    .trust-partner-section{
        padding:60px 0;
    }
    .tp-title{
        font-size:28px;
    }
    .tp-subtitle{
        font-size:15px;
    }
    .trust-partner-badge{
        height:38px;
        padding:0 16px;
    }
    .tp-badge-track{
        font-size:13px;
    }
    .tp-row{
        padding:22px 0;
    }
    .tp-logo img{
        max-height:30px;
        max-width:90px;
    }
    .tp-client{
        min-width:72px;
    }
    .tp-client i{
        font-size:22px;
    }
    .tp-client span{
        font-size:12px;
    }
}

@media (max-width:480px){
    .tp-logos{
        gap:16px;
    }
    .tp-logo{
        flex:0 0 45%;
    }
    .tp-clients{
        gap:16px;
    }
    .tp-client{
        flex:0 0 28%;
    }
}

/* =========================
   PROJECTS CTA SECTION
   (variant of .service-cta-section —
   navy-led diagonal gradient, sharper
   corners, stat line instead of a
   secondary button)
========================= */

.projects-cta-section{
    position:relative;
    overflow:hidden;
    min-height:400px;
    display:flex;
    align-items:center;
    padding:70px 0;
    background:var(--navy);
    margin:100px auto;
    width:min(1400px,92%);
    border-radius:20px;
}

.projects-cta-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.5;
}

.projects-cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(2,20,28,.95) 0%, rgba(2,45,55,.75) 18%, rgba(2,45,55,.08) 35%, rgba(2,45,55,0) 50%);
}

.projects-cta-inner{
    position:relative;
    z-index:2;
    width:min(1400px,92%);
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.projects-cta-label{
    display:block;
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--cyan);
    margin-bottom:14px;
}

.projects-cta-label-line{
    display:block;
    width:32px;
    height:3px;
    border-radius:3px;
    background:var(--cyan);
    margin-bottom:18px;
}

.projects-cta-text h2{
    font-size:44px;
    font-weight:600;
    color:#fff;
    line-height:1.25;
    margin-bottom:12px;
}

.projects-cta-text h2 span{
    color:var(--cyan);
}

.projects-cta-text p{
    font-size:17px;
    line-height:1.7;
    color:rgba(255,255,255,.65);
    max-width:670px;
    margin-bottom:20px;
}

.projects-cta-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.projects-cta-btn-secondary{
    display:inline-flex;
    align-items:center;
    gap:14px;
    height:58px;
    padding:0 26px;
    border-radius:12px;
    border:1.5px solid #fff;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    transition:background .3s ease, border-color .3s ease, transform .25s ease, color .3s ease;
}

.projects-cta-btn-secondary i{
    font-size:14px;
}

.projects-cta-btn-secondary:hover{
    background:#C9281F;
    border-color:#C9281F;
    color:#fff;
    transform:translateY(-3px);
}

.projects-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
    height:58px;
    padding:0 8px 0 30px;
    border-radius:12px;
    border:none;
    background:#C9281F;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    box-shadow:0 12px 28px -10px rgba(0,0,0,.45);
    transition:transform .25s ease, box-shadow .25s ease, background .3s ease;
}

.projects-cta-btn i{
    width:36px;
    height:36px;
    border-radius:8px;
    background:rgba(255,255,255,.9);
    color:#C9281F;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:background .3s ease;
}

.projects-cta-btn:hover{
    background:#9b1c15;
    transform:translateY(-3px);
    box-shadow:0 16px 32px -10px rgba(0,0,0,.55);
}

/* Tablet */

@media (max-width:1024px){
    .projects-cta-section{
        min-height:auto;
    }
    .projects-cta-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }
    .projects-cta-text h2{
        font-size:30px;
    }
}

/* Mobile */

@media (max-width:768px){
    .projects-cta-section{
        padding:50px 0;
        min-height:auto;
        border-radius:16px;
        margin:60px auto;
    }
    .projects-cta-text h2{
        font-size:24px;
    }
    .projects-cta-text p{
        font-size:14.5px;
    }
    .projects-cta-buttons{
        flex-direction:column;
        width:100%;
        gap:12px;
    }
    .projects-cta-btn,
    .projects-cta-btn-secondary{
        width:100%;
        justify-content:space-between;
        height:52px;
        font-size:13px;
    }
}

/* =========================
   DIRECTOR'S MESSAGE SECTION
========================= */

.director-section{
    padding:100px 0;
    background: #F7F9FB;
}

.director-grid{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:0.62fr 1.38fr;
    gap:190px;
    align-items:center;
}

.director-image-panel{
    border-radius:24px;
    overflow:hidden;
    height:460px;
    box-shadow:0 24px 60px -20px rgba(2,45,55,.25);
}

.director-image-panel img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.director-content-panel{
    display:flex;
    flex-direction:column;
}

.director-badge{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    background:#0F8BB2;
    color:#fff;
    border:2px solid #007B8A;
    border-radius:999px;
    height:56px;
    width:fit-content;
    padding:0 28px;
    margin-bottom:28px;
}

.director-badge-track{
    display:flex;
    justify-content:center;
    white-space:nowrap;
    font-size:15px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.director-quote-icon{
    display:block;
    font-size:28px;
    color:var(--teal, #0F8BB2);
    opacity:.5;
    margin-bottom:20px;
}

.director-quote-icon-right{
    position:absolute;
    right:0;
    bottom:-36px;
    margin:0;
}

.director-message{
    position:relative;
    padding-bottom:20px;
}

.director-message{
    font-size:18px;
    font-weight:400;
    font-style:italic;
    line-height:1.9;
    color:#222;
    margin-bottom:32px;
    max-width:640px;
}

.director-signature h4{
    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;
}

.director-signature span{
    font-size:14px;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--teal, #0F8BB2);
}

/* Tablet */

@media (max-width:1024px){
    .director-grid{
        grid-template-columns:1fr;
        gap:32px;
    }
    .director-image-panel{
        height:340px;
    }
    .director-message{
        font-size:18px;
        max-width:100%;
    }
}

/* Mobile */

@media (max-width:768px){
    .director-section{
        padding:60px 0;
    }
    .director-image-panel{
        height:280px;
        border-radius:18px;
    }
    .director-badge{
        height:38px;
        padding:0 16px;
        margin-bottom:20px;
    }
    .director-badge-track{
        font-size:13px;
    }
    .director-message{
        font-size:15.5px;
        margin-bottom:24px;
    }
    .director-signature h4{
        font-size:17px;
    }
    .director-signature span{
        font-size:12px;
    }
}