 /* <style> */



    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1E2A3E;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* buttons & elements */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #F15A24;
      color: white;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .btn i {
      font-size: 1rem;
    }
    .btn:hover {
      background-color: #d44a18;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(241,90,36,0.2);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #F15A24;
      color: #F15A24;
      box-shadow: none;
    }
    .btn-outline:hover {
      background: #F15A24;
      color: white;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }
    .section-sub {
      font-size: 1.125rem;
      color: #4b5565;
      margin-bottom: 2.5rem;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .badge {
      background: #FFEDE5;
      color: #F15A24;
      padding: 4px 14px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
    }

    /* Header / Nav */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 20px 0;
      gap: 20px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #1F3A6B, #F15A24);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #1E2A3E;
      transition: color 0.2s;
    }
    .nav-links a:hover {
      color: #F15A24;
    }
    .phone-header {
      font-weight: 700;
      background: #f0f2f5;
      padding: 8px 16px;
      border-radius: 40px;
      font-size: 0.95rem;
    }
    .phone-header i {
      color: #F15A24;
      margin-right: 6px;
    }

    /* Hero with form */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: space-between;
      gap: 40px;
      padding: 40px 0 30px;
    }
    .hero-content {
      flex: 1.2;
    }
    .hero-badge {
      background: #EFF6FF;
      color: #1F3A6B;
      border-radius: 32px;
      padding: 6px 16px;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 1.2rem;
    }
    .hero-content h1 {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .hero-highlight {
      color: #F15A24;
    }
    .hero-desc {
      font-size: 1.1rem;
      color: #334155;
      margin-bottom: 1.8rem;
    }
    .offer-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin: 24px 0 16px;
    }
    .discount-badge {
      background: #FEF3C7;
      padding: 6px 14px;
      border-radius: 28px;
      font-weight: 700;
      font-size: 1rem;
    }
    .hero-stats {
      margin-top: 20px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .hero-stats span {
      font-size: 0.9rem;
      font-weight: 500;
    }
    /* Form card */
    .hero-form-card {
      flex: 0.8;
      background: white;
      border-radius: 32px;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
      padding: 28px 24px;
      border: 1px solid #f0eef2;
      transition: all 0.2s;
    }
    .hero-form-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-form-card p {
      color: #5b6e8c;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%;
      padding: 12px 16px;
      border-radius: 24px;
      border: 1px solid #e2e8f0;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      transition: 0.2s;
      background: #fefefe;
    }
    .form-group input:focus, .form-group textarea:focus {
      outline: none;
      border-color: #F15A24;
      box-shadow: 0 0 0 3px rgba(241,90,36,0.1);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }
    .form-btn {
      width: 100%;
      justify-content: center;
      background-color: #F15A24;
      margin-top: 8px;
    }
    .small-note {
      font-size: 0.7rem;
      text-align: center;
      margin-top: 14px;
      color: #7e8aa2;
    }

    /* Features row */
    .features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      background: #F9FAFE;
      border-radius: 48px;
      padding: 32px 28px;
      margin: 30px 0;
    }
    .feature-item {
      flex: 1;
      min-width: 150px;
      text-align: center;
    }
    .feature-item i {
      font-size: 2rem;
      color: #F15A24;
      margin-bottom: 12px;
    }
    .feature-item h4 {
      font-weight: 700;
      margin-bottom: 6px;
    }
    .feature-item p {
      font-size: 0.85rem;
      color: #4b5565;
    }

    /* What we do + cards */
    .whatwedo-grid {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin: 30px 0 40px;
    }
    .wwd-list {
      flex: 1;
      background: #F1F5F9;
      padding: 28px;
      border-radius: 32px;
    }
    .wwd-list ul {
      list-style: none;
      margin-top: 20px;
    }
    .wwd-list li {
      margin-bottom: 18px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .wwd-list li i {
      color: #F15A24;
      width: 24px;
    }
    .service-cards {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 24px;
    }
    .card {
      background: white;
      padding: 24px;
      border-radius: 28px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      transition: all 0.25s;
      border: 1px solid #eef2f6;
    }
    .card i {
      font-size: 2rem;
      background: #FFF0E8;
      padding: 12px;
      border-radius: 20px;
      color: #F15A24;
      margin-bottom: 18px;
    }
    .card h3 {
      font-size: 1.35rem;
      margin-bottom: 12px;
    }
    .card p {
      color: #475569;
      margin-bottom: 20px;
    }
    .card a {
      font-weight: 600;
      text-decoration: none;
      color: #F15A24;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }

    /* Secure remote */
    .secure-section {
      background: #0F172A;
      color: white;
      border-radius: 48px;
      padding: 48px 40px;
      margin: 60px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }
    .secure-left {
      flex: 1.2;
    }
    .secure-left h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .secure-list {
      list-style: none;
      margin-top: 24px;
    }
    .secure-list li {
      margin: 14px 0;
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .secure-list i {
      color: #F15A24;
    }
    .secure-right {
      flex: 0.9;
      background: #1E293B;
      padding: 28px;
      border-radius: 32px;
      text-align: center;
    }

    /* How it works */
    .steps {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin: 40px 0;
      justify-content: center;
    }
    .step {
      flex: 1;
      background: white;
      border-radius: 28px;
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      border: 1px solid #edf2f7;
    }
    .step-number {
      background: #F15A24;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 60px;
      font-weight: 800;
      font-size: 1.5rem;
      margin: 0 auto 20px;
      color: white;
    }

    /* Why choose + stats */
    .why-choose {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      background: #F8FAFE;
      border-radius: 48px;
      padding: 48px 36px;
      margin: 50px 0;
    }
    .why-list {
      flex: 1.5;
    }
    .why-list ul {
      columns: 1;
      list-style: none;
    }
    .why-list li {
      margin-bottom: 14px;
      display: flex;
      gap: 12px;
      align-items: center;
      font-weight: 500;
    }
    .stats-row {
      flex: 1;
      background: white;
      border-radius: 32px;
      padding: 28px;
      text-align: center;
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }
    .stat-number {
      font-size: 2.6rem;
      font-weight: 800;
      color: #F15A24;
    }



    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1E2A3E;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* buttons & elements */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #F15A24;
      color: white;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .btn i {
      font-size: 1rem;
    }
    .btn:hover {
      background-color: #d44a18;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(241,90,36,0.2);
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
      text-align: center;
    }
    .section-sub {
      font-size: 1.125rem;
      color: #4b5565;
      margin-bottom: 2.5rem;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .badge {
      background: #FFEDE5;
      color: #F15A24;
      padding: 4px 14px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
    }

    /* Header / Nav - improved responsive */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 20px 0;
      gap: 16px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #1F3A6B, #F15A24);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #1E2A3E;
      transition: color 0.2s;
      font-size: 1rem;
    }
    .nav-links a:hover {
      color: #F15A24;
    }
    .phone-header {
      font-weight: 700;
      background: #f0f2f5;
      padding: 8px 16px;
      border-radius: 40px;
      font-size: 0.9rem;
    }
    .phone-header i {
      color: #F15A24;
      margin-right: 6px;
    }

    /* Hero with form - responsive */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: space-between;
      gap: 40px;
      padding: 40px 0 30px;
    }
    .hero-content {
      flex: 1.2;
    }
    .hero-badge {
      background: #EFF6FF;
      color: #1F3A6B;
      border-radius: 32px;
      padding: 6px 16px;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 1.2rem;
    }
    .hero-content h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .hero-highlight {
      color: #F15A24;
    }
    .hero-desc {
      font-size: 1rem;
      color: #334155;
      margin-bottom: 1.8rem;
    }
    .offer-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin: 24px 0 16px;
    }
    .discount-badge {
      background: #FEF3C7;
      padding: 6px 14px;
      border-radius: 28px;
      font-weight: 700;
      font-size: 0.9rem;
    }
    .hero-stats {
      margin-top: 20px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .hero-stats span {
      font-size: 0.9rem;
      font-weight: 500;
    }
    /* Form card */
    .hero-form-card {
      flex: 0.8;
      min-width: 280px;
      background: white;
      border-radius: 32px;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
      padding: 28px 24px;
      border: 1px solid #f0eef2;
    }
    .hero-form-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-form-card p {
      color: #5b6e8c;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: 24px;
      border: 1px solid #e2e8f0;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      transition: 0.2s;
      background: #fefefe;
    }
    .form-group input:focus, .form-group textarea:focus {
      outline: none;
      border-color: #F15A24;
      box-shadow: 0 0 0 3px rgba(241,90,36,0.1);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }
    .form-btn {
      width: 100%;
      justify-content: center;
    }
    .small-note {
      font-size: 0.7rem;
      text-align: center;
      margin-top: 14px;
      color: #7e8aa2;
    }

    /* Features row - responsive */
    .features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      background: #F9FAFE;
      border-radius: 48px;
      padding: 32px 24px;
      margin: 30px 0;
    }
    .feature-item {
      flex: 1;
      min-width: 160px;
      text-align: center;
      padding: 8px;
    }
    .feature-item i {
      font-size: 2rem;
      color: #F15A24;
      margin-bottom: 12px;
    }
    .feature-item h4 {
      font-weight: 700;
      margin-bottom: 6px;
    }
    .feature-item p {
      font-size: 0.85rem;
      color: #4b5565;
    }

    /* What we do + cards */
    .whatwedo-grid {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin: 30px 0 40px;
    }
    .wwd-list {
      flex: 1;
      background: #F1F5F9;
      padding: 28px;
      border-radius: 32px;
    }
    .wwd-list ul {
      list-style: none;
      margin-top: 20px;
    }
    .wwd-list li {
      margin-bottom: 18px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .wwd-list li i {
      color: #F15A24;
      width: 24px;
    }
    .service-cards {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }
    .card {
      background: white;
      padding: 24px;
      border-radius: 28px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      transition: all 0.25s;
      border: 1px solid #eef2f6;
    }
    .card i {
      font-size: 2rem;
      background: #FFF0E8;
      padding: 12px;
      border-radius: 20px;
      color: #F15A24;
      margin-bottom: 18px;
    }
    .card h3 {
      font-size: 1.35rem;
      margin-bottom: 12px;
    }
    .card p {
      color: #475569;
      margin-bottom: 20px;
    }
    .card a {
      font-weight: 600;
      text-decoration: none;
      color: #F15A24;
    }

    /* Secure remote */
    .secure-section {
      background: #0F172A;
      color: white;
      border-radius: 48px;
      padding: 40px 32px;
      margin: 60px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }
    .secure-left {
      flex: 1.2;
    }
    .secure-left h2 {
      font-size: clamp(1.6rem, 4vw, 2rem);
      margin-bottom: 20px;
    }
    .secure-list {
      list-style: none;
      margin-top: 24px;
    }
    .secure-list li {
      margin: 14px 0;
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .secure-list i {
      color: #F15A24;
    }
    .secure-right {
      flex: 0.9;
      background: #1E293B;
      padding: 28px;
      border-radius: 32px;
      text-align: center;
    }

    /* How it works */
    .steps {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin: 40px 0;
      justify-content: center;
    }
    .step {
      flex: 1;
      min-width: 240px;
      background: white;
      border-radius: 28px;
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      border: 1px solid #edf2f7;
    }
    .step-number {
      background: #F15A24;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 60px;
      font-weight: 800;
      font-size: 1.5rem;
      margin: 0 auto 20px;
      color: white;
    }

    /* Why choose + stats */
    .why-choose {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      background: #F8FAFE;
      border-radius: 48px;
      padding: 40px 32px;
      margin: 50px 0;
    }
    .why-list {
      flex: 1.5;
    }
    .why-list ul {
      list-style: none;
    }
    .why-list li {
      margin-bottom: 14px;
      display: flex;
      gap: 12px;
      align-items: center;
      font-weight: 500;
    }
    .stats-row {
      flex: 1;
      background: white;
      border-radius: 32px;
      padding: 28px;
      text-align: center;
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }
    .stat-number {
      font-size: 2.6rem;
      font-weight: 800;
      color: #F15A24;
    }

    /* Testimonials - fully responsive centered */
    /* .testimonials-section {
      margin: 50px 0 40px;
    } */
    .testimonial-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }
    .testimonial-card {
      background: #F9FAFE;
      border-radius: 32px;
      padding: 32px 28px;
      width: 100%;
      max-width: 360px;
      transition: 0.2s;
      border: 1px solid #ecf3fa;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    }
    .stars {
      color: #F5B042;
      font-size: 1.1rem;
      letter-spacing: 2px;
      margin-bottom: 16px;
      text-align: center;
    }
    .testimonial-text {
      font-size: 1rem;
      line-height: 1.5;
      color: #1e2a3e;
      font-weight: 500;
      margin: 16px 0;
      text-align: center;
    }
    .customer-name {
      font-weight: 700;
      margin-top: 12px;
      text-align: center;
      color: #0F172A;
    }
    .customer-title {
      font-size: 0.8rem;
      color: #5b6e8c;
      text-align: center;
    }
    .trust-badge {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 48px;
      border-top: 1px solid #eef2f8;
      padding-top: 40px;
    }
    .trust-badge span {
      background: #F1F5F9;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* CTA bottom */
    .cta-bottom {
      text-align: center;
      background: linear-gradient(105deg, #FEF7F0 0%, #FFFFFF 100%);
      border-radius: 48px;
      padding: 48px 24px;
      margin: 40px 0;
    }
    .cta-bottom h3 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      margin-bottom: 16px;
    }
    .phone-large {
      font-size: clamp(1.4rem, 5vw, 2rem);
      font-weight: 800;
      margin: 20px 0;
    }

    /* footer */
    footer {
      background: #0B1120;
      color: #cbd5e1;
      border-radius: 40px 40px 0 0;
      padding: 48px 0 28px;
      margin-top: 60px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col h4 {
      color: white;
      margin-bottom: 20px;
      font-weight: 600;
    }
    .footer-col p, .footer-col a {
      color: #94a3b8;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      transition: 0.2s;
    }
    .footer-col a:hover {
      color: #F15A24;
    }
    .copyright {
      text-align: center;
      border-top: 1px solid #1e293b;
      padding-top: 28px;
      font-size: 0.85rem;
    }


    /* --------------------- */

    .footer-col-g ul{
      display:flex;
      gap:10px;
      justify-content: center;
      list-style:none;
    }

     .footer-col-g ul li a{
      color:#e9e9e9;
      font-size:13px;
      
    }

    .Disclaimer p {
    font-size: 12px;
}

    /* Responsive breakpoints - professional */
    @media (max-width: 1024px) {
      .container {
        padding: 0 20px;
      }
      .hero {
        gap: 30px;
      }
    }
    @media (max-width: 900px) {
      .navbar {
        flex-direction: column;
        text-align: center;
      }
      .nav-links {
        justify-content: center;
      }
      .hero {
        flex-direction: column;
      }
      .hero-form-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
      }
      .whatwedo-grid {
        flex-direction: column;
      }
      .service-cards {
        grid-template-columns: 1fr;
      }
      .secure-section {
        flex-direction: column;
        text-align: center;
      }
      .secure-list li {
        justify-content: center;
      }
      .why-choose {
        flex-direction: column;
      }
    }
    @media (max-width: 640px) {
      .container {
        padding: 0 16px;
      }
      .section-title {
        font-size: 1.75rem;
      }
      .features-grid {
        flex-direction: column;
        align-items: stretch;
      }
      .feature-item {
        min-width: auto;
      }
      .steps {
        flex-direction: column;
        align-items: center;
      }
      .step {
        width: 100%;
      }
      .testimonial-card {
        max-width: 100%;
      }
      .trust-badge span {
        font-size: 0.75rem;
        padding: 6px 14px;
      }
      .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
      .hero-stats {
        justify-content: center;
      }
      .offer-group {
        justify-content: center;
      }
      .hero-content h1 {
        text-align: center;
      }
      .hero-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
      }
      .hero-desc {
        text-align: center;
      }
      .hero-stats span {
        justify-content: center;
      }
    }
    @media (max-width: 480px) {
      .nav-links {
        gap: 16px;
      }
      .phone-header {
        font-size: 0.8rem;
      }
      .secure-section {
        padding: 32px 20px;
      }
      .why-choose {
        padding: 32px 20px;
      }
      .cta-bottom {
        padding: 32px 20px;
      }
    }



  /* </style> */