:root{
  --blue: #0e2e63;
  --blue2:#0b2550;
  --bg:#ffffff;
  --muted:#6b7280;
  --card:#f3f4f6;
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111827;
  background: var(--bg);
}

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}


/* NAV */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__img {
  height: 54px;
  width: 300px;
  
}
.nav{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 15px;
  padding-bottom: 7px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}

.logo img{
  height: 40px;
}

.nav__menu{
  display: flex;
  gap: 10px;
  margin-left: 30px;
}

.nav__menu a{
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__menu a:hover{
  color: #0e2e63;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand__logo{
  width:38px;height:38px;border-radius:50%;
  background: var(--blue);
  display:grid;place-items:center;
  color:#fff;font-weight:700;
}
.nav__links {
  display: flex;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 0 12px;
  position: relative;
}

.nav__menu a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  margin-right: 4px;
  color: black;
}


/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;
  border: 2px solid transparent;
}
.btn--primary{ background: var(--blue); color:#fff; }
.btn--ghost{ border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--light{ background:#fff; color: var(--blue); }

/* HERO */
.hero{
  background: var(--blue);
  color:#fff;
  padding: 54px 0;
}
.hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero__text { flex: 1; }
.hero__image { flex: 1; text-align: center; }
.hero h1{ margin:0 0 12px; font-size: 38px; line-height: 1.1; }
.hero p{ margin:0; opacity:.9; line-height: 1.5; }
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; }
/* FEATURE */
/* Fixed-size slider window */
.feature__viewport{
  width: 100%;
  max-width: 2000px;          /* fixed overall size (change if needed) */
  margin: 0 auto;
  overflow: hidden;          /* hides the other slides */
  border-radius: 22px;
}

/* Track that moves left/right */
.feature__track{
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

/* Each slide takes the full viewport width */
.feature__slide{
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  align-items: center;
  gap: 28px;

  padding-top: 40px;
  background: #ffffff;
  
}

/* image sizing */
.feature__img{
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature__track{
  display: flex;
  transition: transform 800ms ease-in-out;
}

.feature__img img{
  width: 100%;
  max-width: 360px;     /* makes image smaller */
  height: auto;
  object-fit: contain;
}

/* text */
.feature__text h2{
  margin: 0 0 10px;
  font-size: 34px;
}

.feature__text p{
  margin: 0;
  line-height: 1.6;
  color: #111827;
}


/* Responsive */
@media (max-width: 900px){
  .feature__slide{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .feature__img img{
    max-width: 360px;
  }
  .feature__text h2{
    font-size: 28px;
  }
}




/* GENERIC SECTION */
.section{
  padding: 52px 0;
}
.section__title{
  text-align:center;
  margin:0 0 28px;
  font-size: 22px;
  font-weight:700;
}

/* GRID */
.grid{ display:grid; gap:18px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  border:1px solid #e5e7eb;
}

.card--dark {
  background: var(--blue);
  color: #fff;
  border: none;
  text-align: center;
  height: 200px;  /* All cards will be exactly 280px tall */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
}

/* Forward pop effect */
.card--dark:hover {
  transform: scale(1.02); /* grows slightly */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card--dark{
  background: var(--blue);
  color:#fff;
  border:none;
  text-align: center;
}
.card--dark p{ opacity:.9; }

/* PRODUCTS */
.product-card{
  border:1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 18px;
  background:#fff;
  color: #0e2e63;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
    cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card__link{
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card h4,
.product-card p{
  margin-top: 0;
}

.product-card:hover{
  transform: translateY(-5px);
}

.product-card {
  height: 200px;
}

/* WHY */
.why{
  background:#efefef;
  padding-top: 10px;
  padding-bottom: 40px;
}
.why__left{
    padding-top: 30px;
}
.why__inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;   /* <-- IMPORTANT */
 }

 .why__right{
  display: flex;
  justify-content: flex-end; /* right */
  align-items: flex-start;   /* top */
}

.why__right img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0;
  padding-top: 120px;
  margin-bottom: -80px; 
}

.why__left h2{
  margin-top: 0;
  margin-bottom: 10px;
}

.why__left p{
  margin-top: 0;
}

.muted{ color: var(--muted); }
.why__list{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap: 12px;
}
.dot{
  display:inline-block;
  width:12px;height:12px;
  border-radius:50%;
  background: var(--blue);
  margin-right:10px;
}
.why-points {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-pill {
  padding: 14px 24px;
  border: 2px solid #0e2e63;
  border-radius: 40px;
  color: #ffffff;
  font-weight: 600;
  background:#0e2e63;
  width: fit-content;
  min-width: 320px;
  transition: all 0.25s ease;
}
/* icon + text rows */
.why-features{
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-feature{
  display: flex;
  align-items: center;
  gap: 22px;
}

.why-icon{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0e2e63;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i{
  font-size: 32px;
  color: white;
}

/* text next to circle */
.why-text{
  font-size: 18px;
  font-weight: 700;
  color: #0e2e63;
}
.why-icon img{
  width: 40px;
  height: 40px;
}

/* CLIENTS */
.clients{
  display:grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 22px;
  align-items:center;
}
.clients__logos{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items:center;
}
.clients__logos img{
  width:100%;
  max-width: 160px;
  height:auto;
  filter: grayscale(10%);
}
.clients__logos img:last-child {
  grid-column: span 2;
  justify-self: center;
  margin: 35px auto 0 auto; 
  display: block;
  width: fit-content;
}
.clients__map img{
  width:100%;
  opacity:.85;
}
.clients__map{
  width: 100%;
  height: 320px;        /* adjust */
  border-radius: 14px;
  overflow: hidden;
}

/* TESTIMONIALS */
/* layout: equal width columns, independent height */
.testimonials-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;  /* equal width */
  gap: 22px;
  align-items: start;             /* independent heights */
}

/* Force both sides to occupy full column width */
.t-slider,
.video-card{
  width: 100%;
}

/* LEFT: slider viewport */
.t-viewport{
  overflow: hidden;
  width: 100%;
  padding-top: 40px;
}

/* the moving row */
.t-track{
  display: flex;
  width: 100%;
  transition: transform 650ms ease;
  will-change: transform;
}

/* each slide must take full viewport width */
.t-card{
  flex: 0 0 100%;
  width: 100%;
  border: 1px solid #fca5a5;
  border-radius: 20px;
  padding: 26px;
  background: #fff;
}

/* header */
.t-head{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.t-avatar{ width:46px; height:46px; border-radius:50%; background:#e5e7eb; }
.t-name{ font-weight:800; font-size:18px; }
.t-role{ font-size:13px; color: var(--muted); }
.t-quote{ margin:0; font-size:18px; line-height:1.55; color:#111827; }

/* dots */
.t-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.t-dot{
  display: block;          /* IMPORTANT: ensure visible */
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;     /* grey */
  border: none;
  cursor: pointer;
}

.t-dot.active{
  background: #0e2e63;     /* blue */
}

/* RIGHT: video */
.video-card{
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.video-card img{
  width: 100%;
  height: 100%;
  min-height: 250px;     /* gives it presence */
  object-fit: cover;
  display: block;
}

.video-card__overlay{
  position:absolute; inset:0;
  display:grid; place-items:center;
  background: rgba(0,0,0,.25);
}

.play-btn{
  width: 74px; height: 74px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 26px;
  background: rgba(255,255,255,0.95);
}

/* responsive */
@media (max-width: 900px){
  .testimonials-layout{ grid-template-columns: 1fr; }
  .t-quote{ font-size:16px; }
}

/* CTA */
.cta{
  padding: 38px 0;
}
.cta__inner{
  background: var(--blue);
  color:#fff;
  border-radius: 26px;
  padding: 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.cta__text h3{ margin:0 0 6px; }
.cta__text p{ margin:0; opacity:.9; }

/* BLOG */
.blog-card{
  border:1px solid #e5e7eb;
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
}
.blog-card__img{
  height: 180px;           /* adjust height */
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.blog-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills nicely */
  display: block;
}
.blog-card__body{
  padding: 16px;
}
.tag{
  display:inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background:#eef2ff;
  color: var(--blue);
  font-weight:700;
  margin-bottom: 10px;
}
.link{
  text-decoration:none;
  font-weight:700;
  color: var(--blue);
}

/* FOOTER */
.footer{
  background: #0e2e63;
  color: #fff;
  padding: 40px 0 0;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer__title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}

.footer__text{
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.footer__col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link{
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.footer__link:hover{
  color: #ffffff;
}

/* Bottom bar */
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}

.footer__bottom-inner{
  display: flex;
  justify-content: center; /* center text */
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 520px){
  .footer__grid{
    grid-template-columns: 1fr;
  }
}


/* RESPONSIVE */
@media (max-width: 900px){
  .grid--3{ grid-template-columns: 1fr; }
  .feature__inner{ grid-template-columns: 1fr; }
  .why__inner{ grid-template-columns: 1fr; }
  .clients{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 30px; }
}
