* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1A1818;
}
p{
  margin: 0;
}

.container-100 {
  width: 100%;
  margin: 0 100px;
  /* display: flex; */
}

.carousel-inner {
  background-color: #E5EEFC;
}

.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: 500;
  color: #000;
}

.Home-Carousel-title1 {
  font-weight: 300;
}

.Home-Carousel-subtitle {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 30px;
}

.Home-Carousel-buttons {
  gap: 20px;
  display: flex;
}

.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;
  width: 100%;
  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/about_images/Arrow_l.png');
  /* Replace with your left arrow image */
}

.carousel-control-next-icon {
  background-image: url('https://skillconnect.com/development/skillconnect/assets/2025/about_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);
}

.Home-logo img:hover {
  transform: scale(1.1);
}

/* ===============================
   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;

}

.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: 45px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.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:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.Home-Section-1-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.Home-Section-1-card-body {
  padding: 16px;
}

.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: 14px;
  text-decoration: underline;
  transition: transform 0.4s ease;
}

/* .Home-Section-1-card-body a:hover {

} */

.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-section1 {
  text-align: center;
  padding: 20px 20px 0px;
}

.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: #000;
  max-width: 800px;
  margin: 15px auto 40px;
}

.Home-Courses-card {
  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;
}

.Home-Courses-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.Home-Courses-card-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 35px;
}

.Home-Courses-enroll {
  font-size: 13px;
  color: #0066ff;
  font-weight: 500;
  text-decoration: underline;
  margin-left: 5px;
}

.Home-button {
  width: 100%;
  max-width: 380px;
  padding: 15px;
  background: #0066ff;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #0066ff !important;
  cursor: pointer;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.Home-button:hover {
  color: #fff !important;
  border: 1px solid #043B8E !important;
  background-color: #043B8E !important;
  transition: all 0.5s ease-in-out;
}

.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;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;

}

.Home-button-0:hover {
  color: #fff !important;
  background-color: #043B8E !important;
  transition: all 0.5s ease-in-out;
}


.Home-button-1 {
  width: 100%;
  max-width: 280px;
  padding: 13.5px;
  background: #fff;
  color: #000;
  border: 2px solid #0066ff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.Home-button-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.Home-button-1:hover::before {
  left: 0;
}

.Home-button-1:hover {
  color: #fff !important;
  border: 1px solid #043B8E !important;
  background-color: #043B8E !important;
  transition: all 0.5s ease-in-out;
}


.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;
  transition: all 0.3s ease;
  width: 100%;
  height: 41px;
  margin-top: 1px;
}

.Job-Search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(88, 43, 196, 0.2);
}

.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:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.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;
  border: 1px solid #DEDEDE;
}





/* Who we serve section css */
.serve-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 5% 0px 5%;
}

.cardone {
  background-color: #fff;
  border-radius: 15px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
  max-width: 830px;
  width: 100%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border: 1px solid #dedede;
}

.cardone-content {
  padding: 60px 40px;
  flex: 1;
  background-color: #f6f6f6;
}

.imagediv {
  background-color: #dedede;
  width: 360px;
}

.cardone-content p {
  font-size: 18px;
  line-height: 24px;
  margin: 0px;
}

.cardone img {
  width: 150px;
  object-fit: cover;
}

.imagediv img {
  width: 100%;
}

.cardone a {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
  font-size: 18px;
  padding: 0;
}

@media (max-width: 980px) {
  .serve-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap !important;
    padding: 60px 7% 0px 7%;

  }

  .cardone {
    display: flex !important;
    flex-direction: column-reverse;
  }

  .imagediv {
    width: 100%;
  }

}

@media (max-width: 600px) {
  .serve-container {
    display: flex;
    gap: 20px;
    justify-content: center;

    padding: 60px 7% 0px 7%;

  }

}

@media (max-width: 487px) {
  .serve-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 30px;
    width: 90%;
    margin: 0 auto;

  }

  .cardone-content p {
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
  }

  .col-md-6{
    padding-left: 0px;
    padding-right: 0px;
  }
  .M-Hide{
    display: none !important;
  }

}