 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      color: #111;
      background: #fff;
    }

    /* ====== NAVBAR ====== */
    .navbar-main {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .nav-logo img {
      height: 55px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 6px;
      margin: 0;
      padding: 0;
    }

    .nav-menu li a {
      font-size: 14px;
      font-weight: 600;
      color: #222;
      text-decoration: none;
      padding: 7px 13px;
      border-radius: 4px;
      transition: color .2s;
    }

    .nav-menu li a:hover {
      color: #014196;
    }

    .nav-menu li.dropdown {
      position: relative;
    }

    .nav-menu li.dropdown .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 200px;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
      list-style: none;
      padding: 8px 0;
      z-index: 99;
    }

    .nav-menu li.dropdown:hover .submenu {
      display: block;
    }

    .nav-menu li.dropdown .submenu li a {
      font-size: 13px;
      padding: 9px 18px;
      color: #333;
    }

    .nav-menu li.dropdown .submenu li a:hover {
      background: #f0f4ff;
      color: #014196;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-phone-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .nav-phone-wrap a {
      font-size: 16px;
      font-weight: 700;
      color: #014196;
      text-decoration: none;
    }

    .nav-phone-wrap span {
      font-size: 11px;
      color: #666;
    }

    .btn-support {
      background: #f5a623;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-support:hover {
      background: #e09400;
      color: #fff;
    }

    /* ====== HERO ====== */
    .hero-section {
      padding: 150px 0 40px;
      background: url('images/hero-banner.png');
    }

    .hero-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      color: #014196;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hero-section h1 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #111;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .hero-section h1 span {
      color: #014196;
    }

    .hero-section .hero-sub {
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 22px;
      max-width: 480px;
    }

    .hero-icons {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .hero-icon-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .hero-icon-item i {
      font-size: 22px;
      color: #014196;
    }

    .hero-icon-item span {
      font-size: 11px;
      color: #444;
      text-align: center;
      max-width: 70px;
      line-height: 1.3;
    }

    .hero-btns {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-phone {
      background: #f5a623;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-phone:hover {
      background: #e09400;
      color: #fff;
    }

    .btn-watch {
      background: transparent;
      color: #014196;
      font-weight: 600;
      font-size: 14px;
      padding: 11px 20px;
      border-radius: 6px;
      text-decoration: none;
      border: 2px solid #014196;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
    }

    .btn-watch:hover {
      background: #014196;
      color: #fff;
    }

    .hero-right {
      position: relative;
    }

    .hero-right .print-worry {
      position: absolute;
      top: -10px;
      right: 0;
      background: #fff;
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 700;
      color: #111;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    }

    .hero-right .print-worry span {
      color: #014196;
    }

    .hero-img-main {
      width: 100%;
      max-width: 520px;
    }

    .badge-fast {
      background: #014196;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      display: inline-block;
      margin-top: 12px;
    }

    /* ====== 4 FEATURES STRIP ====== */
    .features-strip {
      background: #fff;
      padding: 22px 0;
      border-top: 1px solid #eee;
      border-bottom: 3px solid #014196;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 16px;
    }

    .feature-item .f-icon {
      width: 46px;
      height: 46px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .f-icon.blue {
      background: #e8effe;
      color: #014196;
    }

    .f-icon.green {
      background: #e6f7ee;
      color: #1a9e50;
    }

    .f-icon.orange {
      background: #fff3e0;
      color: #e67e00;
    }

    .f-icon.teal {
      background: #e0f5f5;
      color: #00868a;
    }

    .feature-item h6 {
      font-size: 14px;
      font-weight: 700;
      color: #111;
      margin: 0 0 2px;
    }

    .feature-item p {
      font-size: 12px;
      color: #666;
      margin: 0;
    }

    /* ====== ABOUT SECTION ====== */
    .about-section {
      padding: 60px 0;
    }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      color: #014196;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block;
    }

    .about-section h2 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #111;
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .about-section h2 span {
      color: #014196;
    }

    .about-section p {
      font-size: 14.5px;
      color: #555;
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .btn-readmore {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #014196;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      border-bottom: 2px solid #014196;
      padding-bottom: 2px;
    }

    .btn-readmore:hover {
      color: #012f70;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-wrap img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      height: 320px;
    }

    .badge-247 {
      position: absolute;
      bottom: 20px;
      left: -20px;
      background: #014196;
      color: #fff;
      border-radius: 10px;
      padding: 10px 16px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    }

    .badge-247 strong {
      font-size: 20px;
      font-weight: 800;
      display: block;
    }

    .badge-247 span {
      font-size: 11px;
    }

    .badge-brands {
      position: absolute;
      top: 20px;
      right: -16px;
      background: #fff;
      color: #014196;
      border-radius: 10px;
      padding: 10px 14px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    }

    .badge-brands i {
      font-size: 24px;
      color: #014196;
    }

    .badge-brands span {
      font-size: 10px;
      font-weight: 700;
      display: block;
      color: #444;
    }

    /* ====== WHY CHOOSE US ====== */
    .why-section {
      padding: 60px 0;
      background: #f8faff;
    }

    .why-section h2 {
      font-size: 1.7rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .why-section h2 span {
      color: #014196;
    }

    .why-section p {
      font-size: 14.5px;
      color: #555;
      line-height: 1.75;
      margin-bottom: 30px;
    }

    .why-card {
      background: #fff;
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      height: 100%;
      border: 1px solid #e8eeff;
      transition: box-shadow .2s, transform .2s;
    }

    .why-card:hover {
      box-shadow: 0 8px 28px rgba(1, 65, 150, .13);
      transform: translateY(-4px);
    }

    .why-card .wc-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: #e8effe;
      color: #014196;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 14px;
    }

    .why-card h5 {
      font-size: 15px;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 13px;
      color: #666;
      margin: 0;
      line-height: 1.6;
    }

    /* ====== HELPFUL TIPS ====== */
    .tips-section {
      padding: 60px 0;
    }

    .tips-label {
      font-size: 12px;
      font-weight: 700;
      color: #014196;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block;
    }

    .tips-section h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .tips-section p {
      font-size: 14.5px;
      color: #555;
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .btn-guide {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #014196;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      border: 2px solid #014196;
      padding: 9px 20px;
      border-radius: 6px;
      transition: all .2s;
    }

    .btn-guide:hover {
      background: #014196;
      color: #fff;
    }

    .tips-img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
    }

    /* ====== CTA BANNER ====== */
    .cta-banner {
      background: #014196;
      color: #fff;
      padding: 40px 0;
    }

    .cta-banner .cta-text {
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.6;
    }

    .cta-banner .cta-text span {
      font-size: 14px;
      font-weight: 400;
      opacity: .85;
      display: block;
      margin-top: 4px;
    }

    .btn-cta-phone {
      background: #f5a623;
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .btn-cta-phone:hover {
      background: #e09400;
      color: #fff;
    }

    .cta-available {
      font-size: 12px;
      color: #c8d8f0;
      margin-top: 8px;
      /*text-align: center;*/
    }

    /* ====== PRODUCTS ====== */
    .products-section {
      padding: 60px 0;
      background: #fff;
    }

    .products-section .prod-label {
      font-size: 12px;
      font-weight: 700;
      color: #014196;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 6px;
      display: block;
      text-align: center;
    }

    .products-section h2 {
      font-size: 1.7rem;
      font-weight: 800;
      color: #111;
      text-align: center;
      margin-bottom: 6px;
    }

    .products-section .prod-sub {
      font-size: 14px;
      color: #666;
      text-align: center;
      margin-bottom: 36px;
    }

    .prod-card {
      border: 1px solid #e8e8e8;
      border-radius: 10px;
      padding: 22px 16px 18px;
      text-align: center;
      height: 100%;
      transition: box-shadow .2s;
      background: #fff;
    }

    .prod-card:hover {
      box-shadow: 0 6px 22px rgba(1, 65, 150, .12);
    }

    .prod-card img {
      width: 160px;
      height: 90px;
      object-fit: contain;
      margin: 0 auto 12px;
      display: block;
    }

    .prod-card h5 {
      font-size: 14px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
    }

    .prod-card p {
      font-size: 13px;
      color: #555;
      margin-bottom: 12px;
    }

    .btn-buynow {
      display: inline-block;
      background: #014196;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 8px 24px;
      border-radius: 5px;
      text-decoration: none;
    }

    .btn-buynow:hover {
      background: #012f70;
      color: #fff;
    }

    /* ====== FOOTER ====== */
    .site-footer {
      background: #0d1b35;
      color: #ccc;
      padding: 50px 0 0;
    }

    .footer-logo img {
      height: 50px;
      filter: brightness(0) invert(1);
      margin-bottom: 14px;
    }

    .footer-desc {
      font-size: 13px;
      line-height: 1.7;
      color: #aaa;
      max-width: 260px;
      margin-bottom: 16px;
    }

    .social-links {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .social-links a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #444;
      color: #aaa;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all .2s;
    }

    .social-links a:hover {
      background: #014196;
      border-color: #014196;
      color: #fff;
    }

    .footer-heading {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links-list li {
      margin-bottom: 9px;
    }

    .footer-links-list li a {
      font-size: 13px;
      color: #aaa;
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links-list li a:hover {
      color: #fff;
    }

    .footer-links-list li a i {
      margin-right: 7px;
      font-size: 12px;
      color: #014196;
    }

    .footer-contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-contact-list li {
      font-size: 13px;
      color: #aaa;
      margin-bottom: 9px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .footer-contact-list li i {
      color: #014196;
      font-size: 14px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .footer-contact-list li a {
      color: #aaa;
      text-decoration: none;
    }

    .footer-contact-list li a:hover {
      color: #fff;
    }

    .footer-bottom {
      background: #091526;
      margin-top: 36px;
      padding: 14px 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .footer-bottom p {
      font-size: 12.5px;
      color: #888;
      margin: 0;
    }

    .footer-bottom-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 16px;
    }

    .footer-bottom-links li a {
      font-size: 12.5px;
      color: #888;
      text-decoration: none;
    }

    .footer-bottom-links li a:hover {
      color: #fff;
    }

    /* ============================================================
   FIXED BOTTOM BAR — SIRF MOBILE PE (max-width: 991px)
   DESKTOP PE BILKUL NAHI
   ============================================================ */

    /* DESKTOP: Completely hidden - no fixed bottom bar */
    .mobile-fixed-bottom {
      display: none !important;
      position: static !important;
    }

    /* MOBILE ONLY: Show fixed bottom bar */
    @media (max-width: 991px) {
      .mobile-fixed-bottom {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #014196;
        text-align: center;
        padding: 12px 0;
        z-index: 9999;
        box-shadow: 0 -3px 12px rgba(0, 0, 0, .25);
      }

      .mobile-fixed-bottom a {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 0px;
      }

      body {
        /*padding-bottom: 52px;*/
      }
    }

    /* DESKTOP: Remove extra body padding */
    @media (min-width: 992px) {
      body {
        padding-bottom: 0 !important;
      }
    }

    /* ====== RESPONSIVE ====== */
    /* Hamburger Button */
    .mob-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      background: #014196;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      gap: 5px;
      padding: 8px;
    }

    .mob-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Hamburger animate to X */
    .mob-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mob-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .mob-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 991px) {
      .mob-toggle {
        display: flex;
      }

      .nav-phone-wrap {
        display: none;
      }

      .btn-support {
        display: none;
      }

      /* Nav menu mobile dropdown */
      .nav-menu {
        display: none !important;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 10px 0 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        z-index: 999;
        gap: 0;
      }

      .nav-menu.open {
        display: flex !important;
      }

      .nav-menu li a {
        padding: 13px 24px;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
        display: block;
      }

      .nav-menu li.dropdown .submenu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 20px;
        background: #f8f9ff;
        display: block;
        min-width: unset;
        border-radius: 0;
      }

      .nav-menu li.dropdown .submenu li a {
        font-size: 14px;
        padding: 10px 24px;
        border-bottom: 1px solid #eee;
      }

      .badge-247 {
        left: 0;
      }

      .badge-brands {
        right: 0;
      }
    }

    @media(max-width:767px) {
      .hero-section {
        padding: 90px 0 30px;
      }

      .hero-section h1 {
        font-size: 1.7rem;
      }

      .feature-item {
        border-bottom: 1px solid #eee;
      }

      .hero-btns {
        flex-direction: column;
        align-items: flex-start;
      }

      .about-section h2 {
        font-size: 1.4rem;
      }

      .why-section h2 {
        font-size: 1.4rem;
      }
    }
@media (max-width: 721px) {
    .top-fixed-bottom {
        display: block !important;
        position: fixed !important;
        top: 0px !important;
        width: 100%;
        background: #014196;
        text-align: center;
        padding: 12px 0;
        z-index: 9999;
        box-shadow: 0 -3px 12px rgba(0, 0, 0, .25);
    }
            .top-fixed-bottom a
 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 0px;
    }
}