body {
    font-family: 'Segoe UI', sans-serif;
  }
  
  .hero-section {
    background: url('images/bg.svg') no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  
  .navbar-logo {
    height: 60px !important;
    width: auto;
    object-fit: contain;
  }
  
  @media (max-width: 768px) {
    .navbar-logo {
      height: 45px;
    }
  }
  /* Reset some spacing */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
  }
  
  /* Navbar Custom Styling */
  .navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .nav-link {
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s;
  }
  .navbar {
    font-family: 'Poppins', sans-serif; /* Change to your preferred font */
    font-size: 16px;
  }

  .nav-link.active {
    color: #0d6efd !important; /* Bootstrap primary color */
    font-weight: 600;
  }
  /* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  
  /* Gradient background for dropdown */
  .dropdown-menu {
    background: linear-gradient(135deg, #dc3545, #ffc107);
    border: none;
    transition: all 0.3s ease;
  }
  
  /* Make dropdown text white */
  .dropdown-menu .dropdown-item {
    color: white;
  }
  
  /* Optional: Add hover effect for items */
  .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  
  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    background: linear-gradient(135deg, #dc3545, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
  }
  #span{
    background: linear-gradient(135deg, #dc3545, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
  }
  /* Logo Section */
  
  /* Hero Section */
  .hero-section {
    background: #f8f9fa;
    min-height: 400px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-section p {
    font-size: 1.1rem;
    border-left: 4px solid #ec5700;
    padding-left: 15px;
    color: #444;
  }
  #herop{
    font-size: 30px;
    font-weight: 600;
    border-left: 4px solid #ec5700;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2rem;
    }
  
    .navbar .nav-link {
      padding: 8px 12px;
    }
  }
  /* cash offer */
  .cash-offer-section {
    background-color: #fff;
  }
  .custom-border {
    border: 2px dashed white;
    padding: 16px;
  }
  .cash-offer-section .btn {
    background-color: #3b63f0;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .cash-offer-section .btn:hover {
    background-color: #274bcc;
  }
  /* crousel */
  .slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .slide-track {
    display: flex;
    width: calc(250px * 8); /* Total slides (4 original + 4 duplicate) */
    animation: scroll 25s linear infinite;
  }
  
  .slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
  }
  
  .slide img:hover {
    transform: scale(1.05);
  }
  
  /* Animation */
  @keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Pause on hover */
  .slider:hover .slide-track {
    animation-play-state: paused;
  }
  /* services */
  .services-section {
    background-color: #f5f6fa; /* light grey background */
  }
  
  .section-subtitle {
    font-size: 2rem;
    color: #d0d0d0;
    font-weight: 700;
    letter-spacing: 2px;
  }
  
  .section-title {
    font-size: 3rem;
    color: #111;
  }
  
  .service-card img {
    filter: hue-rotate(10deg) brightness(1.2); /* Optional: make icons match the look */
  }
  .what-we-do-subtitle {
    font-size: 36px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(13, 15, 22, 0.2);
    text-align: left;
    margin-bottom: 0;
  }
  
  .what-we-do-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-align: left;
    margin-bottom: 50px;
  }
  
  .what-we-do-title span {
    color: #dc3545;
  }
  
  .services-section .container {
    text-align: left !important;
  }
  
  .service-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
    border: 1px solid #eee;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dc3545, #ffc107);
    z-index: 0;
    opacity: 0;
    transition: 0.4s ease-in-out;
    border-radius: 16px;
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-card * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
  }
  
  .service-card:hover h5,
  .service-card:hover p,
  .service-card:hover a,
  .service-card:hover img {
    color: #fff !important;
    filter: brightness(10);
  }
  
  .service-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
  }
  
  .service-card p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .service-card a {
    font-weight: 600;
    text-decoration: none;
    color: #dc3545;
    display: inline-block;
    position: relative;
  }
  
  .service-card a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #dc3545;
    transition: width 0.3s ease;
  }
  
  .service-card:hover a::after {
    width: 100%;
  }
  .dorik-line-e37gezbg {
    border-width: 0;
    background-color: rgb(0, 98, 255);
    height: 3px;
    margin-top: 30px;
}
.outline-heading {
    font-size: 45px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #444;
  }
  .section-description {
    font-size: 16px;
    font-weight: 500;
    border-left: 5px solid #ffc107;
    padding-left: 15px;
    margin-bottom: 40px;
  }
  .project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .project-title {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 0;
    background: white;
    color: black;
  }
  .project-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
  }

  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }

  .project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
  }

  .project-card:hover img {
    transform: scale(1.05);
  }

  .project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 196, 0, 0.4), rgba(255, 94, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .project-card:hover::after {
    opacity: 1;
  }

  .project-title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 0;
    background: white;
    color: black;
  }
  /* fotter */
  #footerbg{
    background-image:
    linear-gradient(135deg, #dc354685, #ffc003bd), /* gradient */
    url('images/footer.jpeg');                    /* background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  }
  
  
  