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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat', Arial, sans-serif;
  color:#071847;
  background:#eef7ff;
  overflow-x:hidden;
}

.page{
  width:100%;
  min-height:100vh;
}

.hero{
  position:relative;
  min-height:780px;
  overflow:hidden;
  background:linear-gradient(105deg,#ffffff 0%,#f6fbff 36%,#d7efff 68%,#5ab5f2 100%);
  padding:34px 5% 0;
}

.hero-image{
  position:absolute;
  top:0;
  right:0;
  width:60%;
  height:100%;
  z-index:1;
  overflow:hidden;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center right;
  display:block;
  transform:scale(1.06);
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.14));
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(90deg,#ffffff 0%,rgba(255,255,255,.98) 31%,rgba(255,255,255,.73) 43%,rgba(255,255,255,.05) 58%,rgba(255,255,255,0) 100%),
    linear-gradient(180deg,rgba(255,255,255,.20) 0%,rgba(255,255,255,0) 60%);
}

.brand-header{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  gap:17px;
  width:max-content;
}

.brand-logo{
  width:98px;
  height:98px;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

.brand-name h1{
  font-size:46px;
  line-height:.92;
  color:#061f62;
  font-weight:900;
  letter-spacing:1px;
  font-style:italic;
}

.brand-name h1 span{
  color:#d99122;
  font-style:normal;
}

.brand-name h2{
  margin-top:8px;
  color:#061f62;
  font-size:15px;
  letter-spacing:5.2px;
  font-weight:800;
  border-top:3px solid #c78319;
  border-bottom:3px solid #c78319;
  padding:5px 0;
  text-align:center;
}

.brand-name p{
  margin-top:9px;
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  color:#061f62;
}

.hero-content{
  position:relative;
  z-index:5;
  min-height:610px;
  display:flex;
  align-items:center;
}

.hero-text{
  width:48%;
  max-width:640px;
  padding-top:70px;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  color:#d48819;
  font-size:16px;
  font-weight:800;
  margin-bottom:22px;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:42px;
  height:3px;
  background:#d48819;
  display:block;
  flex:0 0 auto;
}

.hero-text h3{
  font-size:82px;
  line-height:.93;
  color:#061f62;
  font-weight:900;
  letter-spacing:1.5px;
}

.hero-text h3 span{
  display:block;
  color:#d68c20;
}

.hero-text p{
  margin-top:22px;
  max-width:560px;
  font-size:21px;
  line-height:1.48;
  font-weight:500;
  color:#071847;
}

.features-section{
  position:relative;
  z-index:10;
  margin-top:20px;
  padding:0 5%;
}

.features-card{
  max-width:980px;
  margin:auto;
  background:#fff;
  border-radius:24px;
  padding:16px 18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  align-items:center;
  box-shadow:0 18px 45px rgba(0,28,90,.13);
  overflow:hidden;
}

.feature-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:0;
  position:relative;
}

.feature-item::after{
  content:"";
  position:absolute;
  right:-9px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:70%;
  background:rgba(0,31,98,.13);
}

.feature-item:last-child::after{
  display:none;
}

.feature-icon{
  min-width:78px;
  width:78px;
  height:78px;
  border-radius:50%;
  background:linear-gradient(135deg,#123f92,#001b58);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:22px;
  position:relative;
  overflow:hidden;
  box-shadow:inset 0 0 0 10px rgba(255,255,255,.07);
}

.feature-icon::before{
  content:"";
  position:absolute;
  width:38px;
  height:150%;
  background:rgba(255,255,255,.38);
  transform:rotate(25deg);
  left:-70px;
  animation:shine 3s infinite;
}

@keyframes shine{
  0%{left:-70px;}
  100%{left:150px;}
}

.feature-item h4{
  font-size:14px;
  font-weight:900;
  color:#061f62;
  line-height:1.15;
}

.feature-item h4 span{
  color:#d68c20;
  font-size:36px;
  line-height:.95;
}

.feature-item p{
  font-size:14px;
  font-weight:900;
  color:#061f62;
  line-height:1.25;
  margin-top:2px;
}

.services{
  background:radial-gradient(circle at 85% 0%,rgba(0,122,255,.25),transparent 35%),linear-gradient(135deg,#031a4a,#001037 70%,#001a52);
  padding:86px 5% 48px;
  margin-top:-35px;
  color:white;
}

.services h2{
  text-align:center;
  font-size:28px;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:30px;
}

.services h2::after{
  content:"";
  width:70px;
  height:3px;
  background:#d68c20;
  display:block;
  margin:12px auto 0;
}

.services-grid{
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:0;
}

.service-item{
  text-align:center;
  padding:0 18px;
  border-right:1px solid rgba(255,255,255,.35);
}

.service-item:last-child{
  border-right:none;
}

.service-icon{
  width:82px;
  height:82px;
  margin:0 auto 14px;
  border:2px solid #d68c20;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#d68c20;
  font-size:34px;
  position:relative;
  overflow:hidden;
  box-shadow:0 0 16px rgba(214,140,32,.28);
}

.service-icon::before{
  content:"";
  position:absolute;
  width:28px;
  height:130%;
  background:rgba(255,255,255,.45);
  transform:rotate(25deg);
  left:-60px;
  animation:serviceShine 2.6s infinite;
}

@keyframes serviceShine{
  0%{left:-60px;}
  100%{left:115px;}
}

.service-item p{
  font-size:15px;
  line-height:1.35;
  font-weight:500;
}

@media(max-width:1200px){
  .hero{
    min-height:auto;
  }

  .hero-image{
    width:64%;
  }

  .hero-text h3{
    font-size:64px;
  }

  .hero-text p{
    font-size:18px;
  }

  .services-grid{
    grid-template-columns:repeat(3,1fr);
    gap:28px 0;
  }

  .service-item:nth-child(4){
    border-right:none;
  }
}

@media(max-width:800px){
  .hero{
    padding:24px 5% 80px;
  }

  .hero-image{
    position:relative;
    width:100%;
    height:360px;
    margin-top:25px;
    border-radius:22px;
  }

  .hero-image img{
    transform:scale(1);
  }

  .hero-overlay{
    background:linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,255,255,.15));
  }

  .brand-logo{
    width:68px;
    height:68px;
  }

  .brand-name h1{
    font-size:31px;
  }

  .brand-name h2{
    font-size:10px;
    letter-spacing:3px;
  }

  .brand-name p{
    font-size:10px;
  }

  .hero-content{
    min-height:auto;
    display:block;
  }

  .hero-text{
    width:100%;
    padding-top:55px;
  }

  .hero-text h3{
    font-size:48px;
  }

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

  .features-card{
    grid-template-columns:1fr;
    padding:24px;
  }

  .feature-item{
    justify-content:flex-start;
  }

  .feature-item::after{
    display:none;
  }

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

  .service-item:nth-child(even){
    border-right:none;
  }
}


/* Alignment Fix */
.features-section{
max-width:1280px;
margin:20px auto 0;
padding:0 20px;
}
.features-card{
width:100%;
max-width:1200px;
margin:0 auto;
}
.hero-text{
max-width:700px;
}
@media(max-width:800px){
.features-section{
padding:0 15px;
}
.features-card{
border-radius:20px;
}
}


/* Client requested homepage first-screen highlights */
.hero-big-highlights{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:30px;
  position:relative;
  z-index:8;
}

.hero-highlight{
  min-height:76px;
  padding:18px 24px;
  border-radius:22px;
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-size:22px;
  line-height:1.1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.4px;
  box-shadow:0 18px 38px rgba(6,36,92,.22);
  border:1px solid rgba(255,255,255,.55);
  overflow:hidden;
  isolation:isolate;
}

.hero-highlight i{
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  flex:0 0 auto;
}

.hero-highlight::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255,255,255,.42) 50%, transparent 62%, transparent 100%);
  transform:translateX(-120%);
  animation:heroHighlightShine 3.4s infinite;
  z-index:-1;
}

.hero-highlight-primary{
  background:linear-gradient(135deg,#0b7cff,#004cc7);
  color:#fff;
}

.hero-highlight-gold{
  background:linear-gradient(135deg,#ffd56b,#d18a18);
  color:#061f62;
}

@keyframes heroHighlightShine{
  0%{transform:translateX(-120%);}
  45%,100%{transform:translateX(120%);}
}

@media(max-width:800px){
  .hero-big-highlights{
    gap:12px;
    margin-top:24px;
  }
  .hero-highlight{
    width:100%;
    justify-content:center;
    font-size:18px;
    min-height:66px;
    padding:14px 16px;
    border-radius:18px;
  }
  .hero-highlight i{
    width:42px;
    height:42px;
  }
}
