/* Start custom CSS for html, class: .elementor-element-cffd423 */:root {
  --brand: #f5b301;
  --dark: #0b2a4a;
}

/* PHONE ONLY */
@media (max-width: 767px) {

  body {
    padding-top: 96px; /* thoda extra space logo ke liye */
    font-family: system-ui, sans-serif;
  }

  .phone-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    z-index: 9999;
  }

  .phone-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px; /* thoda airy */
  }

  /* 🔥 LOGO BADA */
  .ph-logo img {
    height: 56px;   /* pehle 46px */
  }

  /* Products (highlight) */
  .ph-product {
    margin-left: auto;
    margin-right: 12px;
    padding: 9px 16px;
    border: 2px solid var(--brand);
    border-radius: 22px;
    color: var(--brand);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
  }

  /* 🔥 CONTACT RIGHT MARGIN */
  .ph-contact {
    padding: 10px 18px;
    margin-right: 8px;   /* ✅ right margin added */
    background: var(--brand);
    color: #000;
    border-radius: 22px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6319dcd */:root {
  --brand: #f5b301;
  --dark: #0b2a4a;
}

/* =========================
   DESKTOP ONLY
   ========================= */
@media (min-width: 768px) {

  body {
    padding-top: 165px;
    font-family: system-ui, sans-serif;
  }

  /* TOP CONTACT BAR */
  .top-contact-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark);
    z-index: 1001;
  }

  .top-contact-inner {
    max-width: 1300px;
    margin: auto;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 14px;
    color: #fff;
  }

  .top-contact-inner a {
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
  }

  /* MAIN HEADER */
  .desktop-main-header {
    position: fixed;
    top: 42px;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
  }

  .desktop-main-inner {
    max-width: 1300px;
    margin: auto;
    padding: 26px 30px;
    display: flex;
    justify-content: center;
  }

  /* CENTER GROUP */
  .center-group {
    display: flex;
    align-items: center;
    gap: 44px;
  }

  /* LOGO */
  .desktop-logo img {
    height: 86px;
  }

  /* NAV */
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .desktop-nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
  }

  /* 🔥 PRODUCTS HIGHLIGHT */
  .nav-product {
    color: var(--brand);
    padding: 8px 18px;
    border: 2px solid var(--brand);
    border-radius: 30px;
  }

  .nav-product:hover {
    background: var(--brand);
    color: #000;
  }

  /* CONTACT BUTTON */
  .nav-btn {
    padding: 10px 24px;
    background: var(--brand);
    color: #000 !important;
    border-radius: 30px;
    font-weight: 600;
  }
}

/* HIDE ON MOBILE */
@media (max-width: 767px) {
  .desktop-header {
    display: none;
  }
}/* End custom CSS */