/* Card Container Styling */
.card.card-default {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  width: 100%;
  position: relative;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

/* Title Styling */
.heading_h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #202020;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.o_job_infos {
  color: #6c757d;
  font-size: 0.9rem;
  display: block;
  line-height: 1.6;
}

.custom-ribbon {
  width: 100%;
  height: 4px;
  background: #f1f1f1;
  border-radius: 2px;
  margin-top: 10px;
}

.mt-2 {
  margin-top: 10px;
}

/* Icon and Label Section */
.o_job_infos.list-inline-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #202020;
}

.o_job_infos i {
  margin-right: 8px;
  color: #f3b22d;
  /* Marker color changed to black */
  font-size: 1rem;
  
}

.line-clam-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Location Marker Styling */
.o_job_infos i.fa-map-marker {
  color: black;
  /* Black marker color */
  font-size: 1.2rem;
  margin-right: 10px;
}

/* List Icons with Padding */
.list-inline-item {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
}

.icon-min-w-20 {
  min-width: 20px;
}

.line-height1-7 {
  line-height: 1.7;
}

.btn.secondary_button {
  background-color: #f3b22d;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  width: 50%;
  margin: 0 auto;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.secondary_button:hover {
  background-color: #059ea3 !important;
  color: white !important;
  /* Ensure text remains white on hover */
}

.cusom-card-right-arrow {
  font-size: 1.5rem;
  color: #059ea3;
  display: none;
}

@media (max-width: 768px) {
  .cusom-card-right-arrow {
    display: block;
  }
}

/* intenship page Grid Container Styling */
.col-lg-5.intership-frm-rht {
  display: flex;
  justify-content: center;
}

.w-layout-grid {
  display: grid;
  gap: 16px;
}

.collage-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns in a row */
  gap: 16px;
  margin-top: 10px;
}

/* Image Styling */
.cover-img {
  width: 100%;
  height: 100%;
  /* Maintain equal size for all images */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.cover-img:hover {
  transform: scale(1.05);
  /* Slight zoom effect on hover */
}

/* Green Styling for Choose File Input */
#chooseFile {
  /*background-color: #059ea3;*/
  /* Bootstrap's green color */
  color: white;
  /*border: 1px solid #059ea3;*/
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
}

#chooseFile:hover {
  background-color: #218838;
}

/* Green Styling for Submit Button */
.submit_button_contact {
  /*background-color: #059ea3 !important;*/
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
}

.submit_button_contact:hover {
  background-color: #059ea3;
}

/* Consistent Styles */
.form-control {
  padding: 10px;
  border-radius: 5px;
}