:root{
  --bg:#071a2b;
  --bg2:#0b2740;
  --card:#0f3557;
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);
  --brand:#1aa3ff;
  --brand2:#2be0ff;
  --white:#fff;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial}
body{background: radial-gradient(1200px 600px at 15% 10%, rgba(26,163,255,.25), transparent 55%),
               radial-gradient(1000px 500px at 70% 0%, rgba(43,224,255,.18), transparent 60%),
               linear-gradient(180deg, var(--bg), #04101c);
     color:var(--text);}

a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92%);margin-inline:auto}

.muted{color:var(--muted);line-height:1.6}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#001321;font-weight:800;border:0;cursor:pointer;
  box-shadow: 0 10px 25px rgba(26,163,255,.25);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-2px);filter:saturate(1.1)}
.btn--ghost{
  background: transparent;color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn--sm{padding:10px 14px;font-size:14px}

/* Header */
.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,26,43,.6);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:14px}
.brand{display:flex;align-items:center;gap:12px}
.brand__mark{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;font-weight:900;
  background: linear-gradient(135deg, rgba(26,163,255,.35), rgba(43,224,255,.15));
  border:1px solid rgba(255,255,255,.16);
}
.brand__title{font-weight:800;letter-spacing:.2px}
.brand__sub{font-size:12px;color:var(--muted)}

.nav{display:flex;gap:18px;align-items:center}
.nav a{font-size:14px;color:rgba(234,242,255,.85);padding:10px 10px;border-radius:999px}
.nav a:hover{background:rgba(255,255,255,.08)}
.nav a.active{background:rgba(26,163,255,.18);color:var(--white);border:1px solid rgba(26,163,255,.25)}

/* Mobile nav */
.burger{display:none;background:transparent;border:0;cursor:pointer}
.burger span{display:block;width:26px;height:2px;background:rgba(234,242,255,.9);margin:6px 0;border-radius:2px}

@media (max-width: 880px){
  .burger{display:block}
  .nav{
    position:fixed;inset:72px 12px auto 12px;
    display:none;flex-direction:column;align-items:stretch;
    background: rgba(7,26,43,.92);
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px;padding:14px;
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .nav a{padding:12px 14px}
}

/* Sections */
.section{padding:72px 0}
.section--tight{padding:50px 0}

.hero{
  padding:78px 0 40px;
}
.hero__grid{
  display:grid;grid-template-columns: 1.05fr .95fr;gap:26px;align-items:center;
}
.hero h1{font-size: clamp(28px, 4vw, 52px);line-height:1.05;margin:0 0 12px}
.hero p{margin:0 0 22px}
.hero__card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__img{
  height:320px;background:
    linear-gradient(90deg, rgba(26,163,255,.14), rgba(43,224,255,.06)),
    url('../img/hero.jpg') center/cover no-repeat;
}
.hero__cardBody{padding:16px 16px 18px}
.pills{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  padding:8px 12px;border-radius:999px;font-size:13px;
  background: rgba(26,163,255,.12);
  border:1px solid rgba(26,163,255,.18);
}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .hero__img{height:260px}
}

.grid{display:grid;gap:16px}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}
@media (max-width: 920px){ .grid--3{grid-template-columns:1fr} .grid--2{grid-template-columns:1fr} }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.65}

.kicker{color:rgba(43,224,255,.9);font-weight:700;letter-spacing:.2px;margin-bottom:10px}
.h2{font-size: clamp(22px, 2.7vw, 34px);margin:0 0 12px}
.hr{height:1px;background:rgba(255,255,255,.08);border:0;margin:16px 0}

/* Timeline */
.timeline{position:relative;padding-left:18px}
.timeline:before{
  content:"";position:absolute;left:6px;top:6px;bottom:6px;width:2px;
  background: linear-gradient(var(--brand), transparent);
  opacity:.7;
}
.titem{position:relative;padding:14px 14px 14px 18px;margin:10px 0;border-left:0}
.titem:before{
  content:"";position:absolute;left:-2px;top:20px;width:14px;height:14px;border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(26,163,255,.15);
}
.tyear{font-weight:900;color:var(--white);margin:0 0 6px}
.small{font-size:14px;color:var(--muted);line-height:1.6}

/* Footer */
.footer{padding:42px 0 24px;border-top:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.12)}
.footer__grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:18px}
.footer__brand{font-weight:900;font-size:18px;margin-bottom:8px}
.footer__title{font-weight:800;margin-bottom:8px}
.footer__links{display:grid;gap:8px}
.footer__bottom{margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08)}
@media (max-width: 920px){ .footer__grid{grid-template-columns:1fr} }

/* Video Hero */
.videoWrap{position:relative;height:320px}
.heroVideo{width:100%;height:100%;object-fit:cover;display:block}
.videoOverlay{
  position:absolute;inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
  display:flex;align-items:flex-end;justify-content:space-between;
  padding:14px;gap:10px;
}
.videoBadge{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;font-weight:900;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
}
.videoText{max-width:70%}

/* Inputs */
.input{
  padding:12px;border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
.input:focus{border-color:rgba(43,224,255,.55);box-shadow:0 0 0 4px rgba(26,163,255,.12)}

/* Clients */
.clientGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:14px;
}
.clientCard{
  border-radius:14px;
  padding:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  text-align:center;
  color:rgba(234,242,255,.85);
  font-weight:700;
  min-height:70px;
  display:grid;place-items:center;
}
@media (max-width: 920px){
  .clientGrid{grid-template-columns:repeat(2,1fr)}
}
/* Services Page */
.serviceCard{position:relative;overflow:hidden}
.serviceCard:before{
  content:"";position:absolute;inset:-40% -30%;
  background: radial-gradient(circle at 20% 20%, rgba(43,224,255,.18), transparent 55%),
              radial-gradient(circle at 70% 10%, rgba(26,163,255,.14), transparent 60%);
  transform: rotate(10deg);
  opacity:.9;
  pointer-events:none;
}
.serviceIcon{
  width:52px;height:52px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
  font-size:22px;
}
.serviceList{margin:10px 0 14px; padding-left:18px; line-height:1.9}

/* Process */
.process{display:grid;gap:12px}
.step{display:flex;gap:12px;align-items:flex-start;padding:10px 10px;border-radius:14px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08)}
.stepNo{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;font-weight:900;
  background: rgba(26,163,255,.14);
  border:1px solid rgba(26,163,255,.18);
}
.stepTitle{font-weight:800;margin-bottom:3px}

/* CTA card */
.ctaCard{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:22px;
  background: linear-gradient(90deg, rgba(26,163,255,.16), rgba(43,224,255,.08));
}
.ctaBtns{display:flex;gap:10px;flex-wrap:wrap}
@media (max-width: 920px){
  .ctaCard{flex-direction:column;align-items:flex-start}
}
/* Portfolio Section */
.portfolioGrid{
  gap:20px;
}

.portfolioCard{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.portfolioCard img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition: transform .6s ease;
  display:block;
}

.portfolioOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.75));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:20px;
  color:#fff;
  transition: all .4s ease;
}

.portfolioOverlay h3{
  margin:0 0 6px;
  font-weight:800;
}

.portfolioOverlay p{
  margin:0;
  font-size:14px;
  opacity:.85;
}

/* Hover Effects */
.portfolioCard:hover img{
  transform: scale(1.08);
}

.portfolioCard:hover .portfolioOverlay{
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.85));
}

/* Mobile */
@media (max-width:920px){
  .portfolioCard img{
    height:240px;
  }
}
/* Gallery Page */
.galleryFilters{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:14px;
}
.filterBtn{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(234,242,255,.86);
  cursor:pointer;
  font-weight:700;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.filterBtn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.07); }
.filterBtn.active{
  background: rgba(26,163,255,.18);
  border-color: rgba(26,163,255,.30);
  color:#fff;
}

.galleryGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width: 1100px){ .galleryGrid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width: 820px){ .galleryGrid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 460px){ .galleryGrid{ grid-template-columns: 1fr;} }

.gItem{
  border:0; padding:0;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  background: transparent;
  box-shadow: 0 18px 38px rgba(0,0,0,.35);
}
.gItem img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  transition: transform .55s ease;
}
@media (max-width: 460px){ .gItem img{ height:240px; } }

.gOverlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  justify-content:flex-end;
  padding:14px;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.78));
  transition: background .35s ease;
}
.gTag{
  display:inline-flex; align-self:flex-start;
  font-size:12px; font-weight:800;
  padding:7px 10px; border-radius:999px;
  background: rgba(26,163,255,.16);
  border:1px solid rgba(26,163,255,.22);
  margin-bottom:8px;
}
.gCap{
  font-weight:800;
  color:#fff;
  letter-spacing:.2px;
}

.gItem:hover img{ transform: scale(1.08); }
.gItem:hover .gOverlay{
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.88));
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:9999;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center; justify-content:center;
  padding:16px;
}
.lightbox.open{ display:flex; }
.lightboxInner{
  width:min(980px, 96%);
  border-radius:18px;
  overflow:hidden;
  position:relative;
  background: rgba(10,20,35,.92);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 60px rgba(0,0,0,.55);
}
.lightboxInner img{
  width:100%;
  height:min(70vh, 620px);
  object-fit:contain;
  background:#000;
  display:block;
}
.lbCaption{
  padding:14px 16px;
  color: rgba(234,242,255,.9);
  border-top:1px solid rgba(255,255,255,.10);
}
.lbClose{
  position:absolute; top:10px; right:10px;
  border:0; cursor:pointer;
  width:42px; height:42px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  color:#fff; font-weight:900;
}
.lbClose:hover{ background: rgba(255,255,255,.16); }

.lbNav{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:space-between;
  pointer-events:none;
}
.lbBtn{
  pointer-events:auto;
  border:0; cursor:pointer;
  width:46px; height:46px;
  margin:0 10px;
  border-radius:16px;
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:28px;
  display:grid; place-items:center;
}
.lbBtn:hover{ background: rgba(255,255,255,.16); }
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand__logo img{
  height:48px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* Optional: If you want logo only (no text on mobile) */
@media (max-width:600px){
  .brand__text{
    display:none;
  }
}
.objectiveCard{
  position:relative;
  overflow:hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.objectiveCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,.4);
}

.objectiveIcon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  background: rgba(26,163,255,.15);
  border:1px solid rgba(26,163,255,.25);
  color:#2be0ff;
}

.objectiveIcon svg{
  width:26px;
  height:26px;
}
/* WhatsApp Floating Button */
.whatsappFloat{
  position:fixed;
  bottom:22px;
  right:22px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  z-index:9999;
  animation: whatsappPulse 2s infinite;
  transition: transform .3s ease;
}

.whatsappFloat:hover{
  transform: scale(1.1);
}

@keyframes whatsappPulse{
  0% { box-shadow:0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow:0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile adjustment */
@media (max-width:600px){
  .whatsappFloat{
    width:55px;
    height:55px;
    bottom:18px;
    right:18px;
  }
}
/* Team Section */
.teamSection{
  align-items:center;
}

.teamCard{
  display:flex;
  gap:20px;
  align-items:center;
  padding:24px;
  overflow:hidden;
}

.teamImage{
  width:140px;
  height:140px;
  border-radius:20px;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(26,163,255,.3);
}

.teamImage img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .4s ease;
}

.teamCard:hover .teamImage img{
  transform: scale(1.08);
}

.teamContent h3{
  margin-bottom:4px;
}

/* Mobile */
@media (max-width:768px){
  .teamCard{
    flex-direction:column;
    text-align:center;
  }

  .teamImage{
    width:120px;
    height:120px;
  }
}

