:root{
  --dark:#0f172a;
  --text:#334155;
  --muted:#64748b;
  --border:#e2e8f0;
  --blue:#2563eb;
  --indigo:#4f46e5;
  --purple:#7c3aed;
  --gold:#ffd166;
  --bg:#f8fafc;
}

*{
  box-sizing:border-box;
  font-family:"Manrope",Arial,sans-serif!important;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:#f8fafc!important;
  color:#0f172a!important;
  overflow-x:hidden;
}

a{
  text-decoration:none!important;
}

/* TOP HEADER */
.top-header{
  background:linear-gradient(90deg,#1d4ed8 0%,#4338ca 55%,#6d28d9 100%)!important;
  color:#fff!important;
  box-shadow:0 8px 24px rgba(15,23,42,.16);
}

.top-head-web{
  max-width:1180px;
  margin:0 auto;
  padding:8px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.a-content{
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
}

.top-header a{
  color:#fff!important;
  font-size:14px;
  font-weight:800;
}

.socail-media-account div{
  display:flex;
  gap:8px;
}

.link-in{
  width:32px;
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff!important;
  transition:.25s ease;
}

.link-in:hover{
  background:#ffd166;
  color:#0f172a!important;
}

/* NAVBAR */
.navbar{
  background:#fff!important;
  border-bottom:1px solid #e2e8f0;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
  padding:12px 20px!important;
  position:sticky;
  top:0;
  z-index:999;
}

.navbar .container-fluid{
  max-width:1180px;
  margin:0 auto;
  padding:0;
}

.navbar-brand img{
  width:92px;
  max-width:92px;
}

.navbar-nav{
  gap:8px;
  align-items:center;
}

.navbar .nav-link{
  color:#0f172a!important;
  font-size:14px;
  font-weight:900!important;
  padding:10px 10px!important;
  white-space:nowrap;
}

.navbar .nav-link:hover{
  color:#2563eb!important;
}

.dropdown-menu{
  border:1px solid #e2e8f0;
  border-radius:14px;
  box-shadow:0 18px 45px rgba(15,23,42,.12);
  padding:10px;
}

.dropdown-item{
  font-size:14px;
  font-weight:800;
  border-radius:10px;
  padding:9px 12px;
}

.dropdown-item:hover{
  background:#eef2ff;
  color:#2563eb;
}

.call-action{
  background:linear-gradient(135deg,#2563eb 0%,#4f46e5 55%,#7c3aed 100%)!important;
  color:#fff!important;
  border-radius:14px;
  padding:12px 20px;
  font-size:14px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:9px;
  white-space:nowrap;
  box-shadow:0 16px 36px rgba(79,70,229,.24);
}

/* HERO + SEARCH FIRST FOLD */
.projects-hero{
  position:relative;
  overflow:hidden;
  padding:34px 20px 34px;
  background:
    radial-gradient(circle at 12% 20%,rgba(255,255,255,.14),transparent 30%),
    radial-gradient(circle at 86% 18%,rgba(255,209,102,.15),transparent 28%),
    linear-gradient(135deg,#172554 0%,#1d4ed8 42%,#4f46e5 68%,#7c3aed 100%);
  color:#fff;
}

.projects-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:42px 42px;
  opacity:.45;
  pointer-events:none;
}

.hero-grid-wrap{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:42px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 15px;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.26);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:14px;
  backdrop-filter:blur(12px);
}

.projects-hero h1{
  margin:0;
  color:#fff;
  font-size:clamp(42px,4.8vw,68px);
  line-height:.94;
  letter-spacing:-.075em;
  font-weight:900;
}

.projects-hero h1 span{
  color:#ffd166;
  display:block;
}

.projects-hero p{
  max-width:660px;
  margin:14px 0 0;
  color:rgba(255,255,255,.90)!important;
  font-size:15.5px!important;
  line-height:1.58!important;
  font-weight:500;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-primary,
.hero-secondary{
  min-height:48px;
  padding:13px 19px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:14px;
  font-weight:900;
}

.hero-primary{
  background:#ffd166;
  color:#0f172a!important;
  box-shadow:0 18px 40px rgba(255,209,102,.24);
}

.hero-secondary{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.24);
  color:#fff!important;
  backdrop-filter:blur(10px);
}

.hero-panel{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  border-radius:30px;
  padding:24px 30px;
  box-shadow:0 30px 90px rgba(15,23,42,.28);
  backdrop-filter:blur(18px);
}

.hero-panel h3{
  color:#fff;
  font-size:25px;
  font-weight:900;
  letter-spacing:-.045em;
  margin:0 0 14px;
  text-align:center;
}

.stat-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.stat-row:last-child{
  border-bottom:0;
}

.stat-row span{
  color:rgba(255,255,255,.78);
  font-size:14px;
  font-weight:800;
}

.stat-row strong{
  color:#ffd166;
  font-size:21px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.045em;
}

/* SEARCH BOX INSIDE FIRST SCREEN */
.hero-search-wrap{
  position:relative;
  z-index:3;
  max-width:1180px;
  margin:24px auto 0;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.42);
  border-radius:26px;
  padding:20px;
  box-shadow:0 30px 80px rgba(15,23,42,.28);
  backdrop-filter:blur(18px);
}

.search-intro{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:14px;
  padding:0 4px;
}

.search-intro span{
  color:#4f46e5;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.search-intro h2{
  color:#0f172a;
  font-size:26px;
  font-weight:900;
  letter-spacing:-.055em;
  margin:4px 0 0;
}

.search-intro p{
  max-width:430px;
  color:#64748b!important;
  font-size:13.5px!important;
  line-height:1.55!important;
  margin:0!important;
}

.filter-shell{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:22px;
  padding:14px;
}

.filter-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1fr auto;
  gap:10px;
  align-items:end;
}

.filter-field{
  display:grid;
  gap:7px;
}

.filter-field label{
  color:#475569;
  font-size:11.5px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
}

.filter-field input,
.filter-field select{
  width:100%;
  height:48px;
  border:1px solid #cbd5e1;
  border-radius:14px;
  background:#f8fafc;
  color:#0f172a;
  font-size:14px;
  font-weight:800;
  padding:0 14px;
  outline:0;
}

.filter-field input:focus,
.filter-field select:focus{
  border-color:#4f46e5;
  box-shadow:0 0 0 4px rgba(79,70,229,.12);
  background:#fff;
}

.reset-btn{
  height:48px;
  border:0;
  border-radius:14px;
  background:#0f172a;
  color:#fff;
  font-size:14px;
  font-weight:900;
  padding:0 18px;
  display:inline-flex;
  gap:9px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.hero-results-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-top:14px;
  padding:0 4px;
}

.result-count{
  color:#0f172a;
  font-size:14px;
  font-weight:900;
}

.quick-chips{
  display:flex;
  gap:9px;
  align-items:center;
  flex-wrap:wrap;
}

.quick-chip{
  border:1px solid #cbd5e1;
  background:#fff;
  color:#0f172a;
  border-radius:999px;
  padding:9px 14px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
}

.quick-chip.active,
.quick-chip:hover{
  background:#eef2ff;
  border-color:#a5b4fc;
  color:#4f46e5;
}

/* PROJECTS BODY */
.projects-wrap{
  background:#f8fafc;
  padding:58px 20px 100px;
}

.section-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 42px;
}

.section-head h2{
  color:#0f172a;
  font-size:clamp(36px,4vw,58px);
  font-weight:900;
  letter-spacing:-.06em;
  margin-bottom:12px;
}

.section-head p{
  color:#64748b;
  font-size:16px;
  line-height:1.7;
  margin:0;
}

.projects-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}

.project-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(15,23,42,.07);
  transition:.25s ease;
}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(15,23,42,.12);
}

.project-img{
  height:265px;
  position:relative;
  overflow:hidden;
  background-size:cover;
  background-position:center;
}

.project-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(2,6,23,.74),rgba(2,6,23,.10) 55%,rgba(2,6,23,.20));
}

.project-badges{
  position:absolute;
  left:16px;
  right:16px;
  top:16px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  z-index:2;
}

.project-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#0f172a;
  font-size:12px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(15,23,42,.10);
}

.project-badge.gold{
  background:#ffd166;
  color:#0f172a;
}

.project-title-float{
  position:absolute;
  left:20px;
  right:20px;
  bottom:18px;
  z-index:2;
}

.project-title-float h3{
  color:#fff;
  font-size:25px;
  font-weight:900;
  letter-spacing:-.05em;
  margin:0 0 4px;
}

.project-title-float p{
  color:rgba(255,255,255,.88);
  font-size:14px;
  font-weight:700;
  margin:0;
}

.project-body{
  padding:24px;
}

.project-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:18px;
}

.meta-box{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:13px;
  text-align:center;
}

.meta-box strong{
  display:block;
  color:#0f172a;
  font-size:20px;
  font-weight:900;
  line-height:1;
}

.meta-box span{
  display:block;
  color:#64748b;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-top:6px;
}

.project-desc{
  color:#64748b;
  font-size:14px;
  line-height:1.7;
  margin:0 0 16px;
  min-height:72px;
}

.project-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.project-tag{
  background:#eef2ff;
  color:#4f46e5;
  border:1px solid #c7d2fe;
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:900;
}

.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.project-btn{
  flex:1;
  min-width:120px;
  min-height:48px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  background:#fff;
  color:#0f172a!important;
  border:1px solid #e2e8f0;
  font-size:14px;
  font-weight:900;
}

.project-btn.primary{
  background:linear-gradient(135deg,#2563eb,#4f46e5,#7c3aed);
  color:#fff!important;
  border:0;
}

.no-results{
  max-width:720px;
  margin:42px auto 0;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:26px;
  padding:38px;
  text-align:center;
  display:none;
  box-shadow:0 18px 55px rgba(15,23,42,.07);
}

.no-results i{
  font-size:34px;
  color:#4f46e5;
  margin-bottom:14px;
}

.no-results h3{
  font-size:26px;
  font-weight:900;
  letter-spacing:-.04em;
  margin:0 0 8px;
}

.no-results p{
  color:#64748b;
  margin:0 0 18px;
}

.project-cta{
  max-width:1180px;
  margin:76px auto 0;
  border-radius:32px;
  padding:52px;
  background:
    radial-gradient(circle at 10% 20%,rgba(255,209,102,.24),transparent 30%),
    linear-gradient(135deg,#2563eb 0%,#4f46e5 55%,#7c3aed 100%);
  color:#fff;
  display:grid;
  grid-template-columns:1.2fr auto;
  gap:26px;
  align-items:center;
  box-shadow:0 24px 70px rgba(79,70,229,.22);
}

.project-cta h2{
  color:#fff;
  font-size:clamp(32px,4vw,52px);
  font-weight:900;
  letter-spacing:-.06em;
  margin:0 0 12px;
}

.project-cta p{
  color:rgba(255,255,255,.88);
  font-size:17px;
  line-height:1.75;
  margin:0;
}

.project-cta a{
  background:#ffd166;
  color:#0f172a!important;
  padding:16px 24px;
  border-radius:14px;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
}

/* FOOTER */
.site-footer{
  background:linear-gradient(135deg,#070b14 0%,#0f172a 45%,#111827 100%)!important;
  color:#e5e7eb!important;
  padding:70px 20px 32px;
}

.footer-container{
  max-width:1180px;
  margin:0 auto;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr 1fr;
  gap:36px;
}

.site-footer h4{
  color:#fff!important;
  font-size:18px;
  font-weight:900;
  margin-bottom:16px;
}

.site-footer p,
.site-footer li,
.site-footer a{
  color:#cbd5e1!important;
  font-size:14px;
  line-height:1.75;
}

.site-footer ul{
  padding-left:0;
  list-style:none;
  margin:0;
}

.footer-bottom,
.footer-bottom-links{
  border-top:1px solid rgba(255,255,255,.10)!important;
  margin-top:28px;
  padding-top:18px;
  text-align:center;
}

.footer-bottom-links{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.float{
  position:fixed;
  width:58px;
  height:58px;
  bottom:34px;
  right:34px;
  background:#25d366;
  color:#fff!important;
  border-radius:999px;
  font-size:28px;
  box-shadow:0 16px 34px rgba(37,211,102,.34);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* FIRST FOLD LAPTOP FIX */
@media (min-width:1200px) and (max-height:760px){
  .top-head-web{
    padding-top:6px;
    padding-bottom:6px;
  }

  .navbar{
    padding-top:10px!important;
    padding-bottom:10px!important;
  }

  .navbar-brand img{
    width:82px;
    max-width:82px;
  }

  .projects-hero{
    padding-top:24px;
    padding-bottom:26px;
  }

  .hero-badge{
    margin-bottom:10px;
    padding:8px 14px;
  }

  .projects-hero h1{
    font-size:54px;
  }

  .projects-hero p{
    margin-top:12px;
    font-size:14.5px!important;
    line-height:1.45!important;
  }

  .hero-actions{
    margin-top:14px;
  }

  .hero-primary,
  .hero-secondary{
    min-height:44px;
    padding:11px 17px;
  }

  .hero-panel{
    padding:20px 28px;
  }

  .hero-panel h3{
    font-size:23px;
    margin-bottom:10px;
  }

  .stat-row{
    padding:10px 0;
  }

  .stat-row strong{
    font-size:19px;
  }

  .hero-search-wrap{
    margin-top:18px;
    padding:16px;
  }

  .search-intro{
    margin-bottom:10px;
  }

  .search-intro h2{
    font-size:23px;
  }

  .filter-shell{
    padding:12px;
  }

  .filter-field input,
  .filter-field select,
  .reset-btn{
    height:44px;
  }

  .hero-results-row{
    margin-top:12px;
  }

  .quick-chip{
    padding:8px 13px;
  }
}

/* RESPONSIVE */
@media(max-width:1050px){
  .filter-grid{
    grid-template-columns:1fr 1fr;
  }

  .reset-btn{
    width:100%;
  }

  .hero-grid-wrap{
    grid-template-columns:1fr;
  }

  .projects-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .footer-grid,
  .project-cta{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .top-head-web,
  .a-content{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .projects-hero{
    padding:42px 18px 36px;
  }

  .projects-hero h1{
    font-size:42px;
  }

  .hero-panel{
    padding:24px;
    border-radius:26px;
  }

  .hero-search-wrap{
    padding:18px;
    border-radius:24px;
    margin-top:28px;
  }

  .search-intro{
    display:block;
  }

  .search-intro p{
    margin-top:8px!important;
  }

  .filter-grid,
  .projects-grid{
    grid-template-columns:1fr;
  }

  .hero-primary,
  .hero-secondary{
    width:100%;
  }

  .project-cta{
    padding:32px;
  }

  .project-meta{
    grid-template-columns:1fr 1fr 1fr;
  }

  .float{
    width:52px;
    height:52px;
    right:20px;
    bottom:24px;
  }
}
.card-actions{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:10px;
    margin-top:18px;
}

.card-actions .project-btn{
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.card-actions .primary{
    background:linear-gradient(135deg,#3158ff,#6c2cff);
    color:#fff;
}

.card-actions .project-btn:not(.primary){
    background:#fff;
    border:1px solid #e5e7eb;
    color:#111827;
}

.card-actions .project-btn:not(.primary):hover{
    border-color:#3158ff;
    color:#3158ff;
}
.project-info-row{
    display:flex;
    gap:10px;
    margin:14px 0;
}

.project-info-row span{
    flex:1;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:12px;
    padding:10px 12px;
    font-size:13px;
    font-weight:700;
    color:#334155;
    text-align:center;
}

.project-info-row i{
    color:#5b4dff;
    margin-right:6px;
}
.project-info-row{
    display:flex;
    gap:10px;
    margin:14px 0;
}

.project-info-row span{
    flex:1;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:12px;
    padding:10px 12px;
    font-size:13px;
    font-weight:700;
    color:#334155;
    text-align:center;
}

.project-info-row i{
    color:#5b4dff;
    margin-right:6px;
}
.project-highlights{
  margin-top:16px;
  margin-bottom:20px;
}

.project-highlights .project-tag{
  padding:9px 12px;
  font-size:12px;
  border-radius:999px;
}
.project-meta{
    display:flex;
    justify-content:center;
    gap:16px;
    margin-bottom:20px;
}

.project-meta .meta-box{
    flex:1;
    max-width:140px;
}
/* FINAL PROJECT CARD FIX */
.project-meta{
  display:grid !important;
  grid-template-columns:repeat(2, 1fr) !important;
  gap:14px !important;
  margin-bottom:20px !important;
}

.project-meta .meta-box{
  width:100% !important;
  max-width:none !important;
}

.project-highlights{
  margin-top:0 !important;
  margin-bottom:20px !important;
}

.card-actions{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:10px !important;
  margin-top:18px !important;
}

.card-actions .project-btn.primary{
  grid-column:span 1;
}

/* SKYON CARD FINAL CLEAN OVERRIDE */

.project-meta{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
  margin-bottom:20px !important;
}

.project-meta .meta-box{
  width:100% !important;
  max-width:none !important;
}

.project-highlights{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:9px !important;
  margin:0 0 20px !important;
}

.project-highlights .project-tag{
  padding:9px 12px !important;
  font-size:12px !important;
  border-radius:999px !important;
}

.card-actions{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:10px !important;
  margin-top:18px !important;
}

.card-actions .project-btn{
  width:100% !important;
  min-width:0 !important;
}

.card-actions .project-btn:nth-child(3){
  grid-column:1 / -1 !important;
}
/* SKYON CARD */

.ff-skyon-card{
  max-width:430px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(15,23,42,.07);
}

.ff-skyon-img{
  height:265px;
  position:relative;
  background-size:cover;
  background-position:center;
}

.ff-skyon-img:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.65),rgba(0,0,0,.08));
}

.ff-skyon-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}

.ff-skyon-title{
  position:absolute;
  left:22px;
  bottom:22px;
  z-index:2;
}

.ff-skyon-title h3{
  color:#fff;
  margin:0;
  font-size:24px;
  font-weight:800;
}

.ff-skyon-title p{
  color:#fff;
  margin:4px 0 0;
  font-size:15px;
}

.ff-skyon-body{
  padding:22px;
}

.project-meta{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:10px !important;
  margin-bottom:18px !important;
}

.ff-skyon-stats div{
  padding:14px 6px !important;
}