/* =========================================================
   ROOT + RESET
========================================================= */
:root{
  --brand:#0047AB;
  --brand-dark:#00264d;
  --accent:#FF9800;
  --bg:#ffffff;
  --soft:#f6f8fc;
  --text:#1f2937;
  --muted:#000000;
  --card:#ffffff;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:16px;
  --radius-sm:12px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  overflow-x:hidden;
  padding-top:74px;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

/* =========================================================
   UTILITIES
========================================================= */
.container{
  width:min(1100px,92vw);
  margin-inline:auto;
}

.soft{ background:var(--soft); }
section{ padding:44px 0; }

.muted{ color:var(--muted); font-size:14px; }
.tiny{ font-size:13px; margin-top:10px; color:var(--muted); }

.grid{ display:grid; gap:14px; }
.grid.two{ grid-template-columns:repeat(2,1fr); }
.grid.three{ grid-template-columns:repeat(3,1fr); }

.list,
.steps,
.site-footer ul{
  list-style:none;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.card h3{ font-size:18px; margin-bottom:8px; }

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  z-index:9999;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:74px;
}

.brand{ display:flex; align-items:center; }
.brand-logo{
  max-width:260px;
  height:auto;
  padding:8px;
  display:block;
}

.navlinks{
  display:flex;
  gap:14px;
  align-items:center;
}
.navlinks a{
  font-weight:800;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  transition:.2s;
}
.navlinks a:hover{
  background:#eef4ff;
  color:var(--brand);
  text-decoration:none;
}

.nav-cta{
  background:var(--brand);
  color:#fff !important;
}
.nav-cta:hover{ filter:brightness(.95); }

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.menu-icon{
  position:relative;
  width:18px;
  height:2px;
  background:#111827;
  display:block;
  margin:0 auto;
}
.menu-icon::before,
.menu-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#111827;
}
.menu-icon::before{ top:-6px; }
.menu-icon::after{ top:6px; }

/* =========================================================
   HERO
========================================================= */
.hero{ padding:30px 0 18px; }

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  background:#eef4ff;
  color:var(--brand);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

h1{
  font-size:42px;
  line-height:1.15;
  letter-spacing:-.02em;
  margin-top:12px;
}

.lead{
  margin-top:10px;
  color:#374151;
  font-size:16px;
  max-width:70ch;
}

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid transparent;
  transition:.2s;
  cursor:pointer;
  font-weight:900;
  text-decoration:none;
}
.btn.primary{ background:var(--brand); color:#fff; }
.btn.accent{ background:var(--accent); color:#111; }
.btn.outline{ background:#91df5d; border-color:var(--border); color:#111; }
.btn:hover{ transform:translateY(-1px); filter:brightness(.97); }

.trust-strip{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:14px;
}
.trust{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  font-size:13px;
  box-shadow:var(--shadow);
}
.trust strong{ display:block; font-size:14px; }
.trust span{ color:var(--muted); }

.hero-media img{
  width:100%;
  height:460px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--border);
  display:block;
  box-shadow:var(--shadow);
}

.hero-note{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
}

/* =========================================================
   LIST + CHECK ICON
========================================================= */
.list{
  display:grid;
  gap:8px;
  margin-top:10px;
}
.list li{
  display:flex;
  gap:8px;
  color:#374151;
}

.check{
  display:inline-grid;
  place-items:center;
  width:18px;
  height:18px;
  border-radius:6px;
  background:#e8fff4;
  border:1px solid #b7f7d4;
  color:#16a34a;
  flex:0 0 auto;
  margin-top:2px;
  font-weight:900;
}

/* =========================================================
   CHIPS
========================================================= */
.chips{
  display:flex;
  flex-wrap:no-wrap;
  gap:10px;
  margin-top:10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#e9f2ff;
  color:#0b5ed7;
  font-size:13px;
  font-weight:900;
}

/* =========================================================
   AREAS + STEPS
========================================================= */
.areas{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.area{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  text-align:center;
  box-shadow:var(--shadow);
  font-weight:900;
}

.steps{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.steps li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#374151;
}
.step-n{
  width:28px;
  height:28px;
  border-radius:10px;
  display:inline-grid;
  place-items:center;
  background:#eef4ff;
  color:var(--brand);
  border:1px solid #dbeafe;
  font-weight:900;
}

/* =========================================================
   FAQ
========================================================= */
.faq details{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:10px;
  box-shadow:var(--shadow);
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{
  margin-top:8px;
  color:#374151;
}

.note{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  box-shadow:var(--shadow);
  margin-top:14px;
}

/* =========================================================
   CONTACT FORM
========================================================= */
.contact{
  background:linear-gradient(135deg,#fff,#f0f6ff);
  border-top:1px solid var(--border);
}

.contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:10px;
}
.field{ display:grid; gap:6px; }
.field-full{ grid-column:1/-1; }

label{ font-weight:900; color:#111827; font-size:13px; }

input, textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:0;
  font:inherit;
}

input:focus, textarea:focus{
  border-color:#cbd5e1;
  box-shadow:0 0 0 4px rgba(0,71,171,.08);
}

.phone-wrap{
  display:flex;
  align-items:center;
  border:1px solid #ccc;
  border-radius:6px;
  overflow:hidden;
}
.phone-wrap .country-code{
  padding:0 12px;
  background:#f5f5f5;
  font-weight:600;
  color:#333;
  border-right:1px solid #ccc;
}
.phone-wrap input{
  border:none;
  padding:10px;
  flex:1;
  outline:0;
}

.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

/* =========================================================
   KPI BOXES
========================================================= */
.kpis{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:12px;
}
.kpi{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  box-shadow:var(--shadow);
  text-align:center;
}
.kpi strong{
  display:block;
  font-size:18px;
  color:var(--brand);
}
.kpi span{
  color:var(--muted);
  font-size:12px;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{
  background:#0b1220;
  color:rgba(255,255,255,.88);
  padding:28px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:14px;
  align-items:flex-start;
}
.site-footer h4{ color:#fff; margin-bottom:8px; }
.site-footer ul{ display:grid; gap:8px; }
.site-footer a{ color:rgba(255,255,255,.88); }
.footer-logo{ max-width:240px; height:auto; display:block; }

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:16px;
  padding-top:14px;
  color:rgba(255,255,255,.7);
}

/* =========================================================
   FLOATING BUTTONS (FAB)
========================================================= */
.fab{
  position:fixed;
  bottom:max(18px, env(safe-area-inset-bottom));
  z-index:99999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:56px;
  height:56px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.1);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  -webkit-tap-highlight-color:transparent;
  transition:transform .18s, box-shadow .18s, filter .18s;
  text-decoration:none;
}
.fab .fab-icon{ width:26px; height:26px; display:block; }

.fab-left{ left:max(16px, env(safe-area-inset-left)); right:auto !important; }
.fab-right{ right:max(16px, env(safe-area-inset-right)); left:auto !important; }

.fab.call{ background:#0b5ed7; color:#fff; }
.fab.whatsapp{ background:#25d366; color:#f8f8f8; }

@media (hover:hover){
  .fab:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(0,0,0,.22);
    filter:saturate(1.05);
  }
}
.fab:active{
  transform:translateY(0);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.fab:focus-visible{
  outline:rgba(252,250,250,.18) solid 3px;
  outline-offset:4px;
}

@media (max-width:480px){
  .fab{ width:50px; height:50px; bottom:max(14px, env(safe-area-inset-bottom)); }
  .fab .fab-icon{ width:24px; height:24px; }
  .fab-left{ left:max(12px, env(safe-area-inset-left)); }
  .fab-right{ right:max(12px, env(safe-area-inset-right)); }
}

body.has-bottom-bar .fab{
  bottom:max(76px, env(safe-area-inset-bottom));
}

/* =========================================================
   TRIPLE SLIDERS (GPS / UPS)
========================================================= */
#ups-triple-slider{ position:relative; }

body:not(.elementor-editor-active) #gps-triple-slider{
  width:100vw;
  position:relative;
  left:0;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#dedede;
}

body.elementor-editor-active #gps-triple-slider,
body.elementor-editor-active #gps-triple-slider .gps-slider-track,
body.elementor-editor-active #gps-triple-slider .gps-slider-viewport{
  position:relative !important;
  z-index:0 !important;
}

body.elementor-editor-active #gps-triple-slider{
  background:#dedede;
  width:100% !important;
  max-width:100% !important;
  left:auto !important;
  margin:0 !important;
  pointer-events:none !important;
}

.gps-slider-viewport,
.ups-slider-viewport{
  overflow:hidden;
  width:100%;
}

.gps-slider-track,
.ups-slider-track{
  display:flex;
  transition:transform .5s;
  will-change:transform;
}

.gps-slide{
  min-width:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  justify-items:center;
  gap:0;
  padding:14px 0;
  align-items:center;
}

.gps-img{
  display:flex;
  align-items:center;
  justify-content:center;
  height:450px;
  background:#d3d3d3;
}
.gps-img img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transform:scale(1.03);
  display:block;
  transition:transform .25s;
}
.gps-img img:hover{ transform:scale(1.06); }

.gps-controls{
  position:absolute;
  top:50%;
  left:0; right:0;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index:5;
}

.gps-nav-btn{
  pointer-events:auto;
  width:32px;
  height:32px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}
.gps-nav-btn:hover{ background:rgba(0,0,0,.55); }

.ups-slide{
  min-width:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  padding:14px 10px;
  align-items:center;
}

.ups-img{
  width:100%;
  background:#d9d9d9;
  border-radius:16px;
  height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.ups-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transform:scale(1.02);
  transition:transform .25s;
}
.ups-img img:hover{ transform:scale(1.05); }

.ups-controls{
  position:absolute;
  top:50%;
  left:0; right:0;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  padding:0 8px;
  z-index:5;
}
.ups-nav-btn{
  pointer-events:auto;
  width:32px;
  height:32px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:16px;
  cursor:pointer;
}
.ups-nav-btn:hover{ background:rgba(0,0,0,.55); }

.elementor .elementor-widget-html .elementor-widget-container{
  padding:0 !important;
  margin:0 !important;
}
body.elementor-editor-active #gps-triple-slider .gps-nav-btn{
  pointer-events:auto !important;
}

/* =========================================================
   GALLERY + LIGHTBOX
========================================================= */
.gallery{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.gallery-item{
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s;
}
.gallery-item:hover img{ transform:scale(1.05); }

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}
.lightbox .close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:34px;
  color:#fff;
  cursor:pointer;
}

/* =========================================================
   REVIEWS
========================================================= */
.reviews{
  padding:60px 0;
  background:#f8fafc;
}
.section-title{ margin-bottom:30px; }
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.section-title h2{ font-size:28px; line-height:1.2; }
.section-title p{
  color:var(--muted);
  margin-top:6px;
  max-width:80ch;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.review-card{
  background:#fff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.review-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.review-head img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
}
.review-name{ margin:0; font-size:16px; }
.review-meta{ font-size:13px; color:#64748b; }
.review-text{ font-size:14.5px; line-height:1.6; }
.review-foot{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.stars{ color:#f59e0b; }
.pill-lite{
  background:#f1f5f9;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
}

/* =========================================================
   INDUSTRY SECTION
========================================================= */
.gps-industry-section{
  padding:60px 20px;
  background:#f5f7fb;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.gps-industry-container{
  max-width:1150px;
  margin:0 auto;
}
.gps-industry-heading{
  text-align:center;
  font-size:2rem;
  color:#111827;
  margin-bottom:10px;
}
.gps-industry-subheading{
  text-align:center;
  color:#4b5563;
  font-size:1rem;
  margin-bottom:45px;
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}
.gps-industry-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:25px;
}
.gps-industry-card{
  background:#fff;
  padding:30px 25px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(15,23,42,.08);
  text-align:justify;
  transition:transform .2s, box-shadow .2s;
}
.gps-industry-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(15,23,42,.12);
}
.gps-industry-icon{
  font-size:40px;
  color:#2563eb;
  margin-bottom:15px;
}
.gps-industry-card h4{
  font-size:1.2rem;
  color:#111827;
  margin-bottom:8px;
}
.gps-industry-card p{
  color:#374151;
  font-size:.94rem;
  line-height:1.5;
}
.gps-industry-cta{ text-align:center; margin-top:45px; }
.gps-industry-btn{
  display:inline-block;
  padding:12px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  background:linear-gradient(135deg,#2563eb,#4f46e5);
  color:#fff;
  box-shadow:0 12px 25px rgba(37,99,235,.35);
  transition:transform .15s, box-shadow .15s;
  text-decoration:none;
}
.gps-industry-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(37,99,235,.45);
}

/* =========================================================
   SPEC TABLE
========================================================= */
.gps-spec-box{
  background:#fff;
  border:1px solid #eef2f6;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  max-width:1100px;
  margin:24px auto;
  padding:18px 18px 16px;
}
#gps-ups-categories-pune{ padding:0 16px; }

.gps-spec-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-bottom:14px;
  border-bottom:1px solid #eef2f6;
  margin-bottom:14px;
}
.gps-spec-head strong{
  font-size:20px;
  color:#0b2a66;
  line-height:1.2;
}

.gps-brands{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:4px;
  max-width:100%;
}
.gps-brands img{
  width:98px;
  height:62px;
  object-fit:contain;
  background:#fff;
  border-radius:8px;
  border:1px solid #eef2f6;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  padding:6px;
  flex:0 0 auto;
}
.gps-brands img:hover{
  cursor:pointer;
  transform:translateY(-3px);
  box-shadow:0 5px 12px rgba(0,0,0,.15);
}

.gps-spec-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #eef2f6;
}
.gps-spec-table th,
.gps-spec-table td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid #eef2f6;
  vertical-align:top;
}
.gps-spec-table th{
  width:30%;
  background:#f6f9ff;
  color:#1a2b49;
  font-weight:700;
  border-right:1px solid #eef2f6;
}
.gps-spec-table td{
  background:#fff;
  color:#333;
}
.gps-spec-table tr:last-child td,
.gps-spec-table tr:last-child th{
  border-bottom:none;
}

.gps-note{
  margin:14px 0 0;
  font-size:14px;
  color:#334155;
  background:#f7fbff;
  border:1px solid #e6f0ff;
  border-left:4px solid #2a7cff;
  padding:12px 14px;
  border-radius:10px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1100px){
  .gallery{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width:820px){
  .gallery{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .gallery-item img{ height:200px; }
}
@media (max-width:520px){
  .gallery{ grid-template-columns:1fr; }
  .gallery-item img{ height:220px; }
}

@media (max-width:991px){
  .gps-img{ height:380px; }
  .ups-img{ height:280px; }
}

@media (max-width:980px){
  h1{ font-size:34px; }

  .hero-grid,
  .grid.two,
  .grid.three,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-media img{ height:300px; }
  .areas{ grid-template-columns:repeat(2,1fr); }

  .menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .navlinks{ display:none; }

  .navlinks.mobile{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    position:absolute;
    top:74px;
    right:12px;
    width:min(320px,92vw);
    padding:10px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
    z-index:9999;
  }
  .navlinks.mobile a{ padding:12px; }
}

@media (max-width:767px){
  .gps-controls,
  .ups-controls{
    position:static;
    transform:none;
    pointer-events:auto;
    justify-content:center;
    gap:12px;
    padding:8px 0 0;
  }

  .ups-slide{
    grid-template-columns:1fr;
    gap:10px;
    padding:10px;
  }
  .ups-img{ height:220px; }

  .gps-slide{ padding:0; }
  .gps-img{ height:180px; }
}

@media (max-width:640px){
  .gps-industry-heading{ font-size:1.6rem; }
  .gps-industry-subheading{ font-size:.9rem; }
}

@media (max-width:768px){
  .gps-spec-head{ align-items:flex-start; }
  .gps-spec-head strong{ font-size:18px; }

  .gps-spec-table th,
  .gps-spec-table td{
    display:block;
    width:100%;
  }
  .gps-spec-table th{
    border-right:none;
    border-bottom:none;
    padding-bottom:6px;
  }
  .gps-spec-table td{
    padding-top:6px;
  }
}
