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

    :root{
      --white:#ffffff;
      --text:rgba(255,255,255,0.96);
      --muted:rgba(255,255,255,0.82);
      --soft:rgba(255,255,255,0.65);
      --line:rgba(255,255,255,0.08);
      --panel:rgba(30, 39, 52, 0.28);
      --panel-border:rgba(255,255,255,0.08);
    }

    html,body{
      width:100%;
      height:100%;
      font-family:'Inter', sans-serif;
      background:#fff;
      color:var(--white);
      overflow-x:hidden;
    }

    body{
      min-height:100vh;
    }

    .hero{
      position:relative;
      min-height:100vh;
      width:100%;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    /* Background video/image */
    .hero-media{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:0;
    }

    .logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.logo-img{
  height:80px;
  width:auto;
  display:block;
  margin-top:-14%;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* same as image cover */
  z-index: -1;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content,
header,
nav {
  position: relative;
  z-index: 2;
}

    /* Dark overlay */
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(to bottom, rgba(4, 11, 20, 0.235) 0%, rgba(5,12,20,0.22) 32%, rgba(7, 13, 22, 0.107) 58%, rgba(7,13,22,0.72) 100%);
      z-index:1;
    }

    /* Slight blue tint */
    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to right, rgba(0,25,48,0.22), rgba(0,0,0,0) 40%, rgba(8,23,44,0.16));
      z-index:1;
      pointer-events:none;
    }

.topbar {
   position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 82px;
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.669); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  
}

    .logo{
      font-size:34px;
      font-weight:800;
      letter-spacing:-1.5px;
      color:#fff;
      text-decoration:none;
      line-height:1;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:50px;
    }

    .nav a{
      color:black !important;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      letter-spacing:-0.4px;
      transition:opacity .25s ease;
    }

    .nav a:hover{
      opacity:0.78;
    }


  .nav a {
  position: relative;
  color: whitesmoke;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.4px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #0b63ce;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #0b63ce;
}

.nav a:hover::after {
  width: 100%;
}

    .bottom-panel{
      position:relative;
      z-index:3;
      width:100%;
      padding:0 0 22px;
      margin-top: 30%;
    }

    .panel-wrap{
      width:100%;
      background:rgba(76, 84, 97, 0.22);
      backdrop-filter:blur(7px);
      -webkit-backdrop-filter:blur(7px);
      border-top:1px solid var(--line);
      box-shadow:0 -10px 25px rgba(0,0,0,0.08);
      padding:18px 82px 28px;
    }

    .services{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:28px;
      margin-bottom:42px;
    }

    .service small{
      display:block;
      color:rgba(255,255,255,0.88);
      font-size:13px;
      font-weight:400;
      text-transform:uppercase;
      margin-bottom:8px;
      line-height:1.2;
    }

    .service h3{
      font-size:15px;
      line-height:1.45;
      font-weight:300 !important;
      color:var(--text);
      max-width:360px;
      
    }

.socials a{
  color:#fff;
  font-size:18px;
  margin-right:20px;
  transition:0.3s;
}

.socials a:hover{
  opacity:0.7;
}

    .footer-row{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:20px;
    }

    .socials,
    .legal{
      display:flex;
      align-items:center;
      gap:32px;
      flex-wrap:wrap;
    }

    .socials a,
    .legal a{
      color:var(--text);
      text-decoration:none;
      font-size:14px;
      font-weight:500;
    }

    .legal{
      justify-content:center;
      gap:36px;
    }

    .copyright{
      justify-self:end;
      color:rgba(255,255,255,0.9);
      font-size:14px;
      font-weight:400;
      text-align:right;
      white-space:nowrap;
    }

    /* Mobile */
    .menu-btn{
      display:none;
      background:none;
      border:none;
      color:#fff;
      font-size:20px;
      cursor:pointer;
    }

    @media (max-width: 1200px){
      .nav{
        gap:38px;
      }

      .nav a{
        font-size:18px;
      }

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

      .footer-row{
        grid-template-columns:1fr;
        gap:18px;
      }

      .socials,
      .legal,
      .copyright{
        justify-self:start;
        justify-content:flex-start;
        text-align:left;
      }
    }

    @media (max-width: 820px){
      .topbar{
        padding:28px 24px 0;
      }

      .panel-wrap{
        padding:18px 24px 24px;
      }

      .menu-btn{
        display:block;
      }

      .nav{
        display:none;
        position:absolute;
        top:86px;
        right:24px;
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
        background:rgba(10,18,29,0.9);
        padding:20px;
        border:1px solid rgba(255,255,255,0.08);
        border-radius:14px;
      }

      .nav.show{
        display:flex;
      }

      .logo{
        font-size:28px;
      }

      .services{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:28px;
      }

      .service h3{
        font-size:18px;
        max-width:none;
      }

      .socials,
      .legal{
        gap:18px;
      }

      .socials a,
      .legal a,
      .copyright{
        font-size:15px;
      }
    }



.what-we-do-section{
  position: relative;
  background: #e9e8dc;
  padding: 90px 70px 110px;
  overflow: hidden;
}

.what-we-do-inner{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  align-items: start;
}

.what-we-do-left h2{
  font-size: 70px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -4px;
  color: #000;
  max-width: 620px;
  margin: 0;
}

.what-we-do-underline{
  margin-top: 22px;
  position: relative;
  width: 390px;
  height: 34px;
}

.what-we-do-underline svg{
  width: 100%;
  height: 100%;
  display: block;
}

.underline-dot{
  position: absolute;
  right: -22px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #ff4d1f;
  border-radius: 50%;
}

.what-we-do-right{
  padding-top: 220px;
  max-width: 760px;
}

.what-we-do-right p{
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -1px;
  color: #000;
}

.what-we-do-strip{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: #b9dff2;
}

@media (max-width: 1200px){
  .what-we-do-left h2{
    font-size: 72px;
  }

  .what-we-do-right{
    padding-top: 180px;
  }

  .what-we-do-right p{
    font-size: 24px;
  }
}

@media (max-width: 900px){
  .what-we-do-section{
    padding: 60px 24px 90px;
  }

  .what-we-do-inner{
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .what-we-do-left h2{
    font-size: 52px;
    letter-spacing: -2px;
  }

  .what-we-do-right{
    padding-top: 0;
  }

  .what-we-do-right p{
    font-size: 20px;
    line-height: 1.5;
  }

  .what-we-do-underline{
    width: 280px;
  }
}


.fivebrands-experience-section{
  background:#b7d9eb;
  padding:76px 72px 100px;
  position:relative;
  overflow:hidden;
}

.fivebrands-experience-inner{
  max-width:1490px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1.62fr) minmax(320px, 0.78fr);
  gap:34px;
  align-items:start;
}

.fivebrands-experience-media{
  position:relative;
  min-height:690px;
}

.fivebrands-main-image-wrap{
  width:100%;
  max-width:980px;
  height:350px;
  overflow:hidden;
  position:relative;
}

.fivebrands-main-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.fivebrands-float-image-wrap{
  position:absolute;
  left:52%;
  bottom:115px;
  transform:translateX(-50%);
  width:48%;
  max-width:490px;
  height:215px;
  overflow:hidden;
  z-index:3;
}

.fivebrands-float-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  
}

.fivebrands-mark{
  position:absolute;
  left:18px;
  bottom:22px;
  width:56px;
  height:56px;
  z-index:4;
}

.fivebrands-mark span{
  position:absolute;
  display:block;
  width:18px;
  height:56px;
  background:#ff5a1f;
  border-radius:2px;
  bottom:0;
}

.fivebrands-mark span:first-child{
  left:0;
  transform:skewY(18deg);
}

.fivebrands-mark span:last-child{
  left:24px;
  transform:skewY(-18deg);
}

.fivebrands-experience-content{
  padding-top:10px;
  max-width:420px;
}

.fivebrands-tag{
  display:inline-block;
  font-size:13px;
  line-height:1;
  font-weight:500;
  letter-spacing:0.3px;
  color:#ff5a1f;
  margin-bottom:34px;
}

.fivebrands-experience-content h2{
  margin:0 0 96px;
  color:#000;
  font-size:40px;
  line-height:0.98;
  font-weight:400;
  letter-spacing:-2.7px;
}

.fivebrands-note{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:62px;
}

.fivebrands-note-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff5a1f;
  flex-shrink:0;
}

.fivebrands-note p{
  margin:0;
  color:#000;
  font-size:20px;
  line-height:1.2;
  font-weight:400;
  margin-top: -4% !important;
}

.fivebrands-note em{
  margin-left:8px;
  color:#ff6b37;
  font-style:italic;
  font-weight:500;
  font-size:0.9rem;
  letter-spacing:0.5px;
}

.fivebrands-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:124px;
  height:36px;
  padding:0 18px;
  border:1.5px solid #ff5a1f;
  border-radius:999px;
  color:#ff5a1f;
  text-decoration:none;
  font-size:12px;
  font-weight:500;
  letter-spacing:0.1px;
  transition:0.25s ease;
}

.fivebrands-btn:hover{
  background:#ff5a1f;
  color:#fff;
}

/* Responsive */
@media (max-width:1200px){
  .fivebrands-experience-section{
    padding:56px 28px 80px;
  }

  .fivebrands-experience-inner{
    grid-template-columns:1fr;
    gap:48px;
  }

  .fivebrands-experience-content{
    max-width:700px;
  }

  .fivebrands-experience-content h2{
    font-size:52px;
    margin-bottom:52px;
  }
}

@media (max-width:768px){
  .fivebrands-experience-section{
    padding:40px 18px 66px;
  }

  .fivebrands-main-image-wrap{
    height:360px;
  }

  .fivebrands-float-image-wrap{
    width:72%;
    height:150px;
    bottom:-18px;
  }

  .fivebrands-experience-content h2{
    font-size:40px;
    letter-spacing:-1.6px;
  }

  .fivebrands-note{
    margin-bottom:36px;
  }

  .fivebrands-note p{
    font-size:20px;
  }

  .fivebrands-mark{
    width:42px;
    height:42px;
    left:8px;
    bottom:0;
  }

  .fivebrands-mark span{
    width:14px;
    height:42px;
  }

  .fivebrands-mark span:last-child{
    left:18px;
  }
}


.fivebrands-corporate-section{
  background:#e9e8dc;
  padding:70px 72px 72px;
  position:relative;
  overflow:hidden;
  margin-top: -5%;

}

.fivebrands-corporate-inner{
  max-width:1500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap:34px;
  align-items:start;
}

.fivebrands-corporate-left{
  max-width:430px;
  padding-top:42px;
}

.fivebrands-corporate-tag{
  display:inline-block;
  font-size:13px;
  line-height:1;
  font-weight:500;
  color:#ff5a1f;
  letter-spacing:.2px;
  margin-bottom:34px;
}

.fivebrands-corporate-left h2{
  margin:0 0 82px;
  font-size:40px;
  line-height:.98;
  font-weight:400;
  letter-spacing:-2.4px;
  color:#000;
}

.fivebrands-corporate-note{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:60px;
}

.fivebrands-corporate-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff5a1f;
  flex-shrink:0;
}

.fivebrands-corporate-note p{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#000;
  font-weight:400;
}

.fivebrands-corporate-note em{
  margin-left:8px;
  color:#ff5a1f;
  font-style:italic;
  font-weight:500;
  font-size:0.9rem;
  letter-spacing:.3px;
}

.fivebrands-corporate-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:126px;
  height:35px;
  padding:0 18px;
  border:1.5px solid #ff5a1f;
  border-radius:999px;
  color:#ff5a1f;
  text-decoration:none;
  font-size:12px;
  font-weight:500;
  transition:.25s ease;
}

.fivebrands-corporate-btn:hover{
  background:#ff5a1f;
  color:#fff;
}

.fivebrands-corporate-right{
  position:relative;
  min-height:770px;
}

.fivebrands-corporate-main-wrap{
  position:relative;
  width:100%;
  max-width:850px;
  margin-left:auto;
  height:400px;
  overflow:hidden;
}

.fivebrands-corporate-main-image{
  width:100%;
  height:80%;
  object-fit:cover;
  display:block;
}

.fivebrands-corporate-small-wrap{
  position:absolute;
  left:0;
  bottom:190px;
  width:45%;
  max-width:490px;
  height:250px;
  overflow:hidden;
  z-index:3;
}

.fivebrands-corporate-small-image{
  width:100%;
  height:80%;
  object-fit:cover;
  display:block;
}

.fivebrands-corporate-mark{
  position:absolute;
  right:78px;
  bottom:180px;
  width:58px;
  height:58px;
  z-index:4;
}

.fivebrands-corporate-mark span{
  position:absolute;
  bottom:0;
  width:18px;
  height:58px;
  background:#ff5a1f;
  border-radius:2px;
}

.fivebrands-corporate-mark span:first-child{
  left:0;
  transform:skewY(0deg);
}

.fivebrands-corporate-mark span:last-child{
  left:24px;
  transform:skewY(8deg);
  transform-origin:bottom center;
}

@media (max-width:1200px){
  .fivebrands-corporate-section{
    padding:56px 28px 70px;
  }

  .fivebrands-corporate-inner{
    grid-template-columns:1fr;
    gap:44px;
  }

  .fivebrands-corporate-left{
    max-width:700px;
    padding-top:0;
  }

  .fivebrands-corporate-left h2{
    margin-bottom:44px;
    font-size:50px;
  }

  .fivebrands-corporate-right{
    min-height:680px;
  }

  .fivebrands-corporate-main-wrap{
    margin-left:0;
  }
}

@media (max-width:768px){
  .fivebrands-corporate-section{
    padding:40px 18px 54px;
  }

  .fivebrands-corporate-left h2{
    font-size:38px;
    letter-spacing:-1.4px;
  }

  .fivebrands-corporate-note{
    margin-bottom:34px;
  }

  .fivebrands-corporate-note p{
    font-size:20px;
  }

  .fivebrands-corporate-right{
    min-height:auto;
  }

  .fivebrands-corporate-main-wrap{
    height:360px;
  }

  .fivebrands-corporate-small-wrap{
    position:relative;
    left:auto;
    bottom:auto;
    width:68%;
    height:170px;
    margin-top:-46px;
  }

  .fivebrands-corporate-mark{
    right:18px;
    bottom:10px;
    width:42px;
    height:42px;
  }

  .fivebrands-corporate-mark span{
    width:14px;
    height:42px;
  }

  .fivebrands-corporate-mark span:last-child{
    left:18px;
  }
}

.fivebrands-commerce-section{
  background:#b7d9eb;
  padding:78px 72px 82px;
  position:relative;
  overflow:hidden;
}

.fivebrands-commerce-inner{
  max-width:1500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(180px, 0.32fr) minmax(320px, 0.58fr) minmax(320px, 0.72fr);
  gap:58px;
  align-items:center;
}

.fivebrands-commerce-left-image{
  align-self:start;
  padding-top:118px;
}

.fivebrands-commerce-img-left{
  width:100%;
  max-width:600px !important;
  height:400px;
  object-fit:cover;
  display:block;
}

.fivebrands-commerce-content{
  max-width:470px;
  padding-top:90px;

}

.fivebrands-commerce-tag{
  display:inline-block;
  font-size:13px;
  line-height:1;
  font-weight:500;
  color:#ff5a1f;
  letter-spacing:.2px;
  margin-bottom:38px;
}

.fivebrands-commerce-content h2{
  margin:0 0 88px;
  color:#000;
  font-size:40px;
  line-height:.98;
  font-weight:400;
  letter-spacing:-2.5px;
}

.fivebrands-commerce-note{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:60px;
}

.fivebrands-commerce-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff5a1f;
  flex-shrink:0;
}

.fivebrands-commerce-note p{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#000;
  font-weight:400;
}

.fivebrands-commerce-note em{
  margin-left:8px;
  color:#ff5a1f;
  font-style:italic;
  font-weight:500;
  font-size:0.9rem;
  letter-spacing:.4px;
}

.fivebrands-commerce-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:126px;
  height:35px;
  padding:0 18px;
  border:1.5px solid #ff5a1f;
  border-radius:999px;
  color:#ff5a1f;
  text-decoration:none;
  font-size:12px;
  font-weight:500;
  transition:.25s ease;
  bottom: 80px;
}

.fivebrands-commerce-btn:hover{
  background:#ff5a1f;
  color:#fff;
}

.fivebrands-commerce-right-image-wrap{
  position:relative;
  justify-self:end;
  width:100%;
  max-width:600px;
}

.fivebrands-commerce-img-right{
  width:100%;
  height:410px;
  object-fit:cover;
  display:block;
}

.fivebrands-commerce-scribble{
  position:absolute;
  top:-28px;
  left:116px;
  display:flex;
  gap:10px;
  z-index:3;
}

.fivebrands-commerce-scribble span{
  width:7px;
  height:62px;
  background:#ff4e1f;
  border-radius:10px;
  transform:rotate(22deg);
  display:block;
}

@media (max-width:1200px){
  .fivebrands-commerce-section{
    padding:56px 28px 70px;
  }

  .fivebrands-commerce-inner{
    grid-template-columns:1fr;
    gap:38px;
  }

  .fivebrands-commerce-left-image{
    padding-top:0;
  }

  .fivebrands-commerce-img-left{
    max-width:260px;
    height:340px;
  }

  .fivebrands-commerce-content{
    max-width:700px;
  }

  .fivebrands-commerce-content h2{
    font-size:50px;
    margin-bottom:44px;
  }

  .fivebrands-commerce-right-image-wrap{
    justify-self:start;
  }

  .fivebrands-commerce-scribble{
    left:70px;
  }
}

@media (max-width:768px){
  .fivebrands-commerce-section{
    padding:40px 18px 54px;
  }

  .fivebrands-commerce-content h2{
    font-size:38px;
    letter-spacing:-1.4px;
  }

  .fivebrands-commerce-note{
    margin-bottom:34px;
  }

  .fivebrands-commerce-note p{
    font-size:20px;
  }

  .fivebrands-commerce-img-left{
    max-width:220px;
    height:280px;
  }

  .fivebrands-commerce-img-right{
    height:280px;
  }

  .fivebrands-commerce-scribble{
    top:-18px;
    left:50px;
    gap:7px;
  }

  .fivebrands-commerce-scribble span{
    width:5px;
    height:40px;
  }
}

.fivebrands-field-section{
  background:#e9e8dc;
  padding:76px 72px 88px;
  position:relative;
  overflow:hidden;
}

.fivebrands-field-inner{
  max-width:1500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1.4fr) minmax(320px, 0.72fr);
  gap:40px;
  align-items:start;
  margin-top: -5%;
}

.fivebrands-field-media{
  position:relative;
  min-height:740px;
}

.fivebrands-field-main-wrap{
  width:100%;
  max-width:930px;
  height:520px;
  margin:105px 0 0 10px;
  overflow:hidden;
  position:relative;
}

.fivebrands-field-main-image{
  width:100%;
  height:60%;
  object-fit:cover;
  display:block;
  margin-left: -30% !important ;
}

.fivebrands-field-dot{
  position:absolute;
  left:355px;
  top:215px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff5a1f;
  z-index:3;
}

.fivebrands-field-mark{
  position:absolute;
  top:92px;
  left:640px;
  width:64px;
  height:64px;
  z-index:4;
}

.fivebrands-field-mark span{
  position:absolute;
  display:block;
  width:8px;
  height:64px;
  background:#ff4f1f;
  border-radius:10px;
  top:0;
}

.fivebrands-field-mark span:nth-child(1){
  left:0;
  transform:rotate(-32deg);
}

.fivebrands-field-mark span:nth-child(2){
  left:28px;
  transform:rotate(32deg);
}

.fivebrands-field-small-wrap{
  position:absolute;
  right:20px;
  bottom:100px;
  width:44%;
  max-width:500px;
  height:210px;
  overflow:hidden;
  z-index:3;
}

.fivebrands-field-small-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.fivebrands-field-content{
  max-width:430px;
  padding-top:108px;
}

.fivebrands-field-tag{
  display:inline-block;
  font-size:13px;
  line-height:1;
  font-weight:500;
  color:#ff5a1f;
  letter-spacing:.2px;
  margin-bottom:38px;
}

.fivebrands-field-content h2{
  margin:0 0 100px;
  color:#000;
  font-size:40px;
  line-height:.98;
  font-weight:400;
  letter-spacing:-2.5px;
}

.fivebrands-field-note{
  margin-bottom:62px;
}

.fivebrands-field-note p{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#000;
  font-weight:400;
}

.fivebrands-field-note em{
  margin-left:10px;
  color:#ff5a1f;
  font-style:italic;
  font-weight:500;
  font-size:1.1em;
  letter-spacing:.4px;
}

.fivebrands-field-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:126px;
  height:35px;
  padding:0 18px;
  border:1.5px solid #ff5a1f;
  border-radius:999px;
  color:#ff5a1f;
  text-decoration:none;
  font-size:12px;
  font-weight:500;
  transition:.25s ease;
}

.fivebrands-field-btn:hover{
  background:#ff5a1f;
  color:#fff;
}

@media (max-width:1200px){
  .fivebrands-field-section{
    padding:56px 28px 70px;
  }

  .fivebrands-field-inner{
    grid-template-columns:1fr;
    gap:48px;
  }

  .fivebrands-field-media{
    min-height:680px;
  }

  .fivebrands-field-main-wrap{
    margin:80px 0 0 40px;
    max-width:700px;
  }

  .fivebrands-field-mark{
    left:560px;
  }

  .fivebrands-field-dot{
    left:280px;
  }

  .fivebrands-field-content{
    padding-top:0;
    max-width:700px;
  }

  .fivebrands-field-content h2{
    font-size:50px;
    margin-bottom:44px;
  }
}

@media (max-width:768px){
  .fivebrands-field-section{
    padding:40px 18px 56px;
  }

  .fivebrands-field-media{
    min-height:auto;
  }

  .fivebrands-field-main-wrap{
    margin:40px 0 0 0;
    max-width:100%;
    height:360px;
  }

  .fivebrands-field-mark{
    top:10px;
    left:58%;
    width:44px;
    height:44px;
  }

  .fivebrands-field-mark span{
    width:6px;
    height:44px;
  }

  .fivebrands-field-mark span:nth-child(2){
    left:18px;
  }

  .fivebrands-field-dot{
    left:32%;
    top:150px;
    width:8px;
    height:8px;
  }

  .fivebrands-field-small-wrap{
    position:relative;
    right:auto;
    bottom:auto;
    width:70%;
    height:150px;
    margin:-34px 0 0 auto;
  }

  .fivebrands-field-content h2{
    font-size:38px;
    letter-spacing:-1.4px;
  }

  .fivebrands-field-note{
    margin-bottom:34px;
  }

  .fivebrands-field-note p{
    font-size:20px;
  }
}

.fivebrands-imagination-section{
  background:#fff;
  padding:82px 72px 90px;
  position:relative;
  overflow:hidden;
  margin-top: -4%;
}

.fivebrands-imagination-inner{
  max-width:1500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap:58px;
  align-items:center;
}

.fivebrands-imagination-content{
  max-width:620px;
  padding-top:40px;
}

.fivebrands-imagination-dot{
  display:block;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff5a1f;
  margin:0 0 88px 205px;
}

.fivebrands-imagination-content h2{
  margin:0 0 42px;
  color:#111325;
  font-size:40px;
  line-height:0.98;
  font-weight:400;
  letter-spacing:-2.4px;
}

.fivebrands-imagination-note{
  display:flex;
  align-items:flex-start;
  gap:34px;
}

.fivebrands-imagination-arrow{
  display:inline-block;
  color:#ff5a1f;
  font-size:72px;
  line-height:0.8;
  font-weight:400;
  transform:rotate(12deg);
  margin-top:-8px;
}

.fivebrands-imagination-note p{
  margin:0;
  color:#111325;
  font-size:22px;
  line-height:1.45;
  font-weight:400;
  max-width:330px;
}



@media (max-width:1200px){
  .fivebrands-imagination-section{
    padding:58px 28px 70px;
  }

  .fivebrands-imagination-inner{
    grid-template-columns:1fr;
    gap:44px;
  }

  .fivebrands-imagination-content{
    max-width:760px;
    padding-top:0;
  }

  .fivebrands-imagination-content h2{
    font-size:50px;
  }

  .fivebrands-imagination-media{
    justify-self:start;
    max-width:100%;
  }
}

@media (max-width:768px){
  .fivebrands-imagination-section{
    padding:40px 18px 54px;
  }

  .fivebrands-imagination-dot{
    margin:0 0 44px 120px;
  }

  .fivebrands-imagination-content h2{
    font-size:38px;
    letter-spacing:-1.4px;
  }

  .fivebrands-imagination-note{
    gap:18px;
  }

  .fivebrands-imagination-arrow{
    font-size:46px;
  }

  .fivebrands-imagination-note p{
    font-size:18px;
    max-width:260px;
  }

  .fivebrands-imagination-image{
    height:340px;
  }
}

.fivebrands-imagination-media{
  width:100%;
  max-width:840px;
  justify-self:end;
  overflow:hidden;
}

.fivebrands-imagination-video{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;
  filter:brightness(1.03);
}


.work-intro-section{
  background: #fff !important;;
  padding:90px 0 40px;

}

.work-intro-container{
  width:min(1280px, 92%);
  margin:0 auto;
}

.work-intro-title{
  margin:0 0 70px;
  font-size: 40px;
  line-height:1.02;
  font-weight:700;
  letter-spacing:-0.05em;
  color:#000;
  max-width:1050px;
  margin-left: 18%;
}

.work-intro-copy-row{
  display:grid;
  grid-template-columns:60px minmax(0, 860px);
  gap:22px;
  justify-content:center;
  align-items:flex-start;
  margin-bottom:95px;
   margin-left: 20%;
}

.work-intro-icon{
  width:34px;
  height:34px;
  color:#f05a28;
  margin-top:7px;
  margin-left: 80%;
}

.work-intro-icon svg{
  width:100%;
  height:100%;
  display:block;
  margin-left: 80%;
}

.work-intro-text{
  margin:0;
  font-size: 18px;
  line-height:1.24;
  font-weight:400;
  letter-spacing:-0.035em;
  color:#000;
  max-width:860px;
   padding:0 70px; 
}

.work-intro-divider-wrap{
  width:100%;
}

.work-intro-label{
  display:block;
  margin-bottom:10px;
  font-size:15px;
  line-height:1;
  font-weight:500;
  letter-spacing:0.01em;
  color:#f05a28;
  margin-top: 1%;
}

.work-intro-divider{
  width:100%;
  height:1px;
  background:#f05a28;
}

@media (max-width: 900px){
  .work-intro-section{
    padding:70px 0 32px;
  }

  .work-intro-title{
    margin-bottom:50px;
  }

  .work-intro-copy-row{
    grid-template-columns:34px 1fr;
    gap:18px;
    margin-bottom:70px;
  }

  .work-intro-icon{
    width:26px;
    height:26px;
    margin-top:5px;
  }

  .work-intro-label{
    font-size:14px;
  }
}

@media (max-width: 600px){
  .work-intro-title{
    font-size:clamp(34px, 9vw, 54px);
    line-height:1.05;
    margin-bottom:38px;
  }

  .work-intro-copy-row{
    grid-template-columns:1fr;
    gap:14px;
    margin-bottom:50px;
  }

  .work-intro-icon{
    margin-top:0;
  }

  .work-intro-text{
    font-size:clamp(20px, 5vw, 26px);
    line-height:1.28;
  }
}

.work-showcase{
  background:#e8e6d9;
  padding:28px 0 80px;
}

.work-showcase-grid{
  width:calc(100% - 72px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:28px;
}

.work-item{
  position:relative;
  display:block;
  overflow:hidden;
  background:#d9d9d9;
  text-decoration:none;
}

.work-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease, filter .4s ease;
}

.work-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(241, 90, 36, 0.88);
  opacity:0;
  transition:opacity .35s ease;
  z-index:1;
}

.work-item-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:28px 26px 26px;
  color:#000;
  z-index:2;
  opacity:0;
  transform:translateY(30px);
  transition:opacity .35s ease, transform .35s ease;
}

.work-item:hover::after{
  opacity:1;
}

.work-item:hover .work-item-overlay{
  opacity:1;
  transform:translateY(0);
}

.work-item:hover img{
  transform:scale(1.05);
}

.work-item-tag{
  display:block;
  margin-bottom:12px;
  font-size:12px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:500;
}

.work-item-title{
  margin:0 0 14px;
  font-size:42px;
  line-height:.98;
  font-weight:400;
  letter-spacing:-0.04em;
}

.work-item-text{
  margin:0;
  max-width:85%;
  font-size:17px;
  line-height:1.35;
  font-weight:400;
}

/* row 1 */
.work-item-a{
  grid-column:1 / span 7;
  height:400px;
}

.work-item-b{
  grid-column:8 / span 5;
  height:400px;
}

/* row 2 */
/* number 3 reduced */
.work-item-c{
  grid-column:1 / span 5;
  height:400x;
}

/* number 4 increased */
.work-item-d{
  grid-column:6 / span 7;
  height:400px;
}

/* row 3 */
.work-item-e{
  grid-column:1 / span 7;
  height:400px;
}

.work-item-f{
  grid-column:8 / span 5;
  height:400px;
}

@media (max-width: 1200px){
  .work-showcase-grid{
    width:calc(100% - 40px);
    gap:20px;
  }

  .work-item-a,
  .work-item-b,
  .work-item-c,
  .work-item-d,
  .work-item-e,
  .work-item-f{
    height:380px;
  }

  .work-item-title{
    font-size:32px;
  }
}

@media (max-width: 768px){
  .work-showcase-grid{
    width:calc(100% - 24px);
    grid-template-columns:1fr;
    gap:16px;
  }

  .work-item-a,
  .work-item-b,
  .work-item-c,
  .work-item-d,
  .work-item-e,
  .work-item-f{
    grid-column:auto;
    height:300px;
  }

  .work-item-overlay{
    padding:20px 18px;
  }

  .work-item-title{
    font-size:24px;
  }

  .work-item-text{
    font-size:14px;
    max-width:100%;
  }
}

.section-line-wrap{
  width:calc(100% - 72px);
  margin:0 auto 28px;
  margin-top: 2%;
}

.section-line-label{
  display:block;
  font-size:12px;
  line-height:1;
  font-weight:500;
  color:#f15a24;
  margin-bottom:8px;
  text-transform:uppercase;
}

.section-line{
  width:100%;
  height:1px;
  background:#f15a24;
}


.portfolio-display{
  background:#e8e6d9;
  padding:28px 0 80px;
}

.portfolio-display-grid{
  width:calc(100% - 72px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:28px;
}

.portfolio-card{
  position:relative;
  display:block;
  overflow:hidden;
  background:#d9d9d9;
  text-decoration:none;
}

.portfolio-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease, filter .4s ease;
}

.portfolio-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(241, 90, 36, 0.88);
  opacity:0;
  transition:opacity .35s ease;
  z-index:1;
}

.portfolio-card-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:28px 26px 26px;
  color:#000;
  z-index:2;
  opacity:0;
  transform:translateY(30px);
  transition:opacity .35s ease, transform .35s ease;
}

.portfolio-card:hover::after{
  opacity:1;
}

.portfolio-card:hover .portfolio-card-overlay{
  opacity:1;
  transform:translateY(0);
}

.portfolio-card:hover img{
  transform:scale(1.05);
}

.portfolio-card-tag{
  display:block;
  margin-bottom:12px;
  font-size:12px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:500;
  color: #fff;
}

.portfolio-card-heading{
  margin:0 0 14px;
  font-size:42px;
  line-height:.98;
  font-weight:400;
  letter-spacing:-0.04em;
    color: #fff;
  
}

.portfolio-card-copy{
  margin:0;
  max-width:85%;
  font-size:17px;
  line-height:1.35;
  font-weight:400;
    color: #fff;
}

/* row 1 */
.portfolio-card-one{
  grid-column:1 / span 5;
  height:400px;
}

.portfolio-card-two{
  grid-column:6 / span 7;
  height:400px;
}

/* row 2 */
.portfolio-card-three{
  grid-column:1 / span 7;
  height:400px;
}

.portfolio-card-four{
  grid-column:8 / span 5;
  height:400px;
}

/* row 3 */
.portfolio-card-five{
  grid-column:1 / span 5;
  height:465px;
}

.portfolio-card-six{
  grid-column:6 / span 7;
  height:465px;
}

.portfolio-divider-wrap{
  width:calc(100% - 72px);
  margin:28px auto 0;
}

.portfolio-divider-line{
  width:100%;
  height:1px;
  background:#f15a24;
}

.portfolio-divider-label{
  display:block;
  margin-top:8px;
  font-size:12px;
  line-height:1;
  font-weight:500;
  color:#f15a24;
  text-transform:uppercase;
}

@media (max-width:1200px){
  .portfolio-display-grid{
    width:calc(100% - 40px);
    gap:20px;
  }

  .portfolio-card-one,
  .portfolio-card-two,
  .portfolio-card-three,
  .portfolio-card-four,
  .portfolio-card-five,
  .portfolio-card-six{
    height:380px;
  }

  .portfolio-card-heading{
    font-size:32px;
  }

  .portfolio-divider-wrap{
    width:calc(100% - 40px);
  }
}

@media (max-width:768px){
  .portfolio-display-grid{
    width:calc(100% - 24px);
    grid-template-columns:1fr;
    gap:16px;
  }

  .portfolio-card-one,
  .portfolio-card-two,
  .portfolio-card-three,
  .portfolio-card-four,
  .portfolio-card-five,
  .portfolio-card-six{
    grid-column:auto;
    height:300px;
  }

  .portfolio-card-overlay{
    padding:20px 18px;
  }

  .portfolio-card-heading{
    font-size:24px;
  }

  .portfolio-card-copy{
    font-size:14px;
    max-width:100%;
  }

  .portfolio-divider-wrap{
    width:calc(100% - 24px);
    margin:20px auto 0;
  }
}

.hero{
  background:#f3efe3;
  padding:20px 20px 40px;
}

.hero-contact-heading{
  max-width:1200px;
  margin:40px auto 0;
  text-align:center;
}

.hero-contact-title{
  margin:0;
  font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
  font-size:clamp(48px, 8vw, 110px);
  line-height:1;
  font-weight:900;
  text-transform:lowercase;
  letter-spacing:-0.03em;
}

.hero-contact-dark{
  color:#5b0054;
}

.hero-contact-orange{
  color:#ff6a2f;
  margin-left:10px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-icon i {
  font-size: 18px;
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #c2185b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.socials a:hover {
  background: #c2185b;
  color: #ffffff;
  transform: translateY(-3px);
}

.legal a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.legal a i {
  font-size: 15px;
  opacity: 0.9;
}

.footer-wrap{
      width:100%;
        background:purple;
    }

    .footer-main{
      max-width:1280px;
      margin:0 auto;
    }

    /* top subscribe bar */
    .footer-top{
      display:grid;
      grid-template-columns: 160px 1.2fr 1fr;
      align-items:center;
      gap:24px;
      padding:32px 48px;
      border-bottom:1px solid #e6e6e6;
    }

    .subscribe-title{
      font-size:28px;
      font-weight:700;
      color:#fff;
    }

    .subscribe-text{
      font-size:11px;
      line-height:1.7;
      color:#fff;
      max-width:420px;
    }

    .subscribe-form{
      display:flex;
      align-items:center;
      width:100%;
      max-width:470px;
      margin-left:auto;
      border-bottom:1px solid #d8d8d8;
      padding-bottom:10px;
    }

    .subscribe-form input{
      width:100%;
      border:none;
      outline:none;
      font-size:16px;
      color:#555;
      background:transparent;
    }

    .subscribe-form input::placeholder{
      color:#b0b0b0;
    }

    .send-btn{
      width:22px;
      height:22px;
      background:#ff4b1f;
      border:none;
      cursor:pointer;
      position:relative;
      flex-shrink:0;
    }

    .send-btn::before{
      content:"";
      position:absolute;
      left:7px;
      top:5px;
      width:0;
      height:0;
      border-top:6px solid transparent;
      border-bottom:6px solid transparent;
      border-left:8px solid #fff;
    }

    /* middle footer */
.footer-wrap{
  width:100%;
  background:purple;
}

.footer-main{
  width:100%;
  padding:0 60px;
}

.footer-logo{
  width:140px;
  height:auto;
  margin-bottom:18px;
}

.footer-content{
  width:100%;
  max-width:1600px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr 1.4fr;
  gap:60px;
  padding:40px 0;
}

.brand-line{
  width:110px;
  height:2px;
  background:#fff;
  margin-bottom:18px;
}

.brand-box p{
  font-size:17px;
  line-height:1.7;
  color:#fff;
  max-width:220px;
  margin-bottom:18px;
}

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

.socials a{
  width:22px;
  height:22px;
  border-radius:50%;
  border:1px solid #cfcfcf;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:11px;
  color:purple;
  background:#fff;
  transition:0.3s ease;
}

.socials a:first-child{
  background:#ff4b1f;
  color:#fff;
  border-color:#ff4b1f;
}

.socials a:hover{
  background:#00aeef;
  color:#fff;
  transform:translateY(-3px);
}

.footer-col h4{
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:18px;
}

.footer-menu{
  list-style:none;
  padding-left:0;
}

.footer-menu li{
  margin-bottom:12px;
  padding-left:0;
}

.footer-menu li::before{
  display:none;
}

.footer-menu a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  transition:0.3s ease;
}

.footer-menu a:hover{
  color:#00aeef;
  padding-left:6px;
}

.contact-box .footer-menu li a{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.contact-box .footer-menu strong{
  min-width:60px;
}

.map-box{
  width:700px;
  height:500px;
  border-radius:10px;
  overflow:hidden;
  margin-left: -5% !important ;

}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.footer-note-wrap{
  padding:0 48px 22px;
}

.footer-note{
  border:1px solid #fff;
  border-radius:4px;
  text-align:center;
  padding:10px 14px;
  font-size:18px;
  color:#fff;
  font-weight:500;
  max-width:610px;
  margin:0 auto;
}

.footer-bottom{
  background:#008fd1;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:14px 48px;
  font-size:11px;
  flex-wrap:wrap;
}

.footer-bottom-left{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.footer-bottom a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
}

.footer-bottom-right{
  color:#d8d8d8;
  font-size:15px;
}

@media (max-width:1100px){
  .footer-content{
    grid-template-columns:1fr 1fr 1fr;
  }
}

@media (max-width:768px){
  .footer-main{
    padding:0 20px;
  }

  .footer-content{
    grid-template-columns:1fr;
  }

  .footer-note-wrap,
  .footer-bottom{
    padding-left:20px;
    padding-right:20px;
  }

  .footer-note{
    font-size:15px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}




.menu span {
  height: 4px;
  background: #000;
  width: 100%;
}

.intro {
  background: #fff;
  min-height: 420px;
  padding: 80px 20%;
}

.intro p {
  font-size: 18px;
  line-height: 1.5;
  color: #111111;
}

.intro h1 {
  font-size: 50px;
  font-weight: 400;
}

.create-section {
  background: #ffff;
  padding: 0px 12% 130px;
}

.create-section h2 {
  text-align: center;
  font-size: 45px;
  font-weight: 400;
  margin-top: -20%;
  color: #111111;
}

.creative-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left:-12%;
  margin-top: 5%;
}

.image-wrap {
  position: relative;
  width: 80%;
  margin: auto;
}

.image-wrap > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.small-card {
  position: absolute;
  right: -90px;
  bottom: 70px;
  width: 220px;
  height: 200px;
  background: white;
}

.small-card img {
  width: 100%;
    height: 200px;
  display: block;
}

.map-section {
  background: #bfe7f4;
  min-height: 720px;
  padding: 90px 70px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}

.map-text h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 50px;
  color: #111111;
}

.map-text p {
  font-size: 17px;
  line-height: 1.35;
  max-width: 640px;
  color: #111111;
}

.map-box {
  position: relative;
  margin-left: 15%;
}

.map-box img {
  width: 100%;
  opacity: 0.55;
}

.mark {
  position: absolute;
  font-size: 90px;
  color: #1400ff;
  font-weight: 900;
  font-style: italic;
}

/* =========================================
   LEADERSHIP SECTION
========================================= */

.leadership-section,
.leadership-section * {
  box-sizing: border-box;
}

.leadership-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 90px 6%;
  background: #fff;
  color: #111;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 55px;

  overflow: hidden;

}

/*
Allows the cards inside .leadership-grid
to use the main .leadership-section grid.
*/
.leadership-grid {
  display: contents;
}

/* =========================================
   REQUIRED CARD ORDER
========================================= */

/* Top row */
.leader-1 {
  grid-column: 1;
  grid-row: 1;
}

.leader-2 {
  grid-column: 2;
  grid-row: 1;
}

.leader-8 {
  grid-column: 3;
  grid-row: 1;
}

/* Title between the two rows */
.leadership-title {
  position: static;
  grid-column: 1 / -1;
  grid-row: 2;
 margin-top: 8% !important;
 margin-bottom: 3% !important;
  margin: 15px 0;
  transform: none;
  text-align: center;
  color: #111;
}

.leadership-title span {
  display: block;
  font-size: clamp(35px, 4vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -4px;
  text-transform: uppercase;
}

/* Bottom row */
.leader-9 {
  grid-column: 1;
  grid-row: 3;
}

.leader-10 {
  grid-column: 2;
  grid-row: 3;
}

.leader-5 {
  grid-column: 3;
  grid-row: 3;
}

/* =========================================
   LEADER CARD
========================================= */

.leader-card,
.leader-1,
.leader-2,
.leader-5,
.leader-8,
.leader-9,
.leader-10 {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;

  width: 100%;
  max-width: none;
  height: 320px;

  margin: 0 !important;
  transform: none !important;

  overflow: visible;
  border-radius: 20px;
  background: #dedede33;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 170px;   /* creates space below the image */
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.leader-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

/* Remove any old generated panel */
.leader-card::after {
  content: none !important;
  display: none !important;
}

/* Main image */
.leader-card > img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  background: #ffffff7b;
  border-radius: 20px;

  transition: transform 0.5s ease;
}

.leader-card:hover > img {
  transform: scale(1.04);
}

/* =========================================
   WHITE INFORMATION PANEL
========================================= */

.leader-card {
  position: relative;
  overflow: visible;
}

.leader-info {
  position: absolute;
  top: 52%;
  left: 8%;
  right: 8%;
  bottom: auto;

  margin-top: 80px; /* moves the white card down */

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 20px !important;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  z-index: 10;
}

.leader-text {
  min-width: 0;
}

.leader-info h3 {
  position: static !important;

  margin: 0 0 8px !important;

  color: #111 !important;
  font-size: 17px !important;
  font-weight: 600;
  line-height: 1.2;

  opacity: 1 !important;
  visibility: visible !important;
}

.leader-info p {
  position: static !important;

  margin: 0 !important;

  color: #555 !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.4;

  opacity: 1 !important;
  visibility: visible !important;
}

/* =========================================
   CONTACT ICONS
========================================= */

.leader-contact {
  position: static !important;

  display: flex;
  align-items: center;
  gap: 8px;

  flex-shrink: 0;
}

.leader-contact a {
  width: 28px !important;
  height: 28px !important;

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

  color: #111;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 9px;

  text-decoration: none;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.leader-contact a:hover {
  color: #fff;
  background: #111;
  border-color: #111;
  transform: translateY(-3px);
}

.leader-contact svg {
  width: 14px !important;
  height: 14px !important;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
  .leadership-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 75px 40px;
  }

  .leader-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .leader-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .leader-8 {
    grid-column: 1;
    grid-row: 2;
  }

  .leadership-title {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .leader-9 {
    grid-column: 1;
    grid-row: 4;
  }

  .leader-10 {
    grid-column: 2;
    grid-row: 4;
  }

  .leader-5 {
    grid-column: 1;
    grid-row: 5;
  }

  .leader-card {
    height: 500px;
  }
}

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

@media (max-width: 650px) {
  .leadership-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    row-gap: 25px;
  }

  .leader-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .leader-2 {
    grid-column: 1;
    grid-row: 2;
  }

  .leader-8 {
    grid-column: 1;
    grid-row: 3;
  }

  .leadership-title {
    grid-column: 1;
    grid-row: 4;
    margin: 25px 0;
  }

  .leader-9 {
    grid-column: 1;
    grid-row: 5;
  }

  .leader-10 {
    grid-column: 1;
    grid-row: 6;
  }

  .leader-5 {
    grid-column: 1;
    grid-row: 7;
  }

  .leadership-title span {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .leader-card {
    height: 480px;
  }

  .leader-info {
    left: 15px;
    right: 15px;
    bottom: 15px;

    min-height: 150px;
    padding: 18px;

    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .leader-info h3 {
    font-size: 21px;
  }

  .leader-info p {
    font-size: 14px !important;
  }

  .leader-contact {
    width: 100%;
  }

  .leader-contact a {
    width: 36px;
    height: 36px;
  }
}

.leader-info {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  bottom: 28px;

  min-height: 155px;
  padding: 24px 78px 24px 28px;

  display: block;

  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.leader-info h3 {
  position: static !important;
  margin: 0 0 10px !important;
  color: #111 !important;
  font-size: 24px;
  line-height: 1.2;
}

.leader-info p {
  position: static !important;
  margin: 0 !important;
  color: #555 !important;
  font-size: 15px !important;
  line-height: 1.45;
}

.leader-contact {
  position: absolute !important;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leader-contact a {
  width: 38px;
  height: 38px;

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

  color: #111;
  background: white;
  border: 1px solid #aaa;
  border-radius: 9px;
  text-decoration: none;
}

.leader-contact a:hover {
  color: white;
  background: #111;
  border-color: #111;
}



/*who we are section*/

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-orange-design {
  background: linear-gradient(90deg, #f47a00 0%, #ff8a00 45%, #f26d00 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.19) 1px, transparent 1px);
  background-size: 95px 95px;
  opacity: 0.45;
}

.hero-person-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 0.80;
  pointer-events: none;
  margin-top: 1%;
  transform: translateY(60px);
}

.hero-text-left {
  position: absolute;
  left: 45px;
  top: 22%;
  z-index: 3;
}

.hero-text-left h1 {
  margin: 0;
  font-size: clamp(70px, 9vw, 145px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -5px;
  text-transform: uppercase;
  margin-top: 20%;
}

.hero-tags {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-text-right {
  position: absolute;
  right: 55px;
  top: 45%;
  transform: translateY(-50%);
  max-width: 400px;
  z-index: 3;
  margin-top: 15%;
}

.hero-text-right p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-small-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  color: #111111;
  padding: 15px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-small-btn span {
  width: 26px;
  height: 26px;
  background: #d8f13d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
}

.hero-bottom-strip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 76px;
  padding: 0 45px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.hero-bottom-strip span {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.topbar {
  position: relative;
  z-index: 10;
}

.partner-slider {
  overflow: hidden;
  padding: 0;
}

.partner-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnerSlide 25s linear infinite;
}

.partner-logo {
  width: 210px;
  height: 150px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
}

.partner-logo img {
  max-width: 240px;          /* increased logo width */
  max-height: 200px;          /* increased logo height */
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  background: #ffffff;

}

.partner-slider:hover .partner-track {
  animation-play-state: paused;
}

@keyframes partnerSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.footer-map-box {
  flex: 0 0 420px;
  max-width: 560px !important;
  width: 100%;
  height: 200px;
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.footer-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .footer-map-box {
    flex: 0 0 100%;
    max-width: 100%;
    height: 250px;
    margin-left: 0;
  }
}


.leader-info {
  min-height: 125px !important;
  padding: 18px 70px 18px 24px !important;
}

.leader-info h3 {
  margin-bottom: 6px !important;
  font-size: 23px;
}

.leader-info p {
  font-size: 14px !important;
  line-height: 1.35;
}

.leader-contact {
  gap: 6px;
}

.leader-contact a {
  width: 34px;
  height: 34px;
}

/* =========================================
   STAGGERED CARD PATTERN
========================================= */

/* Top row */
.leader-1 {
  top: 30px !important;
}

.leader-2 {
  top: -45px !important; /* moves Carol up */
}

.leader-8 {
  top: 30px !important; /* moves Antonetah down */
}

/* Bottom row */
.leader-9 {
  top: 35px !important;
}

.leader-10 {
  top: -25px !important;
}

.leader-5 {
  top: 45px !important;
}


/* Give space for leadership cards extending downward */
.leadership-section {
  position: relative;
  overflow: visible !important;
  padding-bottom: 180px !important;
}

/* Restore work section */
.work {
  display: block !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;

  width: 100%;
  min-height: 600px;
  padding: 100px 6%;
  margin: 0;

  background: #bfe7f4;
  color: #111;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: hidden;
  z-index: 2;
}

.work h2 {
  margin: 0 0 60px;
  font-size: clamp(42px, 5vw, 75px);
  font-weight: 400;
  line-height: 1.05;
}

.work-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.work-row img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
}

.partners-section {
  width: 100%;
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.partners-heading {
  margin-bottom: 50px;
  padding: 0 6%;
  text-align: center;
}

.partners-heading span {
  display: block;
  margin-bottom: 10px;
  color: #8d008d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.partners-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(35px, 4vw, 60px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  transition: transform 0.7s ease;
  will-change: transform;
}

.partner-logo {
  width: 230px;
  height: 135px;
  padding: 25px;
  flex-shrink: 0;

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

  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .partner-logo {
    width: 160px;
    height: 100px;
    padding: 15px;
  }

  .partners-track {
    gap: 18px;
  }
}

/* =====================================================
   UNIFIED MOBILE TOPBAR AND MENU
===================================================== */

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

  body {
    padding-top: 78px;
  }

  body .topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

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

    width: 100% !important;
    height: 78px !important;
    min-height: 78px !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 8px 22px !important;

    transform: none !important;

    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: none !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);

    overflow: visible !important;
    z-index: 999999 !important;
  }

  body .topbar .logo {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0;

    margin: 0 !important;
    padding: 0 !important;
  }

  body .topbar .logo-img {
    display: block !important;

    width: auto !important;
    height: 74px !important;
    max-width: 120px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
  }

  /* Hamburger button */
  body .topbar .menu-btn {
    position: relative !important;
    z-index: 1000001 !important;

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

    width: 48px !important;
    height: 48px !important;

    margin: 0 0 0 auto !important;
    padding: 8px !important;

    gap: 6px;

    border: none !important;
    border-radius: 8px;
    outline: none !important;

    background: transparent !important;
    color: #c55a00 !important;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Same hamburger colour on every page */
  body .topbar .menu-btn span {
    display: block !important;

    width: 30px !important;
    height: 3px !important;

    margin: 0 !important;

    background-color: #c55a00 !important;
    border-radius: 20px;

    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

  body .topbar .menu-btn:hover span {
    background-color: #9f4800 !important;
  }

  /* Hamburger changes into X */
  body .topbar .menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  body .topbar .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  body .topbar .menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Dropdown menu */
  body .topbar .nav {
    position: fixed !important;
    top: 78px !important;
    left: 14px !important;
    right: 14px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;

    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - 95px);

    margin: 0 !important;
    padding: 16px 20px 22px !important;

    gap: 0 !important;

    overflow-x: hidden;
    overflow-y: auto;

    background: #ffffff !important;
    border-radius: 0 0 14px 14px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform: translateY(-18px) !important;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;

    z-index: 1000000 !important;
  }

  body .topbar .nav.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;

    transform: translateY(0) !important;
  }

  body .topbar .nav a {
    position: relative;

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

    width: 100% !important;
    min-height: 56px;

    margin: 0 !important;
    padding: 15px 18px !important;

    color: #111111 !important;
    background: transparent !important;

    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.4;
    text-align: center !important;
    text-decoration: none !important;

    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14) !important;
    border-radius: 0 !important;

    transition:
      color 0.25s ease,
      background-color 0.25s ease;
  }

  body .topbar .nav a:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.14) !important;
  }

  body .topbar .nav a:hover,
  body .topbar .nav a:focus-visible,
  body .topbar .nav a.active {
    color: #c55a00 !important;
    background-color: #f6f6f6 !important;
    outline: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    margin-top: 0 !important;
  }
}


/* =====================================================
   SMALL MOBILE SCREENS
===================================================== */

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

  body {
    padding-top: 74px;
  }

  body .topbar {
    height: 74px !important;
    min-height: 74px !important;
    padding: 7px 18px !important;
  }

  body .topbar .logo-img {
    height: 68px !important;
  }

  body .topbar .menu-btn {
    width: 44px !important;
    height: 44px !important;
  }

  body .topbar .menu-btn span {
    width: 29px !important;
  }

  body .topbar .nav {
    top: 74px !important;
    left: 10px !important;
    right: 10px !important;

    padding: 14px 16px 20px !important;
  }

  body .topbar .nav a {
    min-height: 54px;
    padding: 13px 12px !important;
    font-size: 16px !important;
  }
}