@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Bedjana";
  src: url("../webfonts/Bedjana-Regular.woff") format("woff"),
    url("../webfonts/Bedjana-Regular.woff2") format("woff2"),
    url("../webfonts/Bedjana-Regular.svg") format("svg"),
    url("../webfonts/Bedjana-Regular.eot") format("embedded-opentype"),
    url("../webfonts/Bedjana-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/fa-brands-400.woff2") format("woff2"),
    url("../webfonts/fa-brands-400.woff") format("woff"),
    url("../webfonts/fa-brands-400.ttf") format("truetype"),
    url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fal,
.far {
  font-family: "Font Awesome 5 Pro";
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #6d6d6d;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--black);
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
  text-decoration: none;
  outline: none;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  height: auto;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

img {
  max-width: 100%;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root {
  --white: #ffffff;
  --light_grey: #f5f5f5;
  --black: #1e1e1e;
  --yellow: #ead75a;
  --light_yellow: #fff3e0;
  --green: #48cd96;
  --light_green: #e8f5e9;
  --blue: #312393;
  --light_blue: #e8eaf6;
  --sky_blue: #e0f7fa;
  --light_gradient: transparent
    linear-gradient(248deg, #ddf3df 0%, #f5f4d6 100%) 0% 0% no-repeat;
  --blue_gradient: transparent linear-gradient(248deg, #312393 0%, #1f2740 100%)
    0% 0% no-repeat;
}
.blue_gradient_bg {
  background: var(--blue_gradient);
}
.light_green_bg {
  background: var(--light_green);
}
.light_yellow_bg {
  background: var(--light_yellow);
}
.sky_blue_bg {
  background: var(--sky_blue);
}
.light_blue_bg {
  background: var(--light_blue);
}
.blue_bg {
  background: var(--blue);
}
.green_bg {
  background: var(--green);
}
.yellow_bg {
  background: var(--yellow);
}
.black_bg {
  background: var(--black);
}
.light_grey_bg {
  background: var(--light_grey);
}

.light_gradient::before {
  content: "";
  background: var(--light_gradient);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.light_gradient {
  position: relative;
  z-index: 1;
}
.text_green {
  color: var(--green);
}
.text_blue {
  color: var(--blue);
}

.comnpadding {
  padding: 100px 0;
}

.comntitle {
  font-size: 3rem;
  text-transform: capitalize;
  margin-bottom: 25px;
  font-family: "Bedjana";
}

.comnbtn {
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 7px 40px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  display: inline-block;
  letter-spacing: 1px;
  margin-top: 1rem;
  background: var(--green);
  color: var(--white);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.comnbtn:hover {
  color: var(--black);
}
.comnbtn::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--yellow);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.comnbtn:hover::after {
  top: 0;
}

.outline_btn {
  font-size: 1.125rem;
  padding: 7px 30px;
  border: 2px solid;
  font-weight: 500;
  border-radius: 50px;
  text-transform: capitalize;
  color: var(--blue);
  display: inline-block;
  margin-top: 10px;
}
.outline_btn:hover {
  background: var(--blue);
  color: var(--white);
}
.main_heading {
  font-family: Bedjana;
}
.punch_line {
  font-size: 1.5rem;
  line-height: 1.4;
}

header {
  padding: 15px 0;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  width: 100%;
}
.header_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.navbar-brand img,
.ftlogo img{
  max-width: 200px;
}

.top_link {
  display: flex;
  gap: 30px;
  align-items: center;
}
.top_link a {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
}
.top_link a:hover {
  color: var(--green);
}
.top_link a i {
  font-size: 1.275rem;
  color: var(--green);
  margin-right: 5px;
  vertical-align: middle;
}
.top_link a:hover i {
  color: var(--white);
}
.contactBtn {
  text-transform: capitalize;
  font-size: 20px;
  color: #fff;
  border: 1px solid;
  padding: 10px 30px;
  display: inline-block;
  border-radius: 10px;
}
.home_banner .main_heading {
  font-size: 3.5rem;
}
.home_banner .main_heading span {
  font-size: 4rem;
  display: block;
  color: var(--yellow);
}
.hero_banner {
  /* background: transparent linear-gradient(248deg, #312393 0%, #1f2740 100%) 0% 0% no-repeat; */
  background: url("../images/home-banner-bg.jpg") no-repeat;
  background-size: cover;
  padding: 120px 0 0px;
  color: #fff;
}
.banner_caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.banner_desc,
.banner_img {
  width: calc(50% - 50px);
}

/* ========================================================================== */

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  /* background-color: var(--yellow);
  border-radius: 8px;
  padding: 40px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
}
/* .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, #48cd96 0%, #48cd9600 100%) 0% 0% no-repeat;
  z-index: -1;
  opacity: 0.1;
} */
/* .stat-item:nth-child(even):before {
  background: transparent linear-gradient(180deg, #312393 0%, #31239300 100%) 0% 0% no-repeat padding-box;
} */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
  flex: 1;
  padding: 15px;
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Bedjana";
  letter-spacing: 1px;
}

.stat-label {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 400;
}

.star {
  color: var(--black);
  font-size: 2rem;
}

/* Optional: Add separator lines between items */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: var(--blue);
}

/* ===================================Why_Choose======================================= */

.Why_Choose {
  overflow: hidden;
}
.numberList {
  counter-reset: listitem;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-top: 50px;
}
.arrowimg {
  position: absolute;
  opacity: 0.5;
  right: -100px;
  bottom: -40px;
  z-index: -1;
  max-width: 150px;
}
.numberList li {
  position: relative;
  width: 27%;
  background: #fff;
  padding: 70px 15px 35px 15px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  z-index: 1;
}
.numberList li:before {
  counter-increment: listitem;
  content: counters(listitem, ".");
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  margin: auto;
  font-size: 2.5rem;
  /* background: var(--blue); */
  background: var(--green);
  color: var(--white);
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.num_head {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--blue);
  font-weight: 600;
  /* font-family: "Bedjana"; */
}
.num_desc {
  margin: 5px 0 0 0;
  font-size: 1.125rem;
}

/* ===============================Career-Growth=========================================== */

.Career_img {
  border-radius: 20px;
  /* box-shadow: 0 0 10px #ddd; */
  overflow: hidden;
  border: 8px solid #fff;
}
.career-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #5c6bc0;
  margin: 0;
  text-align: center;
}

.right-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.benefits-list li {
  color: var(--blue);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  width: calc(50% - 20px);
}

.benefits-list li .benefit-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.benefit-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  position: relative;
}

.benefit-description {
  font-size: 1.125rem;
  color: #6c757d;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .left-panel {
    margin-bottom: 30px;
    padding: 60px 30px;
  }

  .career-title {
    font-size: 2rem;
  }

  .right-panel {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .career-title {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }
}

/* ===============================features-section=========================================== */

.feature-card {
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.icon-tech {
  background-color: #e8eaf6;
  color: #5c6bc0;
}

.icon-score {
  background-color: #e0f7fa;
  color: #26c6da;
}

.icon-cert {
  background-color: #e8f5e9;
  color: #66bb6a;
}

.icon-level {
  background-color: #fff3e0;
  color: #ff9800;
}

.feature-title {
  font-size: 1.275rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.4;
}

.feature-description {
  font-size: 1.125rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 20px;
  }
}

/* ===============================Select_Technology=========================================== */
.Select_Technology {
  background: url("../images/pattern-bg.png") no-repeat var(--light_yellow);
}
.course-card {
  margin-top: 30px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.lable {
  position: absolute;
  top: 0px;
  left: 0px;
  background: red;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 20px 0;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.course-content {
  padding: 24px;
  text-align: center;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.course-description {
  font-size:1.125rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  /* border-top: 1px solid #f0f0f0; */
  border-top: 1px solid #e8e8e8;
}
.course-footer .outline_btn {
  padding: 5px 20px;
}
.duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.duration i {
  font-size: 1.2rem;
  color: #4caf50;
}

.trend-icon {
  font-size: 1.8rem;
}

/* Custom clock icon styling */
.clock-icon {
  width: 24px;
  height: 24px;
  border: 2px solid #4caf50;
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.clock-icon::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 6px;
  background: #4caf50;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.clock-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 2px;
  background: #4caf50;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-flush > .accordion-item {
  border: none;
  box-shadow: 0 0 5px #ddd;
  margin: 10px 0;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sky_blue);
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: var(--blue);
  color: var(--white);
}
.accordion-body p:last-child {
  margin: 0;
}

.client-testimonial-carousel .owl-dots button {
  height: 5px;
  background: var(--green);
  width: 20px;
  display: inline-block;
  margin: 5px;
  transition: 0.2s;
  border-radius: 2px;
}

.client-testimonial-carousel button.owl-dot.active {
  background: var(--sky_blue);
  width: 30px;
}

.client-testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.single-testimonial-item {
  position: relative;
  box-shadow: 0 0 2px #dadfd3;
  margin: 2px;
  padding: 30px;
  font-style: italic;
  padding-left: 100px;
}

.single-testimonial-item:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f10e";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  font-size: 30px;
  color: var(--green);
  line-height: 30px;
  margin-top: -15px;
}

.single-testimonial-item:after {
  background: #ddd;
  content: "";
  height: 70%;
  left: 75px;
  position: absolute;
  top: 10%;
  width: 1px;
}

.single-testimonial-item h3 {
  font-size: 1.5rem;
  font-style: normal;
  color: var(--green);
  margin-bottom: 0;
}

.single-testimonial-item h3 span {
  color: var(--sky_blue);
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin-top: 5px;
}
.single-testimonial-item {
  color: var(--white);
}

.category-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.category-badge {
  padding: 0px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 40%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: var(--white);
}

.category-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.category-students {
  /* background-color: var(--light_blue); */
  color: #5c6bc0;
}
.category-students .user_icon {
  background-color: var(--light_blue);
}

.category-students:hover {
  background-color: #c5cae9;
}

.category-job-seekers {
  /* background-color: var(--sky_blue); */
  color: #0097a7;
}
.category-job-seekers .user_icon {
  background-color: var(--sky_blue);
  color: #0097a7;
}

.category-job-seekers:hover {
  background-color: #b2ebf2;
}

.category-professionals {
  /* background-color: var(--light_green); */
  color: #43a047;
}
.category-professionals .user_icon {
  background-color: var(--light_green);
  color: #43a047;
}

.category-professionals:hover {
  background-color: #c8e6c9;
}

.category-switchers {
  /* background-color: var(--light_yellow); */
  color: #fb8c00;
}
.category-switchers .user_icon {
  background-color: var(--light_yellow);
  color: #fb8c00;
}

.category-switchers:hover {
  background-color: #ffe0b2;
}

.user_icon img {
  max-height: 80px;
  max-width: 60px;
  margin-bottom: 10px;
}
.user_icon {
  /* position: absolute; */
  /* left: 0; */
  /* top: 0; */
  background: var(--white);
  border-radius: 50px;
  width: 100px;
  padding: 10px;
}

.Ideal_Users {
  color: var(--white);
}

/* .persona-card::after {
  content: "";
  width: 1px;
  height: 70%;
  background: var(--white);
  position: absolute;
  top: 10%;
  right: 0;
  opacity: 0.25;
} 
.persona-card:last-child::after {
  display: none;
}*/
.persona-card {
  padding: 0 30px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
}
.persona-card img {
  /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(218deg) brightness(103%) contrast(101%); */
  max-width: 70px;
  margin: 0px auto 20px;
  display: block;
}
.persona-card h5 {
  font-size: 1.5rem;
}
.persona-card p {
  font-size: 1.125rem;
}

footer {
  background: var(--black);
  padding: 70px 0 20px;
  color: var(--white);
}
.ftlogo {
    text-align: center;
}
.ft_cotadd aside {
  font-size: 1.125rem;
  display: flex;
  gap: 20px;
}
address {
  margin: 0;
}
.ft_cotadd {
  gap: 50px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: end;
}
.ft_cotadd aside i {
  font-size: 1.25rem;
  color: var(--green);
}
.ft_cotadd a {
  font-size: 1.125rem;
  color: var(--white);
}
.ft_cotadd a i {
  margin-right: 15px;
  color: var(--green);
}
.ft_social {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.ft_social a {
  font-size: 1.25rem;
  color: var(--white);
}
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgb(255 255 255 / 20%);
  margin-top: 30px;
  font-size: 1rem;
}

.copyright a {
  color: var(--green);
}

.ctaimg {
  border-radius: 15px;
  overflow: hidden;
}

.Certificate_Preview .card-body p{
  margin: 0;
}