      :root {
          --primary-color: #2713a3;
          --secondary-color: #f8f9fa;
          --accent-color: #ff6b35;
          --text-color: #333;
          --light-text: #777;
          --light-bg: #f9f9f9;
          --white: #ffffff;
          --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          --transition: all 0.3s ease;
      }

      body {
          /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
          overflow-x: hidden;
      }

      /* Navbar Styles */
      .navbar {
          background-color: white;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          padding: 15px 0;
          transition: all 0.3s ease;
      }

      .navbar-brand {
          font-weight: 700;
          color: var(--primary-color);
          font-size: 1.8rem;
      }

      .navbar-nav .nav-link {
          color: #333;
          font-weight: 500;
          margin: 0 10px;
          transition: color 0.3s;
      }

      .navbar-nav .nav-link:hover {
          color: var(--primary-color);
      }

      .btn-primary {
          background-color: var(--primary-color);
          border-color: var(--primary-color);
          padding: 10px 25px;
          border-radius: 30px;
          font-weight: 600;
      }

      .btn-primary:hover {
          background-color: #1e0e8a;
          border-color: #1e0e8a;
      }

      /* Mobile Navbar */
      .offcanvas {
          max-width: 300px !important;
      }

      .offcanvas-header {
          background-color: var(--primary-color);
          color: white;
      }

      .offcanvas-body .nav-link {
          padding: 15px 20px;
          border-bottom: 1px solid #eee;
          color: #333;
      }

      /* Hero Section */
      .hero-section {
          background-size: cover;
          background-position: center;
          color: white;
          padding: 100px 0;
          min-height: 70vh;
          display: flex;
          align-items: center;
      }

      .hero-content h1 {
          font-size: 3.5rem;
          font-weight: 700;
          margin-bottom: 20px;
      }

      .hero-content p {
          font-size: 1.2rem;
          margin-bottom: 30px;
      }

      .quote-form {
          background: rgba(255, 255, 255, 0.95);
          border-radius: 10px;
          padding: 30px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      .quote-form h3 {
          color: var(--primary-color);
          margin-bottom: 20px;
      }

      .form-control {
          padding: 12px 15px;
          /* margin-bottom: 15px; */
          border-radius: 5px;
          border: 1px solid #ddd;
      }

      /* Section Styles */
      .section-padding {
          padding: 80px 0;
      }

      .section-title {
          text-align: center;
          /* margin-bottom: 50px; */
      }

      .section-title h2 {
          color: var(--primary-color);
          font-weight: 700;
          margin-bottom: 15px;
          position: relative;
          display: inline-block;
      }

      .section-title h2:after {
          content: "";
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background-color: var(--accent-color);
      }

      /* About Section */
      .about-content {
          padding-right: 30px;
      }

      .about-img {
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      /* Services Section */
      .service-card {
          background: white;
          border-radius: 10px;
          padding: 30px;
          text-align: center;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s, box-shadow 0.3s;
          margin-bottom: 30px;
          height: 100%;
      }

      .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .service-icon {
          width: 80px;
          height: 80px;
          background-color: rgba(39, 19, 163, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 20px;
          color: var(--primary-color);
          font-size: 2rem;
      }

      /* Why We Stand Out */
      .feature-box {
          display: flex;
          margin-bottom: 30px;
      }

      .feature-icon {
          flex: 0 0 60px;
          height: 60px;
          background-color: rgba(39, 19, 163, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--primary-color);
          font-size: 1.5rem;
          margin-right: 20px;
      }

      /* What Makes Us Unique */
      .unique-card {
          background: white;
          border-radius: 10px;
          padding: 30px;
          text-align: center;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          margin-bottom: 30px;
          height: 100%;
          border-top: 4px solid var(--primary-color);
      }

      /* Why Choose Us */
      .choose-us-item {
          background: white;
          border-radius: 10px;
          padding: 25px;
          margin-bottom: 30px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          display: flex;
          align-items: flex-start;
      }

      .choose-us-icon {
          flex: 0 0 50px;
          height: 50px;
          background-color: rgba(39, 19, 163, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--primary-color);
          font-size: 1.2rem;
          margin-right: 20px;
      }

      /* Reviews Section */
      .reviews-slider {
          display: flex;
          overflow-x: auto;
          gap: 30px;
          padding: 20px 0;
          scrollbar-width: thin;
      }

      .review-card {
          min-width: 350px;
          background: var(--white);
          padding: 30px;
          border-radius: 10px;
          box-shadow: var(--shadow);
      }

      .review-header {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
      }

      .review-avatar {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          overflow: hidden;
          margin-right: 15px;
      }

      .review-avatar img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .review-info h4 {
          font-size: 18px;
          margin-bottom: 5px;
      }

      .review-stars {
          color: var(--accent-color);
      }

      .review-text {
          font-style: italic;
          color: var(--light-text);
      }

      /* FAQ Section */
      .accordion-button {
          font-weight: 600;
          padding: 15px 20px;
      }

      .accordion-button:not(.collapsed) {
          background-color: rgba(39, 19, 163, 0.1);
          color: var(--primary-color);
      }

      /* Blog Section */
      .blog-card {
          background: white;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          margin-bottom: 30px;
          transition: transform 0.3s;
      }

      .blog-card:hover {
          transform: translateY(-5px);
      }

      .blog-img {
          height: 200px;
          overflow: hidden;
      }

      .blog-img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s;
      }

      .blog-card:hover .blog-img img {
          transform: scale(1.05);
      }

      .blog-content {
          padding: 20px;
      }

      .blog-meta {
          display: flex;
          margin-bottom: 10px;
          font-size: 0.9rem;
          color: #666;
      }

      .blog-meta span {
          margin-right: 15px;
      }

      /* Contact Section */
      .contact-info {
          margin-bottom: 30px;
      }

      .contact-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 20px;
      }

      .contact-icon {
          flex: 0 0 40px;
          height: 40px;
          background-color: rgba(39, 19, 163, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--primary-color);
          margin-right: 15px;
      }

      /* Footer */
      footer {
          background-color: #1a1a1a;
          color: white;
          padding: 70px 0 0;
      }

      .footer-widget h4 {
          color: white;
          margin-bottom: 25px;
          font-weight: 600;
      }

      .footer-links li {
          margin-bottom: 10px;
      }

      .footer-links a {
          color: #bbb;
          text-decoration: none;
          transition: color 0.3s;
      }

      .footer-links a:hover {
          color: white;
      }

      .footer-bottom {
          background-color: #111;
          padding: 20px 0;
          margin-top: 50px;
      }

      .social-icons a {
          display: inline-block;
          width: 40px;
          height: 40px;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          text-align: center;
          line-height: 40px;
          color: white;
          margin-right: 10px;
          transition: background-color 0.3s;
      }

      .social-icons a:hover {
          background-color: var(--primary-color);
      }

      /* Responsive Styles */
      @media (max-width: 991.98px) {
          .hero-content h1 {
              font-size: 2.5rem;
          }

          .about-content {
              padding-right: 0;
              margin-bottom: 30px;
          }
      }

      @media (max-width: 767.98px) {
          .hero-content h1 {
              font-size: 2rem;
          }

          .section-padding {
              padding: 60px 0;
          }
      }

      .navbar-toggler:focus {
          text-decoration: none;
          outline: 0;
          box-shadow: none !important;
      }

      .breadcrumb-section {
          background: linear-gradient(to left, rgba(39, 19, 163, 0.9), rgba(39, 19, 163, 0.95));
          background-size: cover;
          background-position: center;
          color: white;
          padding: 35px 0;
          margin-top: 70px;
      }

      .breadcrumb-content h1 {
          font-size: 2.8rem;
          font-weight: 700;
          margin-bottom: 15px;
          line-height: 1.2;
      }

      .breadcrumb-content p {
          font-size: 1.1rem;
          margin-bottom: 25px;
          opacity: 0.9;
      }

      .breadcrumb {
          margin-bottom: 0;
          background-color: transparent;
          padding: 0;
      }

      .breadcrumb-item a {
          color: rgba(255, 255, 255, 0.9);
          text-decoration: none;
          transition: color 0.3s;
      }

      .breadcrumb-item a:hover {
          color: white !important;
          text-decoration: underline;
      }

      .breadcrumb-item.active {
          color: white !important;
          font-weight: 500;
      }

      .breadcrumb-item+.breadcrumb-item::before {
          content: ">" !important;
          color: rgba(255, 255, 255, 0.7) !important;
      }


      /* Responsive Styles */
      @media (max-width: 991.98px) {
          .breadcrumb-content h1 {
              font-size: 2.2rem;
          }

          .breadcrumb-section {
              margin-top: 66px;
          }
      }

      @media (max-width: 767.98px) {
          .breadcrumb-content h1 {
              font-size: 1.8rem;
          }

          .breadcrumb-content {
              margin-bottom: 30px;
          }
      }

      .review-section {
          padding: 80px 0;
      }

      .review-form-container {
          border: 1px solid #f0f0f0;
          border-radius: 15px;
          padding: 25px;
          margin: 0 auto;
      }

      /* .section-title {
        text-align: center;
        margin-bottom: 40px;
      } */

      .section-title h2 {
          color: var(--primary-color);
          font-weight: 700;
          margin-bottom: 15px;
          position: relative;
          display: inline-block;
      }

      .section-title h2:after {
          content: "";
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background-color: var(--accent-color);
      }

      .form-label {
          font-weight: 600;
          color: #333;
          margin-bottom: 8px;
      }

      .form-control,
      .form-select {
          padding: 12px 15px;
          border-radius: 8px;
          border: 1px solid #ddd;
          transition: all 0.3s;
      }

      .form-control:focus,
      .form-select:focus {
          border-color: var(--primary-color);
          box-shadow: 0 0 0 0.2rem rgba(39, 19, 163, 0.25);
      }

      /* Rating Stars */
      .rating-container {
          text-align: center;
          margin: 20px 0;
      }

      .rating-title {
          font-size: 1.1rem;
          font-weight: 600;
          margin-bottom: 15px;
          color: #333;
      }

      .rating-stars {
          display: flex;
          justify-content: center;
          gap: 10px;
          margin-bottom: 10px;
      }

      .star {
          font-size: 2rem;
          color: #ddd;
          cursor: pointer;
          transition: color 0.2s;
      }

      .star:hover,
      .star.active {
          color: #ffc107;
      }

      .rating-text {
          font-size: 0.9rem;
          color: #666;
          margin-top: 5px;
      }

      /* File Upload */
      .file-upload {
          position: relative;
          overflow: hidden;
          display: inline-block;
          width: 100%;
      }

      .file-upload-btn {
          background-color: #f8f9fa;
          border: 1px dashed #ddd;
          color: #666;
          padding: 12px 20px;
          border-radius: 8px;
          font-size: 1rem;
          font-weight: 500;
          width: 100%;
          text-align: center;
          cursor: pointer;
          transition: all 0.3s;
      }

      .file-upload-btn:hover {
          background-color: #e9ecef;
          border-color: var(--primary-color);
      }

      .file-upload input[type="file"] {
          position: absolute;
          left: 0;
          top: 0;
          opacity: 0;
          width: 100%;
          height: 100%;
          cursor: pointer;
      }

      .file-name {
          margin-top: 8px;
          font-size: 0.9rem;
          color: #666;
      }

      /* Submit Button */
      .submit-btn {
          background-color: var(--primary-color);
          border: none;
          color: white;
          padding: 12px 30px;
          border-radius: 30px;
          font-weight: 600;
          font-size: 1.1rem;
          width: 100%;
          transition: all 0.3s;
          margin-top: 10px;
      }

      .submit-btn:hover {
          background-color: #1e0e8a;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(39, 19, 163, 0.3);
      }

      /* Form Group Styling */
      .form-group {
          margin-bottom: 25px;
      }

      /* Responsive */
      @media (max-width: 576px) {
          .review-form-container {
              padding: 25px;
          }

          .star {
              font-size: 1.7rem;
          }
      }

      :root {
          --hp-primary-color: #2713a3;
          --hp-primary-hover: #1e0e8a;
          --hp-accent-color: #ff6b35;
      }

      .hp-services-list {
          border-radius: 15px;
          padding: 10px;
          margin-bottom: 20px;
          border: 1px solid #f0f0f0;
      }

      .hp-section-title {
          color: var(--hp-primary-color);
          font-weight: 700;
          font-size: 1rem;
      }

      .hp-services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 15px;
          margin-top: 20px;
      }

      .hp-service-item {
          display: flex;
          align-items: center;
          padding: 10px 15px;
          background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
          border-radius: 12px;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          border-left: 4px solid var(--hp-primary-color);
          text-decoration: none;
          color: #333;
          cursor: pointer;
          position: relative;
          overflow: hidden;
      }

      .hp-service-item::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
          transition: left 0.5s;
      }

      .hp-service-item:hover::before {
          left: 100%;
      }

      .hp-service-item:hover {
          background: linear-gradient(135deg, var(--hp-primary-color) 0%, var(--hp-primary-hover) 100%);
          color: white;
          transform: translateY(-3px) scale(1.02);
          box-shadow: 0 8px 25px rgba(39, 19, 163, 0.3);
          text-decoration: none;
          border-left-color: var(--hp-primary-hover);
      }

      .hp-service-item:hover .hp-service-icon {
          background: white;
          color: var(--hp-primary-color);
          transform: scale(1.1) rotate(5deg);
      }

      .hp-service-icon {
          width: 30px;
          height: 30px;
          background: linear-gradient(135deg, var(--hp-primary-color) 0%, var(--hp-primary-hover) 100%);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          margin-right: 15px;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          flex-shrink: 0;
          box-shadow: 0 4px 12px rgba(39, 19, 163, 0.2);
      }

      .hp-service-icon svg {
          width: 20px;
          height: 20px;
      }

      .hp-service-title {
          margin: 0;
          font-weight: 600;
          font-size: 1.05rem;
          transition: all 0.3s ease;
      }

      /* Focus styles for accessibility */
      .hp-service-item:focus {
          outline: 2px solid var(--hp-primary-color);
          outline-offset: 2px;
      }

      .hp-service-item:focus:not(:hover) {
          background: rgba(39, 19, 163, 0.1);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
          .hp-services-list {
              padding: 20px 15px;
              margin: 20px 10px;
          }

          .hp-services-grid {
              grid-template-columns: 1fr;
              gap: 12px;
          }

          .hp-service-item {
              padding: 18px 15px;
          }

          .hp-service-icon {
              width: 40px;
              height: 40px;
              margin-right: 12px;
          }

          .hp-service-icon svg {
              width: 18px;
              height: 18px;
          }

          .hp-service-title {
              font-size: 1rem;
          }
      }

      @media (max-width: 480px) {
          .hp-services-list {
              padding: 15px 10px;
          }

          .hp-service-item {
              padding: 15px 12px;
          }

          .hp-service-icon {
              width: 35px;
              height: 35px;
              margin-right: 10px;
          }

          .hp-service-icon svg {
              width: 16px;
              height: 16px;
          }
      }

      .location-card {
          background: #fff;
          border-radius: 12px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          padding: 20px 25px;
          display: flex;
          align-items: center;
          transition: transform 0.2s ease;
      }

      .location-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      }

      .location-icon {
          width: 36px;
          height: 36px;
          fill: var(--hp-primary-color);
          margin-right: 15px;
          flex-shrink: 0;
      }

      .location-text {
          font-weight: 600;
          color: #222;
          font-size: 1.1rem;
          line-height: 1.4;
      }

      .mover-card {
          background: #fff;
          border-radius: 12px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          padding: 25px;
          transition: all 0.2s ease;
      }

      .mover-card:hover {
          transform: translateY(-4px);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
      }

      .mover-logo {
          width: 100%;
          object-fit: cover;
      }

      .mover-name {
          font-weight: 700;
          font-size: 1.4rem;
          color: #000;
          margin-bottom: 5px;
      }

      .mover-address {
          font-style: italic;
          color: #444;
          margin-bottom: 6px;
      }

      .mover-contact a {
          color: #0066ff;
          text-decoration: none;
      }

      .mover-contact a:hover {
          text-decoration: underline;
      }

      .star {
          width: 20px;
          height: 20px;
          fill: #ff9800;
      }

      .btn-quote {
          background-color: #0066ff !important;
          color: #fff !important;
          font-weight: 600;
          border: none !important;
          width: 100% !important;
      }

      .btn-quote:hover {
          background-color: #0050d4 !important;
      }

      .btn-profile {
          border: 1px solid #0066ff !important;
          color: #0066ff !important;
          font-weight: 600 !important;
          width: 100%;
      }

      .btn-profile:hover {
          background-color: #0066ff !important;
          color: #fff !important;
      }

      @media (max-width: 767px) {
          .mover-name {
              font-size: 1.2rem;
          }

          .mover-card {
              padding: 20px;
          }

          .btn-quote,
          .btn-profile {
              width: auto !important;
              padding: 8px 20px;
              margin-top: 10px;
          }
      }

      .testimonial-item {
          border: none;
          border-radius: 12px;
          transition: all 0.3s ease;
          margin-bottom: 25px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .testimonial-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .testimonial-top {
          background-color: rgba(26, 58, 95, 0.05);
          padding: 10px 20px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .client-details {
          display: flex;
          align-items: center;
      }

      .client-image {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background-color: var(--hp-primary-color);
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
          font-size: 1.2rem;
          margin-right: 15px;
      }

      .client-name {
          font-weight: 600;
          color: var(--hp-primary-color);
          margin-bottom: 5px;
      }

      .feedback-date {
          color: #6c757d;
          font-size: 0.9rem;
      }

      .testimonial-content {
          padding: 10px 20px;
      }

      .feedback-text {
          margin-bottom: 15px;
          line-height: 1.7;
      }

      .feedback-text.short {
          max-height: 100px;
          overflow: hidden;
          position: relative;
      }

      .feedback-text.short:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 40px;
          background: linear-gradient(transparent, white);
      }

      .expand-feedback {
          background: none;
          border: none;
          color: var(--accent);
          font-weight: 600;
          padding: 0;
          cursor: pointer;
          display: flex;
          align-items: center;
          transition: color 0.3s ease;
      }

      .expand-feedback:hover {
          color: var(--hp-primary-color);
          text-decoration: underline;
      }

      .expand-icon {
          width: 16px;
          height: 16px;
          margin-left: 8px;
          transition: transform 0.3s ease;
          fill: currentColor;
      }

      .expand-feedback.open .expand-icon {
          transform: rotate(180deg);
      }

      .rating-icons {
          display: flex;
          gap: 2px;
          margin-top: 10px;
      }

      .star-icon {
          width: 18px;
          height: 18px;
          fill: #ffc107;
      }

      .star-icon.empty {
          fill: #e4e5e9;
      }

      .star-icon.half {
          position: relative;
      }

      .star-icon.half:after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 50%;
          height: 100%;
          background-color: #ffc107;
      }

      .load-more-container {
          text-align: center;
          margin-top: 30px;
      }

      .load-more-btn {
          background-color: var(--accent-color) !important;
          color: var(--hp-primary-color) !important;
          border: none;
          font-weight: 600;
          padding: 12px 25px;
          border-radius: 50px;
          transition: all 0.3s ease;
          display: inline-flex;
          align-items: center;
          gap: 8px;
      }

      .load-more-btn:hover {
          background-color: #e6b400;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .plus-icon {
          width: 16px;
          height: 16px;
          fill: currentColor;
      }

      @media (max-width: 768px) {
          .review-container {
              padding: 25px 20px;
          }
      }

      :root {
          --primary: #1a3a5f;
          --secondary: #f8c300;
          --accent: #2c5282;
          --light: #f8f9fa;
          --dark: #333;
      }

      .rating-badge {
          background-color: var(--accent-color);
          color: var(--primary);
          padding: 5px 15px;
          border-radius: 20px;
          font-weight: 600;
          display: inline-flex;
          align-items: center;
          gap: 5px;
      }

      .profile-section {
          background-color: white;
          border-radius: 12px;
          padding: 30px;
          margin-bottom: 25px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .section-title1 {
          color: var(--primary);
          font-weight: 700;
          margin-bottom: 20px;
          padding-bottom: 10px;
          border-bottom: 2px solid var(--accent-color);
      }

      .contact-info {
          display: flex;
          flex-direction: column;
          gap: 12px;
      }

      .contact-item {
          display: flex;
          align-items: center;
          gap: 12px;
      }

      .contact-icon {
          width: 40px;
          height: 40px;
          background-color: rgba(26, 58, 95, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
      }

      .service-card {
          border: 1px solid #e9ecef;
          border-radius: 10px;
          padding: 20px;
          transition: all 0.3s ease;
          height: 100%;
      }

      .service-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          border-color: var(--accent);
      }

      .service-icon {
          width: 60px;
          height: 60px;
          background-color: rgba(26, 58, 95, 0.1);
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 15px;
      }

      .service-title1 {
          font-weight: 600;
          color: var(--primary);
          margin-bottom: 10px;
      }

      .testimonial-item {
          border: 1px solid #e9ecef;
          border-radius: 10px;
          padding: 20px;
          margin-bottom: 20px;
          transition: all 0.3s ease;
      }

      .testimonial-item:hover {
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      }

      .client-info {
          display: flex;
          align-items: center;
          margin-bottom: 15px;
      }

      .client-avatar {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background-color: var(--primary);
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
          margin-right: 15px;
      }

      .rating-stars {
          display: flex;
          gap: 2px;
          margin-top: 5px;
      }

      .star-icon {
          width: 18px;
          height: 18px;
          fill: #ffc107;
      }

      .star-icon.empty {
          fill: #e4e5e9;
      }

      .action-buttons {
          display: flex;
          gap: 15px;
          flex-wrap: wrap;
          margin-top: 30px;
      }

      .btn-primary-custom {
          background-color: var(--accent-color) !important;
          color: var(--hp-primary-color) !important;
          border: none;
          font-weight: 600;
          padding: 12px 25px;
          border-radius: 50px;
          transition: all 0.3s ease;
      }

      .btn-primary-custom:hover {
          background-color: #e6b400;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .btn-outline-custom {
          background-color: transparent !important;
          color: var(--hp-primary-color) !important;
          border: 2px solid var(--hp-primary-color) !important;
          font-weight: 600;
          padding: 12px 25px;
          border-radius: 50px;
          transition: all 0.3s ease;
      }

      .btn-outline-custom:hover {
          background-color: var(--hp-primary-color) !important;
          color: white !important;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .location-map {
          border-radius: 10px;
          overflow: hidden;
          height: 300px;
          background-color: #e9ecef;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #6c757d;
          font-weight: 500;
      }

      .stats-container {
          display: flex;
          justify-content: space-around;
          text-align: center;
          margin-top: 20px;
      }

      .stat-item {
          padding: 15px;
      }

      .stat-number {
          font-size: 2rem;
          font-weight: 700;
          color: var(--primary);
          display: block;
      }

      .stat-label {
          color: #6c757d;
          font-size: 0.9rem;
      }

      @media (max-width: 768px) {
          .action-buttons {
              justify-content: center;
          }

          .stats-container {
              flex-direction: column;
              gap: 10px;
          }
      }

      .search-container {
          margin-bottom: 2rem;
          position: relative;
      }

      .search-container i {
          position: absolute;
          left: 15px;
          top: 50%;
          transform: translateY(-50%);
          color: #6c757d;
      }

      .search-container input {
          padding-left: 45px;
          border-radius: 50px;
          border: 2px solid #e9ecef;
          transition: all 0.3s ease;
      }

      .search-container input:focus {
          border-color: #007bff;
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
      }

      .no-results {
          text-align: center;
          padding: 2rem;
          color: #6c757d;
          display: none;
      }

      .no-results i {
          font-size: 3rem;
          margin-bottom: 1rem;
          color: #dee2e6;
      }

      .svg-container {
          position: relative;
          width: 100%;
          padding-top: 100%;
      }

      .svg-content {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
      }

      #mapContainer object,
      #mapContainer svg {
          width: 100%;
          height: auto;
          max-width: 100%;
      }
      :root {
        --primary-blue: #1e5eff;
        --primary-dark: #0b3b61;
        --primary-light: #c1d0f7;
        --background: #f0f4f8;
        --success: #28a745;
        --danger: #dc3545;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .quote-section {
        position: relative;
        top: -75px
    }

    .quote-form-container {
        background: white;
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 2rem;
        align-items: center;
        max-width: 1000px;
        width: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .quote-title {
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--primary-dark);
        text-align: center;
        position: relative;
        padding-right: 1.5rem;
        flex-grow: 0;
        flex-shrink: 0;
        line-height: 1.4;
    }

    .quote-title::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0.9rem;
        transform: translateY(-50%);
        border-left: 2px solid var(--accent-color);
        height: 50px;
    }

    .quote-title::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0.4rem;
        transform: translateY(-50%) rotate(45deg);
        width: 8px;
        height: 8px;
        border-top: 2px solid var(--primary-dark);
        border-right: 2px solid var(--primary-dark);
    }

    .form-label {
        font-weight: 600;
        font-size: 0.9rem;
        color: #505050;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
    }

    .required {
        color: var(--danger);
        margin-left: 3px;
    }

    .form-control {
        border-radius: 12px !important;
        height: 50px;
        font-size: 1rem;
        box-shadow: none !important;
        border: 1.5px solid var(--primary-blue);
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 8px rgba(30, 94, 255, 0.3) !important;
    }

    .form-control.valid {
        border-color: var(--success);
    }

    .form-control.invalid {
        border-color: var(--danger);
    }

    .input-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-blue);
        font-size: 1.3rem;
        pointer-events: none;
        transition: color 0.3s ease;
    }

    .input-group {
        position: relative;
        width: 100%;
    }

    .pre {
        background: linear-gradient(135deg, var(---primary-light), #004ecb) !important;
        color: #000 !important;
    }

    .btn-quote {
        background: linear-gradient(135deg, var(--primary-blue), #004ecb);
        border: none;
        border-radius: 12px;
        padding: 0.75rem 1.6rem;
        color: white;
        font-weight: bold;
        font-size: 1rem;
        height: 50px;
        white-space: nowrap;
        transition: all 0.3s ease;
        width: 100%;
        box-shadow: 0 4px 10px rgba(30, 94, 255, 0.3);
    }

    .btn-quote:hover {
        background: linear-gradient(135deg, #004ecb, var(--primary-blue));
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(30, 94, 255, 0.4);
    }

    .btn-quote:active {
        transform: translateY(0);
    }

    .form-feedback {
        font-size: 0.8rem;
        margin-top: 0.25rem;
        display: none;
    }

    .form-feedback.valid {
        color: var(--success);
        display: block;
    }

    .form-feedback.invalid {
        color: var(--danger);
        display: block;
    }

    .success-message {
        display: none;
        background: rgba(40, 167, 69, 0.1);
        border: 1px solid var(--success);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        margin-top: 1rem;
    }

    .success-message.show {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 991.98px) {
        .quote-title {
            width: 100%;
            text-align: center;
            padding-right: 0;
            margin-bottom: 1rem;
        }

        .quote-title::after,
        .quote-title::before {
            display: none;
        }

        .quote-form-container {
            padding: 1.5rem;
        }
    }

    @media (max-width: 767.98px) {
        .quote-form-container {
            flex-direction: column;
            align-items: stretch;
            gap: 1rem;
            padding: 1.25rem;
        }

        .btn-quote {
            margin-top: 0.5rem;
        }
    }