        :root {

          --primary-orange: #FF7A00;
          --background-white: #FFFFFF;
          --text-white: #FFFFFF;
          --text-black: #000000;
          --red: #e53935;
          --button-gradient: linear-gradient(135deg, #FF7A00, #E53935);
          --heading-orange: #F0692F;
          --shadow-orange: rgba(255, 122, 0, 0.25);
          --hover-gradient: linear-gradient(90deg, #e02a20 0%, #e06a00 100%);
          --trust-green: #446960;
          --text-heading: #1EA8D7;
          --subtext-gray: #A5ACAB;
          --cta-orange: #D97B23;
          --dark-gray: #2C3E50;
          --light-gray: #F8F9FA;
        }



        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
          color: var(--dark-gray);
          padding-top: 140px;
          font-family: 'Roboto', sans-serif;

        }

        /* TOP HEADER BAR */
        .top-header {
          background: var(--red);
          color: white;
          padding: 12px 0;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 1050;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          font-weight: 700;
        }

        .header-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .emergency-contact {
          display: flex;
          align-items: center;
          gap: 25px;
        }

        .contact-badge {
          display: flex;
          align-items: center;
          gap: 10px;
          background: rgba(255, 255, 255, 0.1);
          padding: 8px 15px;
          border-radius: 30px;
          color: var(--text-white);
          text-decoration: none;
          font-weight: 700;
          font-size: 0.95rem;
          transition: all 0.3s ease;
          border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .contact-badge:hover {
          background: rgba(255, 255, 255, 0.2);
          transform: translateY(-2px);
          color: var(--text-white);
        }

        .contact-badge i {
          color: var(--text-white);
          font-size: 1.1rem;
        }

        .header-features {
          display: flex;
          gap: 25px;
        }

        .header-feature {
          display: flex;
          align-items: center;
          gap: 8px;
          color: var(--text-white);
          font-size: 0.9rem;
          font-weight: 700;
        }

        .header-feature i {
          color: var(--text-white);
        }

        /* MAIN NAVIGATION */
        .main-navigation {
          position: fixed;
          top: 60px;
          left: 0;
          width: 100%;
          background: var(--background-white);
          z-index: 1040;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        /* Logo Section */


        .nav-logo {
          display: flex;
          align-items: center;
        }

        .main-logo {
          height: 80px;
          width: auto;
          object-fit: contain;
        }

        /* Desktop Navigation Menu */
        .nav-menu {
          display: flex;
          align-items: center;
          list-style: none;
          margin: 0;
          padding: 0;
          gap: 5px;
        }

        .nav-item {
          position: relative;
        }

        .nav-link {
          color: var(--primary-orange);
          text-decoration: none;
          font-weight: 600;
          font-size: 0.95rem;
          padding: 12px 20px;
          border-radius: 8px;
          transition: all 0.3s ease;
          position: relative;
        }

        .nav-link::before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 0;
          height: 3px;
          background: var(--primary-orange);
          transition: width 0.3s ease;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
          width: 70%;
        }

        .nav-link:hover {
          color: var(--red);
          background: rgba(255, 122, 0, 0.10);
        }

        .nav-link.active {
          color: var(--primary-orange);
          font-weight: 700;
        }

        /* Dropdown Menu */
        .nav-item.dropdown:hover .dropdown-menu {
          display: block;
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }



        .dropdown-menu {
          display: block;
          opacity: 0;
          visibility: hidden;
          transform: translateY(10px);
          transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
          border: none;
          border-radius: 10px;
          padding: 15px 0;
          min-width: 250px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          background: var(--background-white);
          border-top: 3px solid var(--primary-orange);
        }

        .dropdown-item {
          padding: 12px 20px;
          color: var(--dark-gray);
          text-decoration: none;
          transition: all 0.3s ease;
          font-weight: 500;
          font-size: 0.9rem;
          border-left: 3px solid transparent;
          display: flex;
          align-items: center;
          gap: 12px;
        }

        .dropdown-item i {
          color: var(--primary-orange);
          width: 20px;
          font-size: 1.1rem;
        }

        .dropdown-item:hover {
          background: rgba(255, 122, 0, 0.10);
          color: var(--red);
          border-left: 3px solid var(--primary-orange);
          padding-left: 25px;
        }

        /* CTA Button */
        .nav-cta {
          background: var(--button-gradient);
          color: white;
          font-weight: 700;
          padding: 12px 28px;
          border-radius: 8px;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          box-shadow: 0 5px 15px rgba(217, 123, 35, 0.3);
          transition: all 0.3s ease;
          border: none;
          font-size: 0.95rem;
        }

        .nav-cta:hover {
          background: var(--hover-gradient);
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(217, 123, 35, 0.4);
          color: white;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
          display: none;
          width: 45px;
          height: 45px;
          background: var(--red);
          border: none;
          border-radius: 8px;
          cursor: pointer;
          padding: 0;
          z-index: 1001;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: 5px;
          transition: all 0.3s ease;
        }


        .mobile-toggle span {
          display: block;
          height: 2.5px;
          width: 24px;
          background: var(--background-white);
          border-radius: 2px;
          transition: all 0.3s ease;
        }

        .mobile-toggle.active span:nth-child(1) {
          transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
          opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
          transform: rotate(-45deg) translate(8px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 100%;
          max-width: 400px;
          height: 100vh;
          background: var(--background-white);
          box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
          z-index: 1060;
          transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
          overflow-y: auto;
        }

        .mobile-menu.active {
          right: 0;
        }

        .mobile-header {
          padding: 25px;
          background: rgba(255, 122, 0, 0.10);
          border-bottom: 3px solid var(--primary-orange);
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .mobile-logo {
          display: flex;
          align-items: center;
        }

        .mobile-main-logo {
          height: 55px;
          width: auto;
          object-fit: contain;
        }


        .mobile-nav {
          padding: 20px;
          list-style: none;
        }

        .mobile-nav-item {
          margin-bottom: 10px;
        }

        .mobile-nav-link {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 16px 20px;
          color: var(--primary-orange);
          text-decoration: none;
          font-weight: 600;
          font-size: 1rem;
          border-radius: 8px;
          transition: all 0.3s ease;
          background: rgba(255, 122, 0, 0.10);
          border-left: 4px solid transparent;
        }

        .mobile-nav-link.active {
          background: rgba(255, 122, 0, 0.10);
          color: var(--primary-orange);
          border-left: 4px solid var(--primary-orange);
        }

        .mobile-nav-link:hover {
          background: rgba(255, 122, 0, 0.10);

          transform: translateX(5px);
        }

        .mobile-dropdown {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s ease;
          background: var(--background-white);
          border-radius: 8px;
          margin-top: 5px;
        }

        .mobile-dropdown.active {
          max-height: 500px;
        }

        .mobile-dropdown-item {
          padding: 14px 20px 14px 40px;
          color: var(--red);
          text-decoration: none;
          display: block;
          font-weight: 500;
          font-size: 0.95rem;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          display: flex;
          align-items: center;
          gap: 10px;
        }


        .mobile-dropdown-item:last-child {
          border-bottom: none;
        }


        .overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          backdrop-filter: blur(3px);
          z-index: 1055;
          opacity: 0;
          visibility: hidden;
          transition: all 0.4s ease;
        }

        .overlay.active {
          opacity: 1;
          visibility: visible;
        }

        /* Mobile Contact Section */
        .mobile-contact-section {
          padding: 25px 20px;
          background: var(--light-gray);
          border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-contact-card {
          background: var(--background-white);
          border-radius: 10px;
          padding: 20px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          text-align: center;
          margin-bottom: 20px;
          border-top: 3px solid var(--primary-orange);
        }

        .mobile-contact-icon {
          width: 60px;
          height: 60px;
          background: rgba(255, 122, 0, 0.10);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--primary-blue);
          font-size: 1.5rem;
          margin: 0 auto 15px;
        }

        .mobile-contact-number {
          font-size: 1.4rem;
          font-weight: 700;
          color: var(--dark-gray);
          text-decoration: none;
          display: block;
          margin-bottom: 10px;
        }



        /* MOBILE RESPONSIVE */
        @media (max-width: 991px) {
          body {
            padding-top: 120px;
          }

          .header-features {
            display: none;
          }

          .emergency-contact {
            width: 100%;
            justify-content: center;
          }

          .mobile-toggle {
            display: flex;
          }

          .nav-menu,
          .nav-cta {
            display: none;
          }

          .main-navigation {
            top: 53px;
          }

        
        }

        @media (max-width: 767px) {
          .logo-text h1 {
            font-size: 1.5rem;
          }

          .logo-text p {
            font-size: 0.8rem;
          }

          .logo-icon {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
          }

          .contact-badge {
            font-size: 0.9rem;
            padding: 6px 12px;
          }
        }

        @media (max-width: 575px) {
          .logo-text h1 {
            font-size: 1.3rem;
          }

          .mobile-menu {
            max-width: 320px;
          }

          .contact-badge {
            font-size: 0.85rem;
            gap: 6px;
          }

          .contact-badge i {
            font-size: 1rem;
          }
        }



@media (max-width: 1024px) {
  .nav-link{
  font-size: 0.7rem !important;

  }
  .nav-cta{
    padding:5px;
  }
}


        /* Breadcrumb */
        .breadcrumb-hero {
          position: relative;
          background: url("../images/breadcrumb/breadcrumb.png") center/cover no-repeat;
          padding: 80px 0;
        }

        .breadcrumb-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(90deg,
              rgba(255, 122, 0, 0.15),
              rgba(255, 122, 0, 0.05));
          opacity: 0.75;
        }

        .breadcrumb-content {
          position: relative;
          background: rgba(0, 0, 0, 0.55);

          padding: 12px 18px;

          border-radius: 45px 0 45px 0;
        }


        .breadcrumb-title {
          font-size: 40px;
          font-weight: 700;
          color: var(--background-white);
          margin-bottom: 10px;
        }

    .breadcrumb-hero .breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-orange);
    font-weight: 700;
}
        /* Breadcrumb */
        .breadcrumb {
          background: none;
          padding: 0;
          margin: 0;
        }

        .breadcrumb-link {
          text-decoration: none;
          color: var(--primary-orange);
              font-weight: 700;

        }

        .breadcrumb-item.active {
          color: var(--text-white);
              font-weight: 700;

        }

        @media (max-width: 480px) {
          .breadcrumb-content {
            width: 90%;
            margin: 0 auto;
            border-radius: 45px 0 45px 0;
            padding: 10px;
          }

          .breadcrumb-title {
            font-size: 28px;
          }
        }




.policy-section h3 {
  color: var(--primary-orange);
}

.policy-section h2 {
  color: var(--heading-orange);
  margin-bottom: 20px;
}

.policy-section p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.policy-section .list-unstyled li {
  color: var(--text-black);
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-section .highlight-text {
  font-weight: 700;
  color: var(--text-black);
}

.policy-section a {
  color: var(--primary-orange);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 40px 15px;
  }

  .policy-section h2 {
    font-size: 24px;
  }

  .policy-section h3 {
    font-size: 20px;
  }
}
        .section-wrapper {
          position: relative;
          z-index: 15;
          display: flex;
          justify-content: center;
          transform: translateY(-160px);
        }



        div#number-section {
          margin: 0 auto;
          background: var(--red);
          color: var(--text-white);
          padding: 15px 20px;
          border-radius: 10px;
          max-width: 800px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          text-align: center;
        }

        .number-row {
          display: flex !important;
          justify-content: center;
          align-items: center;
          gap: 15px;
          flex-wrap: nowrap;
        }

        .call-box {
          border: 2px solid white;
          border-radius: 10px;
          padding: 8px 15px;
          line-height: 1.2;
          font-weight: bold;
          text-align: center;
          animation: pulse 1.5s infinite alternate;
        }

        .animated-number {
          display: inline-block;
          transform: scale(0);
          opacity: 0;
          font-size: clamp(2rem, 8vw, 4.5rem);
          font-weight: bold;
          transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .animated-number.show {
          transform: scale(1);
          opacity: 1;
        }

        .sub-text {
          font-size: clamp(1rem, 3vw, 1.2rem);
          margin-bottom: 5px;
        }


        .separator {
          border-top: 1px solid white;
          width: 80%;
          margin: 8px auto 10px;
        }

        /*animation */
        @keyframes pulse {
          0% {
            transform: scale(1);
          }

          50% {
            transform: scale(1.15);
          }

          100% {
            transform: scale(1);
          }
        }

        @media (max-width: 768px) {

          .section-wrapper {
            margin-top: 30px;
            padding: 72px;
            margin-top: 157px;
          }
          

          div#number-section {
            max-width: 100%;
            padding: 15px;
          }

          .call-box {
            border: none;
          }

          .separator {
            width: 90%;
          }

          .section-wrapper {
            transform: none;
            margin-top: -54px;
          }
        }


.home-about-section {
    margin-top: -123px;
}

@media (max-width: 768px) {
    .home-about-section {
        margin-top: -45px;
    }
}



 .about-card{
    background: rgba(255, 122, 0, 0.10);
  }
  .about-background{
    background: rgba(255, 122, 0, 0.10);
  }
  .about-highlight-red{
    color:var(--red);
  }
        .company-story-section {
          background-color: var(--background-white);
        }

        .story-block,
        .work-process-block {
          background: var(--light-gray);
          padding: 32px;
          border-radius: 18px;
          transition: 0.3s ease;
        }

        .story-block:hover,
        .work-process-block:hover {
          transform: translateY(-6px);
        }

        .home-heading {
          color: var(--heading-orange);
          font-weight: 700;
          font-size: 26px;
          line-height: 1.4;
        }

        .section-description {
          color: var(--dark-gray);
          font-size: 15.5px;
          line-height: 1.8;
        }

        .section-highlight {
          color: var(--primary-orange);
          font-weight: 600;
        }

        .process-subtitle {
          color: var(--primary-orange);
          font-weight: 600;
        }

        .process-point {
          display: flex;
          align-items: flex-start;
          margin-bottom: 12px;
          font-weight: 500;
          color: var(--dark-gray);
          transition: 0.3s ease;
        }

  
        .process-point i {
          font-size: 18px;
          transition: 0.3s ease;
        }

        .process-point:hover {
          color: var(--primary-orange);
          transform: translateX(5px);
        }

        .process-point:hover i {
          transform: scale(1.2);
        }

        /*Info rating*/
        .info-rating {
          background: var(--background-white);
        }

        .rating-card {
          height: 100%;
          text-align: center;
          padding: 22px 16px;
          background: var(--background-white);
          border: 2px solid var(--primary-orange);
          border-radius: 14px;
          transition: all 0.35s ease;
        }

        .rating-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 12px 28px var(--shadow-orange);
          border-color: var(--red);
        }

        .rating-card img {
          width: 150px;
          margin-bottom: 14px;
        }

        .rating-card h5 {
          font-size: 16px;
          font-weight: 700;
          color: #111;
          margin-bottom: 8px;
        }

        .rating-card p {
          font-size: 14px;
          line-height: 1.6;
          color: var(--dark-gray);
          margin: 0;
        }

        .rating-card strong {
          color: var(--text-black);
        }

        /* MOBILE VIEW */
        @media (max-width: 576px) {

          .rating-card {
            padding: 14px 10px;
            border-radius: 12px;
          }

          .rating-card img {
            width: 70px;
            margin-bottom: 10px;
          }

          .rating-card h5 {
            font-size: 15px;
          }

          .rating-card p {
            font-size: 13px;
            line-height: 1.5;
          }
        }



        /* service section for home page*/

        .service-card {
          border-radius: 1rem;
          transition: transform .3s ease, box-shadow .3s ease;
        }

        .service-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 18px 40px rgba(30, 168, 215, .2);
        }

        .service-card-hover {
          background: var(--red);
          transform: translateY(100%);
          transition: transform .45s ease;
          z-index: 1;
        }

        .service-card:hover .service-card-hover {
          transform: translateY(0);
        }

        .service-card-header {
          height: 110px;
          background: var(--primary-orange);
          border-bottom-left-radius: 100% 60%;
          border-bottom-right-radius: 100% 60%;
          z-index: 2;
        }

        .service-icon-wrapper {
          width: 54px;
          height: 54px;
          background: var(--background-white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all .3s ease;
        }

        .service-icon-wrapper i {
          font-size: 22px;
          color: var(--red);
          transition: all .3s ease;
        }

        .service-card:hover .service-icon-wrapper {
          background: var(--red);
        }

        .service-card:hover .service-icon-wrapper i {
          color: #000;
        }

        .card-body {
          z-index: 2;
        }

        .service-desc {
          line-height: 1.6;
        }

        .service-btn {
          background: var(--cta-orange);
          border-color: var(--cta-orange);
          color: var(--text-white);
          transition: all .3s ease;
        }

        .service-card:hover .service-btn {
          background: var(--background-white);
          color: var(--cta-orange);
          border-color: #fff;
        }

        .service-card:hover .service-title,
        .service-card:hover .service-desc {
          color: #fff !important;
        }

        .service-title {
          color: var(--dark-gray);
        }


        /* PROCESS SECTION for Home page */
        .process-card {
          border-radius: 14px;
          height: 100%;
          position: relative;
          transition: 0.3s ease;
          padding: 1.5rem 1rem;
        }

        .step-badge {
          position: absolute;
          top: 10px;
          left: 10px;
          width: 50px;
          height: 50px;
          background: var(--button-gradient);
          color: var(--background-white);
          border-radius: 50%;
          font-weight: 600;
          font-size: 14px;
          gap: 4px;
          z-index: 2;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: transform 0.3s ease;
        }

        .step-badge:hover {
          background: var(--hover-gradient);

        }

        .step-badge i {
          font-size: 12px;
        }

        .circle-image-wrapper {
          width: 200px;
          height: 200px;
          background: var(--background-white);
          border-radius: 50%;
          padding: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto;
          box-shadow: 0 10px 20px var(--primary-orange);
          transition: transform 0.3s ease;
        }

        .circle-image-wrapper img {
          width: 100%;
          height: 100%;
          border-radius: 50%;
          object-fit: cover;
        }

        .process-card h6 {
          font-size: 16px;
          margin-top: 0.75rem;
        }

        .process-card p {
          color: var(--subtext-gray);
          font-size: 14px;
          margin-bottom: 0;
        }

        .process-card:hover .circle-image-wrapper {
          transform: scale(1.05);
        }

        .process-card:hover .step-badge {
          transform: scale(1.1);
        }



        .heading-underline {
          width: 90px;
          height: 3px;
          background: var(--button-gradient);
        }


        /* Achievements Section */
        .achievements-section {
          background: #e53935;
          padding-top: 5.5rem;
          padding-bottom: 5.5rem;
        }

        .achievement-card {
          background: #ffffff;
          padding: 5px;
          border-radius: 12px;
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
          display: flex;
          flex-direction: column;
          justify-content: center;
          min-height: 200px;
          height: auto;
        }

        .achievement-number {
          color: var(--primary-orange);
          font-size: 36px;
          font-weight: 700;
          margin-bottom: 8px;
        }

        .achievement-title {
          font-size: 18px;
          font-weight: 600;
          color: #222;
          margin-bottom: 8px;
          word-wrap: break-word;
          overflow-wrap: break-word;
        }

        .achievement-desc {
          font-size: 14px;
          color: #555;
          line-height: 1.5;
          word-wrap: break-word;
          overflow-wrap: break-word;
        }

        @media (max-width: 576px) {
          .achievement-card {
            padding: 15px 10px;
            min-height: 180px;
          }

          .achievement-number {
            font-size: 26px;
          }

          .achievement-title {
            font-size: 15px;
          }

          .achievement-desc {
            font-size: 13px;
          }
        }

        /* Shifting Rate list */
        section.rates-section h2 {
          color: var(--heading-orange);
          text-align: center;
          margin-bottom: 40px;
          font-weight: 700;
        }

        .table-wrapper {
          overflow-x: auto;
        }

        .rates-table {
          min-width: 800px;

          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 4px 15px var(--shadow-orange);
        }


        .rates-table thead {
          background-color: var(--primary-orange);
          color: var(--text-white);
          font-weight: 600;
        }


        .rates-table tbody tr:nth-child(even) {
          background-color: #fff9f2;
        }

        .rates-table tbody tr:hover {
          background: var(--hover-gradient);
          color: var(--text-white);
        }

        .rates-table td,
        .rates-table th {
          text-align: center;
          vertical-align: middle;
          padding: 15px;
        }

        @media (max-width: 768px) {
          section.rates-section {
            padding: 40px 0;
          }

          .rates-table td,
          .rates-table th {
            padding: 10px;
            font-size: 14px;
          }
        }


        /* About Section page*/
     

        .about-title {
          font-size: 28px;
          color: var(--primary-orange);
          margin-bottom: 18px;
        }


        .about-paragraph {
          font-size: 16px;
          line-height: 1.7;
          color: var(--text-black);
          margin-bottom: 12px;
        }

        .border-color {
          border-color: var(--primary-orange) !important;
        }

/* Services section on service page */
.services-section {
  background: var(--background-white);
}

.services-section h2,
.service-sidebar h5 {
  color: var(--heading-orange);
  font-weight: 700;
}
.services-section span{
 color: var(--heading-orange);

}

.service-highlight-red b {
    color: var(--red) ;
}
.service-sidebar {
  background: var(--light-gray);
  border-radius: 10px;
}

.service-list li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--text-black);
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 10px;   
}


.service-list li.active a,
.service-list li a:hover {
  background: var(--primary-orange);
  color: #fff;
}

.shift-step-circle {
  width: 36px;
  height: 36px;
  background: var(--primary-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.underline-text {
  border-bottom: 3px solid #FF7A00;
  padding-bottom: 5px;
  display: inline-block;
}

.choose-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 10px;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.accordion-button {
  font-weight: 500;
  color: var(--dark-gray);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-orange);
  background-color: #f9f9f9;
}

.accordion-body {
  font-size: 1rem;
  color: var(--dark-gray);
}

.service-content li {
  margin-bottom: 12px;
}

.services-section p {
  margin-bottom: 1rem;
}

.row.g-4.mb-5 {
  margin-top: 2rem;
}

h2.fw-bold.mb-3 {
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .service-sidebar {
    margin-bottom: 2rem;
  }
  .choose-card {
    margin-bottom: 1.5rem;
  }
}







        /* Testimonials page*/

        .testimonial-card {
          position: relative;
          transition: all 0.3s ease;
          border: solid 1px var(--primary-orange);
        }

        .testimonial-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
        }

        .quote-icon {
          position: absolute;
          top: 18px;
          left: 22px;
          font-size: 28px;
          color: #ff7a00;
          opacity: 0.8;
        }

        .user-icon {
          width: 42px;
          height: 42px;
          font-size: 20px;
        }

        .testimonial-text {
          margin-top: 30px;
        }

        .testimonial-text {
          color: var(--text-black);
        }

        .client-name {
          color: var(--dark-gray);
        }

        .client-box {
          margin-top: 25px;
          gap: 12px;
          color: var(--red);
        }

        /* shift process on service page */
        .shift-process-item {
          gap: 0;
        }

        .shift-process-item::before {
          content: "";
          position: absolute;
          left: 22px;
          top: 48px;
          width: 3px;
          height: 100%;
          background: var(--heading-orange);
        }

        .shift-process-item:last-child::before {
          display: none;
        }

        .shift-step-circle {
          width: 44px;
          height: 44px;
          background: #fff;
          color: var(--red);
          border-radius: 50%;
          border: 3px dashed var(--heading-orange);
          z-index: 2;
          flex-shrink: 0;
        }

        .shift-info-card {
          background: #fff;
          padding: 20px 24px;
          border-radius: 18px;
          border: 3px dashed var(--heading-orange);
          box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
          max-width: 320px;
          width: 100%;
          position: relative;
        }

        .shift-info-card::before {
          content: "";
          position: absolute;
          left: -24px;
          top: 22px;
          width: 24px;
          height: 3px;
          background: var(--heading-orange);
        }

        .shift-info-card {
          position: relative;
          transition: color 0.3s ease;
        }

        .shift-info-card::after {
          content: "";
          position: absolute;
          inset: 0;
          background: var(--cta-orange);
          border-radius: 18px;
          transform: scaleX(0);
          transform-origin: left;
          transition: transform 0.5s ease;
          z-index: 0;
        }

        .shift-info-card:hover::after {
          transform: scaleX(1);
        }

        .shift-info-card>* {
          position: relative;
          z-index: 2;
          transition: color 0.3s ease;
        }

        .shift-info-card:hover h5,
        .shift-info-card:hover p {
          color: black !important;
        }

        .shift-info-card h5 {
          color: var(--red) !important;
        }

        .text-primary {
          color: var(--heading-orange) !important;

        }

        /* why choose us on service page  */

        .choose-card {
          background: #fff;
          border-radius: 16px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .choose-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .choose-icon {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          background: #fde7d3;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: auto;
        }

        .choose-icon i {
          font-size: 28px;
          color: var(--primary-orange);
        }


        /* FAQ SECTION  */
        .faq-section {
          /* padding: 50px 0; */
          background: var(--background-white);
        }

        .accordion-item {
          border: 1px solid var(--primary-orange);
          border-radius: 10px;
          margin-bottom: 15px;
          overflow: hidden;
        }

        .accordion-button,
        .accordion-button:not(.collapsed) {
          background: var(--button-gradient);
          color: var(--text-white) !important;
          font-weight: 600;
          box-shadow: 0 4px 12px var(--shadow-orange);
        }

        .accordion-button:hover {
          background: var(--hover-gradient);
          color: var(--text-white) !important;
        }


        .accordion-button:not(.collapsed) {
          color: var(--text-white) !important;
        }

        .accordion-button::after {
          filter: invert(100%) brightness(200%);
        }

        .accordion-body {
          color: var(--text-black);
          font-size: 0.95rem;
        }



        /* Contact section page */
        .info-card {
          background: var(--background-white);
          padding: 25px;
          border-radius: 12px;
          box-shadow: 0 10px 25px rgba(255, 150, 50, 0.10);
          border: 1px solid var(--primary-orange);


        }

        .info-card i {
          font-size: 28px;
          color: var(--primary-orange);
          margin-bottom: 10px;
        }

        .info-card h6 {
          font-weight: 600;
          color: var(--dark-gray);
        }

        .info-card p {
          font-size: 14px;
          color: var(--text-black);
        }

        .contact-box {
          background: rgba(255, 150, 50, 0.10);
          border-radius: 18px;
          padding: 30px;
          border: 1px solid var(--primary-orange);


        }

        .form-bg-card {
          background: rgba(255, 122, 0, 0.20);
          padding: 35px;
          border-radius: 18px;
          box-shadow: 0 15px 35px rgba(30, 168, 215, 0.25);
        }

        .form-bg-card .form-control {
          background: var(--white);
          border: 1px solid var(--primary-orange);
          border-radius: 8px;
          padding: 10px 15px;
          color: var(--dark-gray);
          margin-bottom: 18px;
        }

        .form-bg-card .form-control::placeholder {
          color: var(--subtext-gray);
        }

        .form-bg-card .form-control:focus {
          outline: none;
          border-color: var(--cta-orange);
          box-shadow: none;
        }


        .submit-btn {
          background: var(--button-gradient);
          color: var(--white);
          padding: 8px 35px;
          border-radius: 30px;
          border: none;
          font-weight: 600;
        }

        .submit-btn:hover {
          background: var(--hover-gradient);
          color: var(--text-white);
        }

        .contact-box h2 {
          color: var(--heading-orange);
        }

        .contact-box p {
          color: var(--dark-gray);
        }

        .social-icons i {
          font-size: 20px;
          margin-right: 15px;
          cursor: pointer;
          color: var(--primary-orange);

        }
        .social-icons a{
          text-decoration: none;  

        }

        .social-icons i:hover {
          color: var(--red);
        }

        /* Gallery Page*/

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.photo-grid .item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.img-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-viewer.active {
  opacity: 1;
  visibility: visible;
}

.img-viewer img {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.7);
  transition: 0.6s;
}

.img-viewer.active img {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}



        /*Location Page*/
        .location-heading {
          color: var(--cta-orange);
        }

        .state-card {
          text-decoration: none;
        }

        .state-card-box {
          position: relative;
          height: 220px;
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          transition: all 0.3s ease;
        }

        .state-card-box img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .state-card-label {
          position: absolute;
          bottom: 0;
          width: 100%;
          background: linear-gradient(90deg,
              rgba(255, 122, 0, 0.80),
              rgba(255, 122, 0, 0.45));
          color: var(--text-black);
          text-align: center;
          padding: 12px 0;
          font-size: 18px;
          font-weight: 500;
        }

        .state-card-box:hover {
          transform: translateY(-6px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 576px) {
          .state-card-box {
            height: 180px;
          }

          .state-card-label {
            font-size: 16px;
          }
        }



        /* view service page */
        .packers-section h1 {
          color: var(--primary-orange);
          font-weight: 700;
        }

        .packers-section p {
          color: var(--dark-gray);
          line-height: 1.7;
        }

        .map-box iframe {
          border-radius: 12px;
        }