:root{
  --psi-orange:#ea8007;
  --psi-yellow:#f7d508;
  --psi-white:#ffffff;
}

/* =========================
BASE
========================= */

body{
  background:#fff;
  font-family: system-ui, -apple-system, Arial, sans-serif;
}

a{ text-decoration:none; }

.rounded-4{ border-radius:1rem !important; }

/* =========================
NAVBAR
========================= */

.psi-navbar{
  position:sticky;
  top:0;
  z-index:1030;
  background: linear-gradient(90deg,var(--psi-orange),var(--psi-yellow));
  border-bottom:1px solid rgba(255,255,255,.25);
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.psi-navbar .brand-text{
  color:#fff;
  font-weight:900;
  letter-spacing:.3px;
  font-size:20px;
}

.psi-navbar .nav-link{
  color:rgba(255,255,255,.95);
  font-weight:700;
  padding:.6rem .85rem;
  border-radius:12px;
  transition:all .18s ease;
}

.psi-navbar .nav-link:hover{
  color:#fff;
  background:rgba(0,0,0,.12);
  transform:translateY(-1px);
}

.psi-navbar .nav-link.active{
  background:rgba(0,0,0,.18);
}

.psi-toggler{
  border:1px solid rgba(255,255,255,.35);
  border-radius:12px;
}

.navbar-toggler:focus{
  box-shadow:0 0 0 .25rem rgba(247,213,8,.25);
}

/* =========================
SEARCH (POLISHED)
========================= */

.psi-search{ min-width:280px; }

@media (max-width:991.98px){
  .psi-search{ width:100%; min-width:100%; }
}

.psi-search .input-group{
  border-radius:999px;
  overflow:hidden;
  background:#fff;
  border:2px solid rgba(255,255,255,.75);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.psi-search-icon{
  background:#fff;
  border:none;
  color:var(--psi-orange);
  padding-left:14px;
  padding-right:8px;
}

.psi-search-input{
  background:#fff;
  border:none;
  padding:8px 14px;
  color:#333;
}

.psi-search-input::placeholder{ color:#888; }

.psi-search-input:focus{ box-shadow:none; outline:none; }

.psi-search .btn{
  background:var(--psi-orange);
  color:#fff;
  font-weight:800;
  border:none;
  padding:6px 16px;
}

.psi-search .btn:hover{
  background:var(--psi-yellow);
  color:#000;
}

/* =========================
BUTTONS (VISIBLE ON HEADER)
========================= */

.psi-btn{
  border-radius:999px;
  font-weight:800;
  padding:.60rem 1.05rem;
  transition:all .2s ease;
  white-space:nowrap;
}

/* Register button: WHITE */
.psi-btn-primary{
  background:#fff;
  color:var(--psi-orange);
  border:2px solid #fff;
}

.psi-btn-primary:hover{
  background:rgba(255,255,255,.92);
  color:var(--psi-orange);
  transform:translateY(-1px);
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/* Login button: OUTLINE WHITE */
.psi-btn-ghost{
  border:2px solid rgba(255,255,255,.95);
  color:#fff;
  background:transparent;
}

.psi-btn-ghost:hover{
  background:#fff;
  color:var(--psi-orange);
  transform:translateY(-1px);
}

/* =========================
HERO
========================= */

.hero-section{
  min-height:82vh;
  background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("https://picsum.photos/1920/1080?technology");
  background-size:cover;
  background-position:center;
}

.hero-badge{
  display:inline-block;
  padding:.45rem .9rem;
  border-radius:999px;
  background:rgba(255,255,255,.2);
  font-weight:700;
}

.hero-subtext{ color:rgba(255,255,255,.9); }

/* MINI STATS */
.mini-stat{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:.9rem;
  text-align:center;
}
.mini-stat .mini-num{ font-weight:900; font-size:18px; }
.mini-stat .mini-label{ font-size:13px; color:rgba(255,255,255,.88); }

/* =========================
SERVICE CARDS
========================= */

.service-card{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  transition:all .25s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,.1);
}

.service-icon{
  width:55px;
  height:55px;
  border-radius:16px;
  margin:0 auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(90deg,var(--psi-orange),var(--psi-yellow));
  color:#fff;
  font-size:22px;
}

/* =========================
PROJECTS
========================= */

.project-card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  transition:all .25s ease;
}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,.1);
}

.project-card img{
  height:220px;
  object-fit:cover;
}

/* =========================
ABOUT
========================= */

.about-points{ margin-top:15px; }

.about-item{
  display:flex;
  gap:10px;
  align-items:center;
  margin:.45rem 0;
  font-weight:600;
}

.about-item i{ color:var(--psi-orange); }

/* =========================
CTA FORM BUTTON (QUICK INQUIRY)
========================= */

.psi-btn-cta{
  background: linear-gradient(90deg,var(--psi-orange),var(--psi-yellow));
  border:none;
  color:#fff;
  font-weight:800;
  border-radius:12px;
  padding:10px 16px;
  transition:all .2s ease;
}

.psi-btn-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.15);
  color:#fff;
}

/* form fields inside hero card */

.hero-card .form-control,
.hero-card .form-select{
  border-radius:10px;
  border:1px solid #ddd;
  padding:10px 12px;
}

.hero-card .form-control:focus,
.hero-card .form-select:focus{
  border-color:var(--psi-orange);
  box-shadow:0 0 0 .2rem rgba(234,128,7,.15);
}

/* =========================
FOOTER (ORANGE/YELLOW) + SUBSCRIBE FIX
========================= */

.psi-footer{
  background: linear-gradient(90deg,var(--psi-orange),var(--psi-yellow));
  color:#fff;
}

.psi-footer .brand-text{
  font-weight:900;
  color:#fff;
}

.footer-title{
  color:#fff;
  font-weight:800;
}

.footer-text{ color:rgba(255,255,255,.9); }

.footer-links a{
  color:#fff;
  transition:.2s;
}

.footer-links a:hover{ text-decoration:underline; }

.footer-divider{ border-color:rgba(255,255,255,.4); }

.footer-muted{ color:#fff; }

.footer-social{
  color:#fff;
  font-size:18px;
}

.footer-social:hover{ opacity:.8; }

/* Newsletter subscribe (button separated + visible) */
.psi-newsletter .input-group{
  border-radius:12px;
  overflow:hidden;
}

.psi-newsletter .form-control{
  border:2px solid rgba(255,255,255,.75);
  border-right:none;
  padding:10px 14px;
  background:rgba(255,255,255,.95);
  color:#333;
}

.psi-newsletter .form-control:focus{
  box-shadow:none;
  border-color:#fff;
}

.psi-newsletter .btn{
  background:#fff;
  color:var(--psi-orange);
  font-weight:900;
  border:2px solid #fff;
  padding:10px 18px;
}

.psi-newsletter .btn:hover{
  background:var(--psi-yellow);
  color:#000;
  border-color:var(--psi-yellow);
}

/* =========================
MOBILE NAV OVERLAY (NO PUSH DOWN)
========================= */

@media (max-width: 991.98px){

  .psi-navbar .navbar-collapse{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background: linear-gradient(90deg,var(--psi-orange),var(--psi-yellow));
    padding:20px;
    border-bottom-left-radius:14px;
    border-bottom-right-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
    z-index:999;
  }

  .psi-navbar .navbar-nav{
    text-align:center;
  }

  .psi-navbar .nav-link{
    padding:12px;
    font-size:16px;
  }

  .psi-search{
    margin-top:15px;
  }

  .psi-btn{
    width:100%;
    margin-top:10px;
  }
}