  :root{
      --accent: #1434b2;
      --accent-2: #f65e22;
      --muted:#64748b;
      --max-w:1220px;
      --pill-bg:#4b4b4b;
    }
*{
    font-family: "Inter", sans-serif !important;
}

/* NAVBAR BASE | Transparent at top */
.navbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    padding: 22px 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}


/* After scroll → White + Shrink + Shadow */
.navbar.nav-scrolled {
    background: #ffffff !important;
    padding: 10px 0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}


/* Remove underline + blue default */
a {
    text-decoration: none !important;
    color: inherit !important;
}

/* Dropdown Base */
.nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .28s ease;
    border-radius:14px;
    padding:10px 0;
    border:1px solid rgba(255,255,255,0.3);
    
    /* 🌟 Glass Blur */
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/* Menu hover underline */
.navbar-nav .nav-link {
    position: relative;
    padding: 10px 16px;
    font-weight:500;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #1434b2;
    transition: .3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}
/* Mobile hide on top, show after scroll */
@media (max-width: 991px) {
    .navbar {
        transform: translateY(-100%);
    }
    .navbar.nav-scrolled {
        transform: translateY(0);
    }
}


/* Hero */
.hero{ padding: 100px 20px 20px 20px;}
.hero-heading{ font-size:56px;font-weight:800;line-height:1.2; }
.hero-sub{ font-size:20px;font-weight:600;margin-top:30px; }
.hero-text{ max-width:600px;font-size:17px;margin-top:15px; }

/* Buttons */
.btn-dark-round{
    background:#1434b2;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    color:#fff !important;
    transition:.3s;
}

.btn-dark-round:hover{
    background:#000;
    color:#fff;
}

.btn-green-round{
    background:linear-gradient(90deg,#06f273,#06c2f2);
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    color:#fff;
}

/* Image mockup style */
.mockup{
    border-radius:25px;
    border:3px solid #000;
    overflow:hidden;
}

/* Responsive */
@media(max-width:768px){
  .hero-heading{font-size:36px;}
}

video {
  opacity: 0;
  animation: fadeInVideo 1s forwards ease-in-out;
}

@keyframes fadeInVideo {
  to {
    opacity: 1;
  }
}

/* CLIENTS LOGO SLIDER - styles (unchanged) */
:root{ --clients-gap:28px; --clients-bg:transparent; }

.clients-wrap{
  width:100%;
  background: var(--clients-bg);
  padding: 28px 0;
  overflow: hidden;
}

.clients-inner{
  max-width:1220px;
  margin:0 auto;
  padding:0 18px;
}

/* track container that masks the moving row */
.clients-track{
  overflow: hidden;
  position: relative;
}

/* the moving row (duplicated for seamless loop) */
.clients-row{
  display:flex;
  gap:var(--clients-gap);
  align-items:center;
  will-change:transform;
}

/* items */
.client-item{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px;
  background: transparent;
  border-radius:8px;
}

.client-item img{
  display:block;
  max-height:72px;
  max-width:220px;
  filter: grayscale(0.0);
  opacity: .95;
  transition: transform .25s ease, opacity .25s ease;
}

.client-item img:hover{
  transform: scale(1.04);
  opacity:1;
  filter: none;
}

/* Services section styles (kept) */
.services-section {
  padding: 25px 0;
  background: linear-gradient(135deg, #007bff, #0c045a);
  color: #fff;
}

.service-title {
  font-size: 38px;
  font-weight: 700;
}

.service-subtitle {
  font-size: 18px;
  opacity: .9;
  max-width: 700px;
  margin: auto;
}

/* Cards */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-tags {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.service-heading {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.service-text {
  font-size: 14px;
  color: #333;
}

/* Mobile Responsive Text */
@media(max-width: 768px){
  .service-title { font-size: 26px; }
  .service-subtitle { font-size: 15px; }
  .service-heading { font-size: 18px; }
  .service-text { font-size: 13px; }
}

  .site-footer{
    background:#f6f6f6;
    padding:48px 18px 16px;
    font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Arial;
    color:#071033;
  }

  .footer-inner{
    max-width:var(--max-w);
    margin:0 auto;
    display:flex;
    gap:30px;
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .footer-col{ flex:1; min-width:220px; }

  .footer-brand img{ height:56px; display:block; margin-bottom:12px; }
  .footer-desc{ color:#475569; max-width:360px; line-height:1.6; margin-bottom:12px; }

  /* Social icons row (after description) */
.social-row {
  display: flex;
  gap: 12px;
}

.social-btn svg {
  width: 28px;
  height: 28px;
  transition: .2s ease;
}

.social-btn:hover svg {
  transform: scale(1.12);
}


  .footer-heading{ font-weight:800; margin-bottom:14px; font-size:16px; }
  .footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
  .footer-links a{ color:#071033; font-weight:600; text-decoration:none; transition: color .15s; }
  .footer-links a:hover{ color:var(--accent); }

  .contact-card{
    background:#0b1220;
    color:#fff;
    padding:18px;
    border-radius:12px;
    max-width:360px;
    display:flex;
    gap:12px;
    align-items:center;
  }
  .contact-card img{ width:56px; height:56px; border-radius:8px; object-fit:cover; }
  .contact-card .contact-txt{ font-weight:700; font-size:15px; }
  .contact-card small{ display:block; font-weight:500; color: rgba(255,255,255,0.85); margin-top:6px; }

  .footer-divider{ height:1px; background: rgba(3,12,30,0.06); margin:28px 0; border-radius:2px; }

  .tag-pills{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
  .tag-p{ background:var(--pill-bg); color:#fff; padding:8px 16px; border-radius:999px; font-weight:600; font-size:14px; opacity:.95; }

  .bottom-full{
    background:#000; color:#fff; padding:14px 0;
    width:100%;
  }
  .bottom-inner{
    max-width:var(--max-w); margin:0 auto; display:flex;align-items:center;justify-content:space-between;gap:12px;padding:0 18px;
  }
  .copyright{ display:flex;align-items:center;gap:12px;color:#fff;font-weight:600;font-size:14px; }
  .payments{ display:flex; gap:10px; align-items:center; }
  .payments img{ height:28px; display:block; border-radius:4px; background:#fff; padding:4px; }

  @media (max-width:991px){
    .footer-inner{ flex-direction:column; gap:22px; align-items:flex-start; }
    .bottom-inner{ flex-direction:column; align-items:flex-start; gap:10px; }
    .contact-card{ width:100%; }
  }

/* Scoped: portfolio matches services container width (max-width:1200px) */
.portfolio-section { padding: 56px 12px 36px; box-sizing: border-box; background: transparent; }
.portfolio-wrap { max-width:1200px; margin:0 auto; }

/* Title (keeps same scale as services) */
.portfolio-title { text-align:center; font-size:28px; margin-bottom:18px; font-weight:800; color:#071033; }

/* viewport (masked area) — uses same horizontal padding as services */
.portfolio-viewport { position:relative; overflow:hidden; border-radius:12px; box-sizing:border-box; }

/* track and slides */
.ps-track { display:flex; gap:18px; transition:transform 520ms cubic-bezier(.2,.9,.2,1); will-change:transform; align-items:stretch; }
.ps-slide {
  flex:0 0 calc((100% - 36px) / 3);
  border-radius:10px; overflow:hidden; background:#f6f7fb; display:flex; flex-direction:column;
  min-height:220px; box-shadow:0 8px 24px rgba(7,16,48,0.06); position:relative;
  transform:translateZ(0); transition: transform .28s ease, box-shadow .28s ease;
}
.ps-slide img { width:100%; height:100%; object-fit:cover; display:block; flex:1 1 auto; }

.ps-slide:hover { transform: translateY(-6px) scale(1.01); box-shadow:0 18px 40px rgba(7,16,48,0.12); }

/* caption overlay */
.ps-slide figcaption {
  display:flex; flex-direction:column; gap:4px;
  padding:12px 14px; background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
  font-weight:600; color:#071033; font-size:14px;
}
.ps-slide figcaption span { font-weight:500; color:#475569; font-size:13px; margin-left:6px; font-weight:600; opacity:0.9; }

/* arrows (subtle, same style as services) */
.ps-arrow {
  position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px;
  border-radius:50%; background:rgba(7,16,48,0.92); color:#fff; border:0; display:grid; place-items:center;
  cursor:pointer; z-index:6; box-shadow:0 10px 26px rgba(7,16,48,0.18);
}
.ps-prev { left:12px; }
.ps-next { right:12px; }
.ps-arrow:active { transform: translateY(-50%) scale(.98); }

/* dots centered and matching width */
.ps-dots { display:flex; gap:8px; justify-content:center; margin-top:12px; }
.ps-dot { width:10px; height:10px; border-radius:50%; background:rgba(7,16,48,0.12); cursor:pointer; border:0; }
.ps-dot.active { background:rgba(7,16,48,0.95); }

/* responsive breakpoints: 3 | 2 | 1 */
@media (max-width:1100px) {
  .ps-slide { flex:0 0 calc((100% - 18px) / 2); min-height:200px; }
  .portfolio-viewport { padding:12px 20px; }
}
@media (max-width:720px) {
  .ps-slide { flex:0 0 100%; min-height:180px; }
  .ps-slide figcaption { padding:10px 12px; font-size:13px; }
  .portfolio-title { font-size:20px; }
  .ps-arrow { width:40px; height:40px; }
  .portfolio-viewport { padding:10px 12px; }
}

/* small accessibility focus style */
.portfolio-viewport:focus { outline: 3px solid rgba(0,123,255,0.08); outline-offset:6px; }
