
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
       
/* Blue Navbar */
     .blue-navbar {
        background-color: #183B4E; 
        padding: 10px 0;
  
       }

      .blue-navbar .container {
        display: flex;
        gap: 20px;
        justify-content: center; /* ✅ Center menu */
       }

       .blue-navbar .nav-link {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
       }

        .blue-navbar .nav-link:hover {
          text-decoration: underline;
        }

/* Header styling with background image */
        .services-header {
          background: url('/images/our.jpg') no-repeat center center/cover;
          padding: 120px 0;
          position: relative;
          color: white;
          text-align: center;
        }

/* Dark overlay */
        .services-header::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.55);
          z-index: 1;
        }

        .services-header .container {
           position: relative;
           z-index: 2;
        }

        /* Section Layout */
.valuation-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 60px;
    gap: 40px;
}

/* Text Section */
.valuation-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.valuation-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.valuation-content h4 {
    font-size: 20px;
    margin: 15px 0;
    color: #333;
}

/* List */
.valuation-list {
    list-style: none;
    padding: 0;
}

.valuation-list li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

.valuation-list i {
    color: #344054;
    margin-right: 8px;
}

/* Button */
.valuation-btn {
    display: inline-block;
    background: #1167B1;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.valuation-btn:hover {
    background: #23a25c;
}

/* Right Image */
.valuation-image img {
    width: 480px;
    border-radius: 12px;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .valuation-section {
        flex-direction: column;
        text-align: center;
    }

    .valuation-image img {
        width: 90%;
    }
}

/* Header Styles */
        .services-header {

            color: white;
            padding: 80px 0 60px;
            text-align: center;
            margin-bottom: 60px;
        }

        .services-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .services-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: bold;
            color: #000000;
            position: relative;
        }


        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            padding: 40px 25px;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #183B4E, #0056b3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1e3c72;
        }

        .service-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            text-align: left;
            margin-bottom: 25px;
        }

        .service-features li {
            padding: 8px 0;
            color: #555;
        }

        .service-features i {
            color: #007bff;
            margin-right: 10px;
        }

        .service-btn {
            display: inline-block;
            background: #007bff;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #007bff;
        }

        .service-btn:hover {
            background: transparent;
            color: #007bff;
        }

        /* Process Section */
        .process-section {
            background: #f0f7ff;
            padding: 80px 0;
            margin-bottom: 80px;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 20px;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #183B4E;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .process-step h4 {
            margin-bottom: 15px;
            color: #1e3c72;
        }

        .process-step p {
            color: #666;
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            text-align: center;
            margin-bottom: 80px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .stat-item p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials-section {
            margin-bottom: 80px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #007bff;
            font-size: 1.5rem;
        }

        .client-details h4 {
            color: #1e3c72;
            margin-bottom: 5px;
        }

        .client-details p {
            color: #666;
            font-size: 0.9rem;
        }

      

        .btn-primary {
            background: white;
            color: #007bff;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: #007bff;
        }

    
        .service-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
}

.service-card-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-image img {
    width: 200px; /* Adjust as needed */
    height: 500px;
    border-radius: 10px;
}

.service-text {
    flex: 1;
}

.service-icon {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.service-features li {
    margin-bottom: 5px;
}


        /* Responsive Design */
        @media (max-width: 768px) {
            .services-header h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            /* ===== Mobile: modal-style nav menu (overlay panel like Image 2) ===== */
@media screen and (max-width: 992px) {
  /* Backdrop element (injected by JS) */
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 10040;
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
  }
  .menu-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* Convert off-canvas nav into centered modal panel */
  .nav-menu {
    position: fixed !important;
    left: 50% !important;
    top: 6vh !important;               /* near top like image */
    transform: translateX(-50%) translateY(-10px);
    width: min(720px, 92%) !important; /* max width and responsive */
    max-width: 720px !important;
    max-height: 84vh !important;      /* keep room for top/bottom */
    overflow: auto !important;
    background: #000 !important;      /* black panel like image */
    color: #fff !important;
    border-radius: 12px !important;
    padding: 22px 20px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6) !important;
    z-index: 10050 !important;
    transition: opacity 0.24s ease, transform 0.24s ease;
    opacity: 0;
    pointer-events: none;
  }

  /* visible state */
  .nav-menu.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  /* close button (top-right) */
  .nav-close {
    position: absolute;
    right: 14px;
    top: 12px;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 26px;
    line-height: 1;
    padding: 6px;
    cursor: pointer;
    z-index: 10060;
  }
  .nav-close:hover {
    color: #ffffff;
  }

  /* ensure header/main image sits below the menu */
  .services-header,
  .header,
  .main-content {
    position: relative;
    z-index: 10;
  }

  /* prevent content shift when body locked */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* small phone tweak: full width modal */
  @media screen and (max-width: 420px) {
    .nav-menu {
      width: calc(100% - 24px) !important;
      left: 50% !important;
      top: 4vh !important;
      transform: translateX(-50%);
      border-radius: 10px;
      padding: 16px;
    }
    .nav-close { right: 10px; top: 8px; font-size: 22px; }
  }

  /* ensure nav links visible on black background */
  .nav-menu .nav-link {
    color: #fff !important;
  }
}
        }
  