
        :root {
            --primary: #FF6B00;
            --primary-dark: #E05D00;
            --secondary: #003366;
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
        }
        :root {
  --system-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", 
                Arial, "Noto Sans", "Liberation Sans", sans-serif, 
                "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", 
                "Noto Color Emoji";
}

body {
  font-family: var(--system-font);
  line-height: 1.4; /* Good default line height */
}
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        .bg-primary {
            background-color: var(--primary) !important;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
       
        
 
        .logo {
            font-weight: bold;
            font-size: 24px;
            color: #333;
        }
        
        .logo span {
            color: #FF6B00; /* Orange color for "RES" */
        }
        

        /* navbar  */
           .navbar-custom {
            background-color: white;
            border-bottom: 1px solid #373b3e36;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        
        @media only screen and (max-width:520px){
            .navbar-custom {
                padding-top: 0px;
            padding-bottom: 0px;
            }
        }
        .navbar-brand-custom {
            font-weight: 700;
            font-size: 106%;
            color: var(--secondary);
        }
        
        .navbar-brand-custom span {
            color: var(--primary);
        }
        
        .search-box {
            position: relative;
            max-width: 250px;
        }
        
        .search-box input {
            padding-left: 40px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        
        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }
        
        .nav-link-custom {
            color: #333;
            font-weight: 500;
            padding: 8px 15px;
            transition: all 0.3s ease;
        }
        
        .nav-link-custom:hover {
            color: var(--primary);
        }

        .dropdown-menu{
            border-radius: 10px;
            border:none;
            background-color: var(--light)
        }
        
        .phone-info {
            display: flex;
            align-items: center;
        }
        
        .phone-icon {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 10px;
        }

            /* Show icon only on mobile view */
            .phone-icon {
                display: none;
            }
            @media (max-width: 768px) {
                .phone-icon {
                    display: inline-block;
                }
            }
        
        .phone-number {
            font-weight: 600;
            white-space: nowrap;
            
        }
        
        /* Mobile responsive adjustments */
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: white;
                padding: 20px;
                margin-top: 10px;
                border-radius: 5px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            
            .search-box {
                max-width: 100%;
                margin-bottom: 15px;
            }
            
            .phone-info {
                margin-top: 15px;
                justify-content: center;
            }
            .choose-city{
                margin-top: 15px;
                justify-content: center;
            }
        }

        /* slider */

           

        /* form */
        
        .quote-card {
        margin-top: -100px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        overflow: hidden;
        width:100%;
        }

        /* Form labels */
        .form-label {
        color: #444;
        font-weight: 500;
        }
        .form-select {
        background-color: #fffdf9;
        color: #333;
        border-radius: 8px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .form-select option {
        background-color:#ffff;
        color: #333;
        }
        
        select.form-select option:hover {
        background-color: var(--primary-dark);
        color: white;
        }

        /* Submit button */
        .btn-primary {
        border-radius: 8px;
        padding: 10px 40px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        }

        .btn-primary:hover {
        background-color: var(--primary-dark);
        }
        .section-title {
            margin-bottom: 50px;
        }
        .section-title span {
            color: var(--primary);
        }
        .section-title h2 {
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            /* background-color: var(); */
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .mover-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .mover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .mover-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--light);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            height: 100%;
        }
        .sticky-top {
            position:  relative !important;
        }
        .navbar-toggler {
            border:none !important;
        }
        .navbar-toggler:focus {
            box-shadow: none !important;
        }
        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--light);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        footer {
            background-color: var(--secondary);
            color: white;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: white;
        }
        
        .footer-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero {
                min-height: 80vh;
            }
            
            .quote-card {
                margin-top: -50px;
            }
            .choose-city{
                display: none;
            }
            .divider {
                display: none;
            }
            .choose-city-nav {
                display: flex;
                margin-top: 20px;
                justify-content: center;
            }
        }
          @media (max-width: 360px) {
            
            
            .navbar-logo{
                width: 100px;

            }
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: 70vh;
                text-align: center;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .quote-card {
                margin-top: 0;
            }
            .footer-text{
                font-size: 0.9rem;
            }
        }
        .footer-text{
            color: #E05D00;
            font-weight:normal;
        }
        
        /* about us */
    .moving-truck-icon {
        position: relative;
        animation: truckMove 2.2s infinite linear;
    }

     @keyframes truckMove {
         0% {
            left: 0;
        }

        50% {
            left: 18px;
        }

        100% {
            left: 0;
        }
        }

    .about-photo-hover{
        height: 250px;
        width:373px;
    }
    .heading{
        color: var(--dark);
    }
    .mission-vision-icon {
        display: inline-block;
        margin-left: 4px;
        vertical-align: middle;
        width: 28px;
        height: 30px;
        margin-bottom: 4px;
    }
    .breadcrumb a,
    .breadcrumb .breadcrumb-item.active {
        color: #003366 !important;
    }
    #slider {
        background: linear-gradient(120deg, #7e7f83 0%, #003366 100%);
        position: relative;
    }
    .vision-img {
        height: 341px;
        width: auto;
    }

    /* testimonial */
    .testimonial-card {
        border: none;
        background-color: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
    }

    .testimonial-i {
        font-size: 2rem;
        color: #6c757d;
    }

    .testimonial-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

    #testimonialCarousel .carousel-control-prev-icon,
    #testimonialCarousel .carousel-control-next-icon {
        background-size: 100% 100%;
    }

    /* services */
    .service-img {
        height: 350px;
        object-fit: cover;
    }

    .work-img {
        object-fit: cover;
        min-height: 220px;
        max-height: 320px;
    }

    /* faq */
    .faq-subtitle {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .faq-title {
        font-weight: 700;
        color: #212529;
    }

    .faq-item {
        border: none;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 10px;
        border-radius: 6px;
        overflow: hidden;
    }

    .faq-question {
        font-weight: 600;
        background-color: #fff;
        color: #003366;
        border-left: 5px solid #E05D00;
        padding: 1rem;
    }

    .faq-question:focus {
        box-shadow: none;
    }

    .faq-answer {
        background-color: #ffffff;
        color: #6c757d;
        padding: 1rem;
        border-top: 1px solid #f1f1f1;
        font-size: 0.95rem;
    }

    /* states */
    .state-card-hover {
        transition: transform 0.5s cubic-bezier(.25, .8, .25, 1), box-shadow 0.3s cubic-bezier(.25, .8, .25, 1);
    }

    .state-card-hover:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15), 0 1.5px 6px rgba(230, 57, 70, 0.12);
        z-index: 2;
    }

    .state-bg{
        background-color: rgb(181, 190, 197) !important;
        color: #212529 !important;
    }

    .visit-btn {
        background-color: #E05D00 !important;
        border-color: #E05D00 !important;
        color:#fff
    }

    .visit-btn:hover,
    .visit-btn:focus {
        background-color: #e46308 !important;
        border-color: #e46308 !important;
    }

    /* cities */
    .our-service-page {
        background-attachment: fixed;
        padding: 40px 0;
    }
    .city-card {
        border-radius: 10px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transform: translateY(0);
    }
    .city-card:hover {
        background-color: #f8f9fa;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-10px);
    }
    .card-body {
        align-items: center;
        justify-content: space-between;
    }
    .city-name h5 {
        font-size: 15px;
        font-weight: bold;
        color: #333;
        margin-left: 15px;
        min-width: 120px;
        min-height: 38px;
        padding: 8px 12px;
        display: flex;
        /* align-items: center; */
        border-radius: 6px;
        box-sizing: border-box;
    }
    .city-card:hover .icon-container i {
        color: #007bff;
    }
    @media (max-width: 576px) {
        .city-name h5 {
            font-size: 10px;
        }

        .icon-container i {
            font-size: 2rem;
        }
    }

    /* view_service */
    .img-fixed-height {
            max-height: 300px;
            object-fit: cover;
        }
        .widget-icon-orange {
            color: #E05D00;
        }
        .widget-icon-blue {
            color: #003366;
        }
        .widget-icon-yellow {
            color: #eec643;
        }
        .widget-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .widget-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
        }
        .highlight{
            color: #E05D00;
        }
  .quote-section {
    display: none;
  }
  .quote-section.active {
    display: block;
  }
  .modal-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
  }
  .form-label {
    font-weight: 500;
  }
  .btn-toggle {
    border-radius: 25px;
    min-width: 140px;
  }

  .modern-hero {
    background: linear-gradient(135deg, #f9f9f9 60%, #fff 100%);
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff, #ccc);
    margin-top: -30px;

  }

  .hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease;
  }

  .hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    /* margin-bottom: 20px; */
    line-height: 1.3;
    color: #222;
  }

  .hero-text .highlight {
    color: var(--primary);
  }

  .subheading {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 550px;
  }

  .hero-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }

  .modal-btn {
    background-color: var(--secondary);
    color: #fff;
  }

  .modal-btn:hover {
    background-color: var(--dark);
    color: #fff;
  }

  .city-select {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-width: 200px;
  }

  .quote-btn {
    background-color: var(--primary);
    border: none;
    padding: 12px 24px;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .quote-btn:hover {
    background-color: var(--primary-dark);
  }

  .hero-points {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #444;
  }

  .hero-points li {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero-image {
    flex: 1;
    min-width: 300px;
    animation: fadeInRight 1s ease;
  }

  .hero-image img {
    width: 100%;
    max-width: 500px;
  }

  /* Animations */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

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

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

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

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

    .subheading {
      font-size: 1rem;
    }

    .hero-points {
      flex-direction: column;
      gap: 10px;
    }
  }

  .selected-points {
    margin-top: -100px;
  }
        

