.custum-file-upload {
  height: 200px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  gap: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cacaca;
  background-color: rgba(255, 255, 255, 1);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
}

.custum-file-upload .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .icon svg {
  height: 80px;
  fill: rgba(75, 85, 99, 1);
}

.custum-file-upload .text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .text span {
  font-weight: 400;
  color: rgba(75, 85, 99, 1);
}

.custum-file-upload input {
  display: none;
}

/* -------------------------------- Sell car without dashboard ------------------------------------------------- */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  padding: 0 70px;
}

.section {
  background-color: #f1f5f9;
  padding: 50px;
  /* border-top: 2px solid black;
  border-bottom: 2px solid black; */
  margin-top: 70px;
  text-align: center;
}

.section:hover {
  border-top: 3px solid #0047ab;
}

.heading-red {
  color: #d22b2b;
  font-size: 2.5rem;
  font-weight: bold;
}

.section i {
}

.subheading-blue {
  color: #0047ab;
  font-size: 20px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.icon {
  border: 1px solid #0047ab;
  padding: 15px;
  border-radius: 50%;
  margin-right: 10px;
  color: #0047ab;
}

.section-title {
  color: #36454f;
  text-align: left;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 24px;
}

.black {
  color: black;
}

.note {
  text-align: left;
  margin-top: -10px;
}

.contact-info {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 15px;
}

.contact-form .div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.contact-form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #d1d5db;
}

.contact-text {
  display: flex;
  align-items: center;
  width: 250px;
  gap: 10px;
}

.contact-text i {
  color: #0047ab;
}

.contact-icon {
  font-size: 50px;
}

.upload-box {
  border: 2px dashed #0047ab;
  padding: 30px;
  text-align: center;
}

.section:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Shadow on hover */
  transform: translateY(-2px); /* Optional: small lift effect */
}

.upload-input {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.icon-large {
  border: 1px solid black;
  font-size: 20px;
  padding: 15px;
  border-radius: 50%;
  margin-right: 10px;
}

.upload-lists {
  display: flex;
  justify-content: space-evenly;
  text-align: left;
}

.upload-lists ul {
  list-style: none;
  line-height: 2;
}

.car-form {
  text-align: left;
}

.form-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column input,
.column select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid gray;
}

.description input {
  padding-left: 10px; /* Create space to ensure the placeholder isn't on the border */
  padding-top: 10px; /* Optional: add padding from the top if needed */
}

.description input::placeholder {
  text-align: left;
}

.description {
  width: 100%;
  height: 100px;
  padding: 10px;
  margin-top: 20px;
  border: 1px solid gray;
  border-radius: 5px;
}

.submit-btn {
  text-align: center;
  margin-top: 20px;
}

.submit-btn button {
  padding: 5px 20px;
  background-color: #f1f5f9;
  border: 2px solid #0047ab;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  color: #0047ab;
}

/* ---------- Responsive Design ---------- */

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .form-columns {
    grid-template-columns: 1fr;
  }

  .section-title,
  .note {
    text-align: center;
    font-size: 20px;
  }

  .note {
    font-size: 15px;
  }

  .steps {
    flex-direction: column;
    align-items: start;
    display: flex;
    justify-content: start;
    font-size: 13px;
  }

  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .upload-lists {
    flex-direction: column;
    align-items: center;
  }

  .contact-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .heading-red {
    font-size: 22px;
  }

  .subheading-blue {
    font-size: 18px;
  }

  .submit-btn button {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .upload-lists {
    font-size: 10px;
    margin-left: -40px;
  }
}

input:focus {
  outline: none;
}

.dscrp {
}

/* --------------------------------------------- for  blog  start    page -------------------------------------------------- */

.blogs-container {
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 16px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.blog-description {
  font-size: 0.95rem;
  color: #555;
  max-height: 75px;
  overflow: hidden;
}

.read-more-btn {
  color: #1d4ed8;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
}

.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ef4444;
  border: none;
  color: white;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.delete-btn:hover {
  background-color: #dc2626;
}

.no-blogs {
  text-align: center;
  font-size: 1.2rem;
  color: #999;
  margin-top: 60px;
}
