@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--black);
}

@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: 5px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #6d6d6d;
}

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: #F3F3F3;
  --black: #1e1e1e;
  --yellow: #ead75a;
  --light_yellow: #fff3e0;
  --green: #48cd96;
  --light_green: #e8f5e9;
  --blue: #312393;
  --midblue: #6C63FF;
  --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;
}

.light_gradient_bg {
  background: var(--light_gradient);
}

.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) !important;
}

.text_yellow {
  color: var(--yellow) !important;
}

.text_white {
  color: var(--white) !important;
}

.text_blue {
  color: var(--blue) !important;
}

.text_black {
  color: var(--black) !important;
}

.comnpadding {
  padding: 100px 0;
}

.main_heading span {
  font-size: 4.5rem;
  display: block;
  color: var(--yellow);
}

.comntitle {
  font-size: 3.5rem;
  text-transform: capitalize;
  margin-bottom: 25px;
  color: var(--blue);
  font-family: "Bedjana";
}

.subheading {
  font-size: 2.25rem;
  text-transform: capitalize;
  color: var(--blue);
  font-family: "Bedjana";
  margin: 25px 0;
}

.comnbtn {
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 7px 40px;
  font-weight: 400;
  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;
}

.outlint_btn {
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 7px 30px;
  font-weight: 400;
  border: none;
  border-radius: 50px;
  display: inline-block;
  letter-spacing: 1px;
  margin-top: 1rem;
  background: none;
  color: var(--white);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid var(--green);
}

.outlint_btn:hover {
  border: 2px solid var(--yellow);
}

.test_btn {
  position: relative;
  overflow: hidden;
  padding: 7px 60px 7px 40px;
  transition: all 300ms ease-in-out;
}

.test_btn img {
  width: 34px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
}

.test_btn:hover img {
  width: 40px;
}

.comnbtn:hover,
.outlint_btn:hover {
  color: var(--black);
}

.comnbtn::after,
.outlint_btn::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,
.outlint_btn:hover::after {
  top: 0;
}

.blueBtn {
  background: var(--blue);
  color: var(--white);
}

.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-size: 4.25rem;
  font-family: Bedjana;
}



.punch_line {
  font-size: 1.5rem;
  line-height: 1.4;
}

.top_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

header {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 0 85px;
}

.header_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

header.inner_header {
  position: initial;
  background: var(--blue);
}

/* Navbar */
.navbar {
  padding: 15px 0;
}



.navbar-brand span {
  color: #38e2a6;
}

.navbar-collapse {
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  margin-left: 30px;
  padding-left: 20px;
}

/* Divider */
.brand-divider {
  width: 1px;
  height: 32px;
  background: #6c6fc1;
  margin: 0 20px;
}

/* Nav links */
nav .nav-link {
  color: #fff !important;
  font-size: 20px;
  margin: 0 10px;
  position: relative;
  text-transform: uppercase;
}

nav .nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: #38e2a6;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA Button */
.btn-hire {
  font-size: 1.25rem;
  background: #f5dd57;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  /* animation: tilt-shaking 3s infinite; */
}

.skill_btn {
  font-size: 1.25rem;
  background: none;
  color: #f5dd57;
  font-weight: 600;
  border: 2px solid;
  border-radius: 30px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.skill_btn img {
  margin-right: 5px;
  max-width: 26px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(96%) saturate(338%) hue-rotate(343deg) brightness(100%) contrast(93%);
}

.skill_btn:hover {
  background: var(--green);
  color: var(--white);
}

.skill_btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(13%) hue-rotate(237deg) brightness(104%) contrast(104%);
}

@keyframes tilt-shaking {
  0% {
    /* transform: rotate(0deg); */
    transform: translateX(0);
  }

  25% {
    /* transform: rotate(2deg); */
    transform: translateX(5px);
  }

  50% {
    /* transform: rotate(0eg); */
    transform: translateX(0);
  }

  75% {
    /* transform: rotate(-2deg); */
    transform: translateX(5px);
  }

  100% {
    /* transform: rotate(0deg); */
    transform: translateX(0);
  }
}

.btn-hire img {
  margin-right: 5px;
  max-width: 26px;
}

.btn-hire:hover {
  background: #ffe870;
  color: #000;
}

@media (max-width: 991px) {
  .brand-divider {
    display: none;
  }
}

.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;
}

.hero_banner {
  /* background: transparent linear-gradient(248deg, #312393 0%, #1f2740 100%) 0% 0% no-repeat; */
  background: url("../images/home-banner-bg.png") no-repeat;
  background-size: cover;
  padding: 120px 80px 0 80px;
  color: #fff;
  overflow: hidden;
}

.banner_caption {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.banner_desc {
  padding-bottom: 50px;
}

.banner_desc,
.banner_img {
  width: calc(50% - 50px);
}

.palce_year {
  font-size: 2rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 100;
  margin: 15px 0 30px;
  display: inline-block;
}

.palce_year mark {
  background: none;
  font-weight: 100;
  color: var(--white);
  padding: 5px 25px;
  border: 2px solid var(--yellow);
  transform: rotate(-5deg);
  border-radius: 50px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  /* animation: vertical-shaking 5s infinite; */
}

@keyframes vertical-shaking {
  0% {
    transform: translateX(0) rotate(-5deg)
  }

  25% {
    transform: translateX(5px) rotate(5deg)
  }

  50% {
    transform: translateX(-5px) rotate(-5deg)
  }

  75% {
    transform: translateX(5px) rotate(5deg)
  }

  100% {
    transform: translateX(0) rotate(-5deg)
  }
}

.btnbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}

.btnbox .comnbtn {
  margin-top: 0;
}

.line_btn {
  font-size: 1.25rem;
  text-transform: capitalize;
  color: var(--yellow);
  border-bottom: 1px solid;
}

.banner_img::before {
  content: "";
  background: url("../images/home-banner-bg.svg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -85px;
  bottom: 0;
  z-index: -1;
}

.banner_img {
  position: relative;
  z-index: 1;
}

.banner_img img {
  width: 100%;
}

img.google_review_img {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 1;
  width: auto;
  max-width: 250px;
}

/*================================ trust-section css ================================*/
.why_trust {
  overflow: hidden;
}

.trust-section {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

/* LEFT */
.trust-left {
  width: 35%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  margin-bottom: 20px;
  color: #1e1e1e;
  font-weight: 400;
}

.badge span {
  width: 28px;
  height: 28px;
  background: #d1fae5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.trust-title {
  font-size: 3.5rem;
  font-weight: 400;
  font-family: "Bedjana";
  color: var(--blue);
  margin-bottom: 20px;
}

.trust-desc {
  color: #4b5563;
  margin-bottom: 14px;
  max-width: 420px;
}

.pill {
  display: inline-block;
  padding: 3px 15px;
  border-radius: 50px;
  border: 2px solid #48cd96;
  color: var(--black);
  font-size: 1rem;
  transform: rotate(2deg);
  font-family: "Roboto", sans-serif;
}

.experts {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.avatars img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.avatars img:not(:first-child) {
  margin-left: -25px;
}

/* RIGHT */
.trust-right {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-card {
  flex: 1 1 calc(50% - 24px);
  padding: 28px;
  border-radius: 18px;
  background: transparent linear-gradient(180deg, rgb(49 35 147 / 6%) 0%, #31239300 100%) 0% 0% no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-card.green {
  /* background: #ecfdf5; */
  background: transparent linear-gradient(180deg, rgb(72 205 150 / 10%) 0%, #48cd9600 100%) 0% 0% no-repeat;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 3rem;
  font-family: "Bedjana";
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 0;
  line-height: 3.5rem;
  width: 90px;
}

.stat-label {
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blue);
}

.stat-desc {
  font-size: 1.125rem;
  color: var(--black);
}

.hiring_partners {
  margin-bottom: 80px;
}

.Partners_logo {
  padding: 10px 30px;
  height: 100px;
  display: flex;
  align-items: center;
}

.Partners_logo img {
  transition: filter 0.5s ease;
  /* filter: grayscale(100%); */
}

.Partners_logo img:hover {
  filter: grayscale(0);
}

#partners .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--light_gradient);
  color: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 1.25rem;
}

#partners .owl-nav .owl-next {
  left: auto;
  right: -20px;
}

#partners .owl-nav .owl-prev {
  left: -20px;
  right: auto;
}

/* Footer */
.footer {
  background: #1b1b1b;
  color: #cfcfcf;
  padding: 60px 0;
}

.footer h5 {
  font-size: 2rem;
  font-family: "Bedjana";
  color: var(--yellow);
  font-weight: 400;
  margin-bottom: 20px;
}

.footer a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer a:hover {
  color: #f5d76e;
}

/* Logo */
.footer-logo {
  font-size: 1.125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

.footer-logo img {
  max-width: 220px;
}

.footer-logo span {
  color: #35d0a6;
}

.footer small {
  display: block;
  margin: 15px 0;
  color: #9a9a9a;
}

/* Social */
.social-icons {
  border-top: 1px solid rgb(255 255 255 / 20%);
  margin-top: 30px;
  padding-top: 30px;
  text-align: center;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid #555;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 4px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #35d0a6;
  color: #000;
  border-color: #35d0a6;
}

.contact i {
  color: #35d0a6;
  margin-right: 10px;
}

ul.ftlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-left: 70px;
}

.ftlist li:first-child {
  width: 33%;
}

.contact p {
  position: relative;
  padding-left: 35px;
  font-size: 1rem;
}

.contact p i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25rem;
}

/*================================================*/

.trending_courses {
  background: var(--light_gradient);
  border-radius: 0 0 40px 40px;
}

.course-card {
  margin-top: 30px;
  background: #ffffff;
  border-radius: 35px;
  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;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lable {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: red;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 20px 0;
}

.course-content {
  padding: 24px;
}

.course-image-box {
  position: relative;
  overflow: hidden;
}
.course-image-box::after{
  content: "";
  background: url("../images/white-shape.png") no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.View_Course_Btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 20px;
  background: var(--blue);
  padding: 5px 20px;
  border-radius: 20px;
  scale: 0;
  opacity: 0;
  transition: 0.1s ease-in-out;
}

.View_Course_Btn:hover {
  background: var(--green);
}

.course-card:hover .View_Course_Btn {
  scale: 1;
  opacity: 1;
}

.course-image {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.course-title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-description {
  font-size: 1.125rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light_grey);
  color: var(--black);
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 1.125rem;
}

.course-footer img {
  max-height: 22px;
  vertical-align: sub;
}

.student_Review_video {
  position: relative;
  width: 90%;
  margin: auto;
  text-align: center;
}

/* #student_video,
.student_Review_video,
.owl-stage-outer,
.owl-stage,
.owl-item,
.item,
.videobox {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
} */
.videobox {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

#student_video .owl-nav {
  text-align: right;
  margin-top: 30px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

#student_video .owl-nav span {
  font-size: 2rem;
  /* width: 50px;
  height: 50px;
  line-height: 48px; */
  /* background: var(--green); */
  color: var(--white);
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
}

.playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}

.company_name {
  text-align: center;
  background: var(--white);
  border-radius: 0px 20px 20px 0px;
  padding: 7px 15px;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 1;
}

.company_name img {
  max-height: 40px;
  margin: 7px 0;
}

.company_name span {
  display: block;
  font-size: 1.125rem;
  line-height: 100%;
}

.testimonial {
  border-radius: 40px;
}

.testimonial_info {
  color: var(--white);
  border-right: 2px dashed rgba(255, 255, 255, 0.4);
  padding-right: 50px;
}

.testimonial_info .comntitle {
  color: var(--yellow);
}

.testimonial_info .pill {
  margin-right: 10px;
  color: var(--white);
}

.student_desc {
  background: transparent linear-gradient(91deg, rgb(255 255 255 / 5%) 0%, #ffffff00 100%) 0% 0% no-repeat;
  border-radius: 20px 0px 0px 20px;
  padding: 30px;
  margin-top: 50px;
}

.student_desc span {
  font-size: 1.25rem;
  color: var(--yellow);
  margin-bottom: 20px;
  position: relative;
  padding-left: 100px;
  display: block;
}

.student_desc p {
  font-weight: 300;
  margin: 0;
}

.student_desc span .quoteIcon {
  max-width: 80px;
  position: absolute;
  bottom: 10px;
  left: 0;
}

#student_say .owl-nav {
  text-align: right;
}

#student_say .owl-nav span {
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
}

.Learning img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.img1,
.img4 {
  height: 300px;
  margin: 15px 0;
  display: inline-block;
  width: 100%;
}

.img2,
.img3 {
  height: 500px;
  margin: 15px 0;
  display: inline-block;
  width: 100%;
}

.filter_name {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.filter_name li {
  border-radius: 50px;
  overflow: hidden;
}

.filter_name li a {
  font-size: 1.25rem;
  padding: 7px 30px;
  color: var(--black);
  border: 2px solid var(--green);
  border-radius: 50px;
  display: block;
}

.filter_name li.active,
.filter_name li:hover {
  background: var(--white);
}

.studant_desc {
  padding: 100px 0;
  width: 80%;
  margin: auto;
}

.studant_img {
  margin-top: -40px;
}

.small_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.small_form button {
  grid-column: 1/-1;
}

@media (max-width: 600px) {
  .small_form {
    grid-template-columns: 1fr;
  }
}

/* .studant_desc form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
} */

.studant_desc form input,
.studant_desc form select {
  /* width: calc(50% - 15px); */
  height: 50px;
  padding: 5px 15px;
  font-size: 1rem;
  color: var(--black);
  border-radius: 10px;
  border: 1px solid var(--black);
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);

  @media (max-width: 767px) {
    width: 100%;
  }
}

.send_btn {
  font-size: 1.125rem;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 15px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 10px;
  width: 100%;
  text-transform: uppercase;
}

.send_btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.small_form input:user-valid {
  border: 2px solid green;
}

.small_form input:user-invalid {
  border: 2px solid red;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 120px 200px;
  gap: 20px;
}

.grid-gallery .item {
  border-radius: 22px;
  overflow: hidden;
  /* background: #ddd; */
}

.grid-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

.grid-gallery .item1 {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.grid-gallery .item2 {
  grid-column: 5 / 9;
  grid-row: 1 / 3;
}

.grid-gallery .item3 {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
}

.grid-gallery .item4 {
  grid-column: 1 / 4;
  grid-row: 3 / 5;
}

.grid-gallery .item5 {
  grid-column: 4 / 9;
  grid-row: 3 / 5;
}

.grid-gallery .item6 {
  grid-column: 9 / 13;
  grid-row: 4 / 5;
}

#accordionExample {
  margin-top: 50px;
}

.accordion-item {
  background: none;
  margin: 15px 0;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.accordion-button {
  font-size: 1.25rem;
  text-transform: capitalize;
  background: none;
  color: var(--white);
  position: relative;
  padding: 15px 40px 15px 15px;
}

.accordion-body p {
  color: var(--white);
  margin: 0;
}

.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--green);
  box-shadow: none;
}

.accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  background-image: none;
  font-size: 1.5rem;
  position: absolute;
  top: 15px;
  right: 10px;

  padding: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*=======================================================================*/

.tieups-section {
  background: transparent linear-gradient(0deg, rgb(49 35 147 / 6%) 0%, rgb(49 35 147 / 0%) 100%) 0% 0% no-repeat;
  /* background: #f4f3f6; */
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.tieups-section .left-title {
  font-size: 42px;
  color: #48c397;
  margin-bottom: 40px;
}

.tieups-section .university-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.tieups-section .card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /* width: 40%; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.tieups-section .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tieups-section .card-logo {
  padding: 15px;
  text-align: center;
  background: #fff;
}

#university_slider {
  width: 90%;
}

#university_slider .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

#university_slider .owl-nav span {
  font-size: 2rem;
}

.tieups-section .card-logo img {
  max-height: 45px;
  width: auto;
  display: block;
  margin: auto;
}


.tieups-section .divider {
  width: 1px;
  height: 100%;
  border-left: 2px dashed #ccc;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.tieups-section .right-title {
  font-size: 42px;
  color: #3b2ea3;
  margin-bottom: 30px;
}

.tieups-section .logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tieups-section .logos-row img {
  height: 80px;
}

.tieups-section .logos-row p {
  font-size: 15px;
  color: #444;
}

.tieups-section hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Benefits */
.tieups-section .benefits {
  list-style: none;
}

.tieups-section .benefits li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 16px;
}

.tieups-section .benefits li::before {
  /* content: "✔"; */
  content: "";
  background: url("../images/Check.svg") no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  color: #48c397;
  font-weight: bold;
}

.Top_University {
  padding-right: 50px;
}

.NSDC {
  padding-left: 50px;
}

.rating_star {
  margin-bottom: 10px;
}

.rating_star i {
  color: var(--yellow);
  font-size: 1.125rem;
}

/* .rating_star i.far {
  color: var(--white);
  font-size: 1.25rem;
} */

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header.is-sticky {
  position: fixed;
  z-index: 5;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  background: var(--blue);
}

/* .page-header.is-sticky img {
  max-width: 80%;
} */

.page-header.is-sticky button {
  font-size: 14px;
  padding: 7px 10px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/*===========================================================*/
/* Course Listing */
/*===========================================================*/


.inner_banner {
  background: url(../images/Course-Listing.png) no-repeat;
  background-size: cover;
  padding: 200px 100px 100px 100px;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.inner_banner .banner_caption {
  justify-content: center;
}

.course_list_banner .banner_caption {
  justify-content: center;
}

.course_list {
  background: var(--light_gradient);
  position: relative;
}

.sidebar {
  background: #fff;
  border-radius: 25px;
  padding: 20px;
}

.search-box {
  position: relative;
  margin-bottom: 30px;

}

.search-box input {
  height: 50px;
  font-size: 1.125rem;
  border-radius: 30px;
  padding-right: 40px;
  border: none;
  background: #ececec;
}

.search-box input:focus {
  box-shadow: none;
  outline: none;
  background: #e9e9e9;
}

.search-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #4b4bbf;
  border-left: 1px solid rgb(0 0 0 / 20%);
  padding: 3px 0px 3px 9px;
}

.filter_btn {
  font-size: 1.25rem;
  border: 2px solid #4b4bbf;
  border-radius: 30px;
  color: #4b4bbf;
  padding: 5px 30px;
  background: var(--blue);
  color: var(--white);
  margin-bottom: 20px;
  display: none;
}

.section-title {
  font-size: 2rem;
  color: var(--blue);
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Bedjana";
}


.form-group {
  display: block;
  margin-bottom: 15px;
  position: relative;
  border-bottom: 2px dashed rgb(0 0 0 / 20%);
  padding-bottom: 15px;
}

.form-group .arrow {
  position: absolute;
  right: 0;
  top: 5px;
  /* transform: translateY(-50%); */
  color: var(--black);
}

.sub_course {
  /* padding: 5px 15px; */
  background: var(--light_grey);
  margin: 10px 10px 10px 30px;
  border-radius: 10px;
  display: none;
  box-shadow: 0 0 5px #bfbfbf;
}

.sub_course li {
  border-bottom: 1px dashed rgb(0 0 0 / 20%);
}

.sub_course li:last-child {
  border-bottom: none;
}

.sub_course li a {
  font-size: 1rem;
  color: var(--black);
  padding: 10px;
  display: block;
  font-weight: 500;
}

.sub_course li a.active,
.sub_course li.active a {
  color: var(--blue);
  background: var(--light_green);
}



.form-group input:checked~.sub_course {
  display: block;
}

.form-group input:checked~.arrow {
  transform: translateY(-50%) rotate(90deg);
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
  font-size: 1.125rem;
  display: block;
}

.form-group label:before {
  content: '';
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--black);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 0px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 5px;
  width: 12px;
  height: 12px;
  background: #48CD96;
  border-width: 0 2px 2px 0;
  border-radius: 2px;
}

.reset-btn {
  font-size: 1.25rem;
  border: 2px solid #4b4bbf;
  border-radius: 30px;
  color: #4b4bbf;
  width: 100%;
  padding: 10px;
  margin: 20px 0;
  background: transparent;
}

.features {
  margin-top: 20px;
}

.features h6 {
  font-size: 1.75rem;
  color: var(--black);
  font-family: "Bedjana";
}

.features li {
  font-size: 1rem;
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.features li::before {
  /* content: "✔"; */
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  color: var(--green);
  position: absolute;
  top: 0;
  left: 0;
}

.cta {
  background: #41c08a;
  color: #fff;
  border-radius: 0 0 20px 20px;
  margin-top: 40px;
  padding: 50px 10px 20px 150px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-bottom: -20px;
}

.cta h4 {
  font-size: 2rem;
  font-family: "Bedjana";
  margin-bottom: 20px;
}

.cta img {
  position: absolute;
  bottom: 0;
  left: 5px;
  z-index: -1;
  max-height: 210px;
}

.sidebar .cta a {
  font-size: 1.25rem;
}

.call-btn {
  font-size: 1.125rem;
  border: 2px solid #000;
  border-radius: 25px;
  padding: 5px 15px;
  background: transparent;
  display: table;
  margin: 0px auto 10px;
  transform: rotate(-10deg);
}

.course_list .course-title {
  font-size: 1.125rem;
  color: var(--black);
}

.course_list .course-description {
  font-size: 1rem;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.cta a {
  color: var(--black);
}

.no_border {
  border: none;
}


.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.top_title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
  font-family: "Bedjana";
}

.controls {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sort-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sort-label {
  font-size: 15px;
  color: #6f6f6a;
}

.dropdown select {
  min-width: 160px;
  height: 40px;
  border: 2px solid #56d9b5;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2e2e2e;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}



.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #2e2e2e;
  border-bottom: 2px solid #2e2e2e;
  transform: rotate(45deg);
  margin-left: 12px;
  margin-top: -4px;
  flex-shrink: 0;
}

.toggle {
  height: 40px;
  padding: 0 16px 0 8px;
  border: 2px solid #56d9b5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4f4f48;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.toggle-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #cfccb8;
  flex-shrink: 0;
}


/*=======================================================================================

course details banner css start here

/*=======================================================================================*/

.inner_page_hero {
  background: url("../images/bg-pettern-2.png") no-repeat;
  background-size: cover;
  padding-top: 100px;
}

.img-box img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.badge-custom {
  border: 1px solid #28a745;
  color: #28a745;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.rating-box {
  background: #f1eef7;
  border-radius: 15px;
  padding: 15px;
}

.partner-box {
  background: #e9f5ef;
  border-radius: 15px;
  padding: 15px;
}

/* Read more scroll */
.content-box::after {
  content: "";
  width: 100%;
  height: 50px;
  background: var(--white);
  opacity: 0.7;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.content-box.active::after {
  opacity: 0;
}

.content-box {
  max-height: 250px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.content-box.active {
  max-height: 250px;
  overflow-y: auto;
}

.read-more {
  font-size: 1.25rem;
  color: var(--green);
  cursor: pointer;
  font-weight: 400;
}

@media(max-width:768px) {
  .img-small {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 15px;
    width: 100%;
  }
}

.partner_farm {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.partner_farm img {
  max-height: 120px;
}

/* Wrapper */
.course-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Tabs */
.tabs_section {
  background: transparent linear-gradient(0deg, rgb(49 35 147 / 6%) 0%, rgb(49 35 147 / 0%) 100%) 0% 0% no-repeat;
}

.tab-content {
  padding: 15px;
}

.nav-tabs {
  border: none;
  background: var(--light_grey);
  border-radius: 12px;
}

.nav-tabs .nav-link {
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  color: var(--blue);
  font-family: "Bedjana";
  font-weight: 500;
  padding: 10px 18px;
  position: relative;
}

.nav-tabs .nav-link img {
  margin-right: 7px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(5880%) hue-rotate(242deg) brightness(107%) contrast(102%);
}

.nav-tabs .nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 15px solid var(--light_grey);
  position: absolute;
  bottom: -15px;
  background: none;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
  display: none;
}

.nav-tabs .nav-link.active {
  color: var(--midblue);
  background: none;
}

.nav-tabs .nav-link.active::after {
  display: block;
}

.nav-tabs .nav-link.active img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(34%) saturate(2239%) hue-rotate(218deg) brightness(101%) contrast(103%);
}

/* Section */
.tab-content .section-title {
  font-size: 1.75rem;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Bedjana";
}

.list-item {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}

.list-item p {
  margin: 0;
}

.list-item:last-child {
  border-bottom: none;
}

.star {
  color: #5b4bff;
}

/* Divider */
.divider {
  border-left: 2px solid #f0c14b;
  height: 100%;
}

@media(max-width:768px) {
  .divider {
    display: none;
  }
}

/* Accordion */
.custom-accordion .accordion-item {
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  margin-bottom: 12px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: #f8f9fa;
  box-shadow: none;
  padding: 14px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #fff;
}

/* Plus → Rotate */
.custom-accordion .accordion-button::after {
  content: "+";
  font-size: 22px;
  font-weight: 600;
  transform: rotate(0deg);
  transition: 0.3s;
  background: none;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

/* Dot */
.dot {
  width: 10px;
  height: 10px;
  background: #8bc34a;
  border-radius: 50%;
  display: inline-block;
}

/* .badge {
  font-size: 11px;
  border-radius: 20px;
  padding: 5px 10px;
} */

.tab-content .accordion-item button {
  background: var(--light_grey);
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 60px;
}

.tab-content .accordion-item button mark {
  font-size: 1rem;
  margin-left: 5px;
  border-radius: 35px;
  padding: 5px 15px;
  background: var(--blue);
  color: var(--white);
}

.tab-content .accordion-item button small img {
  /* filter: brightness(0) saturate(100%) invert(98%) sepia(12%) saturate(301%) hue-rotate(291deg) brightness(118%) contrast(100%); */
  filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(5880%) hue-rotate(242deg) brightness(107%) contrast(102%);
  vertical-align: middle;
  margin-right: 5px;
}

.tab-content .accordion-item {
  background: var(--light_grey);
  color: var(--black);
}

.tab-content .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--green);
  box-shadow: none;
}


/*=======================================================================================

course details key highlights css start here

/*=======================================================================================*/

.key_highlights {
  background: var(--light_grey);
}

.highlight-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
  padding: 30px;
}

.highlight-item {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.highlight-icon img {
  max-height: 70px;
  max-width: 80px;
}

.highlight-text {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.4;
}

/*=======================================================================================

course details download brochure css start here

/*=======================================================================================*/

.Download_Brochure {
  margin-top: 80px;
}

.Download_Brochure .Brochure_info {
  background: linear-gradient(135deg, #3b3b8f, #2c2c6c);
  border-radius: 15px;
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.Download_Brochure .content {
  width: 73%;
}

.Download_Brochure .comntitle {
  color: var(--yellow);
}

.Download_Brochure .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.Download_Brochure .tag {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 1.125rem;
}

.Download_Brochure .content .comnbtn {
  position: relative;
  padding: 12px 80px 12px 30px;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.Download_Brochure .content .comnbtn img {
  max-width: 58px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.Download_Brochure .content .comnbtn:hover img {
  transform: translateY(-35%) scale(0.85);
}

.Download_Brochure .image {
  width: 25%;
  text-align: center;
}


/*=======================================================================================

course details inquiry section css start here

/*=======================================================================================*/

.inquiry-section {
  padding: 80px 20px;
  text-align: center;
}

.inquiry-section form {
  padding: 50px;
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

/* Form Styling */
.inquiry-section .form-control,
.inquiry-section .form-select {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  height: 50px;
  padding: 5px 15px;
  font-size: 1.125rem;
  color: var(--black);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);

}

.inquiry-section .form-control::placeholder {
  color: var(--input-placeholder);
}

/* Custom Dropdown Arrow */
.inquiry-section .form-select {
  color: var(--input-placeholder);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.inquiry-section textarea {
  height: 120px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  padding: 10px 15px;
  font-size: 1.125rem;
  color: var(--black);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  resize: none;
}

.inquiry-section .comnbtn {
  width: 100%;
  border-radius: 10px;
  margin: 0;
}




/*=======================================================================================

course details Master Modern Development css start here

/*=======================================================================================*/

.custom-card {
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  border: none;
  position: relative;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  margin-top: 30px;
  background: #F5F5F5;
}

/* Card 1 Specifics */
.card-features {
  border-top: 5px solid #4fd18e;
}

/* Card 2 Specifics (Middle Dark Card) */
.card-skills {
  background-color: #322685;
  color: white;
  border-radius: 40px;
}

/* Card 3 Specifics */
.card-jobs {
  border-top: 5px solid #322685;
}

/* Icon Headers */
.icon-header {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.bg-light-green {
  background-color: #d1f5e1;
  color: #1e7e4a;
}

.bg-dark-purple {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.bg-light-gray {
  background-color: #e2e2e8;
  color: #322685;
}

/* Skill Tags */
.skill-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 15px;
  border-radius: 8px;
  margin: 5px;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.11);
}

.skill-highlight {
  border-color: #f0e68c;
  color: #f0e68c;
}

/* Job List Items */
.job-item {
  background: #e2e2e8;
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
  font-weight: 500;
}

.job-item i {
  color: #4fd18e;
}

/* Bottom Decoration Lines */
.bottom-line {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 30px auto 0;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
}

.check-list i {
  color: #322685;
  margin-right: 12px;
  margin-top: 5px;
}



/*=======================================================================================

course details Road Map css start here

/*=======================================================================================*/

/* Roadmap Container */
.roadmap {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
}

.roadmap .roadmap-step {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  position: relative;
}

/* Number Box Styling */
.roadmap .number-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  margin-bottom: 30px;
  z-index: 2;
}

.roadmap .step-1 .number-box,
.roadmap .step-3 .number-box {
  background-color: var(--light_green);
  color: #2d5a44;
}

.roadmap .step-2 .number-box,
.roadmap .step-4 .number-box {
  background-color: var(--light_blue);
  color: #3f3d56;
}

/* Dotted Connecting Lines */
.roadmap .roadmap-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 10px;
  width: 100%;
  border-bottom: 2px dotted #ccc;
  z-index: 1;
}

/* Card Styling */
.roadmap .card {
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 25px;
  height: 200px;
  text-align: left;
  transition: transform 0.3s ease;
}

.roadmap .step-1 .card,
.roadmap .step-3 .card {
  border-color: var(--green);
}

.roadmap .step-2 .card,
.roadmap .step-4 .card {
  border-color: var(--blue);
}

.roadmap .card i {
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: block;
}

.roadmap .step-1 i,
.roadmap .step-3 i {
  color: var(--green);
}

.roadmap .step-2 i,
.roadmap .step-4 i {
  color: var(--blue);
}

.roadmap .card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.roadmap .card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

.graph {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--white);
  z-index: 1;
}



/*=======================================================================================

course details Become Careers css start here

/*=======================================================================================*/

.Become_Careers {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.Become_Careers span {
  font-size: 8.5rem;
  color: var(--black);
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.04;
}

.Become_Careers h4 {
  font-size: 2.75rem;
  color: var(--black);
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.Training_Infrastructure_Partnerships h4 {
  top: 37%;
}

/*=======================================================================================

course details Contact us css start here

/*=======================================================================================*/


.Contact_us {
  background: var(--light_grey);
}

.Contact_us .info-box {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  height: 100%;
  margin-top: 30px;
}

.Contact_us .icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #46b788;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.Contact_us .icon-circle i {
  font-size: 2rem;
}

.Contact_us .info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.Contact_us .info-text,
.Contact_us .info-text a {
  font-size: 1.125rem;
  color: var(--black);
}

.contact_deatils {
  background: url(../images/bg-pettern-2.png) no-repeat;
  background-size: cover;
}

.map {
  width: 100%;
  height: 475px;
  border-radius: 40px;
  border: 1px solid rgb(0 0 0 / 20%);
  overflow: hidden;
}

.contact_form input,
.contact_form select {
  width: 100%;
  height: 50px;
  padding: 5px 15px;
  font-size: 1rem;
  color: var(--black);
  border-radius: 10px;
  border: 1px solid rgb(0 0 0 / 20%);
  background: var(--light_grey);
  margin-bottom: 15px;
}

.contact_form textarea {
  width: 100%;
  height: 130px;
  padding: 5px 15px;
  font-size: 1rem;
  color: var(--black);
  border-radius: 10px;
  border: 1px solid rgb(0 0 0 / 20%);
  background: var(--light_grey);
  margin-bottom: 15px;
  resize: none;
}

.List_type_1 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.List_type_1 li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  width: calc(50% - 10px);
}

.List_type_1 li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: var(--green);
  position: absolute;
  top: 0;
  left: 0;
}


/*=======================================================================================

About us css start here

/*=======================================================================================*/

.about_send_inquiry {
  position: relative;
}

.about_desc {
  border-left: 2px dashed #ccc;
  padding: 50px;
}

.about_info .pill,
.skill_info .pill {
  margin-bottom: 25px;
  transform: rotate(-3deg);
}

.about_info .comnbtn {
  position: relative;
  padding: 7px 70px 7px 30px;
  overflow: visible;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.about_info .comnbtn img {
  max-width: 45px;
  position: absolute;
  top: 15px;
  right: 10px;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.about_info .comnbtn::after {
  top: 0;
  border-radius: 50px;
  opacity: 0;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.about_info .comnbtn:hover::after {
  opacity: 1;
}

.about_info .comnbtn:hover img {
  transform: scale(0.8);
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}


/*=======================================================================================

vision_mission Section

/*=======================================================================================*/

.vision_mission {
  background: url("../images/pattern-bg.png") no-repeat;
  background-size: cover;
}


/*=======================================================================================

Sharpening Your Skills Is Our Passion Section

/*=======================================================================================*/

.your_Skill {
  background: transparent linear-gradient(0deg, rgb(49 35 147 / 6%) 0%, rgb(49 35 147 / 0%) 100%) 0% 0% no-repeat;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.skill_info {
  padding-right: 80px;
}

.skill_text {
  border: 1px solid #DBDBDB;
  border-radius: 20px;
  padding: 35px;
  background: var(--white);
}

.skill_text p {
  font-size: 1.125rem;
  margin: 0;
}

.skill_text span {
  font-size: 1.25rem;
  color: var(--blue);
  margin-top: -55px;
  display: block;
  margin-bottom: 10px;
}

.skill_text span i {
  font-size: 4rem;
  margin-right: 10px;
  color: var(--blue);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bento-item {
  border-radius: 30px;
  overflow: hidden;
  height: 260px;
}

.bento-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f1f0ff;
  color: var(--brand-indigo);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.bento-cta.green {
  background: transparent linear-gradient(180deg, #48CD9633 0%, #48CD9600 100%) 0% 0% no-repeat padding-box;
  color: var(--brand-green);
}

.bento-item {
  border-radius: 30px;
  overflow: hidden;
  margin: 15px 0;
}


.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-cta span {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Bedjana";
  color: var(--blue);
}


/*=======================================================================================

What We Provide Section

/*=======================================================================================*/

.what_we_provide {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: transparent linear-gradient(248deg, #1f2740 0%, #312393 100%) 0% 0% no-repeat;
}

.what_we_provide .provide-list {
  margin: 0;
  padding: 0;
  padding-bottom: 70px;
}

.what_we_provide .provide-item {
  padding: 20px 0;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
  display: flex;
}

.what_we_provide .provide-item:first-child {
  padding-top: 0;
}

.what_we_provide .provide-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.what_we_provide .provide-check-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.what_we_provide .provide-image-wrapper {
  position: relative;
  z-index: 1;
}

.what_we_provide .provide-main-img {
  max-width: 100%;
  margin-bottom: -10px;
}

.what_we_provide .provide-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--yellow);

}

.what_we_provide .provide-text {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0;
}



/*=======================================================================================

Timeline Specific Css Start

/*=======================================================================================*/

.Time_Line_Section {
  background: linear-gradient(0deg, rgba(49, 35, 147, 0.06) 0%, rgba(49, 35, 147, 0) 100%) 0% 0% no-repeat transparent;
}

.premium-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  overflow-x: hidden;
}

.premium-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 68%;
  background: linear-gradient(180deg, var(--green) 0%, var(--blue) 50%, var(--yellow) 100%);
  border-radius: 4px;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 6px rgba(49, 35, 147, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-step:hover .timeline-marker {
  background: var(--yellow);
  border-color: var(--white);
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 0 20px rgba(234, 215, 90, 0.6);
}

.timeline-content-wrapper {
  width: 45%;
  perspective: 1000px;
}

.timeline-empty {
  width: 45%;
  display: flex;
  align-items: center;
}

.timeline-step:nth-child(odd) .timeline-empty {
  justify-content: flex-start;
  padding-left: 40px;
}

.timeline-step:nth-child(even) .timeline-empty {
  justify-content: flex-end;
  padding-right: 40px;
}

.timeline-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border-top: 5px solid var(--green);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
  z-index: 5;
}

.timeline-step:nth-child(2) .timeline-card {
  border-top-color: var(--blue);
}

.timeline-step:nth-child(3) .timeline-card {
  border-top-color: var(--yellow);
}

.timeline-step:nth-child(4) .timeline-card {
  border-top-color: var(--green);
}

.timeline-step:last-child .timeline-empty {
  justify-content: center;
  padding-right: 0px;
  margin-top: 50px;
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(49, 35, 147, 0.12);
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-width: 15px;
  border-style: solid;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.05));
}

.timeline-step:nth-child(odd) .timeline-card::before {
  right: -29px;
  border-color: transparent transparent transparent var(--white);
}

.timeline-step:nth-child(even) .timeline-card::before {
  left: -29px;
  border-color: transparent var(--white) transparent transparent;
}

.timeline-date {
  font-family: 'Bedjana';
  font-size: 3.5rem;
  color: var(--blue);
  margin: 0;
  transition: transform 0.4s ease;
  line-height: 1;
}

.timeline-step:nth-child(2) .timeline-date {
  color: var(--green);
}

.timeline-step:nth-child(3) .timeline-date {
  color: var(--yellow);
}

.timeline-step:nth-child(4) .timeline-date {
  color: var(--green);
}

.timeline-step:hover .timeline-date {
  transform: scale(1.1);
}

.timeline-title {
  font-size: 1.75rem;
  color: var(--blue);
  margin-bottom: 15px;
  font-family: "Bedjana";
}

.timeline-body li::before {
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  left: 0;
  color: var(--green);
}

.timeline-body li {
  color: var(--black);
  font-size: 1.1rem;
  text-align: left;
  position: relative;
  padding-left: 30px;
  margin: 5px 0;
}

.timeline-tags .tag {
  display: inline-block;
  background: var(--light_blue);
  color: var(--blue);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s;
  border: 1px solid rgba(49, 35, 147, 0.1);
}

.timeline-tags .tag:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(49, 35, 147, 0.2);
}

.qr_code {
  text-align: center;
  margin-top: 15px;
}

.qr_code p {
  margin-bottom: 5px;
}

.qr_code img {
  max-width: 120px;
}

ul.pagination {
  justify-content: center;
  margin-top: 50px;
}

.page-link {
  color: var(--blue);
}

.active>.page-link,
.page-link.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/*================ Blog Details Css Start Here =======================*/
.blog_details h1,
.blog_details h2,
.blog_details h3,
.blog_details h4,
.blog_details h5,
.blog_details h6 {
  text-transform: capitalize;
  margin: 25px 0 15px;
  color: var(--blue);
  font-family: "Bedjana";
}

.blog_details .h1,
.blog_details h1 {
  font-size: 3.5rem;
}

.blog_details .h2,
.blog_details h2 {
  font-size: 2.5rem;
}

.blog_details .h3,
.blog_details h3 {
  font-size: 2rem;
}

.blog_details .h4,
.blog_details h4 {
  font-size: 1.75rem;
}

.blog-header {
  background: url('https://picsum.photos/1200/400') center/cover no-repeat;
  height: 350px;
  position: relative;
  color: #fff;
}

.blog-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.blog-header-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.blog-content img {
  border-radius: 10px;
}

.sidebar-card {
  margin-bottom: 20px;
}

.sidebar-card h6 {
  font-size: 1.5rem;
  font-family: "Bedjana";
  color: var(--blue);
}

.sidebar-card li {
  border-bottom: 1px dashed;
}

.sidebar-card li:last-child {
  border-bottom: none;
}

.sidebar-card li a {
  font-size: 1rem;
  color: var(--blue);
  display: block;
  padding: 10px 0;
}

.tag {
  display: inline-block;
  background: #e9ecef;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 5px;
  font-size: 13px;
}

.author-box img {
  width: 80px;
  border-radius: 50%;
}

blockquote {
  background: var(--light_green);
  padding: 20px;
  font-size: 1.25rem;
  border-left: 5px solid var(--blue);
  border-radius: 10px;
}

.custom-list {
  padding-left: 0;
  list-style: none;
  margin: 25px 0;
}

.custom-list li {
  font-size: 1.125rem;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.style1 {
  margin: 25px 0;
}

.style1 li {
  position: relative;
  font-size: 1.125rem;
  padding-left: 20px;
  margin: 10px 0;
}

.style1 li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: -5px;
  left: 0;
  color: var(--green);
  font-size: 1.25rem;
}

.blog_search {
  position: relative;
}

.blog_search input {
  width: 100%;
  height: 50px;
  padding: 5px 15px;
  font-size: 1rem;
  color: var(--black);
  border-radius: 10px;
  border: 1px solid rgb(0 0 0 / 20%);
  background: var(--light_grey);
  margin-bottom: 15px;
  padding-right: 50px;
}

.blog_search input:focus {
  box-shadow: none;

}

.blog_search button {
  font-size: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  border: none;
  background: var(--blue);
  color: var(--white);
  border-radius: 0 10px 10px 0;
}

.blog-content .date {
  margin-bottom: 20px;
}

.blog-content .date a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: capitalize;
  margin-right: 15px;
}

.blog-content .date a i {
  margin-right: 3px;
}

.list_number {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: line;
}

.list_number>li {
  font-size: 1.125rem;
  position: relative;
  margin: 12px 0;
  padding-left: 35px;
}

.list_number>li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--green);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  counter-increment: line;
  content: counter(line);
}

/*======================= blog recentpost  =======================*/

.blog_recentpost li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--light_blue);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.blog_recentpost li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog_recentpost li .post_img {
  width: 30%;
}

.blog_recentpost li img {
  border-radius: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 80px;
  object-fit: cover;
  object-position: center;
}

.blog_recentpost li .post_text {
  width: 70%;
  padding-left: 20px;
}

.blog_recentpost li a {
  font-size: 15px;
  text-transform: capitalize;
  color: var(--blue);
  font-weight: 600;
  padding: 0;
}

.blog_recentpost li small {
  font-size: 14px;
  color: var(--black);
  display: block;
  margin-top: 3px;
  font-weight: 600;
}


.we_provide {
  background: transparent linear-gradient(0deg, rgb(49 35 147 / 6%) 0%, rgb(49 35 147 / 0%) 100%) 0% 0% no-repeat;
  text-align: center;
}

.provide_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.provide_list li {
  width: 25%;
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 600;
  background: var(--white);
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.provide_list li:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.provide_list li .provide_icon {
  display: table;
  margin: 0 auto 15px;
  background: var(--blue);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provide_list li img {
  max-height: 60px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7460%) hue-rotate(42deg) brightness(106%) contrast(105%);
}


/*================================== Review section css start here ==================================*/

.Review_section {
  background: url(../images/review-bg.png) #F4F4F9 no-repeat;
  background-size: 100% 100%;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}

.review_heading {
  margin-bottom: 50px;
  position: relative;
  padding-right: 220px;
}

.review_heading .comntitle {
  margin-bottom: 0;
  text-align: left;
}

.review_heading .pill {
  transform: rotate(-3deg);
  margin-bottom: 10px;
}

.Review_Btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid #4dcc99;
  padding: 0;
  background: none;
}

.Review_Btn span {
  background: var(--light_grey);
  border-radius: 50px;
  padding: 12px 15px;
}

.Review_Btn img {
  margin-left: 3px;
  margin-right: -3px;
}

.filter-box {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 40px;
  border: 2px solid #1ed39d;
  background: #fff;
}

.filter-box button {
  border: none;
  background: #fff;
  padding: 12px 24px;
  font-size: 18px;
}

.filter-box .icon-btn {
  background: #1ed39d;
  color: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.col-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-review {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.video-card {
  position: relative;
}

.video-card img {
  width: 100%;
  display: block;
}

/* .video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .1));
} */

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #3026a8;
}

.video-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  color: #fff;
}

.video-name {
  font-size: 17px;
  font-weight: 700;
}

.video-date {
  font-size: 14px;
}

.stars {
  color: #f7c948;
  font-size: 18px;
}

.review-content {
  padding: 18px;
}

.review-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-user {
  display: flex;
  gap: 12px;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.review-name {
  color: #3a2fa8;
  font-size: 16px;
  font-weight: 700;
}

.review-box {
  background: #f3f3f3;
  border-radius: 12px;
  padding: 16px;
  color: #444;
  font-size: 15px;
  line-height: 1.65;
}


/*----------------------------*/
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.video-card iframe {
  width: 100%;
  height: 400px;
  display: block;
  /* pointer-events: none; */
}

/* Dark overlay */
/* .video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
} */

/* Bottom content */
.video-meta {
  position: absolute;
  bottom: 15px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  color: #fff;
}

.video-name {
  font-size: 18px;
  font-weight: 700;
}

.video-date {
  font-size: 14px;
}

.stars {
  color: #FFD54F;
}


.Recruitment_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.Main_Benefits {
  text-align: center;
  color: var(--white);
}

.Main_Benefits .comntitle {
  margin-bottom: 10px;
}

.Main_Benefits .list_number {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.Main_Benefits .list_number li {
  width: 25%;
  padding: 60px 30px 30px 30px;
  background: var(--light_green);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 60px;
  color: var(--black);
}

.Main_Benefits .list_number li:before {
  font-size: 2.5rem;
  font-weight: bold;
  left: 0;
  right: 0;
  top: -40px;
  margin: auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Bedjana;
}

.Recruitment_Agency {
  background: transparent linear-gradient(0deg, rgb(49 35 147 / 6%) 0%, rgb(49 35 147 / 0%) 100%) 0% 0% no-repeat;
}

#recent_placements_job .owl-nav {
  text-align: center;
  margin-top: 20px;
}

#recent_placements_job .owl-nav button {
  background: var(--blue);
  color: var(--white);
  border-radius: 50px;
  font-size: 24px;
  font-weight: bold;
  margin: 0 5px;
  width: 40px;
  height: 40px;
}

.placements_box {
  padding: 30px;
  background: var(--light_blue);
  border-radius: 10px;
  text-align: center;
}

.placements_box>img {
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto 10px;
  /* border: 2px solid var(--blue); */
}

.placements_box span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--blue);
  margin: 5px 0;
  display: block;
}

.placements_box h3 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.place_comany {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  padding-top: 5px;
  margin-top: 15px;
}

.place_comany img {
  max-width: 150px;
  margin: auto;
}


.flip-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.flip-box {
  width: 20%;
  height: 220px;
  perspective: 1000px;
}

.flip-box-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.flip-box::before {
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: var(--blue);
  position: absolute;
  right: -55px;
  font-size: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.flip-box:last-child::before {
  display: none;
}


.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.flip-box-back {
  text-align: left;
}

.flip-box-back p {
  font-size: 1rem;
  margin-bottom: 5px;
}

.flip-box-front {
  background: var(--light_blue);
  color: var(--blue);
}

.flip-box-front .icon {
  width: 80px;
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 20px;
}

.flip-box-front img {
  padding: 15px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(59%) saturate(412%) hue-rotate(103deg) brightness(98%) contrast(86%);
}

.flip-box-front h3 {
  font-size: 1.35rem;
}

.flip-box-back {
  background: var(--green);
  color: var(--white);
  transform: rotateY(180deg);
}


.Performance .stat-value {
  width: 120px;
}

.Project_Training {
  text-align: center;
  color: var(--white);
  border-radius: 30px;
}

/*---------------------------------------------------------------*/
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  position: relative;
  margin-top: 50px;
}

.benefits-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  border-left: 2px dashed rgba(255, 255, 255, 0.35);
}

.benefit-column {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.benefit-icon {
  margin-top: 3px;
  min-width: 22px;
}

.benefit-content {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.benefit-content strong {
  color: #f4d94f;
  font-weight: 700;
}

.Success_Tips .benefits li {
  margin-top: 30px;
  margin-bottom: 0;
}

.Success_Tips .benefits li span {
  color: var(--blue);
  font-weight: 600;
}


.training-row {
  align-items: center;
}

.section-spacing {
  margin-top: 56px;
}

.image-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
  display: block;
}

.training_section .content-box {
  padding-left: 22px;
  max-width: 95%;
  max-height: 100%;
}

.training_section .content-box::after {
  display: none;
}

.Training_Infrastructure .content .comnbtn {
  padding: 7px 30px;
  border: 2px solid var(--green);
}

.Training_Infrastructure .content .comnbtn:hover {
  border: 2px solid var(--yellow);
}

.Types_Of_Training {
  background: transparent linear-gradient(0deg, rgb(49, 35, 147, 0.05) 0%, #31239300 100%) 0% 0% no-repeat padding-box;
  ;
}

.training-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.training-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px 0 0;
}

.training-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  padding: 15px;
  margin: 0;
}

.card-spacing {
  margin-bottom: 30px;
}

#University .owl-nav,
#Testimonials .owl-nav,
#Infrastructure .owl-nav {
  text-align: center;
  margin-top: 30px;
}

#University .owl-nav button,
#Testimonials .owl-nav button,
#Infrastructure .owl-nav button {
  background: var(--green);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 5px;
  font-size: 1.25rem;
}

.University_logo {
  background: var(--white);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;
}

.University_logo img {
  max-height: 150px;
  object-fit: contain;
}

/* .Testimonials {
  background: transparent linear-gradient(0deg, rgb(49, 35, 147, 0.05) 0%, #31239300 100%) 0% 0% no-repeat;
} */

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 10px;
}

/* .testimonial-content {
  background: var(--light_grey);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.testimonial-content p {
  margin: 0;
} */

.author_info .author_name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.author_info span {
  font-size: 1rem;
  color: var(--blue);
  margin: 5px 0;
  display: block;
}

#pills-tab {
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

#pills-tab .nav-link {
  font-size: 1.25rem;
  padding: 7px 30px;
  color: var(--black);
  border: 2px solid var(--green);
  border-radius: 50px;
  display: block;
}

#pills-tab .nav-link.active,
#pills-tab .nav-pills .show>.nav-link {
  color: var(--white);
  background-color: var(--green);
}

.technolgy-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.technolgy-img li {
  width: 22%;
}

.technolgy-img li img {
  width: 100%;
}

.partner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.partner li {
  width: 18%;
  height: 165px;
  padding: 15px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.winner {
  background: url(../images/bg-pettern-1.png) no-repeat;
  background-size: cover;
}

.winner_main_div {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 50px auto 0;
}

.winner_main_div li:nth-child(odd) {
  margin-top: 72px;
}

.winner_main_div li:nth-child(2) {
  width: 32%;
}

.winner_box {
  height: 100%;
  background: var(--light_grey);
  padding: 15px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.winner_box .runnerup {
  font-size: 1rem;
  color: var(--blue);
  display: inline-block;
  margin-left: 30px;
}


.winner_std {
  width: 100%;
  background: var(--blue_gradient);
}

.winner_box h3 {
  font-size: 1.25rem;
  color: var(--blue);
  font-weight: 600;
  margin: 20px 0 7px 0;
}

.winner_box strong {
  display: flex;
  font-size: 1rem;
  gap: 5px;
  align-items: center;
  color: var(--black);
}

.winner_box:after {
  content: "";
  width: 50px;
  height: 70px;
  position: absolute;
  left: -7px;
  top: -6px;
  background: url(../images/aword1.png) no-repeat;
  background-size: contain;
}

.winner_main_div li:nth-child(3) .winner_box:after {
  background: url(../images/aword2.png) no-repeat;
  background-size: contain;
}

.winner_main_div li:nth-child(2) .winner_box:before {
  content: "";
  width: 190px;
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -21px;
  background: url(../images/winner.png) no-repeat;
  background-size: contain;
}

.winner_main_div li:nth-child(2) .winner_box:after {
  display: none;
}

.winner_main_div li:nth-child(2) .winner_box .winner_std img {
  height: 100%;
  object-fit: cover;
}

.winner_std img {
  width: 100%;
  max-height: auto;
}

.Event_Gallery .University_logo {
  padding: 5px;
}

.Event_Gallery .University_logo img {
  width: 100%;
  max-height: none;
  border-radius: 10px;
}

.Infrastructure_img img {
  border-radius: 10px;
}

/*--------------------*/
.Blog_category_lists_slider {
  position: relative;
  margin-bottom: 50px;
}

.Blog_category_lists_slider #catgory-slider .swiper-slide {
  width: auto;
}

.Blog_category_lists_slider .category-button {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--blue);
  background-color: #fff;
  color: var(--blue);
  padding: 5px 20px;
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

.Blog_category_lists_slider .category-button.active {
  background-color: var(--green);
  border: 2px solid var(--green);
  color: #fff;
}

.Blog_category_lists_slider .data-text {
  display: none;
}

.Blog_category_lists_slider .data-text.active {
  display: block;
}

.Blog_category_lists_slider .data-text h6 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 8px;
  font-weight: 700;
}

.Blog_category_lists_slider .data-text p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.Blog_category_lists_slider .slider-button {
  width: 25px;
  height: 25px;
  background-color: var(--green);
  box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  top: 5px;
  z-index: 1;
  cursor: pointer;
}

.Blog_category_lists_slider .slider-button.slider-prev {
  left: -30px;
}

.Blog_category_lists_slider .slider-button.slider-next {
  right: -30px;
}

.Blog_category_lists_slider .slider-button.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.Blog_category_lists_slider .box {
  padding: 30px;
  margin-top: 20px;
  background-color: #d9eefd;
  border-radius: 6px;
  transition: 0.3s;
  height: 100%;
}

.Blog_category_lists_slider .box i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #37a7f1;
}


/*====================================================================================*/

.Contest_Details {
  /* background: url("../images/pattern-bg.png") no-repeat var(--light_blue); */
  background: url("../images/pattern-bg.png") no-repeat var(--light_green);
  background-size: cover;
}

/* .Contest_Details .comntitle {
  color: var(--white);
} */
.Contest_Details .left {
  width: 40%;
  float: right;
}

.Contest_Details h5 {
  font-size: 24px;
  color: var(--blue);
  /* color: var(--white); */
  margin-bottom: 20px;
}

.Registra {
  text-align: center;
  margin-top: 80px;
  position: relative;
}

.Registra .date small {
  color: var(--white);
  border-left: 1px solid;
  padding-left: 15px;
  margin-left: 15px;
}

.Registra .date small:first-child {
  border: none;
  padding: 0;
  margin: 0;
  color: var(--blue);
}

.Registra .date small strong {
  display: block;
}

.Registra .date small {
  color: var(--white);
  border-left: 1px solid;
  padding-left: 15px;
  margin-left: 15px;
}

.Tech {
  text-align: center;
  margin-top: 80px;
  float: right;
}

.Tech img {
  max-width: 250px;
}

.Register_Now {
  position: relative;
  align-self: end;
}

.awards span {
  font-size: 20px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 1px;
}

.Registra .date {
  display: flex;
  font-size: 22px;
}

.Registra .date small {
  color: var(--black);
  border-left: 1px solid;
  padding-left: 15px;
  margin-left: 15px;
}

.Certificate {
  margin-top: 50px;
}



.Certificate li {
  font-size: 1.125rem;
  color: var(--blue);
}

.Venue {
  margin-top: 80px;
  color: var(--black);
  position: relative;
}

.Venue address {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.location,
.extra-info {
  width: 30%;
}

.location {
  width: 60px;
  height: 60px;
  position: absolute;
  left: -60px;
  top: 25px;
}

.awards,
.Certificate,
.Venue {
  padding-left: 50px;
}

.awards .cash {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -30px;
  left: -80px;
}