@import url("https://fonts.googleapis.com/css2?family=Alata&family=Comfortaa&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  background-color: #000; 
  position: relative;
}

body.hide-scrolling {
  overflow-y: hidden;
}

/*----------------------
    Custom Scrollbar 
    ------------------------*/
::-webkit-scrollbar {
  width: 5px;
}

body.hide-scrolling {
  overflow-y: hidden;
}

/*----------------------
    Custom Scrollbar 
 ------------------------*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: rgb(4, 4, 4);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(156, 122, 242);
}

::-webkit-scrollbar-track {
  background-color: rgb(4, 4, 4);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(156, 122, 242);
}

a {
  text-decoration: none;
}

/* navbar start */
.navbar {
  background-color: rgba(8, 7, 7, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar-brand-text {
  color: #fff;
  font-weight: 600;
  font-family: "Comfortaa", cursive;
}

.navbar-brand-icon {
  width: 70px;
  margin-right: 5px;
  opacity: 1.2;
  box-shadow: 0 2px 4px rgba(90, 123, 128, 0.3);
  border-radius: 50%;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  width: 20%;
}

.profile-pic {
  margin-left: 50px;
  border-radius: 50%;
  background-color: #dde6ed;
  width: 55px;
  height: 55px;
}

.section-1 {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 7rem;
  margin-bottom: 2rem;
  background-image: url(../images/Job-training/wave-bg.svg);
  background-position-y: -2rem;
}

.container-1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  align-items: center;
}

.container-1 span:nth-child(1) {
  font-size: 3.2rem;
  font-weight: 500;
}

.container-1 span:nth-child(2) {
  background: linear-gradient(to right, #ffff, #4b2b8a), #f0dfec;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container-1 span:nth-child(3) {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.btn-container {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.button-container a {
  display: inline-block; 
  vertical-align: middle; 
  text-decoration: none;
}

.container-1 button {
  padding: 0.9rem 2rem;
  font-family: "Alata", sans-serif;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  border-radius: 30px;
  box-shadow: 0px 0px 20px 2px gray;
}

.container-1 button:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); 
  transform: scale(1.05); 
  border: none;
}

.section-2 {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

.card-1 a,
.card-2 a,
.card-3 a {
  color: inherit; 
  text-decoration: none;
  scroll-behavior: smooth;
}

.card-1,
.card-2,
.card-3 {
  width: 15.3125rem;
  height: 18.0625rem;
  flex-shrink: 0;
  margin: 0 3rem 1rem;
  font-family: 'Alata', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0px 0px 40px -1px rgba(184, 183, 183, 0.538);
  color: #f0dfec;
  position: relative;
  overflow: hidden; 
  transition: transform 0.3s, color 0.3s, box-shadow 0.3s; 
  border: 1px solid rgba(156, 122, 242, 0.7); 
  border-radius: 22px;

}

.card-1::before,
.card-2::before,
.card-3::before {
  content: "";
  position: absolute;
  top: 100%; 
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      black,
      rgba(156, 122, 242, 0.7));
  z-index: -1;
  opacity: 0.7;
  transition: top 0.3s; 
  border-radius: 22px;
}

.card-1:hover,
.card-2:hover,
.card-3:hover {
  transform: translateY(-20px); 
  color: #fff; 
  box-shadow: 0 0 20px rgba(156, 122, 242, 0.7); 
  border: 1px solid rgba(156, 122, 242, 0.7); 
}

.card-1:hover::before,
.card-2:hover::before,
.card-3:hover::before {
  top: 0; 
}

.section-3 {
  color: #f2f2f2;
  display: flex;
  justify-content: space-evenly; 
  align-items: center;
  margin: 4rem 0 2rem;
  font-size: 1.1rem;
  padding: 1rem;
}
.section-3 li {
  padding: 1rem;
  border-left: 1px solid rgba(156, 122, 242, 0.7);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  list-style-type: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}

.section-3 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0; 
  height: 100%;
  background: linear-gradient(to right,rgba(156, 122, 242, 0.4), rgba(30, 30, 30, 0.8) ); 
  z-index: -1;
  transition: width 0.3s; 
}

.section-3 li:hover::before {
  width: 100%;
}

.section-3 li:hover {
 color: #fff;
  box-shadow: 0 4px 4px -4px rgba(156, 122, 242, 0.4), 0 -4px 4px -4px rgba(156, 122, 242, 0.4), -4px 0 4px -4px rgba(156, 122, 242, 0.4);
  border-left-color: rgba(156, 122, 242, 0); 
}
.section-3 li span{
  color: #a9d215;
  font-weight: 600;
}

.section-4 {
  color: #fff;
  display: flex;
  justify-content: center;
}

.section-4-box {
  margin-top: 2rem ;
  padding: 20px;
  border-radius: 10px; 
  display: flex; 
  border: 1px solid;
  justify-content: center;
  align-items: center;
}

.section-4-box span {
  font-size: 1.8rem;
  margin-right: 1rem;

}

.startnow {
  display: inline-block;
  padding: 10px 20px; 
  background-color: #594296;
  color: #fff; 
  text-decoration: none; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.startnow:hover {
  background-color: #663399; 
  transform: scale(1.05); 
}

/* FOOTER STARTS*/
footer {
  margin-top: 2rem;
  background-color: #0e0d0d;
  color: white;
  text-align: center;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 50px 0px;
  position: relative;
  box-sizing: border-box;
  float: left;
  width: 100%;
}

.ftitle {
  padding-top: 3.5rem;
  color: hsl(0, 2%, 79%);
  font-family: "Comfortaa", cursive;
  font-weight: 600;
  font-size: larger;
}

.foot-txt {
  line-height: 25px;
  margin-top: 70px;
  font-family: "Roboto", sans-serif;
  color: hsl(0, 2%, 79%);
  padding-bottom: 40px;
}

.footer-col-title {
  font-family: "Roboto", sans-serif;
  padding-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
}

.footer li {
  cursor: pointer;
  list-style: none;
  padding: 10px 0;
  font-family: "Roboto", sans-serif;
}

.footer-col {
  text-align: left;
  margin-top: 20px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social i {
  margin-top: 30px;
  padding: 7px;
}

.social li {
  margin-top: -30px;
}

.footer-icon {
  width: 5.6rem;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(90, 123, 128, 0.3);
  display: block;
}

/* FOOTER ENDS */