
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Montserrat:wght@600;700&display=swap');
:root{
  --blue:#0A58CA;
  --blue-700:#073B94;
  --text: #111827;
  --muted:#6C757D;
  --bg:#F7F9FC;
  --card:#FFFFFF;
  --card-trans:rgba(255, 255, 255, 0.8);
  --surface: #F1F3F5;
  --max-width:1400px;
  --accent:#2CA58D;
  --ease:cubic-bezier(.2,.9,.2,1);
  --header-h: 73px;
  --hero-h: 90px;
  --footer-h: 140px;
}
*{box-sizing:border-box}
html,body{
  display: flex; 
  flex-direction: column; 
  height:100%; 
  margin:0; 
  margin-top: 36px; 
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial; 
  background:var(--bg); 
  color:#0b1220; 
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5 { 
  font-family: 'Montserrat', 'Inter', sans-serif; 
  margin: 0 0 .5rem 0;
}
a{ 
  color:var(--blue);  
  text-decoration:none
}
main{
  flex: 1; 
  padding-bottom: 20px;
}
.home-page-section{
  padding-bottom:7rem;  
  top: calc(var(--header-h));
  bottom: calc(var(--footer-h));
  left: 0;
  right: 0;
}
.page-section{
  position: fixed;
  top: calc(var(--header-h) + var(--hero-h));
  bottom: var(--footer-h);
  left: 0;
  right: 0;
}
.container{
  max-width:var(--max-width); 
  margin:0 auto; 
  padding:0 20px;
}
.content-grid {
  display: grid; 
  grid-template-columns: .4fr 1fr; 
  gap:16px; 
  height: calc(100vh - var(--header-h) - var(--hero-h) - var(--footer-h));
}
.grid-2 {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap:16px;
}
.grid-3 {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 18px;
}
.grid-4 {
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 18px;
}
.grid-5 {
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 18px;
}
.grid-3 h4 .icon {
  font-size: 1.5rem; 
  margin-right: 8px;
}
.card, .post {
  background:var(--card); 
  padding:20px; 
  border-radius:12px;
  box-shadow:0 10px 24px rgba(11,18,32,0.04); 
  border:1px solid rgba(11,18,32,0.03); 
  box-shadow: 0 1px 2px rgba(0,0,0,0.04); 
  transform:translateY(0); 
  transition:transform .35s var(--ease),box-shadow .35s var(--ease)
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(11,18,32,0.08)
}
.link-text{
  padding: 20px 0;
}

/* header */
.header {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 1000; 
  height: var(--header-h);
  background: #fff; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
  padding: .75rem 30px;
}
.header .top {
  display: grid; 
  height: 73px; 
  grid-template-columns: auto 1fr auto; 
  align-items: center; 
  padding: 10px 20px; 
  width: 100%; box-sizing: border-box;
}
header .nav-wrap { 
  display:flex;
  align-items:center; 
  justify-content: space-between; 
}
.brand {
  display: flex; 
  align-items: center; 
  gap: 10px;
}
.brand img {
  width: 48px; 
  height: 48px; 
  border-radius: 8px;
}
.brand-name{
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
}
.brand h1 {
  font-size: 1.1rem; 
  margin: 0; 
  color: #02102c;
}
.brand h5 {
  font-size: 0.7rem; 
  font-style: italic; 
  color: #666;
}
header .nav {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 20px;
}
header .nav a {
  text-decoration: none;
  color: #333; 
  padding: 6px 0;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}
header .nav a.active {
  color: var(--blue-700); 
  font-weight: 700;
}
header .nav a:hover {
  color: var(--blue-700); 
  font-weight: 700;
  opacity: 0.7;
}
header .nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; 
  width: 90%;
  height: 4px; 
  background-color: #004a99;
  border-radius: 2px;
}
header .nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 80%;
  height: 4px;
  background-color: #004a99;
  opacity: 0.5;
}
.search img{
  width: 28px;
  height: 28px
}
.actions {
  display: flex; 
  align-items: center; 
  gap: 8px;
}
.btn-cta {
  display:inline-block; 
  background: var(--blue); 
  color:#fff; 
  border-radius: 10px; 
  padding: .5rem 1.25rem; 
  border: 2px solid var(--blue); 
  font-weight:600;
}
.btn-cta:hover {
  background: var(--blue-700); 
  border-color: var(--blue-700);
}
.nav-toggle { 
  display:none;
}

/* Hero */
.page-hero{
  position: fixed; 
  top: var(--header-h); 
  left: 0; 
  width: 100%; 
  z-index: 900; 
  height: var(--hero-h);
  background: url("../img/gen/bg4.jpg") no-repeat center center/cover; 
  background-color: rgba(0, 0, 0, 0.4); 
  background-blend-mode: overlay; 
  color: #FFFFFF; 
  padding: 1rem 0; 
}
.page-hero h1{
  font-size: 1.7rem;
}
.page-hero p{
  font-size: 1rem; 
  margin: 0.5rem 0;
}
.home-hero {
  position: relative; 
  z-index: 1; 
  background: url("../img/gen/abg3.png") no-repeat center center/cover;
  /* top: var(--header-h); */
}
.home-hero::before {
  content: ""; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(255, 255, 255, 0.1); 
  z-index: 2;
}
.home-hero-content {
  display:grid; 
  grid-template-columns:1fr .8fr; 
  gap:28px; align-items:center; 
  padding:72px 20px; overflow: hidden; 
  position: relative; 
  z-index: 3;
}
.home-hero .eyebrow {
  color: var(--card);
  font-weight: 700;
  margin-bottom: 10px;
}
.home-hero h2 {
  font-family: Montserrat;
  font-size: 2.4rem;
  margin: 0;
  color: var(--card);
  font-weight: 800;
  line-height: 1.02;
  animation: fadeUp .6s var(--ease) both;
}
.home-hero p {
  color: var(--card);
  margin-top: 12px;
  max-width: 56ch;
  animation: fadeUp .8s var(--ease) both;
}
.home-hero img{
  width: 90%;
  max-height: 300px;
  padding: 12px;
  border-radius: 18px;
}
.home-hero-visual {
  animation: fadeIn .9s var(--ease) both;
}
.home-hero-card {
  background: var(--card-trans);
  margin: 12px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.03);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.04);
  transform: translateY(0);
  transition: transform .35s var(--ease),
              box-shadow .35s var(--ease);
}
.home-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
}
.home-hero .cta-row {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.btn {
  display: inline-block;
  padding: .75rem 1.15rem;
  border-radius: 999px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 600;
}
.btn:hover,
.btn-request:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--surface);
}

/* home  industries-preview */
.home-sections {
  padding:2.5rem 0;
}
.home-methodology-preview, .home-testimonials-preview{
  background: var(--surface);
}
.home-industries-preview .chips {
  display:flex; 
  flex-wrap:wrap; 
  gap:.5rem;
}
.home-industries-preview .chip {
  display:inline-block; 
  padding: .5rem .85rem; 
  border-radius: 999px; 
  background: var(--card); 
  border:1px solid #dde3eb;
}

/* home Testimonial-preview */
.home-testimonials-preview h3{
  font-style: italic;
}
.home-testimonials-preview .testimonial{ 
  margin: 10px 0; 
  padding: 20px; 
  border:1px solid #a2acbd; 
  border-radius: 8px;
}
.home-testimonials-preview .testimonial span{
  font-size: 12px; 
  color: #666;
}
.home-insight-preview {
  background: var(--surface);
}
.home-insight-preview .intro-grid{
  display:flex; 
  align-items:center; 
  justify-content: space-between; 
  padding: 20px 0;
  margin: 0;
}

/* Insights, Industries, Case & */
.content-sidebar {
  list-style: none; 
  padding: 0; 
  margin: 0; 
  background: #f4f4f4; 
  padding: 10px 20px; 
  border-radius: 8px; 
  overflow-y: auto; 
  max-height: 100vh;
}
.content-sidebar ul {
  list-style: none; 
  padding: 0;
}
.content-sidebar li {
  margin-bottom: 5px;
}
.content-sidebar .tab-btn {
  width: 100%; 
  padding: 10px; 
  text-align: left; 
  background: none; 
  border: none; 
  cursor: pointer; 
  font-size: 15px; 
  border-bottom: 1px solid #ddd; 
  transition: background 0.3s;
}
.content-sidebar .tab-btn:hover, .content-sidebar .tab-btn.active {
  background: #e0e7ff; 
  font-weight: bold;
}
.tab-content {
  display: none;
}
.tab-content .card{
  margin: 14px;
}
.tab-content.active {
  display: block;
}
.content-main { 
  background: #fff; 
  padding: 2rem; 
  border-radius: 12px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
  line-height: 1.7; 
  overflow-y: auto; 
  max-height: 100vh; 
  padding-top: 0 !important;
}
.article-title { 
  display: grid; 
  grid-template-columns: 1fr .3fr; 
  gap:16px; 
  justify-content: center;
  position: sticky; 
  top: 0; 
  background: #fff; 
  z-index: 10; 
  margin-top: 0; 
  padding: 5px 0; 
  border-bottom: 1px solid #eee; 
  box-shadow: 0 4px 6px -6px rgba(0,0,0,.15);
}
.article-title h1 { 
  font-size: 1.4rem; 
  font-weight: 600; 
  margin: .5rem 0; 
  text-align: left;
}
.article-title .meta { 
  font-size: .7rem; 
  color: #777; 
  margin: .5rem 0; 
  /* text-align: right;  */
}
.article-intro {
  padding-top: 20px;
}
.article-intro img { 
  width: 100%; 
  max-height: 300px; 
  object-fit: cover; 
  border-radius: 10px; 
  margin-top: 1rem; 
  margin-bottom: 1.5rem;
}
.article-details h2 { 
  font-size: 1.4rem; 
  margin-top: 2rem; 
  margin-bottom: 1rem; 
  color: #003366;
}
.article-details p { 
  margin-bottom: 1rem;
}
.article-details ul, .article-details ol { 
  padding-left: 1.5rem; 
  margin-bottom: 1.5rem;
}
.article-details li {  
  margin-bottom: .5rem;
}

/* .about-image {margin-top: 20px;} */
/* .about-content {
  flex: 1; 
  background: #fff; 
  padding: 20px; 
  border-radius: 8px;
} */
.about-content .tab-content p {
 margin-top: 5px;
}
.about-content img {
  width: 35rem;
  height: 20rem;
  border-radius: 8px;
}
.about-content .tab-content .grid-2 .qoute {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-content .tab-content .grid-2 p {
  margin: 0; 
  padding: 60px 30px; 
  border:1px solid #a2acbd; 
  border-radius: 8px;
  font-style: italic;
  text-align: center;
}

.career-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}


/* Contact */
.contactus img {
  width: 100%;
  height: 100%;
}
.contactus .info {
  margin-top: 20px;
}
.contactus .entry button {
  margin-top: 8px;
}

/* Footer  */
.footer {
  display: grid; 
  grid-template-rows: 1fr 2fr; 
  position: fixed; 
  bottom: 0;
  left: 0; 
  width: 100%; 
  z-index: 1000; 
  /* gap:8px; */
  height: var(--footer-h);
}
.cta-banner {
  background: linear-gradient(180deg, #fff, var(--surface)); 
  border-top:1px solid #eaecef; 
  border-bottom:1px solid #eaecef;
}
.cta-grid { 
  display:flex; 
  align-items:center; 
  justify-content: space-between; 
  padding: .5rem 0;
}
.cta-grid h2{
  font-size: 14px;
}
.cta-grid a{
  font-size: 14px; 
  font-style: italic; 
  text-align: center;
}
.cta-grid .btn { 
  display:inline-block; 
  background: var(--blue); 
  color:#fff; 
  border-radius: 999px; 
  padding: .3rem .7rem; 
  border: 2px solid var(--blue); 
  font-weight:500;
}
.footer-contactinfo {
  background:#111827; 
  color:#dfe9fb; 
  padding: 10px 30px; 
  font-size: 14px;
}
.footer-grid {
  display: flex; 
  align-items:center; 
  justify-content: space-between; 
}
.footer-left img {
  width: 48px; 
  border-radius: 8px;
}
.footer-left h1 {
  color: #dfe9fb; 
}
.Copyright{
  padding-top: 8px; 
  font-size: 10px;
}
.footer-right { 
  display: flex; 
  flex-direction: column; 
  gap: 15px;
}
.footer-right a { 
  color: #dfe9fb; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 8px;
}
.footer-right a:hover { 
  color: #0073e6;
} 
.contact-item{
  margin: 5px 0;
}
.social-icons { 
  display: flex; 
  gap: 15px;
}
.social-icons a {
  color: #dfe9fb; 
  gap: 8px;
  font-size: 18px; 
  border-radius: 50%; 
  width: 35px; 
  height: 35px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s ease;
}
.social-icons a:hover { 
  background: #0073e6; 
  color: #fff; 
  border-color: #0073e6;
}

/* Animations */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}

/* Responsive */
@media (max-width:1100px){
  .nav {display: none; position: absolute; width: 150px; top: 64px; right: 16px; background:#fff; border:1px solid #eaecef; border-radius: 12px; padding: .75rem; z-index: 1000;}
  .nav.open {display: block;}
  .nav a {display:block; padding:.5rem .75rem; margin:0; font-size: 15px;}
  .btn-cta {padding: .55rem 1rem; font-weight:500; font-size: 14px;}
  .nav-toggle {display:block; background: none; border: none; font-size: 24px; cursor: pointer;}
  .home-hero{grid-template-columns:1fr;gap:22px;padding:44px 0}
  .cards{grid-template-columns:repeat(2,1fr)}
  .ind-grid{grid-template-columns:repeat(2,1fr)}
  .list-grid{grid-template-columns:repeat(2,1fr)}
  .footer-center{grid-template-columns:repeat(2,1fr)}
  .about-grid {grid-template-columns: 1fr}
  .about-sidebar ul{display: grid; grid-template-columns: repeat(4, 1fr);}
  .about-sidebar li{margin: 0;}
  .tab-image p{width: 100%;}  
  .tab-image img{width: 100%;}  
  .home-hero-content{grid-template-columns: 1fr}
  .home-hero-visual{max-height: 350px;}
  .cta-grid h2 { font-size: 20px;}
}

@media (max-width: 900px) {
  .footer .top{grid-template-columns: 1fr; text-align: center;}
  .footer-left{justify-content: center;}
  .footer-center{grid-template-columns:repeat(2,1fr)}
  .footer-right{align-items: center;}
  .home-hero .eyebrow, .lead, .trust{font-size: 14px;}
  .home-hero h2{font-size: 34px;}
  .home-hero-card{font-size: 12px;}
  .btn {  border-radius:999px; padding:.65rem 1.1rem; font-weight:500;}
  .cta-grid h2 { font-size: 28px;}
  .cta-grid .btn{ font-size: 12px;}
  .about-sidebar ul{display: grid; grid-template-columns: repeat(3, 1fr);}
  .about-sidebar li{margin: 0;}
}

@media (max-width:720px){
  .container{padding:0 16px}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .services{margin-top: 40px 0;}
  .home-hero{padding:30px 0}
  .home-hero h2{font-size:1.6rem}
  .home-hero-visual{max-height: 250px;}
  .kpi{display:fixed;gap:12px;align-items:baseline}
  .cta-banner{padding: 30px 0;}
  .cta-grid h2{font-size: 18px;}
  .page-hero h1{font-size: 20px;}
  .page-hero p{font-size: 14px;}
  .brand h1{font-size:0.95rem}
  .brand .logo{width:68px;height:44px}
  .footer-grid{flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 18px;}
  .footer-right, .footer-left{width: 100%; display: flex; flex-direction: column; text-align: center; align-items: center;}
  .footer-left img{width: 56px; height: 56px;}
  .footer-contact {display: flex; flex-direction: column; align-items: center;}
  .social-icons {display: flex; justify-content: center;}
}

/* accessibility focus */
a:focus{outline:3px solid rgba(10,88,202,0.18);outline-offset:3px}
