* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1A1818;


}


.container-100 {
  width: 100%;
  margin: 0 100px;
  /* display: flex; */
}

.Home-Carousel-wrapper {
  background-color: #eaf1fb;
  position: relative;
  overflow: hidden;
}

.Home-Carousel-slide {
  display: flex;
  align-items: center;
  padding: 30px 15px 0px;
  min-height: 420px;
  justify-content: space-between;
}

.Home-Carousel-content {
  z-index: 2;
}

.Home-Carousel-title {
  font-size: 32px;
  font-weight: 400;
  color: #000;
}

.Home-Carousel-subtitle {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 30px;
}

.Home-Carousel-buttons .btn {
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  margin-right: 15px;
}

.Home-Carousel-buttons .btn-primary {
  background-color: #0066ff;
  border: none;
}

.Home-Carousel-buttons .btn-outline-primary {
  border: 1px solid #0066ff;
  color: #0066ff;
}

.Home-Carousel-image {
  /* position: absolute; */
  right: 0;
  bottom: 0;
  max-width: 400px;
  width: 45%;
  z-index: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: contain;
  width: 40px;
  height: 40px;
  margin: 0 40px;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon {
  background-image: url('https://skillconnect.com/development/skillconnect/assets/2025/home_images/Arrow_l.png');
  /* Replace with your left arrow image */
}

.carousel-control-next-icon {
  background-image: url('https://skillconnect.com/development/skillconnect/assets/2025/home_images/Arrow_r.png');
  /* Replace with your right arrow image */
}

.Home-heading {
  font-size: 24px;
  font-weight: lighter;
}

.Home-logo img {

  max-height: 60px;
  margin: 0 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.Home-logo img.show {
  opacity: 1;
  transform: translateY(0);
}



/* ===============================
   IMAGE + TEXT SECTION CONTAINER
   =============================== */
.Home-img-block {
  padding: 40px 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10px;
}

.Home-img-block:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ========================
   FEATURE ICONS HOVER EFFECT
   ======================== */
.Home-icon-section {
  padding: 60px 0;
}

.Home-feature {
  text-align: center;
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.Home-feature.visible {
  opacity: 1;
  transform: translateY(0);
}



.Home-feature-icon {
  background: none;
  /* remove background color */
  padding: 0;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.4s ease;
}



.Home-feature-icon img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}



/* General Title */
.Home-title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.Home-Section-1-title {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.Home-Section-1-subtitle {
  text-align: center;
  font-size: 32px;
  font-weight: lighter;
  margin-bottom: 40px;
}

.Home-Section-1-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}



.Home-Section-1-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.Home-Section-1-card-body {
  padding: 16px;
  height: 125px;
}

.Home-Section-1-card-body p {
  margin: 0;
  font-size: 16px;
  margin-bottom: 18px;
}

.Home-Section-1-card-body a {
  font-weight: 500;
  color: #0d6efd;
  font-size: 16px;
  text-decoration: underline;
  transition: transform 0.5s ease;
}

.Home-Section-1-card-body a:hover,
.Home-Courses-enroll:hover {
  color: #043B8E;
  transition: transform 0.5s ease;

}

.Home-Section-1-cta {
  display: inline-block;
  background-color: #0d6efd;
  color: white;
  font-weight: 500;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.2);
  position: relative;
  overflow: hidden;
}

.Home-Section-1-cta:hover {
  background-color: #094ec6;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.3);
}

/* Optional arrow icon animation */
.Home-Section-1-cta::after {
  content: '';
  margin-left: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.Home-Section-1-cta:hover::after {
  transform: translateX(5px);
}

.Home-Courses-section {
  text-align: center;
  padding: 60px 20px;
}

.Home-Courses-title {
  font-size: 28px;
  font-weight: 600;
}

.Home-Courses-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.Home-Courses-description {
  font-size: 14px;
  color: #666;
  max-width: 800px;
  margin: 15px auto 40px;
}

.Home-Courses-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}


.Home-Courses-card img {
  padding: 20px 20px;
  width: 100%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
}

.Home-Courses-card-body {
  padding: 0px 20px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

}

.Home-Courses-card-body div {
  display: flex;
  flex-direction: column;
  justify-self: start;
  align-items: flex-start;
}

.Home-Courses-card-title {
  font-size: 16px !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #902AF1;
}

.Home-Courses-card-text {
  font-size: 16px !important;
  color: #444;
  margin-top: 5px;
  margin-bottom: 25px;
}

.Home-Courses-level {
  font-size: 13px;
  color: #777;
}

.Home-Courses-enroll {
  font-size: 16px;
  color: #0066ff;
  font-weight: 500;
  text-decoration: underline;
  margin-left: 5px;
  padding: 0;
}

.Home-button {
  width: 100%;
  max-width: 380px;
  padding: 15px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.Home-button:hover,
.Home-button-0:hover {
  color: #fff;
  background: #043B8E;
  transition: all 0.5s ease;

}

.Home-button-0 {
  width: 100%;
  max-width: 180px;
  margin-right: 20px;
  padding: 15px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(0, 86, 210, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}



.Home-button-1 {
  width: 100%;
  max-width: 280px;
  padding: 13.5px;
  background: #fff;
  color: #0066ff;
  border: 2px solid #0066ff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.Home-button-1:hover {
  color: #043B8E;
  border-color: #043B8E;
  transition: all 0.5s ease;

}



.arrow-blue {
  display: inline-block;
  width: 15px;
  height: 12px;
  background-image: url('https://skillconnect.com/development/skillconnect/assets/2025/home_images/Arrow_blue.png');
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.Home-button-1:hover .arrow-blue {
  background-image: url('https://skillconnect.com/development/skillconnect/assets/2025/home_images/Arrow_N.png') !important;
  transition: background-image 0.3s ease;

}


.Job-Search-section {
  background-color: #e9f1ff;
  padding: 60px 20px;
}

.Job-Search-title {
  font-size: 14px;
  text-align: center;
  color: #555;
}

.Job-Search-subtitle {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.Job-Search-desc {
  font-size: 14px;
  text-align: center;
  /* max-width: 600px; */
  margin: 0 auto 30px;
  color: #666;
}

.Job-Search-label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
  margin-left: 3px;
  color: #333;
}

.Job-Search-select {
  width: 100%;
  border-radius: 12px;
  padding: 10px 40px 10px 14px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  font-size: 13px;
  background-color: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,50 70,100 120,50' fill='none' stroke='%23999' stroke-width='15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.Job-Search-select:hover,
.Job-Search-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

.Job-Search-btn {
  background: linear-gradient(90deg, #5e17eb, #8a2be2);
  color: white;
  border: none;
  padding: 5px 20px 8px 0px;
  border-radius: 8px;
  width: 100%;
  height: 41px;
  margin-top: 1px;
}

.Job-Search-btn:hover {
  background: #5e17eb;
  transition: all 0.5s ease;

}

.Job-Search-job-card {
  background-color: white;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  height: 100%;
}


.Job-Search-job-card span:last-child i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.Job-Search-job-card:hover span:last-child i {
  transform: translateX(4px);
}

.Job-Search-viewall {
  background-color: #0d6efd;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.Job-Search-viewall:hover {
  background-color: #094ec6;
  transform: scale(1.05);
}



.order-md-1 {
  padding-right: 100px;
}

.order-3 {
  padding-left: 100px;
}

.margin-stand-100px {
  margin-top: 100px;
}

.margin-stand-20px {
  margin-top: 20px;
}

.margin-stand-75px {
  margin-top: 75px;
}

.bg-grey {
  background-color: #F6F6F6;
}