    * {
      font-family: sans-serif;
    }

    /* Top bar */
    .topbar {
      background: #06334a;
      font-size: 14px;
      padding: 4px 0;
    }

    .topbar .trust-badge {
      color: #fff;
      font-weight: 500;
    }

    /* Navbar */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand img {
      height: 35px;
    }

    @media(max-width:575px) {
      .navbar-brand img {
        height: 30px;
      }
    }

    .nav-link {
      font-size: 18px;
      color: #000;
      margin: 0px 5px 0px 5px;
    }

    /* Dropdown hover */
    .dropdown-menu {
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.2s ease;
      margin-top: 0;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
      color: #fff;
      background-color: #212529;
    }

    .navbar-nav .dropdown-menu {
      position:absolute !important;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .social-icon:hover {
      transform: scale(1.2) rotate(10deg);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Optional subtle breathing animation */
    @keyframes breathe {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    .social-icon {
      animation: breathe 4s ease-in-out infinite;
    }

    .social-icon:hover {
      animation: none;
      /* Stop breathing on hover */
    }

    /* Apply button */
    .apply-btn {
      background: #06334a;
      color: #fff !important;
      padding: 8px 18px;
      border-radius: 30px;
      font-weight: 500;
      transition: 0.3s;
    }

    .apply-btn:hover {
      background: #512da8;
    }

    /* Mobile floating button */
    .floating-apply {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1050;
      border-radius: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 991px) {
      .floating-apply {
        display: inline-block;
      }

      .desktop-apply {
        display: none;
      }
    }

    /* .carousel-item {
      height: 90vh;
      min-height: 400px;
      background-size: cover;
      background-position: center;
    } */

    /* Custom Prev/Next Buttons */
    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-image: none;
      font-size: 24px;
      color: #fff;
    }

    /* Position adjustments */
    .carousel-control-prev {
      left: 20px;
    }

    .carousel-control-next {
      right: 20px;
    }

    /* Layout & card base */
    .services-section {
      padding: 2rem 1rem;
    }

    .services-header {
      max-width: 900px;
      margin: 0 auto 1.75rem;
      text-align: center;
    }

    .service-card {
      background: #ffffff;
      border: 0;
      border-radius: .75rem;
      overflow: hidden;
      transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s;
      will-change: transform;
      position: relative;
      min-height: 180px;
      display: flex;
      flex-direction: column;
    }

    .service-card:focus-within {
      outline: 3px solid rgba(99, 102, 241, .15);
    }

    /* Accent band */
    .accent-band {
      height: 8px;
      width: 100%;
      background: linear-gradient(90deg, rgba(99, 102, 241, 1) 0%, rgba(139, 92, 246, 1) 100%);
      transform-origin: left center;
      transition: transform .38s ease, filter .28s ease;
    }

    /* Accent variants (cycle through subtle hues) */
    .accent-1 {
      background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    }

    .accent-2 {
      background: linear-gradient(90deg, #06b6d4, #06b6d4 60%, #7c3aed);
    }

    .accent-3 {
      background: linear-gradient(90deg, #0ea5a4, #34d399);
    }

    .accent-4 {
      background: linear-gradient(90deg, #f59e0b, #f97316);
    }

    .service-body {
      padding: 1.25rem;
      display: flex;
      gap: .75rem;
      align-items: flex-start;
      flex: 1 1 auto;
    }

    .service-icon {
      font-size: 1.8rem;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.03);
    }

    .service-title {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 600;
    }

    .service-line {
      color: #6b7280;
      font-size: .92rem;
      margin-bottom: .55rem;
    }

    .micro-benefits {
      font-size: .82rem;
      color: #374151;
      margin-bottom: .5rem;
    }

    .micro-facts {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .micro-facts .fact {
      font-size: .78rem;
      background: #f8fafc;
      border-radius: .5rem;
      padding: .25rem .5rem;
      color: #374151;
    }

    .card-footer {
      padding: .9rem 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: .5rem;
    }

    .micro-cta {
      font-size: .9rem;
      font-weight: 600;
    }

    /* Hover interactions */
    .service-wrap:hover .service-card,
    .service-wrap:focus-within .service-card {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    }

    .service-wrap:hover .accent-band,
    .service-wrap:focus-within .accent-band {
      transform: translateX(4px);
      filter: brightness(1.02) saturate(1.05);
    }

    /* Micro tooltip (revealed on hover/focus) */
    .micro-tooltip {
      position: absolute;
      right: 1rem;
      top: 12px;
      padding: .35rem .6rem;
      border-radius: .5rem;
      background: rgba(15, 23, 42, 0.92);
      color: #fff;
      font-size: .78rem;
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
      white-space: nowrap;
    }

    .service-wrap:hover .micro-tooltip,
    .service-wrap:focus-within .micro-tooltip {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* Staggered fade-up enter animation */
    .service-wrap {
      opacity: 0;
      transform: translateY(12px);
    }

    .service-wrap.animate {
      animation: fadeUp .48s forwards cubic-bezier(.2, .9, .3, 1);
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Stagger using nth-child to add delay */
    .services-grid .service-wrap:nth-child(1) {
      animation-delay: .08s;
    }

    .services-grid .service-wrap:nth-child(2) {
      animation-delay: .16s;
    }

    .services-grid .service-wrap:nth-child(3) {
      animation-delay: .24s;
    }

    .services-grid .service-wrap:nth-child(4) {
      animation-delay: .32s;
    }

    .services-grid .service-wrap:nth-child(5) {
      animation-delay: .40s;
    }

    .services-grid .service-wrap:nth-child(6) {
      animation-delay: .48s;
    }

    .services-grid .service-wrap:nth-child(7) {
      animation-delay: .56s;
    }

    .services-grid .service-wrap:nth-child(8) {
      animation-delay: .64s;
    }

    /* Accessibility / focus */
    .service-card a {
      color: inherit;
      text-decoration: none;
    }

    .service-card a:focus-visible {
      outline: none;
    }

    @media (min-width: 992px) {
      .service-body {
        align-items: center;
      }

      .service-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
      }
    }

    .hiw-section {
      padding: 2rem 1rem;
      position: relative;
      overflow: hidden;
    }

    .hiw-title {
      font-weight: 700;
      /* margin-bottom: 1.5rem; */
      text-align: center;
    }

    .hiw-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem;
      position: relative;
      z-index: 1;
    }

    .hiw-step {
      background: #fff;
      border-radius: 1.25rem;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
      padding: 2rem 1.5rem;
      flex: 1 1 280px;
      max-width: 320px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
    }

    .hiw-step:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    }

    .hiw-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #06334a, #0a58ca);
      color: #fff;
      font-size: 2rem;
      font-weight: bold;
      box-shadow: 0 8px 20px rgba(255, 154, 158, 0.4);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .hiw-step:hover .hiw-icon {
      transform: rotate(10deg) scale(1.15);
      box-shadow: 0 12px 28px rgba(255, 154, 158, 0.6);
    }

    .hiw-step h5 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .hiw-step p {
      font-size: 0.95rem;
      color: #555;
    }

    .hiw-steps::before {
      content: "";
      position: absolute;
      top: 70px;
      left: 10%;
      right: 10%;
      height: 4px;
      background: repeating-linear-gradient(to right, #86b7fe, #06334a 12px, transparent 12px, transparent 24px);
      z-index: 0;
    }

    @media(max-width: 767.98px) {
      .hiw-steps::before {
        display: none;
      }
    }

    .cta-btn {
      margin-top: 3rem;
      text-align: center;
    }

    .cta-btn a {
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      background: linear-gradient(135deg, #06334a, #06334a);
      color: #fff;
      text-decoration: none;
      transition: background 0.4s ease, transform 0.3s ease;
    }

    .cta-btn a:hover {
      background: linear-gradient(135deg, #764ba2, #667eea);
      transform: translateY(-4px);
    }


    /* Card visuals */
    .emi-card {
      border-radius: 12px;
      padding: 1rem;
      background: linear-gradient(135deg, #ffffff 0%, #f7fbff 60%);
      box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .emi-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
    }

    .preset-item {
      border-radius: 10px;
      padding: .65rem .75rem;
      cursor: pointer;
      transition: background-color .15s, transform .12s;
      user-select: none;
    }

    .preset-item:hover {
      transform: translateY(-3px);
    }

    /* Inline calculator hidden area */
    .calc-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s cubic-bezier(.2, .9, .2, 1), opacity .18s;
      opacity: 0;
    }

    .calc-panel.open {
      max-height: 480px;
      opacity: 1;
    }

    .callout {
      background: linear-gradient(90deg, #fff8e6, #fff);
      border-left: 4px solid #ffb020;
      padding: .5rem .75rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: .95rem;
    }

    /* Accessibility / spacing tweaks */
    .form-control[type="number"] {
      -moz-appearance: textfield;
    }

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .result-box {
      border-radius: 8px;
      padding: .65rem;
      background: rgba(250, 250, 255, 0.8);
      border: 1px solid rgba(14, 19, 38, 0.03);
      min-height: 56px;
    }

    /* Smaller screens adjustments */
    @media (max-width: 576px) {
      .preset-item {
        padding: .6rem;
      }
    }

    .trust-strip {
      background: linear-gradient(135deg, #0b1a3b, #13284f);
      color: #fff;
    }

    .trust-strip h2,
    .trust-strip p {
      color: #fff;
    }

    .partner-logos:hover .logos {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .micro-testimonials {
      background: rgba(255, 255, 255, 0.05);
      padding: 0.5rem 1rem;
      border-radius: 10px;
    }

    .micro-testimonials .testimonials {
      animation: ticker 20s linear infinite;
    }

    @keyframes ticker {
      0% {
        transform: translateX(100%);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    .micro-testimonials p {
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .faq-section {
      padding: 30px 15px;
      max-width: 1200px;
      margin: auto;
    }

    .faq-section h2 {
      text-align: center;
      font-weight: 700;
    }

    .accordion-item {
      background-color: #fff;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .accordion-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .accordion-button {
      background: transparent !important;
      color: #333;
      font-weight: 500;
      padding: 1rem 1.5rem;
      border-left: 5px solid transparent;
      position: relative;
      transition: all 0.3s ease;
    }

    .accordion-button:focus {
      box-shadow: none;
    }


    .accordion-button:not(.collapsed) {
      border-left: 5px solid #0d6efd;
      background-color: #f1f5ff;
    }

    .accordion-body {
      padding: 1rem 1.5rem;
      background-color: #fff;
      color: #555;
      border-top: 1px solid #e5e5e5;
      animation: fadeIn 0.25s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Two-column layout on larger screens */
    @media (min-width: 768px) {
      .accordion-row {
        display: flex;
        gap: 20px;
      }

      .accordion-column {
        flex: 1;
      }
    }



    .cta-section h2 {
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    }

    .cta-section .btn:hover {
      transform: scale(1.05);
      transition: 0.3s;
    }

    .cta-section {
      margin-bottom: 2rem;
    }

    .contact-card {
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .form-control:focus {
      border-color: #ff8a00;
      box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, .25);
    }

    .success-message {
      display: none;
      text-align: center;
      color: #28a745;
      font-weight: 600;
      margin-top: 20px;
      animation: fadeIn 0.8s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .contact-img {
      border-radius: 20px;
      object-fit: cover;
      height: 100%;
    }

    .footer-link {
      position: relative;
      display: inline-block;
      transition: color 0.3s ease;
    }

    .footer-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #ff7a59, #e0664a);
      transition: width 0.3s ease;
    }

    .footer-link:hover::after {
      width: 100%;
    }

    .social-icon {
      width: 35px;
      height: 35px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .social-icon:hover {
      transform: scale(1.2);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .about-card {
      background: #fff;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .about-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .about-card i {
      transition: transform 0.4s ease;
    }

    .about-card:hover i {
      transform: rotate(15deg) scale(1.2);
    }

    .feature-card {
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .feature-card i {
      transition: transform 0.4s ease, color 0.4s ease;
    }

    .feature-card:hover i {
      transform: rotate(15deg) scale(1.2);
    }

    .contact-info-card {
      background: #ffffff;
      border-left: 5px solid #06334a;
    }

    .contact-info-card h2 {
      color: #06334a;
    }

    .contact-form-card input:focus,
    .contact-form-card select:focus,
    .contact-form-card textarea:focus {
      border-color: #06334a;
      box-shadow: 0 0 5px rgba(6, 51, 74, 0.3);
    }

    .contact-form-card button:hover {
      background-color: #04506c !important;
    }

    @media (max-width: 767px) {

      .contact-form-card,
      .contact-info-card {
        padding: 30px 20px;
      }
    }

    .cgtmse-card {
      border-radius: 15px;
      transition: transform 0.5s, box-shadow 0.5s;
    }

    .cgtmse-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .cgtmse-card i {
      transition: transform 0.5s;
    }

    .cgtmse-card:hover i {
      transform: scale(1.2) rotate(10deg);
    }

    .btn-gradient {
      background: linear-gradient(90deg, #06334a, #0a58ca);
      border: none;
      color: #fff;
      font-weight: bold;
      transition: transform 0.3s;
    }

    .btn-gradient:hover {
      transform: scale(1.05);
      color: #fff;
    }

    .loan-card {
      background: #fff;
      border: 1px solid;
      border-radius: 15px;
      transition: transform 0.4s, box-shadow 0.4s;
    }

    .loan-card h5 {
      font-size: 1rem;
    }

    .loan-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .btn-gradient {
      background: linear-gradient(90deg, #06334a, #06334a);
      border: none;
      color: #fff;
      font-weight: 600;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .btn-gradient:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    table th,
    table td {
      vertical-align: middle;
    }

    .faq-item .accordion-button {
      transition: all 0.3s ease;
      background: #f8f9fa;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .faq-item .accordion-button:hover {
      background: #e6f0ff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
    }

    .accordion-body {
      transition: all 0.3s ease;
      font-size: 0.95rem;
      color: #555;
    }

    .home-loan-card {
      border-radius: 12px;
      transition: all 0.3s ease;
      background: #f8f9fa;
    }

    .home-loan-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .home-loan-card ul li {
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 0.8rem;
      list-style: none;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .home-loan-card ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      color: #06334a;
      font-weight: bold;
      transform: scale(1);
      transition: all 0.3s ease;
    }

    .home-loan-card ul li:hover::before {
      transform: scale(1.2);
      color: #0056b3;
    }

    @media (max-width: 768px) {
      .home-loan-card ul li {
        font-size: 0.95rem;
      }
    }

    .home-loan-card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .home-loan-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .home-loan-card .card-header {
      background-color: #f7f9fc;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .home-loan-card .card-header:hover {
      background-color: #06334a;
      color: #fff;
    }

    .home-loan-card .card-body ul,
    .home-loan-card .card-body ol {
      padding-left: 1.2rem;
    }

    .home-loan-card .card-body li {
      margin-bottom: 0.5rem;
      transition: all 0.3s ease;
    }

    .home-loan-card .card-body li:hover {
      color: #06334a;
      transform: translateX(5px);
    }


    .lap-section {
      background: #fff;
      text-align: center;
    }

    .lap-section h2 {
      color: #1a1a1a;
    }

    .lap-section p {
      line-height: 1.6;
    }

    .lap-section .btn-primary {
      background-color: #06334a;
      border-color: #06334a;
      transition: all 0.3s ease;
    }

    .lap-section .btn-primary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
    }

    .btn-primary {
      --bs-btn-color: #fff;
      --bs-btn-bg: #06334a;
      --bs-btn-border-color: #06334a;
      --bs-btn-hover-color: #fff;
      --bs-btn-hover-bg: #0b5ed7;
      --bs-btn-hover-border-color: #0a58ca;
      --bs-btn-focus-shadow-rgb: 49, 132, 253;
      --bs-btn-active-color: #fff;
      --bs-btn-active-bg: #0a58ca;
      --bs-btn-active-border-color: #0a53be;
      --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
      --bs-btn-disabled-color: #fff;
      --bs-btn-disabled-bg: #0d6efd;
      --bs-btn-disabled-border-color: #0d6efd;
    }

    .used-car-loan-modern h2 {
      color: #1a1a1a;
    }

    .used-car-loan-modern .feature-box {
      background: #fff;
      border-left: 4px solid #06334a;
      transition: all 0.3s ease;
    }

    .used-car-loan-modern .feature-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .used-car-loan-modern .btn-primary {
      background-color: #06334a;
      border: none;
      transition: all 0.3s ease;
    }

    .used-car-loan-modern .btn-primary:hover {
      background-color: #06334a;
    }


    .machinery-loan-section h2 {
      color: #1a1a1a;
    }

    .machinery-loan-section .feature-box {
      background: #fff;
      border-left: 4px solid #06334a;
      transition: all 0.3s ease;
    }

    .machinery-loan-section .feature-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .machinery-loan-section .btn-success {
      background-color: #06334a;
      border: none;
      transition: all 0.3s ease;
    }

    .machinery-loan-section .btn-success:hover {
      background-color: #06334a;
    }

    .terms-section h2 {
      color: #1a1a1a;
    }

    .terms-section .accordion-button {
      background-color: #fff;
      color: #333;
      box-shadow: none;
    }

    .terms-section .accordion-button:not(.collapsed) {
      background-color: #212529;
      color: #110202ff;
    }

    .terms-section .accordion-item {
      border: none;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    /* Mobile Center Alignment */
    @media (max-width: 767.98px) {
      .topbar .contact-info {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .topbar .contact-info a {
        display: block;
        margin: 3px 0;
      }
    }

    .gallery-section {
      padding: 40px;
      text-align: center;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px;
    }

    .gallery-item {
      width: 100%;
      height: 350px;
      cursor: pointer;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s;
    }

    .gallery-item:hover {
      transform: scale(1.05);
    }

    .lightbox {
      display: none;
      position: fixed;
      z-index: 999;
      padding-top: 60px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.9);
    }

    .lightbox-content {
      margin: auto;
      display: block;
      max-width: 80%;
      max-height: 80%;
      border-radius: 8px;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    .prev,
    .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 30px;
      transition: 0.3s;
      user-select: none;
    }

    .prev {
      left: 0;
    }

    .next {
      right: 0;
    }

    .prev:hover,
    .next:hover {
      color: #ccc;
    }