:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-38636ca */:root{
  --navy:#0b2447;
  --navy-2:#13315c;
  --blue:#1e73e8;
  --ink:#1c2733;
  --muted:#6b7685;
  --bg:#f6f8fc;
  --white:#ffffff;
  --radius:16px;
  --shadow:0 10px 30px rgba(11,36,71,0.08);
  --shadow-hover:0 22px 46px rgba(11,36,71,0.18);

  --c-class:#1e73e8;   /* WordPress blue */
  --c-team:#8b5cf6;    /* purple */
  --c-work:#16a34a;    /* Shopify green */
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
}
a{text-decoration:none;}

/* ===== HERO / PAGE HEADING ===== */
.hero{
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:64px 24px 100px;
  background:
    radial-gradient(circle at 12% 20%, rgba(30,115,232,0.16), transparent 45%),
    radial-gradient(circle at 88% 15%, rgba(139,92,246,0.14), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(22,163,74,0.10), transparent 45%),
    var(--bg);
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--white);
  border:1px solid #dfe8f7;
  padding:9px 20px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.4px;
  color:var(--blue);
  box-shadow:var(--shadow);
  margin-bottom:22px;
}
.hero-badge .dot{
  width:7px;height:7px;border-radius:50%;
  background:linear-gradient(135deg,var(--c-class),var(--c-team));
}
.hero h1{
  font-size:clamp(30px,5vw,48px);
  font-weight:800;
  margin:0 0 16px;
  color:var(--navy);
  line-height:1.2;
}
.hero h1 .accent{
  background:linear-gradient(90deg,var(--blue) 0%, var(--c-team) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  max-width:640px;
  margin:0 auto;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.float-chip{
  position:absolute;
  width:46px;height:46px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);
  background:var(--white);
  font-size:20px;
  opacity:0.9;
}
.fc1{top:18%; left:8%; background:#eaf2ff; transform:rotate(-8deg);}
.fc2{top:12%; right:10%; background:#f2ecff; transform:rotate(10deg);}
.fc3{bottom:14%; left:16%; background:#e8f8ee; transform:rotate(6deg);}
.fc4{bottom:20%; right:14%; background:#fff2e8; transform:rotate(-10deg);}

/* ===== CSS-ONLY FILTER (radio inputs, hidden) ===== */
.filter-input{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:0;height:0;
}

.filter-bar{
  max-width:1200px;
  margin:-50px auto 0;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  position:relative;
  z-index:2;
}
.filter-btn{
  border:1.5px solid #dce6f7;
  background:var(--white);
  color:var(--navy);
  padding:9px 22px;
  border-radius:30px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:all .25s ease;
  display:inline-block;
}
.filter-btn:hover{border-color:var(--blue);color:var(--blue);}

/* highlight the active label based on which radio is checked */
#filter-all:checked ~ .filter-bar label[for="filter-all"],
#filter-class:checked ~ .filter-bar label[for="filter-class"],
#filter-team:checked ~ .filter-bar label[for="filter-team"],
#filter-work:checked ~ .filter-bar label[for="filter-work"]{
  background:linear-gradient(90deg,var(--blue),var(--c-team));
  border-color:transparent;
  color:var(--white);
  box-shadow:0 8px 18px rgba(30,115,232,0.3);
}

/* show/hide grid items based on which filter radio is checked */
#filter-class:checked ~ .gallery-section .grid-item:not(.cat-class){display:none;}
#filter-team:checked  ~ .gallery-section .grid-item:not(.cat-team){display:none;}
#filter-work:checked  ~ .gallery-section .grid-item:not(.cat-work){display:none;}

/* ===== GALLERY GRID ===== */
.gallery-section{
  max-width:1200px;
  margin:0 auto;
  padding:56px 24px 70px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:230px;
  gap:20px;
}
.grid-item{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--white);
  box-shadow:var(--shadow);
  cursor:pointer;
  display:block;
  transition:transform .35s ease, box-shadow .35s ease;
}
.grid-item img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.grid-item:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover);}
.grid-item:hover img{transform:scale(1.08);}

.grid-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(11,36,71,0.78) 0%, rgba(11,36,71,0) 50%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:14px;
  opacity:0;
  transition:opacity .3s ease;
}
.grid-item:hover .grid-overlay{opacity:1;}
.grid-overlay .label{
  color:var(--white);
  font-weight:700;
  font-size:14px;
  margin-bottom:6px;
}
.tag{
  display:inline-flex;
  align-self:flex-start;
  align-items:center;
  gap:6px;
  font-size:11px;
  font-weight:700;
  color:var(--white);
  padding:5px 11px;
  border-radius:20px;
  text-transform:uppercase;
  letter-spacing:0.4px;
}
.tag-class{background:var(--c-class);}
.tag-team{background:var(--c-team);}
.tag-work{background:var(--c-work);}

/* ===== CSS-ONLY LIGHTBOX (:target) ===== */
.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(6,16,33,0.94);
  align-items:center;
  justify-content:center;
  z-index:1000;
  padding:20px;
}
.lightbox:target{display:flex;}
.lightbox img{
  max-width:90vw;
  max-height:85vh;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.lb-close{
  position:absolute;
  top:22px;right:22px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.25);
  color:var(--white);
  width:44px;height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  transition:background .2s ease;
}
.lb-close:hover{background:rgba(255,255,255,0.25);}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){
  .grid{grid-template-columns:repeat(3,1fr); grid-auto-rows:220px;}
  .float-chip{display:none;}
}
@media (max-width:700px){
  .grid{grid-template-columns:repeat(2,1fr); grid-auto-rows:190px; gap:14px;}
  .hero{padding:50px 20px 80px;}
}
@media (max-width:420px){
  .grid{grid-template-columns:1fr; grid-auto-rows:240px;}
  .lb-close{top:12px;right:12px;width:38px;height:38px;}
}/* End custom CSS */