:root{
  --pbs-blue:#0b4f7b;
  --pbs-blue-2:#0e6fa8;
  --text:#1c1c1c;
  --muted:#666;
  --bg:#ffffff;
  --card:#ffffff;
  --shadow: 0 10px 28px rgba(0,0,0,0.08);
  --shadow-blue: 0 18px 40px rgba(11,79,123,0.25);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: Arial, Helvetica, sans-serif; color:var(--text); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.section{ padding:70px 0; }
.section-muted{ background:#f6f9fc; }
.center{ text-align:center; }
.mt-12{ margin-top:12px; }
.mt-24{ margin-top:24px; }

/* ===== TOP BAR ===== */
.topbar{
  background:var(--pbs-blue);
  color:#fff;
  font-size:14px;
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.topbar-left{ display:flex; gap:18px; flex-wrap:wrap; }
.topbar-left a{ opacity:.95; }
.topbar-right{ display:flex; gap:10px; }
.topbar-right a{
  width:28px; height:28px; border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.12);
  transition:.25s ease;
}
.topbar-right a:hover{ transform:translateY(-2px); background:rgba(255,255,255,.2); }

/* ===== HEADER ===== */
.header{
  position:sticky; top:0; z-index:999;
  background:#fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:12px 0;
}
.logo img{ height:54px; width:auto; }

.nav{ display:flex; gap:22px; align-items:center; }
.nav-link{
  text-transform:uppercase;
  font-weight:700;
  font-size:14px;
  color:#222;
  padding:10px 0;
  position:relative;
}
.nav-link:hover{ color:var(--pbs-blue); }
.nav-link.active{ color:var(--pbs-blue); }
.nav-link.active::after{
  content:""; position:absolute; left:0; bottom:0;
  width:100%; height:3px; border-radius:3px;
  background:var(--pbs-blue);
}

.nav-actions{ display:flex; gap:10px; align-items:center; }
.search-btn, .burger{
  border:0; background:#f1f4f7; cursor:pointer;
  padding:10px 12px; border-radius:12px;
  transition:.25s ease;
}
.search-btn:hover, .burger:hover{ background:#e7eef5; transform:translateY(-1px); }

.burger{ display:none; }

.searchbar{
  display:none;
  border-top:1px solid #eef2f6;
  background:#fff;
}
.searchbar.show{ display:block; }
.searchbar-inner{
  display:flex; gap:10px; padding:12px 0;
}
.searchbar input{
  flex:1; padding:12px 14px;
  border-radius:12px; border:1px solid #dbe6ef;
  outline:none;
}
.searchbar button{
  padding:12px 16px;
  border-radius:12px;
  border:0;
  background:var(--pbs-blue);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

/* ===== HERO ===== */
.hero{ position:relative; }
.hero-slider{
  height:520px;
  position:relative;
  overflow:hidden;
}
.hero-slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.02);
  transition: opacity 800ms ease, transform 1200ms ease;
}
.hero-slide.active{
  opacity:1;
  transform:scale(1);
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
}
.hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}
.hero-small{
  letter-spacing:2px;
  font-weight:800;
  opacity:.95;
  margin-bottom:10px;
}
.hero-big{
  font-size:56px;
  font-weight:900;
  margin:0 0 18px;
  text-transform:uppercase;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.18);
  border:0;
  width:46px; height:46px;
  border-radius:50%;
  cursor:pointer;
  font-size:28px;
  color:#fff;
  display:grid; place-items:center;
  transition:.25s ease;
  z-index:3;
}
.hero-arrow:hover{ background:rgba(255,255,255,.28); transform:translateY(-50%) scale(1.06); }
.hero-arrow.left{ left:16px; }
.hero-arrow.right{ right:16px; }

.hero-dots{
  position:absolute;
  left:50%; bottom:18px;
  transform:translateX(-50%);
  display:flex; gap:10px;
  z-index:3;
}
.hero-dot{
  width:10px; height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:.25s ease;
}
.hero-dot.active{ background:#fff; width:26px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:12px 18px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  cursor:pointer;
  transition:.25s ease;
}
.btn-primary{
  background:var(--pbs-blue);
  color:#fff;
  box-shadow: 0 12px 28px rgba(11,79,123,.28);
}
.btn-primary:hover{ background:var(--pbs-blue-2); transform:translateY(-2px); }
.btn-outline{
  border:2px solid var(--pbs-blue);
  color:var(--pbs-blue);
  background:#fff;
}
.btn-outline:hover{
  background:var(--pbs-blue);
  color:#fff;
  transform:translateY(-2px);
}
.btn-full{ width:100%; }

/* ===== SECTION TITLES ===== */
.section-title{
  text-align:center;
  margin-bottom:28px;
}
.section-title h2{
  font-size:34px;
  margin:0;
  font-weight:900;
}
.accent{ color:var(--pbs-blue); }

/* ===== ABOUT ===== */
.about-card{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:20px;
  background:#fff;
  border-radius:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.about-text{
  padding:38px 34px;
}
.kicker{
  color:#8092a3;
  font-weight:800;
  letter-spacing:2px;
  margin-bottom:10px;
}
.h2{ margin:0 0 14px; font-size:34px; }
.about-text p{
  color:#1a1a1a;
  line-height:1.6;
  margin:0 0 22px;
}
.about-image{
  background:#f6f9fc;
  display:grid; place-items:center;
  padding:14px;
}
.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
}

/* ===== FEATURED GRID ===== */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}
.service-card{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:20px;
  text-align:center;
  cursor:pointer;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}
.service-card img{
  width:100%;
  height:190px;
  object-fit:contain;
  transition:.45s ease;
}
.service-card h3{
  margin:14px 0 0;
  font-size:18px;
  font-weight:900;
  color:#222;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-blue);
}
.service-card:hover img{
  transform:scale(1.06);
}

/* ===== COUNTERS ===== */
.counters{
  background:#eef3f8;
  padding:46px 0;
}
.counter-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.counter{
  text-align:center;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:22px 12px;
}
.counter-num{
  font-size:42px;
  font-weight:900;
  color:var(--pbs-blue);
}
.counter-label{
  margin-top:8px;
  font-weight:900;
  letter-spacing:.7px;
  color:#333;
  font-size:12px;
}

/* ===== DEALERS / TABS ===== */
.deal-wrap{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:18px;
  align-items:stretch;
}
.deal-main{
  background:#fff;
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:18px;
  min-height:360px;
}
.deal-panel{ display:none; }
.deal-panel.active{ display:block; animation:fadeIn .35s ease; }
@keyframes fadeIn{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:none;} }

.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.brand-box{
  background:#f6f9fc;
  border-radius:20px;
  height:140px;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition:.35s ease;
}
.brand-box img{
  max-height:90px;
  max-width:86%;
  transition:.35s ease;
}
.brand-box:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-blue);
}
.brand-box:hover img{
  transform:scale(1.08);
}

.deal-side{
  background:#f6fbff;
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:16px;
}
.deal-menu{ display:flex; flex-direction:column; gap:10px; }
.deal-item{
  border:0;
  background:#fff;
  padding:12px 14px;
  border-radius:14px;
  cursor:pointer;
  font-weight:900;
  color:#2b2b2b;
  text-align:left;
  transition:.25s ease;
}
.deal-item:hover{
  background:rgba(11,79,123,.1);
  color:var(--pbs-blue);
  transform:translateY(-1px);
}
.deal-item.active{
  background:var(--pbs-blue);
  color:#fff;
}

/* ===== WHY CHOOSE ===== */
.why{
  padding:56px 0;
  background-size:cover;
  background-position:center;
}
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.why-item{
  display:flex;
  align-items:center;
  gap:16px;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border-radius:18px;
  padding:18px 18px;
  box-shadow: var(--shadow);
  transition:.35s ease;
  cursor:pointer;
}
.why-icon{
  width:66px; height:66px;
  border-radius:50%;
  display:grid; place-items:center;
  font-size:28px;
  background:#fff;
  color:var(--pbs-blue);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition:.35s ease;
}
.why-text{
  font-weight:900;
  letter-spacing:.6px;
  color:#3d4b58;
}
.why-item:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-blue);
}
.why-item:hover .why-icon{
  background:var(--pbs-blue);
  color:#fff;
  transform:scale(1.08);
}

/* ===== FULL WIDTH GALLERY SLIDER ===== */
.gallery-slider{
  width:100%;
  overflow:hidden;
  background:#7d7d7d;
  padding:40px 0;
}
.gallery-track{
  display:flex;
  gap:20px;
  padding-left:20px;
  animation: galleryScroll 34s linear infinite;
}
.gallery-slider:hover .gallery-track{
  animation-play-state: paused;
}
.gallery-track img{
  height:260px;
  border-radius:18px;
  object-fit:cover;
  flex-shrink:0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
@keyframes galleryScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ===== PORTFOLIO ===== */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:26px;
}
.portfolio-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.35s ease;
  cursor:pointer;
}
.portfolio-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-blue);
}
.portfolio-image{ overflow:hidden; }
.portfolio-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.45s ease;
}
.portfolio-card:hover img{ transform:scale(1.08); }
.portfolio-title{
  text-align:center;
  padding:16px 12px 20px;
  font-weight:900;
  font-size:16px;
  color:var(--pbs-blue);
}

/* ===== BRANDS SLIDER ===== */
.brand-section{
  padding:60px 0;
  background:#f6f9fc;
}
.brand-slider{
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 8px;
}
.brand-slider::-webkit-scrollbar{ display:none; }
.brand-card{
  min-width:260px;
  height:140px;
  background:#fff;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
  transition:.35s ease;
}
.brand-card img{
  max-height:95px;
  max-width:86%;
  transition:.35s ease;
}
.brand-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-blue);
}
.brand-card:hover img{ transform:scale(1.1); }

/* ===== CONTACT ===== */
.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact-left .contact-block{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px 18px;
  margin-bottom:16px;
}
.contact-block h3{
  margin:0 0 8px;
  color:#000;
}
.contact-block p{ margin:6px 0; color:#222; }
.contact-block a{ color:var(--pbs-blue); font-weight:700; }

.form-card{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:20px;
}
.form-card h3{ margin:0 0 12px; }
.form-card input, .form-card textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #dbe6ef;
  outline:none;
  margin-bottom:12px;
  font-size:14px;
}
.form-card textarea{ min-height:120px; resize:vertical; }
.form-note{ margin-top:10px; font-weight:800; color:var(--pbs-blue); }

.map-wrap{
  margin-top:22px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

/* ===== FOOTER ===== */
.footer{
  background:var(--pbs-blue);
  color:#fff;
}
.footer-top{
  padding:44px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
}
.footer-title{
  font-weight:900;
  margin:0 0 10px;
}
.footer a{ display:block; margin:6px 0; opacity:.92; }
.footer a:hover{ opacity:1; text-decoration:underline; }
.social{ display:flex; gap:10px; margin-top:10px; }
.social a{
  width:34px; height:34px;
  border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.15);
  transition:.25s ease;
}
.social a:hover{ transform:translateY(-2px); background:rgba(255,255,255,.25); }

.footer-bottom{
  background:rgba(0,0,0,.12);
  padding:14px 0;
  text-align:center;
  font-size:14px;
}
.footer-bottom a{ display:inline; font-weight:800; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .counter-grid{ grid-template-columns: repeat(2, 1fr); }
  .deal-wrap{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-wrap{ grid-template-columns:1fr; }
  .about-card{ grid-template-columns:1fr; }
  .hero-big{ font-size:42px; }
}

@media (max-width: 720px){
  .nav{ display:none; }
  .burger{ display:block; }
  .nav.show{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    right:0;
    left:0;
    background:#fff;
    border-top:1px solid #eef2f6;
    padding:12px 20px 18px;
  }
  .why-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns:1fr; }
  .gallery-track img{ height:210px; }
}

/* =========================
   About page + read more
========================= */
.show-desktop{ display:flex; gap:22px; align-items:center; }
.btn-small{ padding:10px 14px; border-radius:12px; font-size:13px; }

.about-page-card{
  background:#fff;
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:26px 26px;
  max-width: 980px;
  margin: 0 auto;
}
.about-lead{
  margin:0;
  line-height:1.7;
  color:#222;
  font-size:16px;
  font-weight:600;
}

.readmore-content{
  margin-top:16px;
  display:none;
  line-height:1.7;
  color:#222;
}
.readmore-content.show{ display:block; }

.about-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

/* =========================
   Why icons (match attached)
========================= */
.why-attached .why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
}
.why-attached .why-item{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
  transition: .35s ease;
}
.why-attached .why-icon{
  width:76px;
  height:76px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: .35s ease;
}
.why-attached .why-icon svg{
  width:34px;
  height:34px;
  fill:none;
  stroke: var(--pbs-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: .35s ease;
}
.why-attached .why-text{
  font-weight:900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color:#6b7682;
  line-height:1.15;
  font-size:22px;
}
.why-attached .why-item:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.why-attached .why-item:hover .why-icon{
  background: var(--pbs-blue);
}
.why-attached .why-item:hover .why-icon svg{
  stroke:#fff;
}

/* responsive */
@media (max-width: 980px){
  .why-attached .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .why-attached .why-grid{ grid-template-columns: 1fr; }
  .why-attached .why-text{ font-size:20px; }
}
