/* ===============================
   ROOT VARIABLES
================================ */
:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --panel2:#0c1730;
  --text:#eaf0ff;
  --muted:#b7c3e6;
  --line:rgba(255,255,255,.08);
  --brand:#3aa0ff;
  --brand2:#1d6eff;
  --shadow:0 14px 40px rgba(0,0,0,.35);
  --radius:16px;
}

/* ===============================
   GLOBAL RESET
================================ */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===============================
   BODY
================================ */
html, body{
  width: 100%;
  height: 100%;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ===============================
   LINKS
================================ */
a{
  color: inherit;
  text-decoration: none;
}

/* ===============================
   CONTAINER
================================ */
.container{
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* ===============================
   HEADER
================================ */
header{
  background: linear-gradient(135deg, #0b1220, #0f1b33);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* ===============================
   BRAND / LOGO
================================ */
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img{
  height: 70px;   /* logo size control */
  width: auto;
  display: block;
}

.brand-name{
  font-size: 40px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===============================
   NAV BUTTONS
================================ */
nav a{
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover{
  background: var(--brand2);
}

/* ===============================
   SECTIONS
================================ */
section{
  background: transparent;
  padding: 60px 0;
}

/* ===============================
   HERO
================================ */
.hero{
  background: transparent;
}

/* ===============================
   BUTTONS
================================ */
.btn{
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 22px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover{
  background: var(--brand2);
}

/* ===============================
   CARDS / PANELS
================================ */
.card{
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(-line);
}

/* ===============================
   FOOTER
================================ */
footer{
  background: var(--panel2);
  border-top: 1px solid var(--line);
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
}
/* FORCE LOGO SIZE (override everything) */
header img,
.brand img,
.logo img,
#logo,
#logo img,
.site-logo img,
.navbar-brand img{
  height: 80px !important;
  max-height: 80px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
}
/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

/* SERVICE BOX */
.service-box {
  background: linear-gradient(135deg, #1e2a44, #223b6e);
  padding: 24px;
  border-radius: 16px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ICON */
.service-box .icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 12px;
}

/* TITLE */
.service-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.service-box p {
  font-size: 14px;
  color: #cfd8ff;
  line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .services-grid {
grid-template-columns:1fr;
  }
}
/* ================================
   INVOICE CREATE – ITEM ROW HEIGHT
   ================================ */

.invoice-items-table td {
  padding: 5px 6px;        /* row ka gap kam */
  vertical-align: middle;
}

.invoice-items-table input,
.invoice-items-table select {
  height: 20px;            /* input ki height */
  padding: 4px 6px;
  font-size: 13px;
  box-sizing: border-box;
}

/* Qty / Trips jese chotay inputs */
.invoice-items-table input[type="number"] {
  height: 20px;
}