

    :root {
      --red: #e8192c;
      --red-dark: #c8101f;
      --dark: #1a1a1a;
      --white: #fff;
      --border: #e4e4e4;
      --text: #222;
      --muted: #555;
      --bg: #fff;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--bg);
    }

    /* ══════════════════════
       HERO SEARCH SECTION
    ══════════════════════ */
    .hero-search {
      background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
      padding: 52px 60px 48px;
      text-align: center;
    }

    .hero-search-title {
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 28px;
      letter-spacing: -0.3px;
    }

    .hero-search-bar {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      max-width: 780px;
      margin: 0 auto;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-select {
      flex: 1;
      border: none;
      border-right: 1.5px solid var(--border);
      padding: 14px 18px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      color: #888;
      outline: none;
      background: #fff;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }

    .hero-select:last-of-type {
      border-right: none;
    }

    .btn-get-started {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
    }



    /* ══════════════════════
       RTO INFO SECTION
    ══════════════════════ */
    .rto-info-section {
      padding: 52px 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Section heading with lines */
    .section-heading-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 28px;
    }

    .heading-line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .section-title {
      font-size: 36px;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
    }

    .rto-info-text {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    /* ══════════════════════
       SERVICES SECTION
    ══════════════════════ */
    .rto-services-section {
      padding: 0 80px 52px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .service-card {
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 24px 12px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
      text-decoration: none;
      color: var(--text);
      background: #fff;
    }

    .service-card:hover {
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
      transform: translateY(-3px);
      border-color: #fca5a5;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      background: #fee2e2;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 22px;
      flex-shrink: 0;
    }

    .service-label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--dark);
      text-align: center;
      line-height: 1.4;
    }

    /* ══════════════════════
       RESPONSIVE
    ══════════════════════ */
    @media (max-width: 1050px) {

      .rto-info-section,
      .rto-services-section {
        padding-left: 40px;
        padding-right: 40px;
      }

      .services-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 768px) {
      @media (max-width: 600px) {
        .hero-search {
          padding: 40px 20px 48px;
          text-align: center;
        }

        .hero-search-title {
          font-size: 26px;
          font-weight: 800;
          color: #fff;
          line-height: 1.25;
          margin-bottom: 28px;
        }

        /* White card wrapper */
        .hero-search-bar {
          flex-direction: column;
          background: #fff;
          border-radius: 20px;
          padding: 20px 16px;
          gap: 12px;
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
          max-width: 100%;
          overflow: visible;
        }

        /* Each select — full width with icon */
        .hero-select {
          width: 100%;
          border: 1.5px solid #e4e4e4;
          border-right: 1.5px solid #e4e4e4 !important;
          border-radius: 50px;
          padding: 13px 20px 13px 44px;
          font-size: 14px;
          color: #555;
          background-color: #fff;
          appearance: none;
          -webkit-appearance: none;
          background-image: none;
        }

        /* Service + Type — side by side */
        .hero-row-2 {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 10px;
          width: 100%;
        }

        .hero-row-2 .hero-select {
          padding: 13px 12px 13px 38px;
          font-size: 13px;
        }

        .btn-get-started {
          width: 100%;
          border-radius: 50px;
          padding: 15px;
          font-size: 15px;
          justify-content: center;
        }

        /* Select wrapper with icon */
        .select-wrap {
          position: relative;
          width: 100%;
        }

        .select-wrap .select-icon {
          position: absolute;
          left: 16px;
          top: 50%;
          transform: translateY(-50%);
          color: #888;
          font-size: 14px;
          pointer-events: none;
          z-index: 1;
        }
      }



      .section-title {
        font-size: 20px;
      }

      .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }

      .service-card {
        padding: 18px 8px 14px;
        gap: 10px;
      }

      .service-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
      }

      .service-label {
        font-size: 11px;
      }
    }

    @media (max-width: 480px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }

      .section-title {
        font-size: 17px;
      }

    }

    /* ── RTO OFFICES SECTION ── */
    .rto-offices-section {
      background: #111;
      padding: 52px 60px;
      position: relative;
      overflow: hidden;
    }

    /* Topographic lines */
    .rto-offices-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 41px);
      pointer-events: none;
    }

    .rto-offices-title {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .rto-offices-inner {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Character */
    .rto-character {
      position: absolute;
      right: 40px;
      bottom: 0;
      z-index: 2;
      opacity: 0.95;
    }

    .rto-character img {
      width: 320px;
      right: 100px;
    }

    .rto-character svg {
      width: 100%;
      height: auto;
    }

    /* Grid */
    .rto-offices-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    /* Card */
    .rto-office-card {
      background: #fff;
      border-radius: 12px;
      padding: 16px;
      height: 176px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }

    .rto-office-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    /* Map thumbnail */
    .rto-map-thumb {
      flex-shrink: 0;
      width: 90px;
      height: 150px;
      border-radius: 8px;
      overflow: hidden;
      background: #e8f4ea;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rto-map-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .map-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
      color: #4caf50;
      font-size: 28px;
    }

    /* Info */
    .rto-office-info {
      flex: 2;
    }

    .rto-office-name {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .rto-office-addr {
      font-size: 14px;
      color: #666;
      line-height: 1.65;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {

      .rto-offices-title {
        font-size: 20px;
        margin-bottom: 24px;
      }

      .rto-offices-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .rto-character {
        display: none;
      }

      .rto-map-thumb {
        width: 75px;
        height: 108px;
      }

      .rto-office-name {
        font-size: 12.5px;
      }

      .rto-office-addr {
        font-size: 10px;
      }
    }

    @media (max-width: 480px) {
      .rto-office-card {
        padding: 12px;
        gap: 10px;
        height: 116px;
      }
       .rto-office-name {
        font-size: 10px;
       }
      .rto-map-thumb {
        width: 65px;
        height: 108px;
      }
    }

    /* ── FEES & DOCS SECTION ── */
    .fees-docs-section {
      background: #fff;
      border: 1.5px solid #e4e4e4;
      border-radius: 14px;
      overflow: hidden;
      width: 1200px;
      margin: 32px auto;
    }

    /* Tabs */
    .fees-docs-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1.5px solid #e4e4e4;
    }

    .fees-tab {
      background: #fff;
      border: none;
      padding: 16px 20px;
      font-size: 15px;
      font-weight: 600;
      color: #333;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      transition: background 0.2s, color 0.2s;
    }

    .fees-tab:first-child {
      border-right: 1.5px solid #e4e4e4;
    }

    .fees-tab.active {
      background: var(--red);
      color: #fff;
    }

    .fees-tab:not(.active):hover {
      background: #f9fafb;
    }

    /* Panel */
    .fees-panel {
      padding: 0;
    }

    /* Accordion */
    .fees-acc-item {
      border-bottom: 1px solid #e4e4e4;
    }

    .fees-acc-item:last-child {
      border-bottom: none;
    }

    .fees-acc-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: #fff;
      border: none;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #1a1a1a;
      text-align: left;
      gap: 12px;
      transition: background 0.2s;
    }

    .fees-acc-header:hover {
      background: #fafafa;
    }

    .fees-acc-icon {
      font-size: 13px;
      color: #555;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .fees-acc-item:not(.open) .fees-acc-icon {
      transform: rotate(0deg);
    }

    .fees-acc-body {
      display: none;
      border-top: 1px solid #f0f0f0;
    }

    .fees-acc-item.open .fees-acc-body {
      display: block;
    }

    /* Fees Table */
    .fees-table {
      width: 100%;
      border-collapse: collapse;
    }

    .fees-table thead tr {
      background: #f0f0f0;
    }

    .fees-table thead th {
      padding: 11px 20px;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      text-align: left;
      border-bottom: 1px solid #e4e4e4;
    }

    .fees-table tbody tr {
      border-bottom: 1px solid #e4e4e4;
    }

    .fees-table tbody tr:last-child {
      border-bottom: none;
    }

    .fees-table tbody tr:hover {
      background: #fafafa;
    }

    .fees-table tbody td {
      padding: 12px 20px;
      font-size: 13.5px;
      color: #444;
      vertical-align: middle;
      line-height: 1.6;
      border: 1.5px solid #e4e4e4;
    }

    .fees-table tbody td:last-child {
      white-space: nowrap;
      font-weight: 500;
      width: 200px;
    }

    .fees-note {
      font-size: 11.5px;
      color: #888;
      margin-top: 6px;
      line-height: 1.5;
      font-style: italic;
      white-space: normal;
      font-weight: 400;
    }

    /* Nested Accordion */
    .nested-acc-item {
      border: 1.5px solid #e4e4e4;
      border-radius: 8px;
      margin: 12px 16px;
      overflow: hidden;
    }

    .nested-acc-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 16px;
      background: #fff;
      border: none;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      color: #1a1a1a;
      text-align: left;
      gap: 12px;
    }

    .nested-acc-icon {
      font-size: 12px;
      color: #555;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .nested-acc-body {
      display: none;
      border-top: 1px solid #f0f0f0;
      background: #fafafa;
      padding: 14px 16px;
    }

    .nested-acc-item.open .nested-acc-body {
      display: block;
    }

    /* Docs List */
    .docs-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .docs-list li {
      font-size: 13px;
      color: #555;
      line-height: 1.6;
      padding-left: 16px;
      position: relative;
    }

    .docs-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #555;
      font-weight: 700;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {

      .fees-tab {
        font-size: 13px;
        padding: 13px 10px;
      }

      .fees-acc-header {
        font-size: 13px;
        padding: 14px 14px;
      }

      .fees-table thead th {
        padding: 10px 12px;
        font-size: 12px;
      }

      .fees-table tbody td {
        padding: 10px 12px;
        font-size: 12.5px;
      }

      .fees-table tbody td:last-child {
        width: auto;
        white-space: normal;
      }

      .fees-docs-section {
        width: 330px;
        margin: 32px auto;
      }

      .nested-acc-item {
        margin: 10px 10px;
      }

      .nested-acc-header {
        font-size: 12.5px;
        padding: 12px 12px;
      }

      .docs-list li {
        font-size: 12px;
      }

    }

    /* ── FAQ SECTION ── */


    .faq-section {
      background: #fff;
      border: none;
      border-radius: 14px;
      width: 871px;
      margin: 32px auto;
    }

    .dl-faq-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--dark);
      text-align: center;
      margin-bottom: 28px;
    }

    .dl-faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .dl-faq-item {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      transition: box-shadow 0.2s, border-color 0.2s;
      overflow: hidden;
    }

    .dl-faq-item:hover {
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
      border-color: #d1d5db;
    }

    .dl-faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      gap: 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.5;
    }

    .dl-faq-icon {
      width: 18px;
      height: 18px;
      color: #6b7280;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .dl-faq-item.open .dl-faq-icon {
      transform: rotate(180deg);
    }

    .dl-faq-answer {
      display: none;
      padding: 0 20px 18px;
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.75;
      border-top: 1px solid #f3f4f6;
      padding-top: 14px;
    }

    .dl-faq-item.open .dl-faq-answer {
      display: block;
    }

    .dl-faq-item.open .dl-faq-question {
      color: var(--red);
    }



    @media (max-width: 600px) {
      .input-box {
        flex-direction: column;
        gap: 0;
      }

      .dl-faq-title {
        font-size: 20px;
      }

      .faq-section {
        width: 330px;
        margin: 32px 20px;
      }

      .dl-faq-question {
        font-size: 13px;
        padding: 14px 16px;
      }

      .card-footer {
        display: none;
      }

      .dl-faq-answer {
        font-size: 13px;
        padding: 0 16px 14px;
        padding-top: 12px;
      }

    }

    /* Desktop pe row-2 hide */
    @media (min-width: 601px) {
      .hero-row-2 {
        display: contents;
      }

      .select-wrap {
        flex: 1;
      }

      .select-wrap .select-icon {
        display: none;
      }

      .hero-search-bar {
        flex-direction: row;
        padding: 0;
        border-radius: 8px;
      }

      .hero-select {
        padding: 14px 36px 14px 18px;
        border-radius: 0;
      }
    }

    /* ── CUSTOM SELECT WRAPPER ── */
    .select-wrap {
      position: relative;
      width: 100%;
    }

    .select-wrap .select-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 15px;
      pointer-events: none;
      z-index: 1;
    }


    /* ── SELECT INPUT ── */
    .hero-select {
      width: 100%;
      border: 1.5px solid #e4e4e4;
      border-radius: 50px;
      padding: 13px 40px 13px 44px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      color: #555;
      background: #fff;
      appearance: none;
      -webkit-appearance: none;
      outline: none;
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .hero-select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(232, 25, 44, 0.10);
      color: #111;
    }

    .hero-select option {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: #111;
      padding: 8px 12px;
    }

    .hero-select option:disabled {
      color: #aaa;
    }

    /* ── DESKTOP ── */
    @media (min-width: 601px) {
      .select-wrap {
        flex: 1;
      }

      .select-wrap::after {
        display: none;
      }

      .select-wrap .select-icon {
        display: none;
      }

      .hero-select {
        border-radius: 0;
        border: none;
        border-right: 1.5px solid #e4e4e4;
        padding: 14px 36px 14px 18px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
      }

      .hero-select:focus {
        box-shadow: none;
        border-color: #e4e4e4;
        background-color: #f9fafb;
      }
    }

    /* ── MOBILE ── */
    @media (max-width: 600px) {
      .hero-search-bar {
        flex-direction: column;
        background: #fff;
        border-radius: 20px;
        padding: 20px 16px 16px;
        gap: 12px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
        max-width: 100%;
      }

      .hero-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
      }

      .hero-row-2 .hero-select {
        padding: 13px 32px 13px 38px;
        font-size: 13px;
      }

      .hero-select {
        border: 1.5px solid #e8e8e8 !important;
        border-radius: 50px !important;
        background-color: #fafafa;
        font-size: 14px;
        padding: 13px 40px 13px 44px;
        color: #444;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
      }

      .hero-select:focus {
        border-color: var(--red) !important;
        box-shadow: 0 0 0 3px rgba(232, 25, 44, 0.10) !important;
        background-color: #fff;
      }

      .btn-get-started {
        width: 100%;
        border-radius: 50px;
        padding: 15px;
        font-size: 15px;
        justify-content: center;
        margin-top: 2px;

      }
    }

    /* ── RTO MOBILE IMAGE ── */
    .rto-mobile-img {
      display: none;
      /* desktop pe hide */
    }

    @media (max-width: 600px) {
      .rto-mobile-img {
        display: block;
        margin: 20px auto;
        border-radius: 12px;
        overflow: hidden;
      }

      .rto-mobile-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        display: block;
      }
    }
