/* Borouge English annual report - shared layout */
:root {
  --brand-blue:        #003B7A;   /* deep brand blue */
  --brand-blue-dark:   #001E5C;
  --brand-blue-mid:    #0050C8;
  --brand-cyan:        #2BB7E2;
  --brand-cyan-soft:   #D8EEF7;
  --brand-cyan-2:      #5BC8EA;
  --brand-green:       #6CB33F;
  --ink:               #0B1B33;
  --ink-soft:          #4A5A75;
  --muted:             #B7BDC7;
  --line:              #E5EAF2;
  --bg:                #FFFFFF;
  --bg-soft:           #F4F6FA;

  --container:         1280px;
  --radius:            10px;
  --shadow-card:       0 6px 24px rgba(11, 27, 51, 0.08);

  --header-height:     76px;

  --font-sans: "ADNOC Sans", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
   @font-face {
    font-family: 'HelveticaNeueArabic';
    src: url('../fonts/HelveticaNeueLTArabic-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: "ADNOC Sans";
  src:
    local("ADNOC Sans"),
    local("ADNOCSans-Regular"),
    url("../fonts/ADNOCSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
 font-family: var(--font-sans);
 /*font-family: 'ADNOC Sans', sans-serif;*/
  color: var(--ink);
  background: var(--bg);
  /*line-height: 1.5;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============== HEADER / NAV ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 8px;
  background: #f1f3f6fa;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  gap: 85px;
  height: var(--header-height);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 55px; width: auto; }
.nav__links { display: flex; align-items: center; }
#menu { display: flex; align-items: center; gap: 75px; }
.nav__link {
  position: relative;
  display: inline-block;
  color: #003b7ac7 !important;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  align-items: flex-start;
  gap: 6px;
  padding: 8px 4px;
  transition: color .15s ease;
}
.nav__link img {
  position: absolute;
  top: 1px;
  right: -8px;
}
.nav__link:hover { color: var(--brand-cyan); }
.nav__link .arrow {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: var(--brand-cyan);
  flex: 0 0 18px;
  transform: translateY(-3px);
}
.nav__pill {
  background: var(--brand-cyan);
  color: #FFFFFF;
  /*padding: 4px 10px;*/
  padding: 7px 10px 2px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  /*letter-spacing: 0.08em;*/
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__lang {
  /*color: var(--brand-blue);*/
  color : #0457b0;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s ease;
}
.nav__lang:hover { background: var(--bg-soft); }

.nav__link.active, .nav__link:hover{
  border-bottom: 2px solid var(--brand-cyan);
}

/* ============== SHARED FULL-PAGE SECTION FRAME ============== */
.stage {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--brand-blue-dark);
  color: #FFFFFF;
}
.stage__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
}
.stage__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0, 30, 92, 0.96) 0%,
      rgba(0, 30, 92, 0.90) 35%,
      rgba(0, 30, 92, 0.55) 60%,
      rgba(0, 30, 92, 0.10) 82%,
      rgba(0, 30, 92, 0.00) 100%);
}
/* Diagonal cyan flag accent on right side */
.stage__flag {
  position: absolute;
  top: 0;
  right: -6%;
  width: 46%;
  height: 100%;
  background: rgba(91, 200, 234, 0.32);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.stage__flag--bright {
  background: rgba(91, 200, 234, 0.55);
  width: 28%;
  right: 6%;
  clip-path: polygon(50% 0, 100% 0, 100% 65%, 0 100%);
}
/* Thin cyan up-pointing arrow accent on the left, behind the bullet list */
.stage__arrow {
  position: absolute;
  left: 8%;
  top: 28%;
  width: 96px;
  height: 240px;
  pointer-events: none;
  opacity: .9;
}

.stage__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 96px;
}

.stage__title {
  color: #FFFFFF;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 820px;
}

.stage__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 12px;
  max-width: 460px;
  columns: 1;
}
.stage__list li {
  position: relative;
  padding: 4px 0px 0px 12px;
  font-size: 15px;
  /*font-weight: 500;*/
  color: #ffffffe0; /* FFFFFF*/
  letter-spacing: 0.01em;
}
.stage__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--brand-cyan);
  border-radius: 50%;
}
.stage__list li a:hover{
  text-decoration : underline;
}
.download-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  /*background: #FFFFFF;*/
  border: 1.5px solid #C8D4E8;
  border-radius: 7px;
  /*padding: 18px 18px 20px 18px;*/
  width: 90px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  gap: 0;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 10px rgba(11, 27, 51, 0.06);
  padding:10px 5px 5px 5px; 
  background: #f2f4f7;
  line-height: 0.85;
} 
.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 27, 51, 0.18);
}
.download-card__icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 10px;
  background: var(--brand-cyan-soft);
  color: var(--brand-blue);
  display: grid; place-items: center;
}
.download-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  display: block;
}
.download-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
}

.extra-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 38px;

}
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1px 5px;
  border-radius: 5px;
  background: var(--brand-cyan);
  color: #ffffffe0; /* FFFFFF*/
  font-size: 11px;
  /*font-weight: 600;*/
  transition: background .15s ease, transform .15s ease;
}
.pill-btn:hover { background: #1FA0CB; transform: translateY(-1px); }
.pill-btn .arrow { width: 14px; height: 14px; color: #FFFFFF; }
/*.extra-actions .pill-btn {
  line-height: 2;
  height: 10px;
}*/
.pill-btn-text {
  padding-top: 3px;
}
.pill-btn--ghost {
  background: #FFFFFF;
  color: var(--brand-blue);
  border: 1px solid var(--line);
}
.pill-btn--ghost:hover { background: var(--brand-cyan-soft); }
.pill-btn--ghost .arrow { color: var(--brand-cyan); }

.highlights__actions .top-arrow{
  background-color : #023163 !important;
}
.right-arrow.top-arrow-image {
  width: 20px;
  height: 20px;
}
/* ============== HERO (page 1) ============== */
.hero .stage__overlay {
  background:
    linear-gradient(90deg,
      rgba(0, 59, 122, 0.94) 0%,
      rgba(0, 59, 122, 0.85) 32%,
      rgba(0, 59, 122, 0.45) 60%,
      rgba(0, 59, 122, 0.05) 88%,
      rgba(0, 59, 122, 0.00) 100%);
}
.hero__title-wrap {
  position: relative;
  width: fit-content;
  margin-bottom: 28px;
}
.hero__title {
  margin-bottom: 0;
}
.hero__title em { font-style: normal; }
.hero__title-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 78px;
  transform: translate(10%, -25%);
  pointer-events: none;
}

/* Horizontal brand bar under hero headline (PDF) */
.blue-bar {
  width:53%; /*  680px; */
  height: 25px;
  margin-bottom: 40px;
  background: #41a5f9;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* ============== HIGHLIGHTS (page 3) ============== */
.highlights {
  padding: 96px 0 120px;
  background: var(--bg);
  position: relative;
  overflow: visible;
}
.highlights__eyebrow {
  font-size: 30px;
  font-weight: 700;
  /*color: var(--brand-blue);*/
  color : #185ca4f5;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.highlights__title {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  /*color: var(--muted);*/
  color : #91989f;
  margin: 0 0 56px;
  max-width: 980px;
}
.highlights__title em {
  font-style: normal;
  /*color: var(--brand-cyan);*/
  color : #2abbe8;
  display: block;
}
.highlights__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.highlights__grid .left_corner_image {
  position: absolute;
  left: -80px;
  bottom: -70px;
  pointer-events: none;
  width: 230px;
  height: 200px;
}
.highlights__grid > .h-col {
  background: #f0f0f7;
  padding: 15px 36px 0px;
  /*box-shadow: var(--shadow-card);*/
}
.h-col__heading {
  font-size: 22px;
  font-weight: 700;
  /*color: var(--brand-cyan);*/
  color : #2abbe8;
  margin: 0 0 11px;
  /*padding-bottom: 12px;*/
}
.h-col--esg .h-col__heading { 
  /*color: var(--brand-green); */
  color : #12bd30;
}

.h-col--operational,
.h-col--operational .h-col__heading,
.h-col--operational .metric__label,
.h-col--operational .metric__value,
.h-col--operational .metric__value .unit,
.h-col--operational .metric__value .secondary,
.h-col--operational .metric__caption {
  color: #116ec1;
}

/* .metric { margin-bottom: 22px; }*/
.metric__label {
  font-size: 12px;
  font-weight: 600;
  /*color: var(--ink-soft);*/
  color:#494f5b !important;  /* #373d48*/
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #aaacae;
}
.h-col--financial .metric__label {
  max-width: 150px;
}
.h-col--financial .last_metric_value {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  column-gap: 0.06em;
}
.h-col--financial .last_metric_value .counter-suffix {
  font-size: 14px;
}
.h-col--financial .last_metric_value .last_metric_line2 {
  flex-basis: 100%;
  margin-top: 4px;
  font-weight: 600;
  color: var(--ink-soft);
}
.metric__value {
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 600;
  color: var(--brand-cyan);
  line-height: 1.0;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.metric__value .unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-cyan);
}
.metric__value .secondary {
  font-size: 0.26em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 4px;
}
.metric__value .counter-prefix,
.metric__value .counter-suffix,
.asset_utilization__value .counter-suffix {
  font-size: 0.52em;
  font-weight: 700;
  line-height: 1;
}
.metric__caption {
  font-size: 12px;
  color: var(--ink-soft) !important;
  /*margin-top: 4px;*/
  line-height: 1.4;
  max-width: 220px;
}
.h-col--esg .metric__value,
.h-col--esg .metric__value .unit { 
   /*color: var(--brand-green); */
   color : #12bd30;
  }
.metric--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.metric--inline {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.metric--inline .metric__value { display: inline-flex; }

.metric__value.asset_utilization {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  align-items: start;
}
.asset_utilization__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.asset_utilization__value {
  line-height: 1;
}
.asset_utilization__suffix {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

/* Cyan flag arrow accent at lower-left of highlights */
.highlights__accent {
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  color: var(--brand-cyan);
  pointer-events: none;
  opacity: .9;
}
.highlights__actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 107px;
}
/*.h-col--operational .metric.metric__one{
  margin-bottom : 9px;
}*/
/* ============== STRATEGIC SECTION (page 2) ============== */
.strategic .stage__bg { background-image: url('../images/strategic-report.jpg'); }
.strategic .stage__overlay {
  background:
    linear-gradient(90deg,
      rgba(0, 59, 122, 0.94) 0%,
      rgba(0, 59, 122, 0.86) 28%,
      rgba(0, 59, 122, 0.55) 50%,
      rgba(0, 59, 122, 0.10) 78%,
      rgba(0, 59, 122, 0.00) 100%);
}
/* Keep strategic CTA animation targets from being clipped on standalone page */
#strategic-report.stage {
  overflow: visible;
}

/* ============== GOVERNANCE SECTION (page 4) ============== */
.governance .stage__bg { background-image: url('../images/governance-report.jpg'); }
.governance .stage__overlay {
  background:
    linear-gradient(90deg,
      rgba(0, 59, 122, 0.94) 0%,
      rgba(0, 59, 122, 0.84) 30%,
      rgba(0, 59, 122, 0.45) 55%,
      rgba(0, 59, 122, 0.05) 84%,
      rgba(0, 59, 122, 0.00) 100%);
}

/* ============== FINANCIAL SECTION (page 5) ============== */
.financial .stage__bg { background-image: url('../images/financial-statements.jpg'); }
.financial .stage__overlay {
  background:
    linear-gradient(90deg,
      rgba(0, 30, 92, 0.92) 0%,
      rgba(0, 30, 92, 0.78) 35%,
      rgba(0, 30, 92, 0.45) 60%,
      rgba(0, 30, 92, 0.20) 85%,
      rgba(0, 30, 92, 0.10) 100%);
}

.hero .stage__bg { background-image: url('../images/hero-homepage.jpg'); }
.nav__lang{ font-family: inherit; }
/*.metric--split.metric__one, 
  .metric--split.metric__two, 
  .metric--split.metric__three, 
  .metric.metric__four, {
    height:98px;
  }*/
  
/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  html { --header-height: 64px; }
  .nav { height: 64px; }
  .nav__links { gap: 18px; }
  .nav__link { font-size: 12px; }
  .nav__pill { padding: 6px 14px; font-size: 11px; }
  .stage__overlay,
  .strategic .stage__overlay,
  .governance .stage__overlay,
  .financial .stage__overlay,
  .hero .stage__overlay {
    background: linear-gradient(180deg, rgba(0,30,92,0.86) 0%, rgba(0,30,92,0.55) 60%, rgba(0,30,92,0.20) 100%);
  }
  .stage__flag { display: none; }
  .highlights__grid { grid-template-columns: 1fr; }

}
@media (min-width : 760px){          
  .metric__one{
    height:98px;
  }
  .metric__two {
    height:115px;
  }
  .metric__three{
    height:105px;
  }     
  .metric__four {
    height:98px;
  }

  .h-col--esg .metric__label{
    width:80%;
  }
}

/* ----------------------------------------------*/
/* additional styles */

/* download-card */
.download-icon {
  width: 33px;
  height: 33px;
  /*margin-bottom: 6px;*/
color: #2BB7E2;
}
.download-label {
  font-size: 7px;
  font-weight: 500;
  color: #0457b0;
  letter-spacing: 0.04em;
  /*margin-bottom: 6px;*/
  text-transform: capitalize;
}
.download-line {
  display: block;
  width: 78%;
  height: 1px;
  margin-top:4px;
  margin-bottom: 0;
  background: #2BB7E2;
  border-radius: 1px;
}
.download-title {
  font-size: 10px;
  font-weight: 600;
  color: #0457b0;
  /*letter-spacing: 0.03em;*/
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-flex;
  flex-direction: column;
}
.download-title__line + .download-title__line {
  margin-top: -1px;
}
.download-corner {
position: absolute;
top: 48px;
right: 4px;
width: 16px;
height: 15px;
}
/* -----------------  download card/ends ---------------- */

.content-corner-image{
  width: 160px;
  height: 140px;
  margin-left: -50px;
}
.list-content,.link-content{
  display: flex;
  align-items: flex-start;
  gap:13px;
}
.list-content{
  flex-wrap: wrap; 
  margin-bottom:100px;
}
.strategic-bg{
  background-size: cover;
}
.right-arrow{
  width: 15px;
  height: 15px;
}
.highlights__actions .pill-btn{
  background-color : #075ab1;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  padding: 5px 18px 5px 15px;
}
/* Mobile Menu */
  /* Hamburger */
  .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        padding: 8px;
        margin: 0;
        border: 0;
        background: transparent;
        -webkit-appearance: none;
        appearance: none;
      }

  .menu-toggle span {
        height: 3px;
        width: 25px;
        background: #003B7A;
        margin: 4px 0;
      }
/* Mobile Menu/ends */
@media (max-width: 720px) {
  .container { padding: 10px 20px; }
  .nav__pill { display: none; }
  .stage { min-height: 560px; }
  .stage__title { font-size: 44px; }
  .highlights { padding: 64px 0 80px; }
  .highlights__grid > .h-col { padding: 24px; }
  .blue-bar { width: 100%; }
  .content-corner-image {
    width: 200px;
    height: 180px;
    margin-left: 0;
  }
  .hero__title-corner {
      position: absolute;
      top: 0;
      right: 0;
      width: 50px;
      height: 50px;
      transform: translate(10%, -30%);
      pointer-events: none;
  }
  #strategic-report,
  #governance-report,
  #financial-statements {
    padding-bottom: 60px;
  }
  /* Mobile Menu */
  #menu {
    display: none;
    flex-direction: column;
    background: #f1f3f6fa;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px;
  }
  #menu.show {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .menu-arrow { display: none; }
  /* Mobile Menu/ends */
  .highlights__actions { margin-left: 0; }
}

/* View Transitions */
@view-transition {
  navigation: auto;
}

@keyframes slide-out-to-left {
  from { transform: translateX(0);     opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0.4; }
}

@keyframes slide-in-from-right {
  from { transform: translateX(100%); opacity: 0.4; }
  to   { transform: translateX(0);    opacity: 1; }
}

::view-transition-old(root) {
  animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-out-to-left;
}

::view-transition-new(root) {
  animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-in-from-right;
}
