body {
  margin: 0;
  font-family:"Montserrat" sans-serif;
}


/* hero-section */

.hero {
  padding: 40px 15px;
  background-color: #fff;
  border-top: 1px solid #004f6e;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 500;
  color: #004f6e;
}

.hero .highlight {
  color: #f05a28;
}

.hero p {
  font-size: 1.1rem;
  color: #000;
  margin: 20px 0;
}

 /* .hero-btn {
  background-color: #f05a28;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 5px;
  font-size: 16px;
}  */
.hero-btn a{
  text-decoration: none;
  color: #fff;
}

.hero-btn a:hover{
  text-decoration: underline;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
    
  }
  .hero p{
    font-size: 2rem;
  }
}
.hero-btn {
  background-color: #f05a28;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 5px;
  font-size: 17px;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .hero .order-md-1 {
    order: 2;
  }

  .hero .order-md-2 {
    order: 1;
  }
}



/* companies slider */

.slider-wrapper {
  padding: 40px 20px;
  text-align: center;
}

.slider-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #3f3d3d;
}

.slider-container {
  max-width: 100%;
  overflow: hidden;
  padding: 0 10px; /* balanced side padding */
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 20px; /* spacing between logos */
  transition: transform 0.5s ease;
}

.slider-track img {
  width: 10em;
  height: 10em;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.3s;
  filter: grayscale(0.5);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-track img {
    width: 60px;
    height: 60px;
  }

  .slider-title {
    font-size: 20px;
  }

  .slider-container {
    padding: 0 8px;
  }

  .slider-track {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .slider-track img {
    width: 80px;
    height: 80px;
  }

  .slider-title {
    font-size: 18px;
  }

  .slider-container {
    padding: 0 6px;
  }

  .slider-track {
    gap: 12px;
  }
}



/* job listing */

.underline-highlight {
position: relative;
display: inline-block;
}

.underline-highlight::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 5px;
background: url('data:image/svg+xml;utf8,<svg width="100%" height="5" xmlns="http://www.w3.org/2000/svg"><path d="M0,4 Q10,0 20,4 T40,4 T60,4 T80,4 T100,4" stroke="%23ff5520" fill="transparent" stroke-width="7"/></svg>') no-repeat;
background-size: 100% 100%;
}
.job-carousel-title{
color: #343a40;
font-size:40px ;
font-weight: 450;
margin-bottom: 0.7em;

/* margin-bottom: 5em; */
}
.job-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: #fff;
  padding: 1rem;
  color: #111;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  max-width: 300px;
  margin: auto;
  height: auto;
  transition: box-shadow 0.2s ease;
}

.job-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.job-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.job-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.badges {
  margin-bottom: 0.75rem;
}

.badge-custom {
  background-color: #f1f3f5;
  color: #333;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.3rem;
}

.badge-new {
  color: red;
  font-weight: 500;
}

.job-location {
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  margin-top: 1em;
}

.job-location::before {
  content: "📍";
  margin-right: 0.4rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #ccc;
  border-radius: 50%;
  padding: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-inner {
  padding-bottom: 1rem;
}

.cta-button {
  background-color: #f05a28;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

.cta-button:hover {
  background-color: #d94c1f;
}

@media (min-width: 576px) {
  .cta-button {
    font-size: 0.7rem;
    padding: 10px 20px;
  }
}

@media (min-width: 768px) {
  .cta-button {
    font-size: 1.1rem;
  }
}







/* what members are saying */

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
}

.testimonial-text {
  font-size: 1.5em;
  color: #343a40;
  margin-bottom: 1rem;
}

.testimonial-highlight {
  color: #ff5520;
  font-weight: 600;
}

.testimonial-author {
  color: #343a40;
  font-size: 1.5rem;
  margin-top: 1em;
}

.testimonial-author b {
  font-weight: 700;
}

.profile-thumbnails {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.profile-thumbnails img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid transparent;
  object-fit: cover;
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.profile-thumbnails img.active {
  transform: scale(1.3);
  border-color: #ffba08;
  opacity: 1;
}

.carousel-indicators {
  justify-content: center;
  margin-top: 0.5rem;
  position: static;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #343a40;
  opacity: 0.4;
  margin: 0 4px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #005170
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }

  .testimonial-text {
    font-size: 1.2rem;
  }

  .testimonial-author {
    font-size: 1.2rem;
  }

  .profile-thumbnails img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 1rem;
    max-width: 100%;
    margin: 0 0.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.4;
  }

  .testimonial-author {
    font-size: 1rem;
  }

  .profile-thumbnails {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .profile-thumbnails img {
    width: 50px;
    height: 50px;
  }

  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 2px;
  }
}



/* difference */

.difference-section {
  padding: 60px 20px;
}
.difference-section h2 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.feature-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}
.feature-icon {
  flex-shrink: 0;
}
.feature-icon img {
  width: 22px;
  height: 22px;
}
.feature-content {
  flex-grow: 1;
}
.feature-content h5 {
  font-weight: 500;
  margin: 0;
}
.feature-content p {
  margin: 0;
  margin-top: 5px;
  font-size: 1.3em;
}
.get-started-btn {
  background-color: #ff5520;
  color: white;
  font-weight: 600;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
}
.img-col {
  text-align: center;
}
.img-col img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .feature-box {
    margin-bottom: 30px;
  }
}


/* featuring */
.featured-jobs-section {
  background-color: #f2f4f7;
  padding: 100px 20px;
  text-align: center;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  /* margin:10px 70px ; */
  
}

/* .featured-jobs-section h2 {
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 30px;
} */

.featured-jobs-section h2 .highlight {
  position: relative;
}

.featured-jobs-section h2 .highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #ff6347;
  left: 0;
  bottom: -6px;
  border-radius: 3px;
}

.search-bar {
  max-width: 700px;
  margin: 0 auto 30px;
  display: flex;
  flex-wrap: nowrap;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.search-bar input {
  flex-grow: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
  min-width: 0;
}

.search-bar button {
  background-color: #f04e23;
  border: none;
  color: white;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-buttons,
.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.category-buttons a {
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
}

.tags-wrapper a {
  border: 2px solid #007bff;
  color: #007bff;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
}

.tags-wrapper .extra {
  display: none;
}

.show-more {
  color: #007bff;
  border: 2px dashed #007bff;
  padding: 8px 16px;
  background: transparent;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  cursor: pointer;
}

.category-buttons a:hover {
  text-decoration: underline;
  text-decoration-color: white;
}

.tags-wrapper a:hover {
  text-decoration: underline;
  text-decoration-color: #007bff;
}

.feature-space{
  margin-bottom: 2em;
}


/*  milestone*/
.milestone-section {
  background-color: #0073a8;
  color: white;
  text-align: center;
  padding: 60px 20px;
  background-image: url('https://www.flexjobs.com/images/icons/bg-icon-pattern.svg');
  background-repeat: repeat;
  background-size: 180px;
}

.star-icon {
  font-size: 2rem;
  color: #ffc107;
  animation: sparkle 1.5s infinite ease-in-out;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.milestone-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1.4;
}

.milestone-heading .underline {
  border-bottom: 4px solid #f05a28;
  display: inline-block;
  padding-bottom: 4px;
}

.milestone-btn {
  background-color: #f05a28;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  margin-top: 30px;
  transition: background-color 0.3s;
}

.milestone-btn:hover {
  background-color: #d94f22;
}

@media (min-width: 576px) {
  .milestone-heading {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .milestone-heading {
    font-size: 2.4rem;
  }

  .milestone-btn {
    font-size: 18px;
    padding: 14px 40px;
  }
}

@media (min-width: 992px) {
  .milestone-heading {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .milestone-heading {
    font-size: 3rem;
  }
}



