:root{
  --blue:#0759c9;
  --deep:#031b4e;
  --green:#079447;
  --orange:#f59d17;
  --ink:#101828;
  --muted:#5d6675;
  --line:#e5e9f0;
  --soft:#f7faff;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  overflow-x:hidden;
}

.topbar{
  height:34px;
  background:#041d50;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 6%;
  font-size:13px;
}

.topbar a{
  color:#fff;
  text-decoration:none;
}

.nav{
  min-height:74px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:8px 5%;
  gap:22px;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 2px 15px #0001;
}

.brand{
  display:flex;
  align-items:center;
  gap:9px;
  text-decoration:none;
  color:#0b3b91;
  font-weight:800;
  min-width:235px;
}

.brand img{
  width:62px;
  height:48px;
  object-fit:contain;
  object-position:center;
  border-radius:5px;
  display:block;
}

.brand span{
  font-size:16px;
  line-height:1.1;
}

.brand small{
  font-size:9px;
  letter-spacing:1.4px;
}

.links{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:center;
  flex:1;
}

.links a{
  font-size:12px;
  font-weight:800;
  color:#151b25;
  text-decoration:none;
  white-space:nowrap;
}

.links a:hover{
  color:var(--blue);
}

.btn{
  display:inline-block;
  padding:14px 23px;
  background:var(--blue);
  color:#fff;
  text-decoration:none;
  border-radius:7px;
  font-weight:800;
  box-shadow:0 8px 20px #0759c933;
}

.btn.small{
  padding:11px 15px;
  font-size:12px;
  white-space:nowrap;
}

.btn.outline{
  background:transparent;
  border:1px solid #ffffff99;
  box-shadow:none;
  margin-left:8px;
}

.menu{
  display:none;
  background:none;
  border:0;
  font-size:26px;
  cursor:pointer;
}


/* HERO */

.hero{
  min-height:520px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;

  /*
    SRJ OFFICE PHOTO AS HERO BACKGROUND
    Left side stays blue for text; office image blends in
    naturally on the right side instead of appearing as a
    separate card/image.
  */
  background-image:
    linear-gradient(
      115deg,
      rgba(41,74,124,1) 0%,
      rgba(143,179,218,.82) 50%,
      rgba(220,234,250,.34) 100%
    ),
    url("srj-office.jpg");
  background-size:cover, 52% 100%;
  background-position:center, right center;
  background-repeat:no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,26,72,.58),
      rgba(0,107,217,.08) 58%,
      rgba(0,26,72,.06) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  margin-left:8%;
  max-width:720px;
  padding:50px 0;
}

.pill{
  display:inline-block;
  border:1px solid #ffffff77;
  padding:9px 14px;
  border-radius:20px;
  font-size:12px;
  letter-spacing:2px;
}

.hero h1{
  font-size:50px;
  line-height:1.06;
  margin:20px 0 14px;
}

.hero h1 em{
  font-style:normal;
  color:#bfe3ff;
}

.hero p{
  font-size:18px;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:4px;
}


/* SECTIONS */

.section{
  padding:70px 7%;
}

.soft{
  background:var(--soft);
}

.section-title span{
  color:var(--blue);
  font-size:13px;
  font-weight:800;
  letter-spacing:1.5px;
}

.section-title h2{
  font-size:36px;
  margin:10px 0 18px;
}

.section-title.center{
  text-align:center;
}

.section-title p{
  color:var(--muted);
}


/* ABOUT */

.about-intro{
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:55px;
  align-items:center;
}

.about-intro p{
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
}

.company-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.stat{
  border:1px solid var(--line);
  border-radius:12px;
  padding:22px;
  background:#fff;
  box-shadow:0 8px 25px #102a5c0b;
}

.stat strong{
  display:block;
  color:var(--blue);
  font-size:30px;
}

.stat span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:6px;
  line-height:1.4;
}


/* DIRECTOR */

.director-box{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:45px;
  align-items:center;
  margin:50px 0;
  padding:26px;
  background:linear-gradient(135deg,#f5f9ff,#fff);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 12px 35px #102a5c0b;
}

.director-photo{
  height:330px;
  border-radius:14px;
  overflow:hidden;
  background:#eee;
}

.director-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 34%;
  display:block;
}

.mini-label{
  display:inline-block;
  color:var(--blue);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.5px;
}

.director-copy h2{
  font-size:34px;
  margin:10px 0 6px;
}

.director-copy h3{
  font-size:24px;
  margin:0 0 18px;
  color:var(--blue);
}

.director-copy p{
  color:var(--muted);
  line-height:1.8;
}


/* CARDS */

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.cards article,
.service-grid article{
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  padding:25px;
  box-shadow:0 8px 25px #102a5c0b;
}

.cards b{
  font-size:18px;
}

.cards p,
.service-grid p{
  color:var(--muted);
  line-height:1.6;
}


/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-top:38px;
}

.service-grid article{
  text-align:center;
}

.ico{
  font-size:35px;
  margin-bottom:12px;
}

.service-grid h3{
  font-size:17px;
}


/* BANKING */

.banking-section{
  background:#fff;
}

.banking-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:45px;
  align-items:start;
  margin-top:42px;
}

.banking-copy h3,
.portfolio h3{
  font-size:26px;
  margin:0 0 15px;
}

.banking-copy>p{
  color:var(--muted);
  line-height:1.8;
}

.experience-title{
  display:inline-flex;
  flex-direction:column;
  margin:18px 0;
  padding:16px 20px;
  border-left:4px solid var(--blue);
  background:#f5f9ff;
}

.experience-title strong{
  font-size:28px;
  color:var(--blue);
}

.experience-title span{
  font-size:11px;
  font-weight:800;
  letter-spacing:1px;
  margin-top:4px;
}

.strength-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:25px;
}

.strength-grid div{
  border:1px solid var(--line);
  border-radius:10px;
  padding:17px;
  background:#fff;
}

.strength-grid b{
  display:block;
  font-size:14px;
  margin-bottom:6px;
}

.strength-grid span{
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}


/* PORTFOLIO */

.portfolio{
  background:#f7faff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-top:22px;
}

.portfolio-card{
  min-height:125px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:12px;
  text-align:center;
}

.portfolio-card img{
  width:130px;
  height:55px;
  object-fit:contain;
  display:block;
}

.portfolio-card strong{
  font-size:14px;
  color:#172033;
}

.portfolio-note{
  font-size:11px;
  color:var(--muted);
  margin-top:18px;
  line-height:1.5;
}


/* WORK HOURS */

.work-hours{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:20px;
  margin-top:35px;
}

.work-hours>div{
  background:#031b4e;
  color:#fff;
  border-radius:12px;
  padding:25px;
}

.work-hours span{
  display:block;
  font-size:11px;
  letter-spacing:1.3px;
  opacity:.75;
  font-weight:800;
}

.work-hours strong,
.work-hours b{
  display:block;
  margin-top:8px;
}

.work-hours b{
  font-size:22px;
}

.work-hours p{
  line-height:1.6;
  margin:10px 0 0;
  color:#dce8ff;
}


/* CAREER */

.career-banner{
  padding:45px 7%;
  background:linear-gradient(90deg,#0759c9,#063b91);
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.career-banner span{
  font-size:12px;
  letter-spacing:1.5px;
  font-weight:800;
}

.career-banner h2{
  font-size:32px;
  margin:8px 0;
}

.career-banner p{
  margin:0;
  color:#dce8ff;
}

.career-banner .btn{
  background:#fff;
  color:var(--blue);
  box-shadow:none;
}


/* GALLERY */

.tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin:32px 0;
}

.tabs button{
  border:1px solid #cbd5e1;
  background:#fff;
  padding:11px 17px;
  border-radius:20px;
  cursor:pointer;
  font-weight:700;
}

.tabs button.active{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
}

.gallery-panel{
  display:none;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.gallery-panel.show{
  display:grid;
}

.media-card{
  margin:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 6px 20px #0000000c;
}

.media-card img,
.media-card video{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  background:#06183b;
}

.media-card figcaption{
  padding:13px;
  font-weight:700;
  font-size:14px;
}

.empty{
  grid-column:1/-1;
  text-align:center;
  padding:50px;
  color:var(--muted);
  border:1px dashed #b9c3d2;
  border-radius:10px;
}


/* CONTACT */

.contact{
  background:#0754bb;
  color:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:38px 7%;
  gap:20px;
}

.contact div{
  border-right:1px solid #ffffff33;
  padding:0 25px;
}

.contact div:last-child{
  border:0;
}

.contact span{
  display:block;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  opacity:.85;
  margin-bottom:10px;
}

.contact a,
.contact p{
  color:#fff;
  text-decoration:none;
  margin:0;
  line-height:1.6;
}


/* FOOTER */

footer{
  background:#03163d;
  color:#fff;
  text-align:center;
  padding:18px;
  font-size:12px;
}

footer a{
  color:#9fc8ff;
  margin-left:15px;
}


/* TABLET */

@media(max-width:1100px){

  .links{
    gap:12px;
  }

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

  .nav{
    gap:12px;
  }

  .brand{
    min-width:205px;
  }

}


/* MOBILE */

@media(max-width:900px){

  .links,
  .nav>.btn{
    display:none;
  }

  .menu{
    display:block;
    margin-left:auto;
  }

  .navopen .links{
    display:flex;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    background:#fff;
    padding:20px;
    flex-direction:column;
    box-shadow:0 10px 20px #0002;
  }

  .hero{
    min-height:500px;
    background-size:cover, 58% 100%;
    background-position:center, right center;
  }

  .hero-content{
    margin-left:7%;
    margin-right:7%;
  }

  .hero h1{
    font-size:42px;
  }

  .about-intro,
  .banking-grid{
    grid-template-columns:1fr;
  }

  .director-box{
    grid-template-columns:1fr;
  }

  .director-photo{
    height:360px;
    max-width:400px;
  }

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

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

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

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

  .contact div{
    border-right:0;
  }

  .work-hours{
    grid-template-columns:1fr;
  }

  .career-banner{
    flex-direction:column;
    align-items:flex-start;
  }

  .brand{
    min-width:0;
  }

}


/* SMALL MOBILE */

@media(max-width:560px){

  .topbar{
    font-size:10px;
    padding:0 5%;
  }

  .nav{
    padding-left:5%;
    padding-right:5%;
  }

  .brand img{
    width:58px;
    height:45px;
  }

  .brand span{
    display:none;
  }

  .hero{
    min-height:470px;
    background-image:
      linear-gradient(
        90deg,
        rgba(3,27,78,.94) 0%,
        rgba(3,27,78,.72) 48%,
        rgba(3,27,78,.38) 100%
      ),
      url("srj-office.jpg");
    background-size:cover;
    background-position:center;
  }

  .hero-content{
    margin:0 7%;
    padding:40px 0;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

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

  .btn.outline{
    margin:4px 0 0;
  }

  .section{
    padding:55px 5%;
  }

  .section-title h2{
    font-size:29px;
  }

  .cards,
  .service-grid,
  .gallery-panel.show,
  .contact,
  .company-stats,
  .strength-grid,
  .portfolio-grid{
    grid-template-columns:1fr;
  }

  .media-card img,
  .media-card video{
    height:240px;
  }

  .contact div{
    padding:10px 0;
  }

  .director-photo{
    height:340px;
  }

  .career-banner{
    padding:40px 5%;
  }

  .work-hours b{
    font-size:19px;
  }

  .portfolio{
    padding:20px;
  }

}