 @import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');



:root{
    --persian-red: #ce3232;
    --dark: #363636;
    --grey: #bfbdbd;
    --lightGrey: #f9f9f9;
    --transition: all 0.5s ease;
    --Poppins: 'Poppins', sans-serif;
    --Mont: 'Montserrat', sans-serif;
}

*, *::before, *::after{
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
body{
    font-family: var(--Mont);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 116px;
    background: #fff;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
/* Utilities */

nav ul li a{
  text-decoration: none !important;
}

a{
  text-decoration: none;
}

.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands{
  line-height: 1;
}

.links li{
    list-style-type: none;
}

/* ===== Site Header ===== */
.nav-topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #111a22;
  color: #f4efe8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, opacity 0.28s ease;
  will-change: transform;
}

.nav-topbar-inner{
  width: min(1280px, 92vw);
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-topbar p{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.nav-topbar-actions{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-topbar-links{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-topbar-links a{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-topbar-links a:hover{
  color: #ffd4d4;
}

.nav-topbar-social{
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-topbar-social a{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-topbar-social a:hover{
  color: #fff;
  transform: translateY(-1px);
  background: rgba(191, 27, 27, 0.7);
  border-color: rgba(255, 255, 255, 0.34);
}

.wrapper{
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 18px 40px rgba(14, 24, 35, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}

.wrapper nav{
  position: relative;
  width: min(1280px, 92vw);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wrapper input[type="checkbox"]{
  display: none;
}

.nav-logo{
  flex: 0 0 auto;
  min-width: 0;
}

.nav-logo a{
  display: inline-flex;
  align-items: center;
}

.nav-logo img{
  width: auto;
  max-width: 220px;
  height: 54px;
  flex: 0 0 auto;
}

.nav-brand-copy{
  display: none;
}

.nav-links{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.2rem;
}

.nav-links li{
  position: relative;
}

.nav-links > li > a,
.nav-links > li > label{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #17232d;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.78rem 0.8rem;
  border-radius: 0;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links > li > label{
  display: none;
  cursor: pointer;
}

.nav-links > li > a.is-current{
  color: #bf1b1b;
  background: #f6f8fa;
  box-shadow: inset 0 -2px 0 #bf1b1b;
}

.dropdown-menu li a.is-current{
  color: #bf1b1b;
  background-color: #f5f7f9;
  background-size: auto;
  box-shadow: inset 3px 0 0 #bf1b1b;
}

.dropdown > .desktop-link::after,
.dropdown > label::after{
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  transition: transform 0.25s ease;
}

.nav-links > li > a:hover,
.nav-links > li > label:hover,
.dropdown:focus-within > .desktop-link{
  color: #bf1b1b;
  background: #f6f8fa;
  box-shadow: inset 0 -2px 0 #bf1b1b;
}

.dropdown:hover > .desktop-link::after,
.dropdown:focus-within > .desktop-link::after,
.dropdown:focus-within > label::after{
  transform: rotate(180deg);
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 228px;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(19, 31, 40, 0.1);
  box-shadow: 0 14px 28px rgba(13, 22, 31, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 40;
}

.dropdown-menu::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu li{
  width: 100%;
}

.dropdown-menu li a{
  display: block;
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: 0;
  color: #22313c;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  background-image: none;
  background-repeat: no-repeat;
  background-size: auto;
  transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease, box-shadow 0.18s ease;
}

.dropdown-menu li a:hover{
  color: #bf1b1b;
  background-color: #f5f7f9;
  box-shadow: inset 3px 0 0 #bf1b1b;
  padding-left: 1.08rem;
}

.services-menu{
  min-width: 460px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.resources-menu{
  min-width: 190px;
}

.services-menu li a{
  min-height: 100%;
  white-space: normal;
  border: 1px solid transparent;
}

.services-menu li a:hover{
  border-color: rgba(191, 27, 27, 0.14);
}

.nav-actions{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn-ghost-nav,
.btn-primary-nav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 1rem;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--Mont);
  text-decoration: none !important;
  -webkit-text-fill-color: currentColor;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-ghost-nav{
  color: #17232d !important;
  background: #fff;
  border: 1px solid rgba(18, 31, 41, 0.12);
}

.btn-ghost-nav:hover{
  transform: translateY(-1px);
  border-color: rgba(18, 31, 41, 0.24);
  box-shadow: 0 14px 30px rgba(18, 31, 41, 0.08);
}

.btn-primary-nav{
  color: #fff !important;
  background: linear-gradient(135deg, #bf1b1b 0%, #8e1414 100%);
  border: 1px solid transparent;
  box-shadow: 0 16px 30px rgba(191, 27, 27, 0.24);
}

.btn-primary-nav:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(191, 27, 27, 0.34);
}

.nav-search-btn{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  border: 1px solid rgba(18, 31, 41, 0.12);
  border-radius: 0;
  background: #f4f6f8;
  color: #17232d;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.nav-search-btn span{
  display: none;
}

.nav-search-btn:hover{
  color: #bf1b1b;
  background: #fff;
  border-color: rgba(191, 27, 27, 0.22);
  box-shadow: 0 14px 30px rgba(18, 31, 41, 0.08);
  transform: translateY(-1px);
}

.nav-search-btn:focus-visible{
  outline: 3px solid rgba(191, 27, 27, 0.18);
  outline-offset: 3px;
}

.nav-mobile-actions{
  display: none;
}

.nav-mobile-actions a{
  width: 100%;
}

.nav-mobile-actions .nav-search-btn{
  width: 100%;
  justify-content: center;
  min-height: 36px;
  padding: 0 1rem;
  background: #fff;
}

.nav-mobile-actions .nav-search-btn span{
  display: inline;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon{
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 1px solid rgba(17, 27, 34, 0.12);
  color: #17232d;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.menu-icon:hover{
  color: #bf1b1b;
  border-color: rgba(191, 27, 27, 0.25);
  background: #fbf6f6;
}

.search-icon,
.search-box,
.info-navbar,
.info-container,
.social-links{
  display: none !important;
}

body.nav-is-hidden .wrapper{
  transform: translateY(-130%);
  box-shadow: none;
}

body.search-is-open{
  overflow: hidden;
}

.site-search{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 108px 1rem 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

body.search-is-open .site-search{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-search-backdrop{
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(8, 14, 22, 0.58);
  cursor: pointer;
}

.site-search-panel{
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 132px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(18, 31, 41, 0.08);
  border-radius: 26px;
  box-shadow: 0 40px 80px rgba(7, 14, 20, 0.22);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.22s ease;
}

body.search-is-open .site-search-panel{
  transform: translateY(0);
}

.site-search-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(18, 31, 41, 0.08);
}

.site-search-kicker{
  display: block;
  margin-bottom: 0.35rem;
  color: #bf1b1b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-search-title{
  color: #17232d;
  font-size: 1.45rem;
  line-height: 1.2;
}

.site-search-close{
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 31, 41, 0.08);
  border-radius: 0;
  background: #f7f9fb;
  color: #17232d;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.site-search-close:hover{
  color: #bf1b1b;
  background: #fff;
  border-color: rgba(191, 27, 27, 0.16);
}

.site-search-form{
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(18, 31, 41, 0.08);
}

.site-search-input-wrap{
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 56px;
  padding: 0 1rem;
  border: 1px solid rgba(18, 31, 41, 0.12);
  border-radius: 18px;
  background: #f7f9fb;
}

.site-search-input-wrap i{
  color: #65727d;
}

.site-search-input{
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  color: #17232d;
  font-size: 1rem;
}

.site-search-input:focus{
  outline: none;
}

.site-search-results{
  list-style: none;
  padding: 0.8rem 1.1rem 1.2rem;
  margin: 0;
  overflow-y: auto;
}

.site-search-result + .site-search-result{
  margin-top: 0.45rem;
}

.site-search-result-link{
  display: block;
  padding: 1rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #fff;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.site-search-result-link:hover{
  background: #f7f9fb;
  border-color: rgba(191, 27, 27, 0.12);
  transform: translateY(-1px);
}

.site-search-result-title{
  display: block;
  margin-bottom: 0.22rem;
  color: #17232d;
  font-size: 1rem;
  font-weight: 800;
}

.site-search-result-desc{
  display: block;
  color: #56616b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-search-empty{
  padding: 1.1rem 1.05rem;
  color: #56616b;
  font-size: 0.94rem;
}

.scroll-top-btn{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, #bf1b1b 0%, #8e1414 100%);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 18px 32px rgba(191, 27, 27, 0.26);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  z-index: 1002;
}

.scroll-top-btn.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover{
  box-shadow: 0 22px 36px rgba(191, 27, 27, 0.34);
}

.scroll-top-btn:focus-visible{
  outline: 3px solid rgba(191, 27, 27, 0.2);
  outline-offset: 3px;
}

@media screen and (max-width: 1200px){
  .wrapper nav{
    gap: 1.2rem;
  }

  .nav-brand-copy span{
    display: none;
  }
  .services-menu{
    min-width: 500px;
  }
}

@media screen and (max-width: 980px){
  body{
    padding-top: 104px;
  }

  html{
    scroll-padding-top: 118px;
  }

  .nav-topbar{
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  .nav-topbar-inner{
    min-height: 36px;
  }

  .nav-topbar p{
    display: none;
  }

  .nav-topbar-actions{
    width: 100%;
    justify-content: space-between;
  }

  .wrapper{
    top: 36px;
  }

  .header{
    min-height: calc(100vh - 104px);
  }

  .wrapper nav{
    min-height: 68px;
    gap: 1rem;
  }

  .nav-brand-copy{
    display: none;
  }

  .menu-icon{
    display: inline-flex;
  }

  .nav-actions{
    display: none;
  }

  .nav-links{
    position: fixed;
    top: 104px;
    right: -100%;
    width: min(380px, 100vw);
    height: calc(100vh - 104px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 1.35rem 1.1rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -24px 0 50px rgba(13, 22, 31, 0.14);
    border-left: 1px solid rgba(13, 22, 31, 0.08);
    overflow-y: auto;
    transition: right 0.28s ease;
  }

  .wrapper #show-menu:checked ~ .nav-links{
    right: 0;
  }

  .wrapper #show-menu:checked ~ .menu-icon i::before{
    content: "\f00d";
  }

  .nav-links li{
    width: 100%;
  }

  .nav-links > li > a,
  .nav-links > li > label{
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 0;
    background: #f6f8fa;
  }

  .nav-links > li > a.desktop-link{
    display: none;
  }

  .nav-links > li > label{
    display: inline-flex;
  }

  .dropdown-menu{
    position: static;
    top: auto;
    left: auto;
    transform: none;
    min-width: 100%;
    max-height: 0;
    padding: 0;
    margin-top: 0.4rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .dropdown:hover > .dropdown-menu{
    transform: none;
  }

  .dropdown input:checked ~ .dropdown-menu{
    max-height: 1200px;
    padding: 0.2rem 0 0;
  }

  .dropdown-menu li + li{
    margin-top: 0.45rem;
  }

  .dropdown-menu li a{
    border: 1px solid #ebeff3;
    background: #fff;
    border-radius: 0;
    background-image: none;
  }

  .services-menu{
    min-width: 100%;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .nav-mobile-actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-top: 0.9rem;
  }

  .site-search{
    padding-top: 96px;
  }

  .site-search-panel{
    max-height: calc(100vh - 110px);
  }
}

@media screen and (max-width: 700px){
  .nav-topbar-actions{
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
  }

  .nav-topbar-links{
    width: auto;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: nowrap;
  }

  .nav-topbar-links a{
    font-size: 11px;
  }

  .nav-topbar-links a:last-child{
    display: none;
  }

  .nav-topbar-social{
    gap: 0.45rem;
  }

  .nav-topbar-social a{
    width: 26px;
    height: 26px;
  }

  .wrapper nav{
    width: min(1280px, 94vw);
  }
}

@media screen and (max-width: 480px){
  body{
    padding-top: 100px;
  }

  html{
    scroll-padding-top: 112px;
  }

  .nav-topbar-inner{
    min-height: 34px;
  }

  .wrapper{
    top: 34px;
  }

  .header{
    min-height: calc(100vh - 100px);
  }

  .wrapper nav{
    min-height: 66px;
  }

  .nav-topbar-links a{
    font-size: 10px;
  }

  .nav-logo img{
    max-width: 182px;
    height: 44px;
  }

  .scroll-top-btn{
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .nav-links{
    top: 100px;
    width: 100vw;
    height: calc(100vh - 100px);
    border-left: none;
  }

  .site-search{
    padding: 84px 0.75rem 0.75rem;
  }

  .site-search-panel{
    max-height: calc(100vh - 96px);
    border-radius: 22px;
  }

  .site-search-header,
  .site-search-form{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-search-results{
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}

  .dummy-text{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: -1;
    padding: 0 20px;
    text-align: center;
    transform: translate(-50%, -50%);
  }
  .dummy-text h2{
    font-size: 45px;
    margin: 5px 0;
  }



img{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

iframe,
video,
embed,
object{
    max-width: 100%;
    display: block;
}
button{
    font-family: inherit;
    outline: none;
}
/* h1, h2, h3, h4, h5, h6, p{
    margin: 1.2rem 0;
} */
header .container h2{
    line-height: 2.2rem;
    font-size: 24px;
    text-align: center;
    
}
.btn{
    background: #BF1B1B;
    border: 1px solid transparent;
    color: #fff;
    text-transform: capitalize;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
    min-height: 36px;
    padding: 0.55rem 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 16px 30px rgba(191, 27, 27, 0.16);
}

.btn:hover,
.btn:focus{
    background: #8e1414;
    border-color: transparent;
    text-decoration: none;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(191, 27, 27, 0.24);
}

.btn:focus-visible{
    outline: 3px solid rgba(191, 27, 27, 0.18);
    outline-offset: 3px;
}

.btn-primary{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn i{
    margin-right: 0;
}
.container{
    width: 90vw;
    margin: 0 auto;
}

.container h2 span{
    color: #BF1B1B;
    font-size: 30px;
}
.container h1 span{
    color: var(--dark);
}
.section-py{
    padding: 5rem 0;
}
.para-text{
    color: var(--dark);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
    opacity: 0.8;
}

/* navbar */


/* header */
.header{
    margin-top: 0;
    min-height: calc(100vh - 116px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.349), rgba(0, 0, 0, 0.273)), url(../images/marimage-new.jpeg) center/cover fixed;
}
.header h2{
    font-size: 1.6rem;
    color: #fff;
    /* text-transform: uppercase; */
}
.header-title{
    color: #fff;
    font-size: 2.8rem;
    padding: 1rem 0;
}
.header button{
    width: 150px;
    cursor: pointer;
    font-weight: 500;
}

.hero-slider{
    position: relative;
    display: block;
    overflow: hidden;
    background: #08121c;
}

.hero-slider .hero-slides{
    position: relative;
    min-height: inherit;
}

.hero-slide{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #08121c;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active{
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-media{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    will-change: transform;
}

.hero-slide.is-active .hero-slide-media{
    animation: heroImageScale 7s ease forwards;
}

.hero-slide::before,
.hero-slide::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide::before{
    background:
      linear-gradient(90deg, rgba(5, 10, 16, 0.88) 0%, rgba(7, 15, 24, 0.62) 48%, rgba(10, 19, 28, 0.34) 100%),
      linear-gradient(180deg, rgba(4, 10, 15, 0.12) 0%, rgba(4, 10, 15, 0.42) 100%);
}

.hero-slide-ambient::before{
    background:
      linear-gradient(90deg, rgba(5, 10, 16, 0.88) 0%, rgba(7, 15, 24, 0.62) 48%, rgba(10, 19, 28, 0.34) 100%),
      linear-gradient(180deg, rgba(4, 10, 15, 0.12) 0%, rgba(4, 10, 15, 0.42) 100%),
      linear-gradient(180deg, rgba(8, 18, 28, 0.2) 0%, rgba(8, 18, 28, 0.2) 100%),
      url(../images/zbynek-burival-GrmwVnVSSdU-unsplash.jpg) center/cover no-repeat;
}

.hero-slide::after{
    background: radial-gradient(circle at 85% 22%, rgba(191, 27, 27, 0.22), transparent 30%);
}

.hero-slide-content{
    position: relative;
    z-index: 2;
    width: min(1280px, 90vw);
    margin: 0 auto;
    padding: 6.8rem 0 5rem;
    display: grid;
    gap: 1.15rem;
}

.hero-slide-kicker{
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-slide h1{
    max-width: 700px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-slide p{
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-slide-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding-top: 0.5rem;
}

.hero-slide .btn{
    min-height: 38px;
    padding: 0.58rem 1.1rem;
    border-radius: 0;
    font-weight: 700;
}

.hero-slide .hero-btn-secondary{
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #fff;
    box-shadow: none;
}

.hero-slide .hero-btn-secondary:hover,
.hero-slide .hero-btn-secondary:focus{
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow: none;
}

.hero-slider-chrome{
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 3;
    width: min(1280px, 90vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-slider-dots,
.hero-slider-controls{
    display: flex;
    align-items: center;
    gap: 0.6rem;
    pointer-events: auto;
}

.hero-slider-dot,
.hero-slider-arrow{
    border: none;
    cursor: pointer;
}

.hero-slider-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}

.hero-slider-dot.is-active{
    width: 34px;
    background: #bf1b1b;
}

.hero-slider-arrow{
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.hero-slider-arrow:hover{
    background: rgba(191, 27, 27, 0.72);
    transform: translateY(-1px);
}

@keyframes heroImageScale{
    from{
        transform: scale(1.03);
    }
    to{
        transform: scale(1.09);
    }
}

@media screen and (max-width: 980px){
    .hero-slide-content{
        padding: 5.6rem 0 6.4rem;
    }

    .hero-slider-chrome{
        bottom: 22px;
    }
}

@media screen and (max-width: 700px){
    .hero-slide-content{
        width: min(1280px, 92vw);
        padding: 4.8rem 0 7rem;
        gap: 1rem;
    }

    .hero-slide h1{
        font-size: clamp(2rem, 9vw, 3.4rem);
    }

    .hero-slide p{
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero-slide-actions{
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slide .btn{
        width: 100%;
    }

    .hero-slider-chrome{
        width: min(1280px, 92vw);
        flex-direction: column;
        align-items: flex-start;
    }
}

/* title */
.title{
    padding: 0.2rem;
}
.title h4{
    text-transform: uppercase;
    color: var(--grey);
    font-size: 0.8rem;
}
.title h2{
    opacity: 0.9;
    text-transform: capitalize;
    color: #BF1B1B;
    font-size: 1.7rem;
}

/* .choose-us::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translate(-50%, -50%);
    background-color: #BF1B1B;
    width: 50%;
    height: 0.4rem;
    z-index: 1;
  }
   */

.img-div{
    padding: 23px;
    border-left: 5px solid #BF1B1B;
    border-bottom: 5px solid #BF1B1B;
}

/* about */
.about{
    overflow-x: hidden;
}

.about-overlay{
    height: 130px;
    background: rgba(128, 0, 128, 0.93);
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    overflow: hidden;
}
.about-overlay-content{
    overflow: hidden;
    transition: all 0.5s ease;
    transform: translateY(100%);
}
.about-item:hover .about-overlay{
    opacity: 1;
}
.about-item:hover .about-overlay-content{
    transform: translateY(0);
}

.home-story{
    position: relative;
    background:
      radial-gradient(circle at top left, rgba(191, 27, 27, 0.08), transparent 34%),
      linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.home-story-shell{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.home-story-kicker{
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(191, 27, 27, 0.08);
    color: #bf1b1b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-story-copy h2,
.home-stats-intro h2{
    color: #17232d;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.home-story-copy .para-text{
    max-width: 640px;
    margin-top: 1.15rem;
    font-size: 1rem;
    line-height: 1.9;
}

.home-story-points{
    display: grid;
    gap: 1rem;
    margin-top: 1.7rem;
}

.home-story-point{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(18, 31, 41, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 35px rgba(18, 31, 41, 0.05);
}

.home-story-point h3{
    color: #17232d;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.home-story-point p{
    color: #56616b;
    line-height: 1.7;
}

.home-story-point-icon{
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #bf1b1b 0%, #8e1414 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(191, 27, 27, 0.2);
}

.home-story-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.home-story-actions .btn{
    min-height: 38px;
    padding: 0.58rem 1.1rem;
    border-radius: 0;
}

.home-story-secondary{
    background: #fff;
    color: #17232d;
    border: 1px solid rgba(18, 31, 41, 0.12);
    box-shadow: 0 18px 34px rgba(18, 31, 41, 0.08);
}

.home-story-secondary:hover,
.home-story-secondary:focus{
    color: #fff;
    background: #17232d;
    border-color: #17232d;
    box-shadow: 0 20px 36px rgba(18, 31, 41, 0.18);
}

.home-story-visual{
    position: relative;
    min-height: 620px;
}

.home-story-image{
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(11, 20, 28, 0.16);
}

.home-story-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-story-image-main{
    inset: 0 3.5rem 5.5rem 0;
}

.home-story-image-accent{
    right: 0;
    bottom: 0;
    width: 50%;
    height: 240px;
    border: 6px solid #fff;
}

.home-story-float-card{
    position: absolute;
    left: 1.2rem;
    bottom: 2.2rem;
    z-index: 2;
    max-width: 270px;
    padding: 1.1rem 1.15rem;
    border-radius: 24px;
    background: rgba(8, 18, 28, 0.88);
    color: #fff;
    box-shadow: 0 22px 50px rgba(8, 18, 28, 0.24);
}

.home-story-float-card span{
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-story-float-card strong{
    font-size: 1rem;
    line-height: 1.6;
}

.home-stats-section{
    padding: 0 0 5rem;
    background: #f7f8fa;
}

.home-stats-shell{
    display: grid;
    gap: 1.8rem;
}

.home-stats-intro{
    max-width: 760px;
}

.home-stats-intro p{
    margin-top: 1rem;
    color: #56616b;
    font-size: 1rem;
    line-height: 1.85;
}

.home-stats-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-stat-card{
    min-height: 100%;
    padding: 1.4rem;
    border: 1px solid rgba(18, 31, 41, 0.08);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(18, 31, 41, 0.06);
}

.home-stat-card-accent{
    background: linear-gradient(135deg, #bf1b1b 0%, #8e1414 100%);
    border-color: transparent;
    color: #fff;
}

.home-stat-card-dark{
    background: #0f1a23;
    border-color: transparent;
    color: #fff;
}

.home-stat-icon{
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 18px;
    background: rgba(191, 27, 27, 0.08);
    color: #bf1b1b;
    font-size: 1.1rem;
}

.home-stat-card-accent .home-stat-icon,
.home-stat-card-dark .home-stat-icon{
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.home-stat-value{
    display: block;
    margin-bottom: 0.55rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.home-stat-card h3{
    color: #17232d;
    font-size: 1.08rem;
    margin-bottom: 0.55rem;
}

.home-stat-card p{
    color: #56616b;
    line-height: 1.75;
}

.home-stat-card-accent h3,
.home-stat-card-accent p,
.home-stat-card-dark h3,
.home-stat-card-dark p{
    color: rgba(255, 255, 255, 0.92);
}

/* WHY CHOOSE US */
.pre-service{
    display: flex;
    width: 85%;
    background-color: #fafafa;
    margin: auto;
    padding: 7vw;
}

.pre-service h2 span, .choose-left h2{
    color: #BF1B1B;
}

.choose-left{
    width: 35%;
}

.choose-left p{
    line-height: 2.2rem;
    color: #363636;
}

.choose-right{
    display: flex;
    width: 50%;
   margin-left: 2vw;
}

.numbers{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: -38px;
    padding: 53px 0 0 0;
    z-index: 10;
}

.users, .projects{
    background-color: #fcfcfc;
    text-align: center;
    padding: 1.4rem;
    margin: 7px;
    box-shadow: 1px 1px 1px 1px #9a989846;
}

.preservice-img img{
    box-shadow: 1px 1px 1px 1px #9a989846;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

@media screen and (max-width: 1100px){
    .home-story-shell{
        grid-template-columns: 1fr;
    }

    .home-story-visual{
        min-height: 540px;
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

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

@media screen and (max-width: 700px){
    .home-story{
        padding-top: 4.2rem;
    }

    .home-story-actions{
        flex-direction: column;
    }

    .home-story-actions .btn{
        width: 100%;
    }

    .home-story-visual{
        min-height: 420px;
    }

    .home-story-image-main{
        inset: 0 0 5rem 0;
    }

    .home-story-image-accent{
        right: 0.7rem;
        bottom: 0;
        width: 58%;
        height: 160px;
    }

    .home-story-float-card{
        left: 0.8rem;
        bottom: 1rem;
        max-width: 220px;
        padding: 0.95rem 1rem;
    }

    .home-stats-grid{
        grid-template-columns: 1fr;
    }
}

/* services */
.service-section{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5.4rem 0 5.8rem;
  background: linear-gradient(180deg, #0f1a23 0%, #162431 100%);
}

.service-section::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url(../images/zbynek-burival-GrmwVnVSSdU-unsplash.jpg) center/cover no-repeat;
  opacity: 0.16;
  transform: scale(1.03);
}

.service-section::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(191, 27, 27, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(15, 26, 35, 0.9) 0%, rgba(22, 36, 49, 0.94) 100%);
}

.service-shell{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.service-head{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.3rem;
  align-items: end;
}

.service-intro{
  color: #fff;
}

.service-kicker{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.95rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-intro h2{
  max-width: 720px;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.service-intro p{
  max-width: 640px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-size: 1rem;
}

.service-callout{
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 20px 45px rgba(5, 10, 15, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-callout span{
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-callout p{
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0.95rem;
  row-gap: 1.45rem;
  align-items: stretch;
}

.service-card{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 1rem 0.95rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(5, 10, 15, 0.12);
  overflow: hidden;
}

.service-card-emphasis{
  background: linear-gradient(180deg, #bf1b1b 0%, #8e1414 100%);
  border-color: transparent;
  color: #fff;
}

.service-card-icon{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: rgba(191, 27, 27, 0.1);
  color: #bf1b1b;
  font-size: 1rem;
}

.service-card-emphasis .service-card-icon{
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.service-card-tag{
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: #7b8791;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-emphasis .service-card-tag{
  color: rgba(255, 255, 255, 0.72);
}

.service-card h3{
  color: #17232d;
  font-size: 1rem;
  line-height: 1.3;
}

.service-card p{
  margin-top: 0.65rem;
  margin-bottom: 1.2rem;
  color: #56616b;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: left;
}

.service-card-emphasis h3,
.service-card-emphasis p{
  color: rgba(255, 255, 255, 0.96);
}

.service-callout .btn,
.service-card .btn{
  margin-top: auto;
  width: auto;
  min-width: 0;
  min-height: 32px;
  padding: 0.42rem 0.72rem;
  font-size: 0.82rem;
  background: transparent;
  color: #17232d;
  border-color: rgba(18, 31, 41, 0.12);
  box-shadow: none;
}

.service-callout .btn{
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.service-callout .btn:hover,
.service-callout .btn:focus{
  background: #fff;
  border-color: #fff;
  color: #17232d;
}

.service-card .btn:hover,
.service-card .btn:focus{
  background: #17232d;
  border-color: #17232d;
  color: #fff;
  box-shadow: none;
}

.service-card-emphasis .btn{
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.service-card-emphasis .btn:hover,
.service-card-emphasis .btn:focus{
  background: #fff;
  border-color: #fff;
  color: #8e1414;
}

@media screen and (max-width: 1100px){
  .service-head{
    grid-template-columns: 1fr;
  }

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

@media screen and (max-width: 900px){
  .service-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 700px){
  .service-section{
    padding: 4.2rem 0;
  }

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

  .service-shell{
    gap: 2rem;
  }

}

.owl-carousel .active span {
  width:10px;
  height:10px;
  margin:5px 7px;
  background: red !important;
  display:block;
  -webkit-backface-visibility:visible;
  -webkit-transition:opacity 200ms ease;
  -moz-transition:opacity 200ms ease;
  -ms-transition:opacity 200ms ease;
  -o-transition:opacity 200ms ease;
  transition:opacity 200ms ease;
  -webkit-border-radius:30px;
  -moz-border-radius:30px;
  border-radius:30px;
}

.owl-carousel .owl-stage{
  display: flex;
}


/* FUTURE PROJECTS */
  .future-projects{
    padding: 33px 0 0 0;
    display: flex;
    width: 100%;
    overflow: hidden;
    background:#ededed;
  }

  .left-image{
    width: 15%;
    margin-right: 12px;
  }

  .initial-left{
    width: 80%;
  }

  .future-content{
    margin-top: 23px;
    display: flex;
    width: 100%;
  }

  .future-left{
    width: 50%;
  }

  .future-left h2, .future-left p{
    line-height: 2rem;
  }

  .future-left h2{
    color: #BF1B1B;
  }
  .future-right{
    width: 50%;
  }

  .future-right img{
    width: 100%;
  }

  /* PARTNERS */
  .partners{
    padding: 5rem 0;
    background:
      radial-gradient(circle at top left, rgba(191, 27, 27, 0.08), transparent 28%),
      linear-gradient(180deg, #f8f9fb 0%, #eef2f5 100%);
  }
  
  .partners-shell{
    display: grid;
    gap: 2rem;
  }

  .partners-head{
    max-width: 760px;
  }

  .partners-kicker{
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.95rem;
    padding: 0.5rem 0.8rem;
    background: rgba(191, 27, 27, 0.08);
    color: #bf1b1b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  
  .partners-head h2{
    color: #17232d;
    font-size: clamp(2rem, 3.4vw, 3.05rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 0.9rem;
  }

  .partners-head p{
    color: #56616b;
    font-size: 1rem;
    line-height: 1.85;
  }

  .partners-grid{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .partner-tile{
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(18, 31, 41, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(18, 31, 41, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  }

  .partner-tile:hover{
    transform: translateY(-2px);
    border-color: rgba(191, 27, 27, 0.16);
    background: #fff;
    box-shadow: 0 22px 44px rgba(18, 31, 41, 0.1);
  }

  .partner-tile img{
    max-height: 78px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.88;
    transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
  }

  .partner-tile:hover img{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
  }

  @media screen and (max-width: 1100px){
    .partners-grid{
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media screen and (max-width: 800px){
    .partners-grid{
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media screen and (max-width: 560px){
    .partners{
      padding: 4.2rem 0;
    }

    .partners-grid{
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .partner-tile{
      min-height: 108px;
      padding: 0.85rem;
    }

    .partner-tile img{
      max-height: 62px;
    }
  }
/* CONTACT */
#contact{
    height:auto;
    padding-bottom: 22px;
    padding-top: 22px;
    background-color: #e9e9e9;
}

#contact h2{
    margin-top: 35px;
    text-align: center;
    color: #BF1B1B;
    font-size: 34px;
    line-height: 1.4rem;
}

.contact-section{
    display: flex;
    margin: 59px 18px auto 18px ;
   
}

.contact-map{
    border: 5px solid #BF1B1B;
    width: 50%;
    padding: 12px;
    
}

.contact-map iframe{
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--grey);
    /* padding: 2rem 1rem; */
    /* font-size: 0.95rem; */
    outline: none;
    
}


.reach-me{
    margin-left: 22px;
    width: 50%;
   
}

.reach-text{
    box-shadow: 1px 1px 1px 1px #3636362f;
    border: none;
    outline: none;
    margin: 0 14px 14px 14px;
    padding: 35px;
    text-align: center;
    font-size: 22px;
    color: #BF1B1B;
}

.reach-text .reach-link{
    margin-top: 10px;
    border: 0.5px solid #7878780d;
    background-color: #bf1b1b;
    padding: 5px 2px 5px 2px;
    
}
.reach-text a{
    color: #ffffff;
    
}

 .reach-text .reach-mail{
    margin-top: 10px;
    border: 0.5px solid #7878780d;
    background-color: #fbfbfb;
    padding: 5px 2px 5px 2px;
   
}

.reach-mail a{
    color: #BF1B1B;
}

.bottom-page{
    background-color: #800000;
    margin-bottom: 0;
    padding-bottom: 2rem;
}

.bottom-page p{
    color: #363636;
}

.bottom-page h2{
    color: #fff;
}

.footer-image h2{
  padding-top: 23px;
}
.footer-icons{

    display: flex;
    justify-content: center;
}
.footer-icons span{
    background: #fff;
    margin: 0.5rem;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--lightGrey);
    transition: var(--transition);
}
.footer-icons span:hover{
    background: var(--persian-red);
}

.site-footer{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(191, 27, 27, 0.28), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #101a23 0%, #081118 100%);
  color: #e8eef3;
  padding: 4.5rem 0 1.4rem;
}

.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%);
  pointer-events: none;
}

.site-footer .container{
  position: relative;
  z-index: 1;
}

.site-footer-shell{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr)) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.site-footer-brand{
  display: grid;
  gap: 1.1rem;
}

.site-footer-logo{
  display: inline-flex;
  width: fit-content;
}

.site-footer-logo img{
  width: 200px;
  max-width: 100%;
  height: auto;
}

.site-footer-kicker{
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffd7d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-copy{
  max-width: 420px;
  color: rgba(232, 238, 243, 0.78);
  font-size: 0.96rem;
  line-height: 1.75;
}

.site-footer-heading{
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-links,
.site-footer-contact-list,
.site-footer-mini-links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-links li + li,
.site-footer-contact-list li + li{
  margin-top: 0.72rem;
}

.site-footer-links a,
.site-footer-contact-list a,
.site-footer-map-link,
.site-footer-mini-links a{
  color: rgba(232, 238, 243, 0.8);
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer-links a:hover,
.site-footer-contact-list a:hover,
.site-footer-map-link:hover,
.site-footer-mini-links a:hover{
  color: #fff;
}

.site-footer-contact{
  display: grid;
  gap: 1rem;
}

.site-footer-contact-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer-contact-list i{
  width: 18px;
  color: #ffb4b4;
  margin-top: 0.15rem;
}

.site-footer-contact-label{
  display: block;
  margin-bottom: 0.16rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-contact-text{
  color: rgba(232, 238, 243, 0.8);
  font-size: 0.94rem;
  line-height: 1.65;
}

.site-footer-social{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer-social a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.site-footer-social a:hover{
  transform: translateY(-1px);
  background: rgba(191, 27, 27, 0.78);
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer-cta{
  width: fit-content;
}

.site-footer-bottom{
  margin-top: 2.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer-bottom p{
  color: rgba(232, 238, 243, 0.72);
  font-size: 0.9rem;
}

.site-footer-mini-links{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer-mini-links a{
  font-size: 0.9rem;
}

.site-footer-copy,
.site-footer-heading,
.site-footer-links a,
.site-footer-contact-text,
.site-footer-mini-links a{
  overflow-wrap: anywhere;
  word-break: normal;
}

@media screen and (max-width: 1100px){
  .site-footer-shell{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 700px){
  .site-footer{
    padding-top: 3.8rem;
  }

  .site-footer-shell{
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .site-footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* END OF CONTACT */

/* CONTACT PAGE */
.contact-page-body{
  background: #f7f2ec;
}

.contact-page-hero{
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 4.75rem;
  color: #fff;
  background: #0f1820;
}

.contact-page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 18, 25, 0.9) 0%, rgba(10, 18, 25, 0.76) 46%, rgba(10, 18, 25, 0.5) 100%),
    url("../images/niq-team.jpg") center/cover no-repeat;
}

.contact-page-hero::after{
  content: "";
  position: absolute;
  inset: auto -10% -16% 42%;
  height: 260px;
  background: linear-gradient(135deg, rgba(191, 27, 27, 0.22), rgba(191, 27, 27, 0));
  transform: skewX(-18deg);
}

.contact-page-hero-shell,
.contact-page-main-grid,
.contact-map-shell{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-page-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page-kicker::before{
  content: "";
  width: 32px;
  height: 2px;
  background: #bf1b1b;
}

.contact-page-hero-copy h1{
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact-page-hero-copy p{
  max-width: 44rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.contact-page-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.contact-page-outline-btn{
  border-color: rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.contact-page-outline-btn:hover,
.contact-page-outline-btn:focus{
  background: #fff;
  color: #17232d;
  border-color: #fff;
  box-shadow: none;
}

.contact-page-hero-panel{
  background: rgba(8, 16, 22, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-page-hero-stat{
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-page-hero-stat span{
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
}

.contact-page-hero-stat p{
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-page-hero-list{
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-page-hero-list li{
  display: flex;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
}

.contact-page-hero-list li::before{
  content: "";
  flex: 0 0 10px;
  height: 10px;
  margin-top: 0.45rem;
  background: #bf1b1b;
}

.contact-page-overview{
  position: relative;
  z-index: 2;
  margin-top: -2.4rem;
}

.contact-page-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-channel-card,
.contact-page-form-wrap,
.contact-info-panel,
.contact-map-shell{
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 22px 46px rgba(15, 25, 34, 0.08);
}

.contact-channel-card{
  padding: 1.55rem;
  background: #fffdfa;
}

.contact-channel-icon{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  background: #17232d;
  font-size: 1rem;
}

.contact-channel-card h2{
  margin: 0;
  color: #17232d;
  font-size: 1.3rem;
  line-height: 1.18;
}

.contact-channel-card p{
  margin: 0.85rem 0 0;
  color: #53606b;
}

.contact-channel-link{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #bf1b1b;
  font-weight: 700;
}

.contact-page-main{
  padding-top: 1.5rem;
}

.contact-page-form-wrap{
  padding: 2rem;
  background: #fffdfa;
}

.contact-page-form-wrap h2,
.contact-map-copy h2{
  margin: 0;
  color: #17232d;
  line-height: 1.06;
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-page-form-wrap p,
.contact-map-copy p{
  margin: 1rem 0 0;
  color: #53606b;
}

.contact-enquiry-form{
  margin-top: 1.6rem;
  display: grid;
  gap: 0.95rem;
}

.contact-form-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-form-field label{
  display: block;
  margin-bottom: 0.45rem;
  color: #45515b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea{
  width: 100%;
  border: 1px solid rgba(18, 31, 41, 0.16);
  background: #fff;
  color: #17232d;
  font: inherit;
  padding: 0.85rem 0.95rem;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus{
  outline: none;
  border-color: rgba(191, 27, 27, 0.52);
  box-shadow: 0 0 0 4px rgba(191, 27, 27, 0.08);
}

.contact-form-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.contact-form-note,
.contact-form-status{
  font-size: 0.92rem;
}

.contact-form-note{
  color: #596671;
}

.contact-form-status{
  min-height: 1.25rem;
  color: #0b6b42;
}

.contact-form-status.is-error{
  color: #9c1d1d;
}

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

.contact-info-panel{
  padding: 1.55rem;
  background: #fff;
}

.contact-info-panel-dark{
  color: #fff;
  background: #17232d;
}

.contact-info-panel-dark p{
  color: rgba(255, 255, 255, 0.76);
}

.contact-info-panel h3{
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.16;
}

.contact-info-panel p{
  margin: 0.85rem 0 0;
  color: #53606b;
}

.contact-detail-list,
.contact-checklist,
.contact-social-list{
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
}

.contact-detail-list,
.contact-checklist{
  display: grid;
  gap: 0.8rem;
}

.contact-detail-list li,
.contact-checklist li{
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.contact-detail-list i,
.contact-checklist i{
  margin-top: 0.2rem;
  color: #bf1b1b;
}

.contact-detail-list a{
  color: inherit;
}

.contact-social-list{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-social-list a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-social-list a:hover{
  background: rgba(191, 27, 27, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.contact-map-section{
  padding: 0 0 5rem;
}

.contact-map-shell{
  overflow: hidden;
  background: #fffdfa;
}

.contact-map-copy{
  padding: 2rem;
}

.contact-page-form-wrap .contact-page-kicker,
.contact-map-copy .contact-page-kicker{
  color: #596671;
}

.contact-map-frame{
  min-height: 420px;
}

.contact-map-frame iframe{
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-map-copy .contact-page-outline-btn{
  margin-top: 1.35rem;
  color: #17232d;
  background: #fff;
  border-color: rgba(23, 35, 45, 0.16);
}

.contact-map-copy .contact-page-outline-btn:hover,
.contact-map-copy .contact-page-outline-btn:focus{
  color: #fff;
  background: #bf1b1b;
  border-color: #bf1b1b;
}

@media screen and (max-width: 1120px){
  .contact-page-hero-shell,
  .contact-page-main-grid,
  .contact-map-shell{
    grid-template-columns: 1fr;
  }

  .contact-page-overview{
    margin-top: 0;
    padding-top: 2rem;
  }
}

@media screen and (max-width: 860px){
  .contact-page-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px){
  .contact-page-hero{
    padding: 5rem 0 3.5rem;
  }

  .contact-page-hero-panel,
  .contact-channel-card,
  .contact-page-form-wrap,
  .contact-info-panel,
  .contact-map-copy{
    padding: 1.35rem;
  }

  .contact-page-cards,
  .contact-form-row{
    grid-template-columns: 1fr;
  }

  .contact-page-hero-actions,
  .contact-form-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .contact-map-frame,
  .contact-map-frame iframe{
    min-height: 320px;
  }
}
/* END OF CONTACT PAGE */

/* RESOURCES, GALLERY, BLOG */
.resources-page-body,
.gallery-page-body,
.blog-page-body{
  background: #f4f1eb;
}

.resource-page-main,
.gallery-page-main,
.blog-page-main{
  overflow: hidden;
}

.info-page-hero{
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 3.1rem;
  color: #fff;
  background: #101922;
}

.info-page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(8, 14, 20, 0.92) 0%, rgba(8, 14, 20, 0.72) 48%, rgba(8, 14, 20, 0.56) 100%),
    var(--page-hero-image) center/cover no-repeat;
}

.info-page-hero::after{
  content: "";
  position: absolute;
  right: -8%;
  bottom: -110px;
  width: min(46vw, 540px);
  height: 240px;
  background: linear-gradient(135deg, rgba(191, 27, 27, 0.28), rgba(191, 27, 27, 0));
  transform: rotate(-8deg);
}

.info-page-hero-shell{
  position: relative;
  z-index: 1;
  max-width: 56rem;
}

.info-page-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-page-kicker::before{
  content: "";
  width: 32px;
  height: 2px;
  background: #bf1b1b;
}

.info-page-hero h1{
  max-width: 12ch;
  margin: 0.8rem 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.info-page-hero p{
  max-width: 46rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.resource-hub-section,
.gallery-grid-section,
.blog-empty-section,
.blog-topics-section{
  padding: 4rem 0 5rem;
}

.gallery-grid-section{
  padding-top: 1.3rem;
}

.page-section-head{
  max-width: 52rem;
  margin-bottom: 1.4rem;
}

.page-section-head h2{
  margin: 0;
  color: #17232d;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.page-section-head p{
  margin: 0.9rem 0 0;
  color: #53606b;
  line-height: 1.72;
}

.resource-hub-grid,
.blog-topic-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card,
.blog-empty-card,
.blog-topic-card,
.gallery-card{
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 20px 42px rgba(15, 25, 34, 0.08);
}

.resource-card,
.blog-empty-card,
.blog-topic-card{
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.96);
}

.resource-card{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.resource-card-icon{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  background: #17232d;
  font-size: 1.1rem;
}

.resource-card h2,
.blog-topic-card h2,
.blog-empty-card h2{
  margin: 0;
  color: #17232d;
  font-size: 1.18rem;
  line-height: 1.24;
}

.resource-card p,
.blog-topic-card p,
.blog-empty-card p{
  margin: 0.85rem 0 0;
  color: #54606a;
  line-height: 1.72;
}

.resource-card .btn{
  margin-top: auto;
  align-self: flex-start;
}

.resource-card .btn,
.blog-empty-actions .btn,
.blog-topic-card .blog-topic-link{
  margin-top: 1.25rem;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card{
  overflow: hidden;
  background: #fff;
}

.gallery-card img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption{
  padding: 0.95rem 1rem 1rem;
  color: #22313c;
  font-size: 0.95rem;
  font-weight: 600;
}

.blog-empty-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.blog-empty-copy{
  max-width: 44rem;
}

.blog-empty-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-outline-btn{
  background: transparent;
  color: #17232d;
  border-color: rgba(23, 35, 45, 0.18);
  box-shadow: none;
}

.blog-outline-btn:hover,
.blog-outline-btn:focus{
  background: #17232d;
  border-color: #17232d;
  color: #fff;
  box-shadow: none;
}

.blog-topic-card{
  min-width: 0;
}

.blog-topic-link{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #bf1b1b;
  font-weight: 700;
}

.blog-topic-link i{
  font-size: 0.82rem;
}

@media screen and (max-width: 1040px){
  .resource-hub-grid,
  .blog-topic-grid,
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-empty-card{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 760px){
  .info-page-hero{
    padding: 3.5rem 0 2.5rem;
  }

  .resource-hub-section,
  .gallery-grid-section,
  .blog-empty-section,
  .blog-topics-section{
    padding: 3rem 0 4rem;
  }

  .resource-card,
  .blog-empty-card,
  .blog-topic-card{
    padding: 1.25rem;
  }
}

@media screen and (max-width: 560px){
  .info-page-hero h1{
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .resource-hub-grid,
  .blog-topic-grid,
  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-card figcaption{
    padding: 0.85rem 0.9rem 0.95rem;
  }
}
/* END OF RESOURCES, GALLERY, BLOG */

/* SERVICE PAGES */
.service-page-body{
  background: #f6f2ec;
}

.service-page-main{
  overflow: hidden;
}

.service-hero{
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 3rem;
  background: #111a22;
  color: #fff;
}

.service-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(10, 17, 24, 0.9) 0%, rgba(10, 17, 24, 0.76) 44%, rgba(10, 17, 24, 0.54) 100%),
    var(--service-hero-image) center/cover no-repeat;
}

.service-hero::after{
  content: "";
  position: absolute;
  right: -8%;
  bottom: -120px;
  width: min(48vw, 560px);
  height: 260px;
  background: linear-gradient(135deg, rgba(191, 27, 27, 0.28), rgba(191, 27, 27, 0));
  transform: rotate(-10deg);
}

.service-hero-shell,
.service-detail-grid,
.service-support-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.15rem;
  align-items: start;
}

.service-page-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-page-kicker::before{
  content: "";
  width: 32px;
  height: 2px;
  background: #bf1b1b;
}

.service-hero-copy h1{
  max-width: 12ch;
  margin: 0.75rem 0 0;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-hero-copy p{
  max-width: 42rem;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.service-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.service-btn-secondary{
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  box-shadow: none;
}

.service-btn-secondary:hover,
.service-btn-secondary:focus{
  background: #fff;
  border-color: #fff;
  color: #17232d;
  box-shadow: none;
}

.service-btn-secondary-dark{
  background: rgba(255, 255, 255, 0.08);
}

.service-hero-media{
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(5, 10, 15, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.service-hero-media img{
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: contain;
  background: #fff;
}

.service-hero-panel{
  padding: 1.4rem;
  background: rgba(10, 17, 24, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-hero-panel h2{
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-hero-list{
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
}

.service-hero-list li{
  display: flex;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
}

.service-hero-list li::before{
  content: "";
  flex: 0 0 10px;
  height: 10px;
  margin-top: 0.45rem;
  background: #bf1b1b;
}

.service-detail-section{
  padding-top: 4rem;
}

.service-surface-card,
.service-image-card,
.service-feature-card,
.service-cta-box{
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 20px 42px rgba(15, 25, 34, 0.08);
}

.service-surface-card{
  padding: 1.8rem;
  background: #fffdfa;
}

.service-surface-card .service-page-kicker,
.service-section-head .service-page-kicker{
  color: #596671;
}

.service-surface-card h2,
.service-section-head h2{
  margin: 0.85rem 0 0;
  color: #17232d;
  line-height: 1.06;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-surface-card h3,
.service-surface-card-dark h3{
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-surface-card p,
.service-section-head p{
  margin: 1rem 0 0;
  color: #53606b;
}

.service-copy-lead{
  font-weight: 700;
  color: #17232d;
  line-height: 1.7;
}

.service-surface-card p + p{
  margin-top: 0.9rem;
}

.service-image-card{
  overflow: hidden;
  background: #fff;
}

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

.service-feature-section,
.service-support-section,
.service-cta-section{
  padding: 0 0 5rem;
}

.service-section-head{
  max-width: 46rem;
  margin-bottom: 1.45rem;
}

.service-feature-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-feature-card{
  display: flex;
  gap: 0.9rem;
  padding: 1.3rem;
  background: #fff;
}

.service-feature-icon{
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #17232d;
  font-size: 1rem;
}

.service-feature-card h3{
  margin: 0;
  color: #17232d;
  font-size: 1.04rem;
  line-height: 1.24;
}

.service-feature-card p{
  margin: 0.55rem 0 0;
  color: #53606b;
}

.service-surface-card-alt{
  background: #fff;
}

.service-surface-card-dark{
  padding: 1.8rem;
  color: #fff;
  background: #17232d;
}

.service-surface-card-dark p{
  color: rgba(255, 255, 255, 0.76);
}

.service-checklist{
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
}

.service-checklist li{
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.service-checklist i{
  margin-top: 0.22rem;
  color: #bf1b1b;
}

.service-cta-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem;
  color: #fff;
  background: #17232d;
  border-left: 4px solid #bf1b1b;
}

.service-cta-box .service-page-kicker{
  color: rgba(255, 255, 255, 0.74);
}

.service-cta-box h2{
  margin: 0.8rem 0 0;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.service-cta-box p{
  max-width: 40rem;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-hero-copy,
.service-hero-panel,
.service-surface-card,
.service-surface-card-dark,
.service-feature-card,
.service-cta-box{
  min-width: 0;
}

.service-hero-copy h1{
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.service-hero-copy p,
.service-surface-card p,
.service-surface-card-dark p,
.service-feature-card p,
.service-cta-box p{
  text-wrap: pretty;
}

.support-services-page{
  background: #f4f1eb;
}

.support-services-hero{
  padding: 3.3rem 0 1.5rem;
  background: transparent;
  color: #17232d;
}

.support-services-hero::before,
.support-services-hero::after{
  display: none;
}

.support-services-hero-shell{
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.support-services-page .service-hero-copy{
  max-width: 56rem;
}

.support-services-page .service-hero-copy h1{
  margin-top: 0;
  max-width: 18ch;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  color: #17232d;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.support-service-section{
  padding-top: 1.4rem;
}

.support-service-section + .support-service-section{
  padding-top: 0;
}

.support-service-section-alt{
  background: rgba(255, 255, 255, 0.56);
}

.support-service-grid{
  gap: 0;
  border: 1px solid rgba(23, 35, 45, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.support-service-copy,
.support-service-image{
  border: 0;
  box-shadow: none;
}

.support-service-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2.25rem;
  background: transparent;
}

.support-service-copy h2{
  margin-top: 0;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1.08;
}

.support-service-copy p{
  max-width: 38rem;
  color: #54606a;
  line-height: 1.72;
}

.support-service-copy .service-copy-lead{
  color: #17232d;
  font-weight: 600;
}

.support-service-copy .service-checklist{
  margin-top: 1.15rem;
  gap: 0.95rem;
}

.support-service-copy .service-checklist li{
  gap: 0.8rem;
}

.support-service-copy .service-checklist i{
  margin-top: 0.28rem;
  color: #bf1b1b;
  font-size: 0.9rem;
}

.support-service-image{
  background: #e9ecef;
}

.support-service-image img{
  min-height: 420px;
  object-fit: cover;
}

.fpso-service-page{
  background: #f4f1eb;
}

.fpso-service-page .service-surface-card > h2:first-child,
.fpso-service-page .service-surface-card > h3:first-child{
  margin-top: 0;
}

.fpso-hero-panel p{
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.fpso-arrow-list i{
  color: #bf1b1b;
}

.fpso-service-grid-triple{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.fpso-service-compact{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fpso-service-compact p{
  color: #54606a;
  line-height: 1.72;
}

.fpso-service-image-tall img{
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

.fpso-square-list i{
  margin-top: 0.32rem;
  color: #17232d;
  font-size: 0.62rem;
}

.service-feature-card p:first-child{
  margin-top: 0;
}

.service-feature-icon img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.marine-service-page,
.offshore-service-page{
  background: #f4f1eb;
}

.marine-service-page .service-hero-shell,
.offshore-service-page .service-hero-shell{
  grid-template-columns: minmax(0, 1fr);
}

.marine-service-page .service-hero-copy,
.offshore-service-page .service-hero-copy{
  max-width: 52rem;
}

.marine-service-page .service-hero-copy h1{
  max-width: 17ch;
}

.offshore-service-page .service-hero-copy h1{
  max-width: 12ch;
}

.marine-service-grid .service-feature-card,
.offshore-service-grid .service-feature-card{
  box-shadow: none;
}

.marine-service-grid .service-feature-card p,
.offshore-service-grid .service-feature-card p{
  margin: 0;
  color: #17232d;
  line-height: 1.58;
}

.marine-service-copy p,
.offshore-intro-copy p{
  color: #54606a;
  line-height: 1.72;
}

.marine-service-copy p:first-child,
.offshore-intro-copy p:first-child{
  margin-top: 0;
}

.streams-page{
  background: #f4f1eb;
}

.streams-hero{
  min-height: clamp(260px, 42vh, 360px);
  padding: 0;
  background: #08121c;
  color: #fff;
  border-bottom: 0;
}

.streams-hero::before,
.streams-hero::after{
  content: "";
  position: absolute;
  inset: 0;
}

.streams-hero::before{
  background:
    linear-gradient(180deg, rgba(5, 10, 16, 0.34) 0%, rgba(5, 10, 16, 0.56) 100%),
    linear-gradient(90deg, rgba(5, 10, 16, 0.78) 0%, rgba(7, 15, 24, 0.44) 48%, rgba(10, 19, 28, 0.7) 100%),
    url(../images/zbynek-burival-GrmwVnVSSdU-unsplash.jpg) center/cover no-repeat;
}

.streams-hero::after{
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(191, 27, 27, 0.08), transparent 38%);
}

.streams-hero-shell{
  position: relative;
  z-index: 1;
  min-height: inherit;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  padding: 4.8rem 0 3.3rem;
  text-align: center;
}

.streams-page .service-hero-copy{
  max-width: 52rem;
  margin: 0 auto;
}

.streams-page .service-hero-copy h1{
  max-width: none;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.streams-sector-section{
  padding-top: 1.4rem;
}

.streams-sector-section + .streams-sector-section{
  padding-top: 0;
}

.streams-sector-section-alt{
  background: rgba(255, 255, 255, 0.56);
}

.streams-sector-grid{
  gap: 0;
  border: 1px solid rgba(23, 35, 45, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.streams-sector-copy,
.streams-sector-image{
  border: 0;
  box-shadow: none;
}

.streams-sector-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem;
  background: transparent;
}

.streams-sector-copy h2,
.streams-downstream-head h2{
  margin: 0;
  color: #17232d;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.08;
}

.streams-sector-copy h2 span,
.streams-downstream-head h2 span{
  color: #bf1b1b;
}

.streams-sector-copy p,
.streams-downstream-card p{
  color: #54606a;
  line-height: 1.72;
}

.streams-sector-copy p + p{
  margin-top: 0.95rem;
}

.streams-sector-image{
  background: #e9ecef;
}

.streams-sector-image img{
  min-height: 420px;
  object-fit: cover;
}

.streams-downstream-section{
  padding: 1rem 0 5rem;
}

.streams-downstream-head{
  max-width: 54rem;
  margin-bottom: 1.4rem;
}

.streams-downstream-shell{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(23, 35, 45, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.streams-downstream-card,
.streams-downstream-image{
  min-width: 0;
}

.streams-downstream-card{
  padding: 2rem;
  border-right: 1px solid rgba(23, 35, 45, 0.1);
}

.streams-downstream-card:last-child{
  border-right: 0;
  border-left: 1px solid rgba(23, 35, 45, 0.1);
}

.streams-downstream-card h2{
  margin: 0;
  color: #17232d;
  font-size: 1.25rem;
  line-height: 1.32;
}

.streams-downstream-card p{
  margin-top: 0.95rem;
}

.streams-downstream-image{
  overflow: hidden;
  background: #e9ecef;
}

.streams-downstream-image img{
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.risk-services-page{
  background: #f4f1eb;
}

.risk-services-hero{
  padding: 3.4rem 0 1.6rem;
  background: transparent;
  color: #17232d;
}

.risk-services-hero::before,
.risk-services-hero::after{
  display: none;
}

.risk-services-hero-shell{
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 1rem;
  align-items: end;
}

.risk-services-page .service-hero-copy{
  max-width: 48rem;
}

.risk-services-page .service-hero-copy h1{
  max-width: 14ch;
  margin-top: 0;
  color: #17232d;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.risk-services-page .service-hero-copy p{
  max-width: 40rem;
  margin-top: 1rem;
  color: #54606a;
  line-height: 1.72;
}

.risk-services-mark{
  width: 120px;
  height: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid rgba(23, 35, 45, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.risk-services-mark img{
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.risk-services-section{
  padding: 1rem 0 5rem;
}

.risk-services-heading{
  max-width: 54rem;
  margin-bottom: 1.4rem;
}

.risk-services-heading h2{
  margin: 0;
  color: #17232d;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.risk-services-grid{
  counter-reset: risk-service;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(23, 35, 45, 0.1);
}

.risk-service-card{
  counter-increment: risk-service;
  min-width: 0;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(23, 35, 45, 0.1);
  border-bottom: 1px solid rgba(23, 35, 45, 0.1);
}

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

.risk-service-card:nth-last-child(-n + 3){
  border-bottom: 0;
}

.risk-service-card::before{
  content: counter(risk-service, decimal-leading-zero);
  color: #bf1b1b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.risk-service-card p{
  margin: 0;
  color: #17232d;
  font-size: 1rem;
  line-height: 1.5;
}

.consult-service-page,
.install-service-page,
.other-services-page,
.integrity-service-page{
  background: #f4f1eb;
}

.consult-service-page .service-hero-shell,
.install-service-page .service-hero-shell,
.other-services-page .service-hero-shell,
.integrity-service-page .service-hero-shell{
  grid-template-columns: minmax(0, 1fr);
}

.consult-service-page .service-hero-copy,
.install-service-page .service-hero-copy,
.other-services-page .service-hero-copy,
.integrity-service-page .service-hero-copy{
  max-width: 56rem;
}

.consult-service-page .service-hero-copy h1{
  max-width: 13ch;
}

.install-service-page .service-hero-copy h1{
  max-width: 11ch;
}

.other-services-page .service-hero-copy h1{
  max-width: 11ch;
}

.integrity-service-page .service-hero-copy h1{
  max-width: 14ch;
}

.consult-services-section,
.integrity-services-section,
.other-services-section{
  padding: 1rem 0 5rem;
}

.service-feature-grid-compact{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-feature-grid-compact .service-feature-card{
  box-shadow: none;
  background: rgba(255, 255, 255, 0.94);
}

.consult-services-grid .service-feature-card,
.other-services-grid .service-feature-card,
.integrity-service-grid .service-feature-card{
  box-shadow: none;
}

.consult-services-grid .service-feature-card p,
.other-services-grid .service-feature-card p,
.integrity-service-grid .service-feature-card p{
  margin: 0;
  color: #17232d;
  line-height: 1.58;
}

.consult-expertise-copy p,
.integrity-intro-grid .service-surface-card p{
  color: #54606a;
  line-height: 1.72;
}

.consult-expertise-copy p:first-child,
.integrity-intro-grid .service-surface-card p:first-child{
  margin-top: 0;
}

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

.install-service-page .service-surface-card-dark h3{
  margin-bottom: 1rem;
}

.install-service-page .service-surface-card-dark .service-checklist i{
  color: rgba(255, 255, 255, 0.82);
}

.site-footer-credit{
  font-weight: 700;
}

@media screen and (max-width: 900px){
  .service-hero{
    padding: 3.8rem 0 2.5rem;
  }

  .service-detail-section{
    padding-top: 3rem;
  }

  .service-hero-copy h1{
    max-width: none;
    font-size: clamp(2.2rem, 7.5vw, 3.6rem);
  }

  .service-surface-card h2,
  .service-section-head h2{
    font-size: clamp(1.65rem, 6vw, 2.35rem);
  }
}

@media screen and (max-width: 1040px){
  .service-hero-shell,
  .service-detail-grid,
  .service-support-grid{
    grid-template-columns: 1fr;
  }

  .fpso-service-grid-triple{
    grid-template-columns: 1fr;
  }

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

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

  .risk-services-mark{
    margin-left: 0;
  }

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

  .risk-service-card:nth-child(3n){
    border-right: 1px solid rgba(23, 35, 45, 0.1);
  }

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

  .risk-service-card:nth-last-child(-n + 3){
    border-bottom: 1px solid rgba(23, 35, 45, 0.1);
  }

  .risk-service-card:last-child{
    border-bottom: 0;
  }

  .streams-hero-shell,
  .streams-downstream-shell{
    grid-template-columns: 1fr;
  }

  .streams-downstream-card,
  .streams-downstream-card:last-child{
    border-left: 0;
    border-right: 0;
  }

  .streams-downstream-card{
    border-bottom: 1px solid rgba(23, 35, 45, 0.1);
  }

  .streams-downstream-image{
    min-height: 320px;
    order: 2;
  }

  .streams-downstream-card:last-child{
    border-bottom: 0;
    order: 3;
  }
}

@media screen and (max-width: 760px){
  .service-hero{
    padding: 3.4rem 0 2.3rem;
  }

  .service-feature-grid{
    grid-template-columns: 1fr;
  }

  .service-hero-panel,
  .service-surface-card,
  .service-surface-card-dark,
  .service-feature-card,
  .service-cta-box{
    padding: 1.35rem;
  }

  .service-hero-media img{
    min-height: 260px;
  }

  .service-hero-actions,
  .service-cta-box{
    flex-direction: column;
    align-items: flex-start;
  }

  .service-image-card img{
    min-height: 280px;
  }

  .support-services-hero{
    padding: 2.8rem 0 1.1rem;
  }

  .support-service-copy{
    padding: 1.45rem;
  }

  .service-feature-grid-compact{
    grid-template-columns: 1fr;
  }

  .integrity-intro-grid{
    grid-template-columns: 1fr;
  }

  .support-service-image img{
    min-height: 260px;
  }

  .fpso-service-image-tall img{
    min-height: 300px;
  }

  .streams-hero{
    min-height: 230px;
  }

  .streams-sector-copy,
  .streams-downstream-card{
    padding: 1.45rem;
  }

  .streams-sector-image img,
  .streams-downstream-image{
    min-height: 260px;
  }

  .risk-services-hero{
    padding: 2.9rem 0 1.2rem;
  }

  .risk-services-section{
    padding: 0.7rem 0 4rem;
  }

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

@media screen and (max-width: 560px){
  .service-hero{
    padding: 3rem 0 2rem;
  }

  .service-hero-shell,
  .service-detail-grid,
  .service-support-grid{
    gap: 1rem;
  }

  .service-hero-panel,
  .service-surface-card,
  .service-surface-card-dark,
  .service-feature-card,
  .service-cta-box{
    padding: 1.15rem;
  }

  .service-hero-copy p{
    font-size: 0.95rem;
  }

  .service-checklist{
    gap: 0.65rem;
  }

  .service-checklist li{
    gap: 0.6rem;
  }

  .service-hero-media img,
  .service-image-card img{
    min-height: 220px;
  }

  .service-cta-box h2{
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .risk-services-mark{
    display: none;
  }

  .streams-downstream-head{
    margin-bottom: 1rem;
  }

  .streams-hero{
    min-height: 200px;
  }

  .streams-page .service-hero-copy h1{
    max-width: 12ch;
    font-size: clamp(1.6rem, 8vw, 2.25rem);
    white-space: normal;
  }

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

  .risk-service-card{
    border-right: 0;
    border-bottom: 1px solid rgba(23, 35, 45, 0.1);
  }

  .risk-service-card:last-child{
    border-bottom: 0;
  }
}
/* END OF SERVICE PAGES */

/* ABOUT PAGE */

.about-top {
  margin: auto;
  width: 175px;
  border: 3px solid #fff;
  padding: 10px;
  text-align: center;
  background-color: #bf1b1b19;
}


  .aboutheader{
  min-height: 60vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.8) 100%), url(../images/new\(1\).jpg) center/cover fixed;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
}

.aboutheader h1{
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .dividers{
 display: flex;
 margin: 0;
 padding: 0;
 width: 100%;
 border: none;

} */

/* .seperator1{
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-bottom: 2.5vw solid #fff;
  margin:-2.5vw 0 0 0;
  padding: 0;

} */

.aboutcontent{
  display: flex;
  margin: 0;
  padding: 60px 0;
  width: 100%;
  background-color: #fff;
}

.aboutpage-left{
  width: 40%;
  background: linear-gradient(135deg, #BF1B1B 0%, #8B0000 100%) center/cover fixed;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutpage-right{
  width: 60%;
  margin: 0;
  padding: 40px 50px;
  background: #fff;
}

.aboutpage-right h1{
  color: #1a1a1a;
  text-align: left;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.aboutpage-right h1::before{
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #BF1B1B;
  margin-bottom: 15px;
}

.rightcontent{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  width: 100%;
  gap: 25px;
  margin: 30px 0 0 0;
  padding: 0;
}

.whower1{
  margin: 0;
  padding: 30px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-radius: 8px;
  width: 100%;
  text-align: left;
  border: 1px solid #e0e0e0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.whower1:hover{
  background: #fff;
  border: 1px solid #BF1B1B;
  box-shadow: 0 8px 24px rgba(191, 27, 27, 0.15);
  transform: translateY(-4px);
}

.whower{
  z-index: 999;
  margin: 0;
  padding: 0;
}

.whower-header{
  color: #e3dbdb;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.whower-header h3{
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.whower-header h3 span{
  color: #FFD700;
}

.h3-after{
  height: 3px;
  width: 60px;
  background-color: #BF1B1B;
  margin-top: 10px;
}

.whower p{
  margin-top: 25px;
  line-height: 1.8;
  text-align: justify;
  padding: 0;
  color: #fff;
  font-size: 1rem;
}

.p-after{
  width: 90px;
  height: 90px;
  text-align: right;
  float: right;
  margin-top: -80px;
  padding: 12px;
  border-right: 5px solid white;
  border-bottom: 5px solid white;

}

.whower1:hover span,
.whower1:hover p,
.whower1:hover h2{
  color: #BF1B1B;
}

.whower1 span {
  color: #BF1B1B;
  margin-bottom: 15px;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  display: block;
}

.whower1 h2{
  color: #1a1a1a;
  line-height: 1.4;
  margin: 15px 0 12px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.whower1 p{
  text-align: left;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}


/* MISSION */
.mission-section{
  width: 100%;
  padding: 80px 3vw;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.mission-section h2{
  text-align: center;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}

.mission-section h2::before{
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #BF1B1B;
  margin: 0 auto 20px;
}

.first-line, .first-line2{
  display: none;
}

.mission-section h2{
  padding-left: 4vw;
  font-size: 38px;
  color: #fff;
}

.first-line2{
  padding-left: 9vw;
  margin-top: 12px;
}

.mission-statement{
  margin-top: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.mission-left{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.mission-right{
  display: none;
}

.mission-statement .whower1{
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(191, 27, 27, 0.3);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mission-statement .whower1:hover{
  background: linear-gradient(135deg, rgba(191, 27, 27, 0.15) 0%, rgba(191, 27, 27, 0.05) 100%);
  border-color: #BF1B1B;
  box-shadow: 0 6px 20px rgba(191, 27, 27, 0.2);
  transform: translateY(-6px);
}

.mission-statement .whower1 .span{
  color: #BF1B1B;
  padding: 20px;
  border-radius: 8px;
  margin: 0 auto 15px;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 27, 27, 0.1);
}

.mission-statement .whower1:hover .span{
  background: rgba(191, 27, 27, 0.2);
  color: #fff;
}

.mission-statement .whower1 h3{
  font-size: 1.4rem;
  color: #fff;
  margin: 15px 0 10px 0;
  font-weight: 600;
}

.mission-statement .whower1 p{
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* CEO SECTION */

.ceo-div{
  width: 100%;
  background-color: #e9e9e9;
  display: flex;
}

.ceo-title{
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.ceo-title h1{
  color: #bf1b1bbb;
  font-size: 68px;
  font-family: 'Monoton', cursive;
  letter-spacing: 5px;
  text-align: center;
  line-height: 70%;
}

.ceo-title h2{
  font-size: 52px;
  line-height: 0;
}

.after-message{
  background-color: #bf1b1b;
  height: 3px;
  width: 90px;
  margin-top: 4vh;
  margin-left: 4vw;
  text-align: center;
}

.ceo-title h3{
  text-align: center;
  margin:0 4vw 5vh 4vw;
  align-self: flex-end;
}



/* ceo-right */

.ceo-right{
  width: 75%;
  display: flex;
  justify-content: space-between;
}

.ceo-message{
  width: 33%;
  padding: 2vw 0 0 5vw;
}

.ceo-message h3, .ceo-message h4{
  align-self: flex-end;
}

.ceo-img {
  width: 40%;
  padding: 0 0 0 5vw;
}

.ceo-img-after{
  height: 3px;
  width: 100%;
  background-color: #bf1b1b;
}

.ceo-right{
  background: url(../images/rbg1.jpg) center/cover no-repeat;
}

.ceo-message p{
  text-align: justify;
  padding: 12px;
  color: #fff;
  z-index: 1;
  justify-self: center;
  line-height: 2rem;
}

.ceo-message h4{
  margin: 10px;
 color: #ffffff;
}

.ceo-message h3{
  margin: 13px;
  font-size: 30px;
  color: #bf1b1b;
}

.ceo-title span{
  font-weight: bolder;
  font-size: 22px;
}


/* END OF CEO(ABOUT PAGE) */

/* Responsive About Page */
@media screen and (max-width: 1024px) {
  .aboutheader h1 {
    font-size: 3rem;
  }

  .aboutcontent {
    flex-direction: column;
    padding: 40px 0;
  }

  .aboutpage-left {
    width: 100%;
    min-height: 300px;
  }

  .aboutpage-right {
    width: 100%;
    padding: 30px 30px;
  }

  .aboutpage-right h1 {
    font-size: 2.2rem;
  }

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

  .mission-statement {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .aboutheader {
    min-height: 40vh;
  }

  .aboutheader h1 {
    font-size: 2.2rem;
  }

  .aboutpage-right {
    padding: 25px 20px;
  }

  .aboutpage-right h1 {
    font-size: 1.8rem;
  }

  .rightcontent {
    gap: 15px;
  }

  .whower1 {
    padding: 20px;
  }

  .whower1 span {
    font-size: 2rem;
  }

  .whower1 h2 {
    font-size: 1.1rem;
  }

  .mission-section {
    padding: 50px 20px;
  }

  .mission-section h2 {
    font-size: 2rem;
  }

  .mission-statement {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .aboutheader {
    min-height: 30vh;
  }

  .aboutheader h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .aboutpage-right {
    padding: 15px 15px;
  }

  .aboutpage-right h1 {
    font-size: 1.4rem;
  }

  .aboutpage-right h1::before {
    width: 40px;
  }

  .whower1 {
    padding: 15px;
  }

  .whower1 span {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .whower1 h2 {
    font-size: 1rem;
    margin: 10px 0 8px 0;
  }

  .whower1 p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .mission-section {
    padding: 30px 15px;
  }

  .mission-section h2 {
    font-size: 1.6rem;
  }

  .mission-section h2::before {
    width: 50px;
  }
}

/* FPSO */
.fpso{
  height: 100%;
}

.fpsoheader1{
  background-color: #020110;
  min-height: 30vh;
 display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 4vw 0 4vw;
}

.fpso-mid1{
  margin-top: 38px;
}

.fpsoheader1 h1{
  width: 25%;
}

.fpsoheader1 span{
  color: #BF1B1B;
}
.fpsoheader, .installheader{
  height: 40vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.fpsoheader{
  background: linear-gradient(rgba(0, 0, 0, 0.508), rgba(0, 0, 0, 0.574)), url(../images/Vessel.png) center/cover fixed;
}

.header-plate, .install-plate{
  background-color: #BF1B1B;
  padding: 22px;
  margin-left: 7vw;
  width: 400px; 
}

.install-plate{
  background-color: #000;
}

.header-plate p, .install-plate p{
  color: #fff;
}

.fpso-mid{
  display: flex;
  margin: 18px auto;
  justify-content: space-between;
  width: 100%;
}

.fpso-text, .fpso-service{
  width: 50%;
  margin: 2vw;
}

.fpso-mid p, .fpso-right2 p, .fpso-left1 p{
 line-height: 2rem; 
 color: #787878;
}

.fpso-mid1 h2{
text-align: center;

}

.fpso-list{
  display: flex;
  align-items: center;
  justify-content: safe;
}

.fpso-list span{
  color: #bf1b1b;
  padding: 18px;
  align-self: flex-start;
  margin-right: 12px;
  font-size: 1rem;
  transition: all 300ms ease-in-out;
  
}


.fpso-content, .fpso-content2{
  width: 100%;
  display: flex;
  justify-self: center;
  justify-content: center;
  flex: 1 0 auto;
  height: 48vh;
  
}

.fpso-left, .fpso-right, .install-left {
  width: 50%;
}

.fpso-left, .install-left{
  background-color: #000;
  padding-left: 4vw;
}

.install-left{
  background-color: #921414;
}

.fpso-right img{
 height: 100%;
 align-self: stretch;
  margin: 0;
  padding: 0;
}

.fpso-left p, .install-left p {
  color: #fff;
  padding: 12px;  
}

.fpso-left1{
  background-color: #e4e4e45b;
  display: flex;
  align-items: center;
  justify-self: center;
  padding:0 22px;
  width: 35%;
}

.fpso-left1 p, .fpso-left2 p{
  line-height: 1.6rem;
  text-align: justify;
}

.fpso-left2{
  width: 30%;
  height: 100%;
  position: relative;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   align-items: stretch;
}

.fpso-left2 img{
  height: 100%;
}

.fpso-right2{
  width: 35%;
  padding: 18px;
  background-color: #ffffff;
}
/* END OF FPSO */

/* INSTALLATION --SAME AS FPSO CSS*/

.installheader{
  background: linear-gradient(rgba(0, 0, 0, 0.508), rgba(0, 0, 0, 0.574)), url(../images/InstallBg.jpeg) center/cover fixed;
}

/* MARINE AND 3RD PARTY */
.mar-eng, .HSE-header{
  padding: 120px 0 0 4vw;
  background: linear-gradient(rgba(64, 7, 7, 0.04), rgba(0, 0, 0, 0.111)),url(../images/landpage1.jpg) center/cover fixed;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

.HSE-header{
  background: linear-gradient(rgba(0, 0, 0, 0.805), rgba(0, 0, 0, 0.816)), url(../images/green1.jpeg) center/cover fixed;
}

.mar-eng h2, .HSE-header h2{
  color: #fff;
  align-self: center;
  font-size: 40px;
  margin-top: 10%;
}

.mar-eng h2 span, .HSE-header h2 span{
  color: #bf1b1b;
}


.mar-bg{
  min-height: 40vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1 0 auto;
  height: 100%;
  padding-bottom: 23px; 
}

.mar-bottom{
  display: flex;
  color: #fff;
  padding: 18px;
  margin-right: 20px;
  border: 0.5px solid #fff;
  position: relative;
  overflow: hidden;
  height: 80px;
  align-items: center;
}

.mar-bottom:hover{
  background-color: #6e0000;
  color: #fff;

}

.mar-bottom p{
  font-size: 16px;
  width: 150px;
  font-weight: bold;

}

.mar-bottom span{
  padding-right: 18px ;
  align-self: center;
  margin-right: 12px;
  font-size: 1rem;
  transition: all 300ms ease-in-out;
  
}

.mar-white{
  background: url(../images/ser-bg.png) center/cover fixed;
  min-height: 70vh;
}

.mar-grey{
  background: url(../images/ser-bg2.png) center/cover fixed;
  min-height: 70vh;
}

.mar-content{
  display: flex;
  justify-content: center;
  padding: 7vh 7vw;
}


.mar-text, .mar-image{
  width: 40%;
}

.mar-text{
  align-self: center;
}

.mar-text p{
  background: #fff;
  line-height: 1.8rem;
  color: #787878;
  align-self: center;
  padding: 28px;
  text-align: justify;

}

/* END OR MARINE N 3RD PARTY */

/* CONSULTATION */
.consultheader, .riskheader, .supportheader, .offshoreheader{
  min-height: 80vh;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  border: none;
  outline: none;
  justify-content: center;  
}

.consultheader{
  background: url(../images/bg-bg-red.png) center/cover fixed;
}

.offshoreheader{
  background: url(../images/Vessel.png) center/cover fixed;
}

.supportheader{
  background: url(../images/bg-bg-red1.png) center/cover fixed;
}

.red-bg{
  padding-left: 7vw;
  color: #fff;
  margin-top: 8%;
 
}

.red-bg h2{
  font-size: 33px;

}

.line{
  height: 5px;
  width: 120px;
  margin-top: 10px;
  background-color: #530c0c;
}

.line1{
  height: 2px;
  width: 120px;
  margin-top: 3px;
  background-color: #ffffff;
}

.red-content{
  margin-top: 4%;
}

.red-content p{
  margin-top: 10px;
  width: 25%;
 
}

.red-image{
  height: 70px;
  width: 70px;
}

.expert-list{
  padding-left: 2vw;
  padding-top: 23px;
  background-color: #efefef;
}

.expert-list h2{
  margin-top: 12px;
  text-align: center;
  color: #bf1b1b;
}

.expert-list span{
color: #000;
}

.expert-listing, .offshore-listing, .risk-listing{
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 auto;
  height: 90%;
  width: 90%;
  margin: 6px;
  border-radius: 15px;
  border: 0.5px solid rgba(0, 0, 0, 0.03);
  box-shadow: 3px 3px #78787812;

}

.risk-listing .circle{
  margin-top: 21px;
  background-color: #000;
  border-color: #fff;
}

.risk-listing{
  background-color: #2b0000;
}

.risk-listing:hover{
  background-color: rgb(82, 6, 6);
}

.expert-listing{
  background-color: #fff;
}

.offshore-listing{
  background-color: #5c0404;
}

.offshore-listing:hover{
  background-color: #0e0606;
}




.expert-listing p, .offshore-listing p {
  padding: 15px;
  justify-self: center;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
}

.offshore-listing p{
  color: #fff;
  text-align: left;
  
}

.risk-listing p{
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 15px;
}

.exp-wrap{
  padding: 24px 0;
}

.exp-service{
    width: 60px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 20px;
    background: transparent;
    /* border: 3px solid #7878783c; */
    color: #000;
    text-align: center;
  
}

.expert-listing:hover{
  background-color: #4f0707;
  border: 4px solid rgb(159, 159, 159);
  color: #fff;
  
}

.expert-listing p:hover{
  color: #fff;
}

.expertise{
  background-color: #000000;
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 32px;
}

.expert-text{
  margin: 20px 26px;
}

.expert-text h2{
  text-align: center;
  color: #fff;
}

.exp-image, .expert-text{
  width: 40%;
}

.expert-text p{
  color: #ffffff;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  align-self: center;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
}
/* END OF CONSULTATION */

/* UP, MID, DOWNSTREAM */
/*UPSTREAM, MIDSTREAM */
.streamheader{
  min-height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.834), rgba(0, 0, 0, 0.862)), url(../images/ser-jpeg.jpeg) center/cover fixed;
  display: flex;
  align-items: center;
  padding: 90px 2vw 23px 4vw;
}

.stream-left, .stream-content{
  width: 28%;
}

.stream-content, .support-content{
  color: #fff;
  margin-left: 20%;
  font-size: 28px;
  text-transform: uppercase;
}

.support-content{
  margin-left: 10%;
  width: 55%;
}

.stream-text{
  width: 350px;
  padding: 10px;
}

.support-text{
  
  padding: 10px;
}


.stream-text span, .support-text span{
  color: #bf1b1b;
}

.upstream{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3vw;
  padding-bottom: 40px;
  width: 95%;
}

.upstream-img img{
  margin-top: 20px;
  margin-right: 18px;
  border-top-right-radius: 35px;
  border-bottom-left-radius: 35px;
}

 .upstream-text{
  width: 50%;
}

.upstream-img{
  margin: 20px 10px;
  width: 40%;
}

.i-before{
  width: 90px;
  height: 90px;
  margin-bottom: -108px;
  text-align: left;
  float: left;
  padding: 9px;
  margin-left: -18px;
  z-index: 999;
  border-left: 5px solid rgb(177, 54, 54);
  border-top: 5px solid rgb(199, 26, 26);

}

.up-wrap{
  
  margin: 12px;
  /* border-bottom-left-radius: 35px;
  border-top-right-radius: 35px;
  border-bottom: 5px solid #bf1b1b;
  border-left:5px solid #bf1b1b ;  */
  /* border-bottom-width: 2rem;
  border-bottom-style: ridge;
  border-left-width: 2rem;
  border-left-style: groove; */
}

.upstream-text span{
  color: #bf1b1b;
  line-height: 1.7rem;
}

.upstream-text p, .downstream p, .downstream-blk p{
  color: #787878;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
  color: #363636;
  text-align-last: left;
}

.upstream-text p:first-of-type{
  margin-top: 20px;
}

.upstream-img:last-of-type{
  margin-left: 80px;
}

.mid-stream {
  background-color: #f6f6f6c7;
}

/* DOWNSTREAM */
.downstream-wrap{
  margin: 30px 20px;
}

.down-header h2{
  text-align: center;
}

.down-header h2 span{
  color: #bf1b1b;
}

.downstream{
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  
}

.downstream-text1, .downstream-text2{
  width: 35%;
  margin:20px 28px;
}

.downstream-img1{
  width: 30%;
  margin: 20px 10px;
}

.downstream-img1 img{
  border-top-right-radius: 35px;
  border-bottom-left-radius: 35px;
}

.downstream h2{
  color: #bf1b1b;
  margin-bottom: 24px;
}


/* Downstream-blackbg */
.downstream-blk{
  height: 70vh;
  display: flex;
  align-items: center;
  background-color: #333;
  width: 100%;
  margin: 0;
  padding: 0;
}

.blk-image{
  width: 50%;
}


.blk-image img{
  height: 400px;
}

.blk-content{
  display: flex;
  height: 300px;
  margin-left: -8%;
  width: 30%;
}

.blk-red{
  height: auto;
  width: 400px;
  background-color: #bf1b1b;
}

.blk-text{
  background-color: #f1f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blk-text h2{
  line-height: 1.6rem;
  margin-top: 20px;
}

.blk-text p, .blk-text h2{
  align-self: center;
  padding: 10px 20px;

}

/* offshore */
.offshore-content{
  display: flex;
  justify-content: center;
  margin: 5vh auto;
  width: 100%;
}

.images{
  display: flex;
  width: 50%;
}

.ellipse-image1 img:first-child{
  width:215px; 
  height:215px;
}

.ellipse-image1 img:last-child{
  width: 150px;
  height: 150px;
  margin-left: 75px;
  margin-top: 22px;
}

.ellipse-image2 img:first-child{
  width: 125px;
  height: 125px;
}

.ellipse-image2 img:last-child{
  width: 250px;
  height: 250px;
  margin-top: 12px;
}

.offshore-text{
  width: 50%;
  margin-left: 3vw;
  color: #787878;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: -0.05em;
  color: #363636;
  text-align-last: left;
}

.offshore h3{
  margin: 23px auto;
  color: #bf1b1b;
}

/* RISKHEADER */
.riskheader{
  background: linear-gradient(rgba(0, 0, 0, 0.729), rgba(0, 0, 0, 0.575)), url(../images/new\(1\).jpg) center/cover fixed;
  min-height: 100vh;
}

/* SUPPORT SERVICES */
/* WELDING */
.weld-h2 h2{
   font-weight: 600;
   margin: 20px auto 17px auto;
}

.support-weld p{
  color: #787878;
}

.marine-mobile .downstream-blk{
background-color: #fff;
}

.marine-mobile .blk-red{
  background-color: #000;
  }


/* MEDIA QUERIES */

@media screen and (max-width: 1500px){
  .aboutcontent{
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 14px 0;
    padding: 0;
  }

  .aboutpage-left{
    width: 100%;
    margin: 0;
    padding: 0;

  } 
  
  .aboutpage-right{
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: center;
  }

  .whower1{
    justify-self: center;
    margin: 0;
    padding: 0;
  }

  .aboutpage-right{
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .rightcontent{
    padding: 0;
    width: 95%;
    margin: 0 auto;
  }

  .mission-section{
    padding:12px 0;
    margin:0;
  }

  .mission-statement{
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;

  }

  .mission-left{
    padding: 0;
    margin: 14px auto;
    width: 95%;
  }
  
  .mission-right{
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .img-mission{
    justify-self: center;
    margin: 0;
    padding: 0;
  }
}

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

  .offshore-content{
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }


 .offshore-text{
  width: 100%;
}

.images{
  margin: 0 ;
  padding: 0 ;
  justify-content: center;
  width: 100%;
}

.ellipse-image1 img:first-child{
  width:150px; 
  height:150px;
}

.ellipse-image1 img:last-child{
  width: 115px;
  height: 115px;
}

.ellipse-image2 img:first-child{
  width: 90px;
  height: 90px;
}

.ellipse-image2 img:last-child{
  width: 175px;
  height: 175px;
}

.ellipse-image1, .ellipse-image2{
  margin: 0;
  padding: 0;
  justify-self: center;
}



}

@media screen and (max-width: 1100px){
  .streamheader{
    flex-direction: column;
    padding: 90px 2vw 23px 4vw;
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .stream-left, .stream-content, .support-content{
    width: 100%;
  }

  .stream-content, .support-content{
    margin: auto;
  }

  .stream-text, .support-text{
    width: 200px;

  }

  .upstream{
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .upstream-img,.upstream-text{
    width: 90%;
    justify-self: center;
    margin: 12px ;
  } 

  .upstream-img{
    margin: 0 auto;
    padding: 0;

  }

  .upstream-img img{
    
  }

  .upstream-img:last-of-type{
    margin-left: 12px;
  }

    .downstream{
      flex-direction: column;
      width: 100%;
    }
  
    .downstream-text1, .downstream-img1, .downstream-text2{
      width: 100%;
      justify-self: center;
      margin: 15px;
    }

    .blk-content{
      width: 50%;
    }

    /* ceo */
  .ceo-div{
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ece8e8;
  }

  .ceo-title{
    margin: 0 auto;
    padding: 0;
  }

  .ceo-title h3{
    margin-top: 2vh;
  }

  .ceo-right{
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .ceo-message{
    flex-direction: column;
    margin: auto;
    padding: 0;
    width: 90%;
  }

  .ceo-img{
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
  }

}

@media screen and (max-width:665px) {
  .blk-red{
    width: 150px;
  }

  .blk-content{
    position: absolute;
    width: 90%;
    margin: 0;
  }
}

@media screen and (max-width: 780px){
  .red-content p{
    margin-top: 10px;
    width: 250px;
   
  }

  .red-bg h2{
    font-size: 24px;
  }

  .expertise{
    flex-direction: column;
    width: 100%;
  }

  .exp-image, .expert-text{
    width: 95%;
  }

  .expert-text{
    margin: 10px;
  }

  
}


@media screen and (max-width: 580px){
  .mar-content{
    width: 100%;
    display: block;
    
  }

  .mar-text, .mar-image{
    width: 90%;
    
  }

  .mar-eng h2{
    font-size: 28px;
    text-align: center;
  }
}





/* footer */

@media screen and (max-width:565px){
  .future-content{
    display: block;
    /* margin: auto 5px; */
  }
  .future-left, .future-right{
    width: 100%;
  }
  .initial-left{
    width: 100%;
  }
  .left-image{
    display: none;
  }
    #contact{
        height: auto;
        padding: 22px 0;
    }
    .contact-section{
        display: block;
    }

    .contact-map{
        width: 90%;
    }

    .reach-me{
        width: 100%;
        margin: 17px auto;
    }

    .reach-link, .reach-mail{
        width: 100%;
    }

    .nav-brand-toggler a img{
        width: auto;
    }

    .fpsoheader1{
      display: block;
    }

    .header-title{
        font-size: 24px;
    }

    .header-plate, .install-plate{
      width: 250px;
    }

 

}

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

  .fpso-content, .fpso-content2, .fpso-mid{
    display: block;
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .fpso-left, .install-left{
    padding-left: 0;
  }

.fpso-left, .fpso-right, .fpso-left1, .install-left,
.fpso-left2, .fpso-right2, .fpso-text, .fpso-service{
  width: 95%;
  margin: auto;
}
}

@media screen and (max-width: 792px) {
  .mar-bg{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 0 0 23px;
  }

  .mar-bottom{
    margin: 12px auto;
    align-self: end;
    border: 3px solid #fff;
  }
}

@media screen and (max-width: 880px) {
    .pre-service{
        display: block;
     
        
    }

    .choose-left, .choose-right{
        width: 100%;
        margin: 16px auto;
    }

    .header-title{
        font-size: 24px;
    }
}



/* # Media Queries # */

@media screen and (min-width: 678px){
    .menu-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px){
    .header-title{
        width: 50%;
    }
    .footer-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
}

@media screen and (min-width: 992px){
    .container{
        width: 85vw;
    }
    .navbar{
        background: transparent;
        display: flex;
        flex-wrap: wrap;
        padding-top: 1.2rem;
        padding-right: 7vw;
        padding-left: 7vw;
    }
    .navbar-toggler{
        display: none;
    }
    .navbar-collapse{
        flex: 1 0 auto;
        display: flex!important;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 0;
    }
    .navbar-nav{
        flex: 1 0 auto;
        width: auto;
        display: flex;
        justify-content: center;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .nav-info{
        flex: 0 0 300px;
        display: flex;
        justify-content: center;
    }
    .nav-brand-toggler{
        flex: 0 0 150px;
    }
    .btn-top{
        width: auto;
    }
    .nav-item{
        padding: 0 0.8rem;
    }
    .navbar-brand, .nav-link, .call-info{
        color: white;
        opacity: 1;
    }

    /*** navbar background change ***/
    .bg-navbar{
        width: 100%;
        background: #fff;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-box-shadow: 0px 0px 25px 0px rgba(214, 214, 214, 0.75);
        -moz-box-shadow: 0px 0px 25px 0px rgba(214, 214, 214, 0.75);
        box-shadow: 0px 0px 25px 0px rgba(214, 214, 214, 0.75);
    }
    .bg-navbar .navbar-brand{
        color: var(--dark)!important;
    }
    .bg-navbar .nav-link, .bg-navbar .call-info{
        opacity: 0.8;
        color: var(--dark)!important;
    }
    .bg-navbar .nav-link:hover, .bg-navbar .call-info:hover{
        color: var(--persian-red)!important;
    }
    /*********************/
    
    .about{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 3rem;
        align-items: center;
    }

    .chef-wrapper{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1.5rem;
    }
    .services-item p{
        width: 60%;
    }
    .contact-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
    .contact-map iframe{
        height: 400px;
    }
    .footer-wrapper{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 1200px){
    .menu-wrapper{
        grid-template-columns: repeat(3, 1fr);
    }

    
}

.footer-icons span a{
  color: #333;
}

.highlight *{
  background-color: yellow;
}

.installheader {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.header-plate {
  flex: 1;
  background: #530101; /* Light grey background */
  padding: 50px;
  border-radius: 8px;
}

.second-box {
  background: #530101; /* Slightly different background for contrast */
}

/* ABOUT PAGE */
.about-page-body{
  background:
    radial-gradient(circle at top left, rgba(191, 27, 27, 0.06), transparent 24%),
    linear-gradient(180deg, #f8f1ea 0%, #ffffff 28%, #f7f8fa 100%);
}

.about-page-kicker{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(191, 27, 27, 0.08);
  color: #bf1b1b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page-kicker-dark{
  background: rgba(255, 255, 255, 0.1);
  color: #ffd8d8;
}

.about-page-hero{
  position: relative;
  overflow: hidden;
  padding: 5.75rem 0 4.8rem;
}

.about-page-hero-shell{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2.4rem;
  align-items: center;
}

.about-page-hero-copy h1{
  max-width: 760px;
  color: #101a23;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-page-hero-copy p{
  max-width: 700px;
  margin-top: 1.1rem;
  color: #46545f;
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-page-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.about-page-outline-btn{
  background: transparent;
  border-color: rgba(16, 26, 35, 0.16);
  color: #101a23;
  box-shadow: none;
}

.about-page-outline-btn:hover,
.about-page-outline-btn:focus{
  background: #101a23;
  border-color: #101a23;
  color: #fff;
  box-shadow: none;
}

.about-page-highlight-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-page-highlight-card{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 26, 35, 0.08);
  box-shadow: 0 20px 38px rgba(16, 26, 35, 0.06);
}

.about-page-highlight-icon{
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #101a23;
  color: #fff;
  font-size: 18px;
}

.about-page-highlight-card h2{
  color: #101a23;
  font-size: 0.95rem;
  line-height: 1.32;
}

.about-page-highlight-card p{
  margin-top: 0.2rem;
  color: #5c6973;
  font-size: 0.86rem;
  line-height: 1.55;
}

.about-page-hero-visual{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 1rem;
  align-items: end;
}

.about-page-hero-main-image,
.about-page-hero-small-image,
.about-page-mosaic-item,
.about-page-leadership-image{
  overflow: hidden;
  background: #d8dde2;
}

.about-page-hero-main-image{
  min-height: 540px;
  box-shadow: 0 32px 60px rgba(16, 26, 35, 0.16);
}

.about-page-hero-main-image img,
.about-page-hero-small-image img,
.about-page-mosaic-item img,
.about-page-leadership-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero-stack{
  display: grid;
  gap: 1rem;
}

.about-page-hero-small-image{
  min-height: 250px;
}

.about-page-hero-panel{
  padding: 1.3rem;
  background: linear-gradient(180deg, #bf1b1b 0%, #891616 100%);
  color: #fff;
  box-shadow: 0 24px 48px rgba(191, 27, 27, 0.2);
}

.about-page-hero-panel span{
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.about-page-hero-panel strong{
  display: block;
  font-size: 1rem;
  line-height: 1.65;
}

.about-page-story{
  position: relative;
}

.about-page-story-shell{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.about-page-story-copy h2,
.about-page-values-intro h2,
.about-page-csr-copy h2,
.about-page-leadership-copy h2,
.about-page-cta-card h2{
  color: #101a23;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-page-checklist{
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.about-page-check-item{
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #24323d;
}

.about-page-check-item i{
  color: #bf1b1b;
  margin-top: 0.18rem;
}

.about-page-story-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-page-story-card{
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(16, 26, 35, 0.08);
  background: #fff;
  box-shadow: 0 20px 38px rgba(16, 26, 35, 0.06);
}

.about-page-story-card-icon,
.about-page-value-icon{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: #101a23;
  color: #fff;
  font-size: 20px;
}

.about-page-story-card h3,
.about-page-value-card h3,
.about-page-csr-point h3{
  color: #101a23;
  font-size: 1.1rem;
  line-height: 1.25;
}

.about-page-story-card p,
.about-page-value-card p{
  margin-top: 0.55rem;
  color: #586670;
  line-height: 1.75;
}

.about-page-story-card-dark{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #101a23 0%, #16232d 100%);
  color: #fff;
}

.about-page-story-card-dark span{
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-page-story-card-dark strong{
  display: block;
  margin-top: 1.1rem;
  font-size: 1.12rem;
  line-height: 1.7;
}

.about-page-values{
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
}

.about-page-values-intro{
  max-width: 760px;
  margin-bottom: 2rem;
}

.about-page-values-intro p{
  margin-top: 1rem;
  color: #56636e;
  line-height: 1.8;
}

.about-page-values-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-page-value-card{
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(16, 26, 35, 0.08);
  box-shadow: 0 18px 34px rgba(16, 26, 35, 0.06);
}

.about-page-mosaic{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-page-mosaic-item{
  min-height: 220px;
}

.about-page-mosaic-item-large{
  grid-row: span 2;
  min-height: 456px;
}

.about-page-csr{
  padding: 5rem 0;
  background:
    radial-gradient(circle at top right, rgba(191, 27, 27, 0.22), transparent 26%),
    linear-gradient(180deg, #101a23 0%, #0a131b 100%);
}

.about-page-csr-shell{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.about-page-csr-copy h2{
  color: #fff;
}

.about-page-csr-copy p{
  margin-top: 1rem;
  color: rgba(232, 238, 243, 0.8);
  line-height: 1.85;
}

.about-page-csr-points{
  display: grid;
  gap: 1rem;
}

.about-page-csr-point{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.about-page-csr-point i{
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 27, 27, 0.88);
  color: #fff;
}

.about-page-csr-point p{
  margin-top: 0.3rem;
  color: rgba(232, 238, 243, 0.78);
  line-height: 1.7;
}

.about-page-leadership{
  background:
    linear-gradient(180deg, #fff 0%, #f7f2ec 100%);
}

.about-page-leadership-shell{
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: center;
}

.about-page-leadership-image{
  min-height: 520px;
  background: linear-gradient(180deg, #bf1b1b 0%, #7f1212 100%);
  box-shadow: 0 28px 56px rgba(16, 26, 35, 0.12);
}

.about-page-leadership-copy blockquote{
  margin: 1.2rem 0 1.3rem;
  padding: 1.2rem 1.3rem;
  border-left: 4px solid #bf1b1b;
  background: rgba(191, 27, 27, 0.06);
  color: #16232d;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.8;
}

.about-page-leadership-copy p{
  color: #56636e;
  line-height: 1.85;
}

.about-page-leadership-copy p + p{
  margin-top: 0.9rem;
}

.about-page-signoff{
  display: grid;
  gap: 0.18rem;
  margin-top: 1.5rem;
}

.about-page-signoff strong{
  color: #101a23;
  font-size: 1.05rem;
}

.about-page-signoff span{
  color: #bf1b1b;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-page-cta{
  padding: 0 0 4.5rem;
}

.about-page-cta-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #bf1b1b 0%, #7e1313 100%);
  color: #fff;
  box-shadow: 0 28px 54px rgba(191, 27, 27, 0.22);
}

.about-page-cta-card h2{
  color: #fff;
}

.about-page-cta-card p{
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.about-page-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.about-page-outline-btn-dark{
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.about-page-outline-btn-dark:hover,
.about-page-outline-btn-dark:focus{
  background: #fff;
  border-color: #fff;
  color: #101a23;
}

@media screen and (max-width: 1100px){
  .about-page-highlight-grid,
  .about-page-values-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-hero-visual{
    grid-template-columns: 1fr;
  }

  .about-page-hero-stack{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media screen and (max-width: 980px){
  .about-page-hero,
  .about-page-csr{
    padding-top: 4.6rem;
  }

  .about-page-hero-shell,
  .about-page-story-shell,
  .about-page-csr-shell,
  .about-page-leadership-shell{
    grid-template-columns: 1fr;
  }

  .about-page-story-grid,
  .about-page-values-grid{
    grid-template-columns: 1fr 1fr;
  }

  .about-page-mosaic{
    grid-template-columns: 1fr 1fr;
  }

  .about-page-mosaic-item-large{
    grid-column: span 2;
    min-height: 320px;
  }

  .about-page-cta-card{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 700px){
  .about-page-hero-copy h1,
  .about-page-story-copy h2,
  .about-page-values-intro h2,
  .about-page-csr-copy h2,
  .about-page-leadership-copy h2,
  .about-page-cta-card h2{
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .about-page-hero-actions,
  .about-page-cta-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .about-page-hero-actions .btn,
  .about-page-cta-actions .btn{
    width: 100%;
  }

  .about-page-highlight-grid,
  .about-page-story-grid,
  .about-page-values-grid,
  .about-page-hero-stack,
  .about-page-mosaic{
    grid-template-columns: 1fr;
  }

  .about-page-mosaic-item-large{
    grid-column: auto;
    min-height: 260px;
  }

  .about-page-hero-main-image,
  .about-page-leadership-image{
    min-height: 360px;
  }
}

/* HSE PAGE */
.hse-page-body{
  background:
    radial-gradient(circle at top left, rgba(191, 27, 27, 0.06), transparent 24%),
    linear-gradient(180deg, #f7fbf7 0%, #ffffff 28%, #f5f7f9 100%);
}

.hse-page-kicker{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(191, 27, 27, 0.08);
  color: #bf1b1b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hse-page-kicker-dark{
  background: rgba(255, 255, 255, 0.08);
  color: #ffd8d8;
}

.hse-page-hero{
  position: relative;
  overflow: hidden;
  padding: 5.75rem 0 4.7rem;
}

.hse-page-hero-shell{
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 2.4rem;
  align-items: center;
}

.hse-page-hero-copy h1{
  max-width: 760px;
  color: #101a23;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hse-page-hero-copy p{
  max-width: 700px;
  margin-top: 1.05rem;
  color: #4c5964;
  font-size: 1.02rem;
  line-height: 1.85;
}

.hse-page-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hse-page-outline-btn{
  background: transparent;
  border-color: rgba(16, 26, 35, 0.16);
  color: #101a23;
  box-shadow: none;
}

.hse-page-outline-btn:hover,
.hse-page-outline-btn:focus{
  background: #101a23;
  border-color: #101a23;
  color: #fff;
  box-shadow: none;
}

.hse-page-hero-points{
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hse-page-hero-point{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 26, 35, 0.08);
  color: #1c2a34;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(16, 26, 35, 0.05);
}

.hse-page-hero-point i{
  color: #bf1b1b;
}

.hse-page-hero-visual{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  align-items: end;
}

.hse-page-hero-main-image,
.hse-page-hero-small-image,
.hse-page-policy-image,
.hse-page-policy-card,
.hse-page-quality-image{
  overflow: hidden;
  background: #d8dde2;
}

.hse-page-hero-main-image{
  min-height: 540px;
  box-shadow: 0 32px 60px rgba(16, 26, 35, 0.14);
}

.hse-page-hero-main-image img,
.hse-page-hero-small-image img,
.hse-page-policy-image img,
.hse-page-policy-card img,
.hse-page-quality-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hse-page-hero-side{
  display: grid;
  gap: 1rem;
}

.hse-page-hero-small-image{
  min-height: 240px;
}

.hse-page-hero-panel{
  padding: 1.25rem;
  background: linear-gradient(180deg, #101a23 0%, #172833 100%);
  color: #fff;
  box-shadow: 0 22px 44px rgba(16, 26, 35, 0.2);
}

.hse-page-hero-panel span{
  display: inline-block;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hse-page-hero-panel strong{
  display: block;
  line-height: 1.7;
  font-size: 1rem;
}

.hse-page-section-intro{
  max-width: 760px;
  margin-bottom: 2rem;
}

.hse-page-section-intro h2,
.hse-page-policy-copy h2,
.hse-page-quality-copy h2,
.hse-page-cta-card h2{
  color: #101a23;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hse-page-section-intro p{
  margin-top: 1rem;
  color: #56636e;
  line-height: 1.8;
}

.hse-page-targets{
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
}

.hse-page-target-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hse-page-target-card{
  min-height: 100%;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid rgba(16, 26, 35, 0.08);
  box-shadow: 0 18px 36px rgba(16, 26, 35, 0.05);
}

.hse-page-target-icon,
.hse-page-pillar-icon{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: #bf1b1b;
  color: #fff;
  font-size: 20px;
}

.hse-page-target-card h3,
.hse-page-pillar-card h3,
.hse-page-csr-point h3{
  color: #101a23;
  font-size: 1.08rem;
  line-height: 1.3;
}

.hse-page-target-card p,
.hse-page-pillar-card p{
  margin-top: 0.55rem;
  color: #586670;
  line-height: 1.75;
}

.hse-page-policy-shell{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: start;
}

.hse-page-policy-copy .para-text{
  color: #56636e;
}

.hse-page-policy-checklist{
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hse-page-policy-check{
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #24323d;
}

.hse-page-policy-check i{
  color: #bf1b1b;
  margin-top: 0.18rem;
}

.hse-page-policy-visual{
  display: grid;
  gap: 1rem;
}

.hse-page-policy-image{
  min-height: 360px;
  box-shadow: 0 26px 52px rgba(16, 26, 35, 0.12);
}

.hse-page-policy-card{
  display: grid;
  grid-template-columns: 180px 1fr;
  background: #fff;
  border: 1px solid rgba(16, 26, 35, 0.08);
  box-shadow: 0 18px 34px rgba(16, 26, 35, 0.06);
}

.hse-page-policy-card img{
  min-height: 100%;
}

.hse-page-policy-card-copy{
  padding: 1.2rem;
}

.hse-page-policy-card-copy span{
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #bf1b1b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hse-page-policy-card-copy strong{
  display: block;
  color: #101a23;
  line-height: 1.7;
}

.hse-page-pillars{
  background:
    radial-gradient(circle at top right, rgba(191, 27, 27, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbf7f4 100%);
}

.hse-page-pillars-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hse-page-pillar-card{
  min-height: 100%;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid rgba(16, 26, 35, 0.08);
  box-shadow: 0 18px 34px rgba(16, 26, 35, 0.05);
}

.hse-page-quality{
  padding: 5rem 0;
  background:
    radial-gradient(circle at top left, rgba(191, 27, 27, 0.24), transparent 22%),
    linear-gradient(180deg, #101a23 0%, #09131a 100%);
}

.hse-page-quality-shell{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hse-page-quality-copy h2{
  color: #fff;
}

.hse-page-quality-copy p{
  margin-top: 1rem;
  color: rgba(232, 238, 243, 0.8);
  line-height: 1.85;
}

.hse-page-quality-panel{
  display: grid;
  gap: 1rem;
}

.hse-page-quality-image{
  min-height: 280px;
}

.hse-page-quality-list{
  display: grid;
  gap: 0.8rem;
}

.hse-page-quality-item{
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 238, 243, 0.86);
}

.hse-page-quality-item i{
  color: #ffb4b4;
  margin-top: 0.12rem;
}

.hse-page-cta{
  padding: 0 0 4.5rem;
}

.hse-page-cta-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #bf1b1b 0%, #7f1212 100%);
  color: #fff;
  box-shadow: 0 28px 54px rgba(191, 27, 27, 0.22);
}

.hse-page-cta-card h2{
  color: #fff;
}

.hse-page-cta-card p{
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.hse-page-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.hse-page-outline-btn-dark{
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.hse-page-outline-btn-dark:hover,
.hse-page-outline-btn-dark:focus{
  background: #fff;
  border-color: #fff;
  color: #101a23;
}

@media screen and (max-width: 1100px){
  .hse-page-target-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hse-page-pillars-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hse-page-hero-visual{
    grid-template-columns: 1fr;
  }

  .hse-page-hero-side{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media screen and (max-width: 980px){
  .hse-page-hero,
  .hse-page-quality{
    padding-top: 4.6rem;
  }

  .hse-page-hero-shell,
  .hse-page-policy-shell,
  .hse-page-quality-shell{
    grid-template-columns: 1fr;
  }

  .hse-page-policy-card{
    grid-template-columns: 1fr;
  }

  .hse-page-policy-card img{
    min-height: 220px;
  }

  .hse-page-cta-card{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 700px){
  .hse-page-hero-copy h1,
  .hse-page-section-intro h2,
  .hse-page-policy-copy h2,
  .hse-page-quality-copy h2,
  .hse-page-cta-card h2{
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hse-page-hero-actions,
  .hse-page-cta-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hse-page-hero-actions .btn,
  .hse-page-cta-actions .btn{
    width: 100%;
  }

  .hse-page-target-grid,
  .hse-page-pillars-grid,
  .hse-page-hero-side{
    grid-template-columns: 1fr;
  }

  .hse-page-hero-main-image{
    min-height: 360px;
  }

  .hse-page-policy-image{
    min-height: 280px;
  }
}

/* ABOUT + HSE TEXT FIT / CONTRAST FIXES */
.about-page-highlight-card,
.about-page-story-card,
.about-page-value-card,
.about-page-csr-point,
.about-page-hero-panel,
.about-page-cta-card,
.hse-page-hero-point,
.hse-page-target-card,
.hse-page-pillar-card,
.hse-page-policy-card,
.hse-page-hero-panel,
.hse-page-quality-item,
.hse-page-cta-card{
  min-width: 0;
}

.about-page-highlight-card > div,
.about-page-csr-point > div,
.hse-page-policy-card-copy,
.hse-page-quality-item span{
  min-width: 0;
}

.about-page-highlight-card > div:last-child{
  display: grid;
  align-content: start;
  gap: 0.12rem;
}

.about-page-highlight-card h2,
.about-page-highlight-card p,
.about-page-hero-panel strong,
.about-page-story-card h3,
.about-page-story-card p,
.about-page-story-card-dark strong,
.about-page-value-card h3,
.about-page-value-card p,
.about-page-csr-point h3,
.about-page-csr-point p,
.about-page-leadership-copy blockquote,
.about-page-cta-card h2,
.about-page-cta-card p,
.hse-page-hero-point span,
.hse-page-hero-panel strong,
.hse-page-target-card h3,
.hse-page-target-card p,
.hse-page-policy-card-copy strong,
.hse-page-pillar-card h3,
.hse-page-pillar-card p,
.hse-page-quality-item span,
.hse-page-cta-card h2,
.hse-page-cta-card p{
  overflow-wrap: anywhere;
  word-break: normal;
}

.about-page-highlight-card h2,
.about-page-story-card h3,
.about-page-value-card h3,
.about-page-csr-point h3,
.hse-page-target-card h3,
.hse-page-pillar-card h3{
  line-height: 1.4;
}

.about-page-highlight-card p,
.about-page-story-card p,
.about-page-value-card p,
.about-page-csr-point p,
.hse-page-target-card p,
.hse-page-pillar-card p,
.hse-page-quality-item span{
  line-height: 1.75;
}

.about-page-story-card,
.about-page-value-card,
.hse-page-target-card,
.hse-page-pillar-card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-page-cta-card .about-page-kicker,
.hse-page-cta-card .hse-page-kicker{
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.about-page-cta-card .about-page-kicker,
.about-page-csr .about-page-kicker,
.hse-page-quality .hse-page-kicker{
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-page-hero-panel,
.hse-page-hero-panel,
.hse-page-quality-item{
  color: #fff;
}

.service-hero-panel,
.service-surface-card,
.service-surface-card-dark,
.service-feature-card,
.service-cta-box{
  min-width: 0;
}

.about-page-highlight-card p,
.about-page-story-card p,
.about-page-value-card p,
.about-page-check-item,
.hse-page-target-card p,
.hse-page-policy-copy .para-text,
.hse-page-pillar-card p{
  text-wrap: pretty;
}

.service-hero-panel h2,
.service-hero-list li,
.service-surface-card h2,
.service-surface-card h3,
.service-surface-card p,
.service-surface-card-dark h3,
.service-surface-card-dark p,
.service-feature-card h3,
.service-feature-card p,
.service-cta-box h2,
.service-cta-box p{
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

@media screen and (max-width: 860px){
  .about-page-highlight-card{
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1rem;
  }

  .about-page-highlight-icon,
  .about-page-story-card-icon,
  .about-page-value-icon,
  .hse-page-target-icon,
  .hse-page-pillar-icon{
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .about-page-hero-panel,
  .hse-page-hero-panel,
  .hse-page-policy-card-copy,
  .hse-page-quality-item{
    padding: 1rem;
  }
}

@media screen and (max-width: 480px){
  .about-page-highlight-card,
  .about-page-story-card,
  .about-page-value-card,
  .about-page-csr-point,
  .hse-page-target-card,
  .hse-page-pillar-card{
    padding: 1rem;
  }

  .about-page-highlight-card h2,
  .about-page-story-card h3,
  .about-page-value-card h3,
  .about-page-csr-point h3,
  .hse-page-target-card h3,
  .hse-page-pillar-card h3{
    font-size: 0.94rem;
  }

  .about-page-highlight-card p,
  .about-page-story-card p,
  .about-page-value-card p,
  .about-page-csr-point p,
  .hse-page-target-card p,
  .hse-page-pillar-card p,
  .hse-page-quality-item span{
    font-size: 0.88rem;
  }

  .about-page-hero-panel strong,
  .hse-page-hero-panel strong,
  .hse-page-policy-card-copy strong{
    font-size: 0.94rem;
  }

  .hse-page-hero-point{
    width: 100%;
    justify-content: flex-start;
  }
}

/* Responsive safety pass */
.home-story-shell > *,
.home-stats-grid > *,
.service-grid > *,
.partners-grid > *,
.gallery-grid > *,
.contact-page-hero-grid > *,
.contact-page-grid > *,
.site-footer-shell > *,
.site-footer-bottom > *{
  min-width: 0;
}

.hero-slide h1,
.hero-slide p,
.service-intro p,
.partners-head p,
.contact-page-hero-copy p,
.site-footer-copy,
.site-footer-contact-text,
.site-footer-mini-links a{
  overflow-wrap: anywhere;
}

@media screen and (max-width: 700px){
  .container{
    width: 92vw;
  }

  .section-py{
    padding: 4rem 0;
  }

  .site-footer-mini-links{
    justify-content: flex-start;
  }
}

@media screen and (max-width: 560px){
  .btn{
    white-space: normal;
  }

  .hero-slide-kicker,
  .site-footer-mini-links a{
    white-space: normal;
  }

  .hero-slider-arrow{
    width: 42px;
    height: 42px;
  }
}

/* FLOW ASSURANCE PAGE */
.flowassurance-service-page .service-hero::after{
  width: min(46vw, 520px);
  height: 320px;
  right: -7%;
  bottom: -150px;
  background: linear-gradient(135deg, rgba(191, 27, 27, 0.34), rgba(191, 27, 27, 0.02) 72%);
}

.flow-fa-hero-shell{
  align-items: end;
  gap: 1rem;
}

.flow-fa-hero-copy h1{
  max-width: 9.5ch;
  font-size: clamp(2.8rem, 5.6vw, 4.7rem);
}

.flow-fa-hero-meta{
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-fa-highlight{
  color: #f0be72;
}

.flow-fa-hero-strap{
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.8;
}

.flow-fa-hero-side{
  display: grid;
  gap: 0.9rem;
}

.flow-fa-metric,
.flow-fa-process-callout{
  padding: 1.2rem 1.25rem;
  background: rgba(10, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.flow-fa-metric{
  border-left: 3px solid #bf1b1b;
}

.flow-fa-metric-alt{
  border-left-color: #d4a15a;
}

.flow-fa-metric-value{
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.flow-fa-metric-label{
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-fa-metric p,
.flow-fa-process-callout p{
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.flow-fa-process-callout{
  display: grid;
  gap: 0.75rem;
  border-left: 3px solid #d4a15a;
}

.flow-fa-process-callout a{
  width: fit-content;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-fa-section{
  padding: 0 0 5rem;
}

.flow-fa-stakes-section{
  padding-top: 4rem;
}

.flow-fa-text-highlight{
  color: #bf1b1b;
}

.flow-fa-text-highlight-soft{
  color: #f6d4cf;
}

.flow-fa-stakes-grid,
.flow-fa-scope-grid,
.flow-fa-project-grid{
  display: grid;
  gap: 1rem;
}

.flow-fa-stakes-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-fa-stake,
.flow-fa-scope-card,
.flow-fa-domain-copy,
.flow-fa-domain-aside,
.flow-fa-expert-card,
.flow-fa-tools-wrap,
.flow-fa-project{
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 20px 42px rgba(15, 25, 34, 0.08);
}

.flow-fa-stake,
.flow-fa-scope-card,
.flow-fa-domain-copy,
.flow-fa-domain-aside,
.flow-fa-project{
  background: #fffdfa;
}

.flow-fa-stake{
  position: relative;
  padding: 1.45rem;
}

.flow-fa-stake::after{
  content: "";
  position: absolute;
  left: 1.45rem;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #bf1b1b;
}

.flow-fa-stake h3,
.flow-fa-scope-card h3,
.flow-fa-domain-aside h3,
.flow-fa-project h3{
  margin: 0;
  color: #17232d;
  line-height: 1.18;
}

.flow-fa-stake p,
.flow-fa-scope-card p,
.flow-fa-domain-copy p,
.flow-fa-domain-aside p,
.flow-fa-project p{
  margin: 0.85rem 0 0;
  color: #53606b;
}

.flow-fa-stake-cost{
  display: inline-flex;
  margin-top: 0.9rem;
  padding: 0.3rem 0.65rem;
  color: #bf1b1b;
  background: rgba(191, 27, 27, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
}

.flow-fa-phd-banner{
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #111a22, #17232d);
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 20px 42px rgba(15, 25, 34, 0.12);
}

.flow-fa-phd-banner h2{
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.02;
}

.flow-fa-phd-banner p{
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.flow-fa-phd-icon{
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 27, 27, 0.14);
  color: #fff;
  font-size: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.flow-fa-badge-row,
.flow-fa-chip-row,
.flow-fa-software-row,
.flow-fa-tag-cloud{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.flow-fa-badge-row{
  margin-top: 1rem;
}

.flow-fa-badge-row span,
.flow-fa-chip,
.flow-fa-software-tag,
.flow-fa-tag{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(18, 31, 41, 0.12);
  font-size: 0.74rem;
  font-weight: 700;
}

.flow-fa-badge-row span{
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.flow-fa-scope-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-fa-scope-card{
  position: relative;
  padding: 1.45rem;
}

.flow-fa-scope-number{
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(191, 27, 27, 0.14);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.flow-fa-domain-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.flow-fa-domain-tab{
  border: 1px solid rgba(18, 31, 41, 0.12);
  background: #fffdfa;
  color: #22313c;
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.flow-fa-domain-tab.is-active,
.flow-fa-domain-tab:hover{
  color: #bf1b1b;
  border-color: rgba(191, 27, 27, 0.18);
  box-shadow: inset 0 -2px 0 #bf1b1b;
}

.flow-fa-domain-panel{
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.flow-fa-domain-panel.is-active{
  display: grid;
}

.flow-fa-domain-copy,
.flow-fa-domain-aside{
  padding: 1.45rem;
}

.flow-fa-bullet-list{
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
}

.flow-fa-bullet-list li{
  position: relative;
  padding-left: 1.2rem;
  color: #53606b;
}

.flow-fa-bullet-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  background: #bf1b1b;
}

.flow-fa-tag-highlight,
.flow-fa-chip,
.flow-fa-role-badge,
.flow-fa-software-tag{
  color: #bf1b1b;
  background: rgba(191, 27, 27, 0.08);
}

.flow-fa-chip-muted,
.flow-fa-software-tag-muted{
  color: #596671;
  background: rgba(17, 26, 34, 0.05);
}

.flow-fa-reference + .flow-fa-reference{
  margin-top: 0.8rem;
}

.flow-fa-reference strong,
.flow-fa-project-type,
.flow-fa-software-label,
.flow-fa-project-client{
  display: block;
  color: #bf1b1b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-fa-expert-card{
  overflow: hidden;
  background: #fffdfa;
}

.flow-fa-expert-head{
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, #111a22, #17232d);
}

.flow-fa-expert-avatar{
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 27, 27, 0.14);
  color: #fff;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-fa-expert-head h3{
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.02;
}

.flow-fa-expert-role,
.flow-fa-expert-quals{
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.flow-fa-expert-body{
  padding: 1.8rem;
}

.flow-fa-expert-body p{
  margin: 0;
  color: #53606b;
}

.flow-fa-bullet-list-compact{
  margin-top: 1rem;
}

.flow-fa-software-block{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 31, 41, 0.1);
}

.flow-fa-tools-wrap{
  overflow-x: auto;
  background: #fffdfa;
}

.flow-fa-tools-table{
  width: 100%;
  border-collapse: collapse;
}

.flow-fa-tools-table th,
.flow-fa-tools-table td{
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(18, 31, 41, 0.1);
  text-align: left;
  vertical-align: top;
}

.flow-fa-tools-table th{
  color: #17232d;
  background: rgba(17, 26, 34, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-fa-tools-table td:first-child{
  white-space: nowrap;
  color: #17232d;
  font-weight: 700;
}

.flow-fa-role-badge{
  display: inline-flex;
  padding: 0.2rem 0.55rem;
}

.flow-fa-cosim{
  display: flex;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #111a22, #17232d);
  border-left: 3px solid #bf1b1b;
  color: rgba(255, 255, 255, 0.82);
}

.flow-fa-cosim i{
  color: #fff;
  margin-top: 0.15rem;
}

.flow-fa-project-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-fa-project{
  padding: 1.45rem;
}

.flow-fa-process-section{
  padding: 0 0 5rem;
}

.flow-fa-process-card,
.flow-fa-cta-box{
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.flow-fa-process-card{
  padding: 1.8rem;
  background: linear-gradient(135deg, #111a22, #17232d);
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 20px 42px rgba(15, 25, 34, 0.12);
}

.flow-fa-process-card h2{
  margin: 0.85rem 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  line-height: 1.05;
}

.flow-fa-process-card p{
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.flow-fa-cta-box{
  background: linear-gradient(135deg, #111a22, #17232d);
  border-color: rgba(255, 255, 255, 0.1);
}

.flow-fa-cta-box .service-page-kicker{
  color: rgba(255, 255, 255, 0.78);
}

.flow-fa-cta-box h2{
  color: #fff;
}

.flow-fa-cta-box p{
  color: rgba(255, 255, 255, 0.82);
}

.flow-fa-contact-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-fa-contact-item span{
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-fa-contact-item strong{
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 0.95rem;
}

.flow-fa-hero-meta,
.flow-fa-hero-strap,
.flow-fa-metric p,
.flow-fa-process-callout p,
.flow-fa-stake p,
.flow-fa-phd-banner p,
.flow-fa-scope-card p,
.flow-fa-domain-copy p,
.flow-fa-domain-aside p,
.flow-fa-bullet-list li,
.flow-fa-expert-body p,
.flow-fa-tools-table td,
.flow-fa-project p,
.flow-fa-process-card p,
.flow-fa-cta-box p{
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

@media screen and (max-width: 1040px){
  .flow-fa-stakes-grid,
  .flow-fa-project-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-fa-domain-panel,
  .flow-fa-process-card{
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .flow-fa-contact-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 760px){
  .flow-fa-section,
  .flow-fa-process-section{
    padding-bottom: 4rem;
  }

  .flow-fa-phd-banner,
  .flow-fa-expert-head{
    grid-template-columns: 1fr;
  }

  .flow-fa-stakes-grid,
  .flow-fa-scope-grid,
  .flow-fa-project-grid,
  .flow-fa-contact-grid{
    grid-template-columns: 1fr;
  }

  .flow-fa-process-card .btn,
  .flow-fa-cta-actions .btn{
    width: 100%;
  }
}

@media screen and (max-width: 560px){
  .flow-fa-hero-copy h1{
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .flow-fa-hero-meta{
    font-size: 0.66rem;
  }

  .flow-fa-stake,
  .flow-fa-scope-card,
  .flow-fa-domain-copy,
  .flow-fa-domain-aside,
  .flow-fa-project,
  .flow-fa-process-card,
  .flow-fa-expert-body,
  .flow-fa-expert-head{
    padding: 1.15rem;
  }

  .flow-fa-tools-table th,
  .flow-fa-tools-table td{
    padding: 0.8rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* PROCESS ENGINEERING PAGE */
.processengineering-service-page .service-hero::after{
  width: min(46vw, 520px);
  height: 320px;
  right: -7%;
  bottom: -150px;
  background: linear-gradient(135deg, rgba(212, 161, 90, 0.34), rgba(191, 27, 27, 0.04) 72%);
}

.proc-eng-hero-shell{
  align-items: end;
  gap: 1rem;
}

.proc-eng-hero-copy h1{
  max-width: 9ch;
  font-size: clamp(2.8rem, 5.6vw, 4.7rem);
}

.proc-eng-hero-meta{
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proc-eng-highlight,
.proc-eng-text-highlight{
  color: #d4a15a;
}

.proc-eng-text-highlight-soft{
  color: #f2dfc0;
}

.proc-eng-hero-strap{
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.8;
}

.proc-eng-hero-side{
  display: grid;
  gap: 0.9rem;
}

.proc-eng-metric,
.proc-eng-flow-callout{
  padding: 1.2rem 1.25rem;
  background: rgba(10, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.proc-eng-metric{
  border-left: 3px solid #d4a15a;
}

.proc-eng-flow-callout{
  display: grid;
  gap: 0.75rem;
  border-left: 3px solid #bf1b1b;
}

.proc-eng-flow-callout a{
  width: fit-content;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proc-eng-metric-value{
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.proc-eng-metric-label{
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proc-eng-metric p,
.proc-eng-flow-callout p{
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.proc-eng-section{
  padding: 0 0 5rem;
}

.proc-eng-stakes-section{
  padding-top: 4rem;
}

.proc-eng-stakes-grid,
.proc-eng-service-grid,
.proc-eng-deliverables-grid,
.proc-eng-career-grid,
.proc-eng-workflow-grid{
  display: grid;
  gap: 1rem;
}

.proc-eng-stakes-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proc-eng-stake,
.proc-eng-service-card,
.proc-eng-deliverable,
.proc-eng-domain-copy,
.proc-eng-domain-aside,
.proc-eng-expert-card,
.proc-eng-tools-wrap,
.proc-eng-career-item,
.proc-eng-workflow-step{
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 20px 42px rgba(15, 25, 34, 0.08);
}

.proc-eng-stake,
.proc-eng-service-card,
.proc-eng-deliverable,
.proc-eng-domain-copy,
.proc-eng-domain-aside,
.proc-eng-expert-card,
.proc-eng-tools-wrap,
.proc-eng-career-item,
.proc-eng-workflow-step{
  background: #fffdfa;
}

.proc-eng-stake{
  position: relative;
  padding: 1.45rem;
}

.proc-eng-stake::after{
  content: "";
  position: absolute;
  left: 1.45rem;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #d4a15a;
}

.proc-eng-stake h3,
.proc-eng-service-card h3,
.proc-eng-deliverable h3,
.proc-eng-domain-aside h3,
.proc-eng-expert-head h3,
.proc-eng-career-item strong,
.proc-eng-workflow-step h3,
.proc-eng-crosslink-card h2{
  margin: 0;
  color: #17232d;
  line-height: 1.18;
}

.proc-eng-stake p,
.proc-eng-service-card p,
.proc-eng-deliverable p,
.proc-eng-domain-copy p,
.proc-eng-domain-aside p,
.proc-eng-expert-body p,
.proc-eng-workflow-step p,
.proc-eng-crosslink-card p{
  margin: 0.85rem 0 0;
  color: #53606b;
}

.proc-eng-stake-cost{
  display: inline-flex;
  margin-top: 0.9rem;
  padding: 0.3rem 0.65rem;
  color: #b88021;
  background: rgba(212, 161, 90, 0.12);
  font-size: 0.74rem;
  font-weight: 700;
}

.proc-eng-service-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proc-eng-service-card{
  padding: 1.5rem;
  border-top: 3px solid #d4a15a;
}

.proc-eng-service-icon,
.proc-eng-deliverable-icon{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b88021;
  background: rgba(212, 161, 90, 0.12);
  font-size: 1rem;
}

.proc-eng-tag-row,
.proc-eng-chip-row,
.proc-eng-software-row,
.proc-eng-tag-cloud{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.proc-eng-tag-row{
  margin-top: 1rem;
}

.proc-eng-tag-row span,
.proc-eng-chip,
.proc-eng-software-tag,
.proc-eng-tag{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(18, 31, 41, 0.12);
  font-size: 0.74rem;
  font-weight: 700;
}

.proc-eng-tag,
.proc-eng-tag-highlight,
.proc-eng-chip,
.proc-eng-role-badge,
.proc-eng-software-tag{
  color: #b88021;
  background: rgba(212, 161, 90, 0.12);
}

.proc-eng-chip-muted,
.proc-eng-software-tag-muted{
  color: #596671;
  background: rgba(17, 26, 34, 0.05);
}

.proc-eng-deliverables-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proc-eng-deliverable{
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
}

.proc-eng-domain-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.proc-eng-domain-tab{
  border: 1px solid rgba(18, 31, 41, 0.12);
  background: #fffdfa;
  color: #22313c;
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.proc-eng-domain-tab.is-active,
.proc-eng-domain-tab:hover{
  color: #b88021;
  border-color: rgba(212, 161, 90, 0.22);
  box-shadow: inset 0 -2px 0 #d4a15a;
}

.proc-eng-domain-panel{
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.proc-eng-domain-panel.is-active{
  display: grid;
}

.proc-eng-domain-copy,
.proc-eng-domain-aside{
  padding: 1.45rem;
}

.proc-eng-bullet-list{
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
}

.proc-eng-bullet-list li{
  position: relative;
  padding-left: 1.2rem;
  color: #53606b;
}

.proc-eng-bullet-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  background: #d4a15a;
}

.proc-eng-reference + .proc-eng-reference{
  margin-top: 0.8rem;
}

.proc-eng-reference strong,
.proc-eng-software-label,
.proc-eng-career-item span{
  display: block;
  color: #b88021;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proc-eng-expert-card{
  overflow: hidden;
}

.proc-eng-expert-head{
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, #111a22, #17232d);
}

.proc-eng-expert-avatar{
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 161, 90, 0.14);
  color: #fff;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proc-eng-expert-head h3{
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.02;
}

.proc-eng-expert-role,
.proc-eng-expert-quals{
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.proc-eng-expert-body{
  padding: 1.8rem;
}

.proc-eng-bullet-list-compact{
  margin-top: 1rem;
}

.proc-eng-software-block{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 31, 41, 0.1);
}

.proc-eng-career-grid{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.proc-eng-career-item{
  padding: 1rem;
  text-align: center;
}

.proc-eng-career-item strong{
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.proc-eng-career-item p{
  margin: 0.35rem 0 0;
  color: #596671;
  font-size: 0.78rem;
}

.proc-eng-tools-wrap{
  overflow-x: auto;
}

.proc-eng-tools-table{
  width: 100%;
  border-collapse: collapse;
}

.proc-eng-tools-table th,
.proc-eng-tools-table td{
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(18, 31, 41, 0.1);
  text-align: left;
  vertical-align: top;
}

.proc-eng-tools-table th{
  color: #17232d;
  background: rgba(17, 26, 34, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proc-eng-tools-table td:first-child{
  white-space: nowrap;
  color: #17232d;
  font-weight: 700;
}

.proc-eng-role-badge{
  display: inline-flex;
  padding: 0.2rem 0.55rem;
}

.proc-eng-workflow-grid{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proc-eng-workflow-step{
  position: relative;
  padding: 1.4rem 1.2rem;
}

.proc-eng-workflow-step span{
  display: block;
  color: rgba(212, 161, 90, 0.22);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.proc-eng-crosslink-section{
  padding: 0 0 5rem;
}

.proc-eng-crosslink-card,
.proc-eng-cta-box{
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.proc-eng-crosslink-card{
  padding: 1.8rem;
  background: linear-gradient(135deg, #111a22, #17232d);
  border: 1px solid rgba(18, 31, 41, 0.1);
  box-shadow: 0 20px 42px rgba(15, 25, 34, 0.12);
}

.proc-eng-crosslink-card h2{
  margin-top: 0.85rem;
  color: #fff;
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  line-height: 1.05;
}

.proc-eng-crosslink-card p{
  color: rgba(255, 255, 255, 0.82);
}

.proc-eng-cta-box{
  background: linear-gradient(135deg, #111a22, #17232d);
  border-color: rgba(255, 255, 255, 0.1);
}

.proc-eng-cta-box .service-page-kicker{
  color: rgba(255, 255, 255, 0.78);
}

.proc-eng-cta-box h2{
  color: #fff;
}

.proc-eng-cta-box p{
  color: rgba(255, 255, 255, 0.82);
}

.proc-eng-contact-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proc-eng-contact-item span{
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proc-eng-contact-item strong{
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 0.95rem;
}

.proc-eng-hero-meta,
.proc-eng-hero-strap,
.proc-eng-metric p,
.proc-eng-flow-callout p,
.proc-eng-stake p,
.proc-eng-service-card p,
.proc-eng-deliverable p,
.proc-eng-domain-copy p,
.proc-eng-domain-aside p,
.proc-eng-bullet-list li,
.proc-eng-expert-body p,
.proc-eng-tools-table td,
.proc-eng-career-item p,
.proc-eng-workflow-step p,
.proc-eng-crosslink-card p,
.proc-eng-cta-box p{
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

@media screen and (max-width: 1100px){
  .proc-eng-service-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proc-eng-career-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proc-eng-workflow-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 1040px){
  .proc-eng-stakes-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proc-eng-domain-panel,
  .proc-eng-crosslink-card{
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .proc-eng-contact-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 760px){
  .proc-eng-section,
  .proc-eng-crosslink-section{
    padding-bottom: 4rem;
  }

  .proc-eng-stakes-grid,
  .proc-eng-service-grid,
  .proc-eng-deliverables-grid,
  .proc-eng-career-grid,
  .proc-eng-contact-grid,
  .proc-eng-workflow-grid{
    grid-template-columns: 1fr;
  }

  .proc-eng-expert-head{
    grid-template-columns: 1fr;
  }

  .proc-eng-crosslink-card .btn,
  .proc-eng-cta-actions .btn{
    width: 100%;
  }
}

@media screen and (max-width: 560px){
  .proc-eng-hero-copy h1{
    max-width: 10.5ch;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .proc-eng-hero-meta{
    font-size: 0.66rem;
  }

  .proc-eng-stake,
  .proc-eng-service-card,
  .proc-eng-deliverable,
  .proc-eng-domain-copy,
  .proc-eng-domain-aside,
  .proc-eng-expert-body,
  .proc-eng-expert-head,
  .proc-eng-career-item,
  .proc-eng-workflow-step,
  .proc-eng-crosslink-card{
    padding: 1.15rem;
  }

  .proc-eng-tools-table th,
  .proc-eng-tools-table td{
    padding: 0.8rem 0.75rem;
    font-size: 0.8rem;
  }
}
