@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
}

.main-container {
  width: 100%;
}

header {
  display: flex;
  justify-content: center;
  background-color: #F6F6F6;
  padding: 0px 0;
}

.main-header {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 0px;
}

.Employes-tabs {
  display: flex;
  gap: 24px;
  font-size: 16px;
  line-height: 20px;
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 0px;
  color: #1A1818 !important;
  font-weight: normal;
}

.Employes-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  font-family: "Open Sans", Arial, sans-serif;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  color: #1A1818 !important;
}

.Employes-tab button {
  color: #1A1818 !important;
}

.Employes-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 2px;
  background: #005DE2;
}

.headerleft,
.headerright {
  display: flex;
  gap: 20px;
}

.search-wrapper {
  position: relative;
  display: inline-block;
}

.search-wrapper input {
  padding: 8px 36px 8px 12px;
  border-radius: 0px;
  border: none;
  border-bottom: 2px solid #999;
  width: 500px;
  font-size: 16px;
  background-color: #F6F6F6;
  font-family: "Open Sans", Arial, sans-serif;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  flex-wrap: wrap;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1000;
}

.dropdown {
  position: relative;
  display: inline-block;
  top: 0px;
  background-color: transparent;
}

.dropdown>a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  background: transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arrow-icon {
  width: 15px;
  height: 10px;
  transition: transform 0.3s ease;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.dropdown-content a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  color: #333;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover>a::after,
.dropdown:focus-within>a::after {
  transform: rotate(180deg);
  /* Upward arrow */
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.menu-toggle.fade-out {
  opacity: 0;
}

.nav-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-links a,
.headerright a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  text-align: center;
  padding: 10px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.headerright a:hover {
  color: #681CD6;
  border-bottom: 2px solid #681CD6;
  /* border-radius: 15px; */

}


.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  font-family: "Open Sans", Arial, sans-serif;

}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  flex-wrap: wrap;
  padding: 56px 5% 30px;
  gap: 30px;
  background-color: #E5EEFC;
}

.hero-content {
  max-width: 775px;
}

.font26 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: "Open Sans", Arial, sans-serif;
}

.font16 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 34px;

}

.font20 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: normal;
  font-family: "Open Sans", Arial, sans-serif;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.buttons button {
  padding: 18px 18px;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: bold;
  background-color: #005DE2;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 280px;
}

.buttons button:hover {
  background-color: #043B8E;

}

.buttons1 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.buttons1 button {
  padding: 18px 18px;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: bold;
  background-color: #005DE2;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 380px;
}

.buttons1 button:hover {
  background-color: #0045b5;
  /* transform: scale(1.05); */
}

.buttons1 a {
  color: #ffffff;
  text-decoration: none;
}

.buttons2 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 50px 0px 0px 0px;
}

.buttons2 button {
  padding: 18px 18px;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: bold;
  background-color: #ffffff;
  color: #043B8E;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 380px;
}

.buttons2 button:hover {
  background-color: #ffffff;
  /* transform: scale(1.05); */
}

.buttons2 a {
  color: #043B8E;
  text-decoration: none;
}

.buttons3 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.buttons3 button {
  padding: 18px 18px;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: bold;
  background-color: #005DE2;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 300px;
}

.buttons3 button:hover {
  background-color: #0045b5;
  /* transform: scale(1.05); */
}

.buttons3 a {
  color: #ffffff;
  text-decoration: none;
}

.buttons5 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.buttons5 button {
  padding: 16px 18px;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: bold;
  background-color: #005DE2;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
}

.buttons5 button:hover {
  background-color: #0045b5;
  /* transform: scale(1.05); */
}

.buttons5 a {
  color: #ffffff;
  text-decoration: none;
}

.buttons6 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0px 0px 0px;
}

.buttons6 button {
  padding: 0px 18px;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: bold;
  background-color: #005DE2;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 380px;
}

.buttons6 button:hover {
  background-color: #0045b5;
  /* transform: scale(1.05); */
}

.buttons6 a {
  color: #ffffff;
  text-decoration: none;
}

.button-border {
  background-color: transparent !important;
  color: #902AF1 !important;
  border: 1px solid #902AF1 !important;
  padding: 6px 18px !important;
  border-radius: 5px;
  transition: all 0.5s ease;

}

.button-border:hover {
  background-color: transparent !important;
  color: #681CD6 !important;
  border: 1px solid #681CD6 !important;
  transition: all 0.5s ease;
}


.ct2 {
  background-color: #902AF1 !important;
  color: #ffffff !important;
  border: 1px solid #902AF1 !important;
  padding: 6px 18px !important;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.ct2:hover {
  background-color: #681CD6 !important;
  color: #ffffff !important;
  border: 1px solid #681CD6 !important;
  transition: all 0.5s ease;
}


.button-border1 {
  background-color: transparent !important;
  color: #000000 !important;
  border: 2px solid #005DE2 !important;
  transition: all 0.3s ease;
}

.button-border1:hover {
  background-color: #005DE2;
  color: white;
  transform: scale(1.05);
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.learner-pathways {
  padding: 40px 10%;
}

.learner-pathways h2 {
  font-size: 28px;
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 15px;
}

.learner-pathways ul {
  list-style: disc;
  padding-left: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: zoomIn 0.4s ease;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.modal-content button {
  padding: 10px 20px;
  background: #005DE2;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-family: "Open Sans", Arial, sans-serif;
  cursor: pointer;
}


.info-box-img {
  flex: 1 1 100%;
  min-width: auto;
}

.info-box-img img {
  width: 100%;
  max-width: 1150px;
  height: 100%;
  object-fit: cover;
}

.info-box {
  flex: 1 1 60%;
  background-color: #003399;
  color: #fff;
  padding: 50px 6% 0px 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
}

.info-box h3 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  margin-bottom: 40px;
  font-family: "Open Sans", Arial, sans-serif;
}

.info-box p {
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  margin-bottom: 30px;
  font-family: "Open Sans", Arial, sans-serif;
}

.cta-btn {
  display: inline-block;
  background-color: #fff;
  color: #003399;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 40px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #e0e0e0;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');


/*	  footer section*/

.site-footer {
  background: #000;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  margin: auto;
  padding: 20px 5%;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0px;
  font-family: "Open Sans", Arial, sans-serif;

}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  font-family: "Open Sans", Arial, sans-serif;

}

.footer-column ul li a:hover {
  text-decoration: none;
  color: #681bbb;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.social-icons a {
  background: #7b2cff;
  color: #fff;
  width: 40px;
  height: 40px;
  max-height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  font-family: "Open Sans", Arial, sans-serif;
  padding: 10px !important;
}

.social-icons a:hover {
  background: #5a1be4;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* 
hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #37245f;
} */

.gradient-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #7b2cff, #002fff, #063B90);
  border-radius: 2px;
  margin: 20px 0px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Open Sans", Arial, sans-serif;

}

.footer-bottom p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: #ffffff;
  flex-wrap: wrap;
  font-family: "Open Sans", Arial, sans-serif;

}

.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  font-size: 16px;
  line-height: normal;
  font-weight: normal;
  color: #ffffff;
  text-decoration: none;
  padding: 0px;
}

.footer-links a:hover {
  text-decoration: none;
  color: #681bbb;

}

/* Mobile: click using focus-within */
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* Optional: prevent page scroll if dropdown open on mobile */
.dropdown>a:focus {
  outline: none;
}

/* Extra css for back to top and preloader */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  font-size: 22px;
  font-weight: 700;
  background-color: #7b2cff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
  background-color: #4a00e0;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner img {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Rotating ring */
.rotating-border {
  width: 80px;
  height: 80px;
  border: 4px solid #ccc;
  border-top: 4px solid #005DE2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Rotation animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* checkbox section */

.container {
  display: flex;
  gap: 20px;
  padding: 50px 5%;
}

/* Left panel */
.sidebar {
  background: #F6F6F6;
  width: 400px;
  padding: 50px 40px;
  border-radius: 10px;
}

.sidebar input[type="radio"] {
  appearance: none;
  /* Remove default browser styling */
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background-color: #fff;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}

.sidebar input[type="radio"]:checked {
  background: #005DE2;
  /* Blue fill when selected */
  border-color: #005DE2;
}

.sidebar input[type="radio"]:checked::after {
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content h2 {
  font-size: 45px;
  font-weight: 300;
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 6px;
  color: #000;
}

.sidebar h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #005DE2;
  padding-bottom: 15px;

}

.sidebar label {
  display: flex;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  align-items: center;
  font-weight: 400;
}

/* Right content area */
.content {
  flex: 1;
  background: #fff;
  padding: 20px;
}

.section {
  display: none;
}

.section.active {
  display: block;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #E6E6E6;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.accordion-header h4 {
  margin: 0;
  font-size: 24px;
  line-height: 28px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  color: #000;
}

.accordion-content {
  display: none;
  padding: 0 0 20px;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 300;
}

.accordion-content ul {
  padding-left: 15px;
  margin: 0;
  list-style-position: inside;
  padding-top: 5px;
  padding-bottom: 5px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-icon img {
  content: url("https://skillconnect.com/development/skillconnect/assets/2025/faq_images/arrowup.png");
  /* Change icon when active */
}

.accordion-icon img {
  transition: transform 0.3s ease;
  width: 24px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(360deg);
}