@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2069FC;
}

ul {
  padding: 0px;
  margin: 0px;
}


body {
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  background-color: black;
}

html {

  background-color: black;
}

a {
  text-decoration: none;

}

.topbar {
  padding: 10px 0px;
  background: #2069FC;
}

.fa-phone {
  transform: rotate(90deg);
}

.topbar ul {
  justify-content: end;
  margin-bottom: 0px;
  display: flex;
  gap: 15px;
  padding: 0px;
  line-height: normal;
  color: #fff;
}

.topbar ul li i {
  margin-right: 10px;
}

.topbar ul li a {
  color: #fff;
}

.topbar ul li {
  list-style: none;
}

.logo img {
  max-width: 200px;
}


select.form-control{ position:relative;}

select.form-control:after{ 
    
        content: "\f078"; /* Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

/* animation menu hamburger */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 10px;
  background-color: #2069fc;

}

@media (max-width: 1023px) {
  .menu-btn {
    display: flex;
  }
}

.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #fff;
  transition: all 0.4s ease-in-out;
}

.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.menu-btn .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.menu-btn .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.menu-btn.open .menu-btn__lines {
  transform: translateX(50%);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #fff;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #fff;
}

.expand-btn:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: " \25BE";
  opacity: 0.75;
  transform: translateY(-50%) rotate(0);
  transition: 0.25s;
}

.expand-btn.open {
  color: #ff5722;
}

.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

/* navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  border-bottom: 1px solid #10347E;
}

@media (max-width: 1023px) {
  .navbar {
    padding: 10px 0px;
  }
}

.navbar.sticky {
  position: sticky;
  z-index: 999;
  top: 0;
}

.navbar .logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar .menu-items {
  display: flex;
  align-items: center;
  position: relative;
}

.navbar .menu-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar {
  width: 6px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

@media (max-width: 1023px) {
  .navbar .menu-items {
    scrollbar-gutter: stable;
    position: fixed;
    top: 0px;
    right: 0px;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 130px;
    padding-bottom: 100px;
    padding-right: 10px;
    background: #000;
    overflow-y: auto;
          transform: translateX(250vh);
    transition: 0.3s ease-out;
    left: auto;
  }

  .navbar .menu-items.open {
    transform: translateY(0);
  }
}

.navbar .menu-items>li>.menu-item {
  padding: 1.5rem 2rem;
}

@media (max-width: 1023px) {
  .navbar .menu-items>li>.menu-item {
    padding: 1rem 2rem;
  }
}

.navbar .menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  .navbar .menu-items li a {
    padding: 10px 1rem;
  }
}

.navbar .dropdown {
  position: relative;
}

@media (min-width: 1024px) {
  .navbar .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .navbar .dropdown:hover>.expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}

@media (min-width: 1024px) {

  .navbar .dropdown .dropdown-right .expand-btn:after,
  .navbar .dropdown .dropdown-left .expand-btn:after {
    right: 0.625rem;
  }
}

@media (min-width: 1024px) {
  .navbar .dropdown-menu li a:hover {
    color: #a5d5ff;
  }

  .navbar .dropdown-menu li a {
    color: #fff;
  }

  .navbar .dropdown-menu {
    position: absolute;
    top: 65px;
    right: 0;
    display: block;
    left: 0;
    width: 190px;
    padding: 5px 0;
    background: #004a89;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    /* box-shadow: 0 20px 50px 0 #000; */
    visibility: hidden;
    transition: all 0.4s ease;
  }
}

@media (max-width: 1023px) {
  .navbar .dropdown-menu {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
    padding-left: 1rem;
    overflow: hidden;
    margin: 0px 2px;
  }
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

@media (max-width: 1023px) {
  .navbar .menu-right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}

.navbar .menu-left {
  top: 0;
  left: -100%;
}

@media (max-width: 1023px) {
  .navbar .menu-left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 16px;
  transition: 0.25s;
  font-weight: 600;
}

.navbar .menu-item:hover {
  color: #2069fc;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
}

@media (min-width: 1024px) {
  .navbar .dropdownMega {
    position: inherit !important;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 255px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu {
    position: relative;
    display: none;
    padding-left: 0;
  }
}

.navbar .mega-menu .content {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: #517db7;
  /* -webkit-box-shadow: 0 20px 50px 0 #000;
  box-shadow: 0 20px 50px 0 #000; */
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content {
    grid-template-columns: auto;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu .content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content .col {
    padding: 0;
    width: 100%;
  }
}

.navbar .category .content .col .img-wrapper {
  margin: 1rem 0;
}

.navbar .blog .content {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 1024px) {
  .navbar .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.navbar .blog .content .col .img-wrapper {
  margin-bottom: 1rem;
}

.navbar .blog .content .col .menu-title {
  font-weight: normal;
}

.navbar .blog .content .col .menu-title a {
  transition: 0.25s;
}

.navbar .blog .content .col .menu-title a:hover {
  color: #ff5722;
}

.navbar .content .col {
  display: flex;
  flex-direction: column;
}

.navbar .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.navbar .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.navbar .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.navbar .content .col img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.navbar .content .col .menu-title {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.125rem;
  border-left: 2px solid #ff5722;
  padding-left: 0.625rem;
}

@media (max-width: 1023px) {
  .navbar .content .col .menu-title {
    font-size: 0.875rem;
  }
}

.navbar .content .col p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.813rem;
  line-height: 1.6rem;
  color: #fff;
}

.navbar .content .col .mega-links {
  padding-left: 1rem;
  border-left: 1px solid #ffffff42;
}

@media (max-width: 1023px) {
  .navbar .content .col .mega-links {
    border-left: 0;
    padding-left: 0;
  }

  .navbar .content .col .mega-links li {
    margin: 0;
  }

  .navbar .content .col .mega-links li a {
    padding: 0 0.5rem;
  }
}

.navbar .content .col .mega-links li {
  margin: 1rem 0;
}

.navbar .content .col .mega-links li a {
  padding: 0;
}

@media (max-width: 1023px) {
  .overflow {
    overflow: hidden;
  }
}

@media (max-width: 1023px) {
  .overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(23 27 39);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay.overlay--active {
    opacity: 1;
    visibility: visible;
  }
}










.global_btn {
  background: #3772ff;
  gap: 7px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: .6s
}

.global_btn:before {
  content: "";
  top: 0;
  transform: translateX(100%);
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  animation: 2s infinite slide;
  background: linear-gradient(to right, rgba(64, 235, 241, 0) 0, rgba(255, 254, 253, 56%) 50%, rgba(255, 254, 253, 28%) 99%, rgba(64, 235, 241, 0) 100%)
}

.global_btn:hover {
  background-color: #0448e9;
  color: var(--color-white);
  transition: .6s;
  transform: scale(1.05)
}



@keyframes slide {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}






.hero_sec{
overflow: hidden;
  height: 90vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: url(../images/bg-hero.png);
  background-size: cover;
      background-position: center;
}


.new_alert_bedge{   font-family: "Urbanist", sans-serif;display: inline-flex; align-items: center; justify-content: center; border: 1px solid #2069FC; padding: 2px 10px; border-radius: 15px; background-color: #06103a85; color: var(--primary-color); font-weight:600;font-size:18px; } 

.new_alert_bedge .spinner-grow{

  width: 9px;
  height: 9px;
}

.hero_sec h1 span{ display: block;    font-size: clamp(22px, 2.1vw, 36px);
    margin-top: 12px;
    font-weight: 500;}


.hero_sec h1 {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 42px);
  margin-top: 20px;
    font-family: "Urbanist", sans-serif;
}


.hero_sec p {
  font-size: clamp(14px, 1.1vw, 18px);
}

.line_btn.global_btn{

  background-color: transparent;
  border: 1px solid var(--primary-color);

}

.hero_outer{

  position: relative;

} 

.shape_animated{

  position: absolute;
  right: -20px;
  top: 0px;

}


.section_tools-agentic-ai {
    background-color: #000;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.page-padding_agentic-ai.is-tools {
    padding-top: 1.5rem;
    padding-bottom: 0;
}

.page-padding_agentic-ai {
    width: 100%;
    height: 100%;
    padding-top: 9.75rem;
}

.site-wrapper.is-nst-home {
    max-width: 77rem;
}

.site-wrapper {
    width: 100%;
    max-width: 77rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.tools_container-agentic-ai {
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.75rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.tools_content-wrapper-agentic-ai {
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.75rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.tools_heading-agentic-ai {
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}


.tools_bottom-border-agentic-ai {
    pointer-events: none;
    background-image: linear-gradient(225deg, #000, #fff 50%, #000);
    width: 30rem;
    height: 1px;
}

.tools_tools-container-agentic-ai {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 1.75rem;
}

.tools_tools-top-wrapper-agentic-ai {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.tools_top-tools-agentic-ai {
    pointer-events: none;
    flex: none;
    max-width: none;
    height: 2.5rem;
}

.tools_tools-bottom-wrapper-agentic-ai {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    pointer-events: none;
    flex-flow: row-reverse;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.5rem;
    display: flex;
}



.scrollable-tabs-container {
  font-family: "Roboto", sans-serif;
  background: #000;
  max-width: 100%;
    margin: 40px auto 25px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.scrollable-tabs-container svg {
  width: 24px;
  height: 24px;
  padding: 4px;
  cursor: pointer;
  color: #000;
  border-radius: 50%;
  pointer-events: auto;
  background-color: white;
}

.scrollable-tabs-container ul {
  display: flex;
  gap: 16px;
  padding: 12px 24px;
  margin: 0;
  list-style: none;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.scrollable-tabs-container ul.dragging a {
  pointer-events: none;
}

.scrollable-tabs-container ul.dragging {
  scroll-behavior: auto;
}

.scrollable-tabs-container ul::-webkit-scrollbar {
  display: none;
}

.scrollable-tabs-container a {
    color: #000;
    text-decoration: none;
    background: white;
    padding: 8px 30px;
    display: inline-block;
    border-radius: 36px;
    user-select: none;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
}

.scrollable-tabs-container a.active {
  background: var(--primary-color);
  color: #fff;
}

.scrollable-tabs-container .right-arrow,
.scrollable-tabs-container .left-arrow {
  position: absolute;
  height: 100%;
  width: 100px;
  top: 0;
  display: none;
  align-items: center;
  padding: 0 10px;
  pointer-events: none;
}

.scrollable-tabs-container .right-arrow.active,
.scrollable-tabs-container .left-arrow.active {
  display: flex;
}

.scrollable-tabs-container .right-arrow {
  right: 0;
  background: linear-gradient(to left, #000 50%, transparent);
  justify-content: flex-end;
}

.scrollable-tabs-container .left-arrow {
  background: linear-gradient(to right, #000 50%, transparent);
}

.scrollable-tabs-container svg:hover {
  background: var(--primary-color);
  color: white;
}


.global_heading h2 {
  color: var(--primary-color);
  font-size: clamp(18px, 0.9vw, 18px);
}

.global_heading h3 {
  color: white;
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 42px);
}


.our_courses{ padding:0px 0 60px;}


.course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.course-img {
  width: 100%;
  height: 233px;
  object-fit: cover;
  border-radius: 10px;
}

/* Content */
.course-content {
  padding: 18px;
}

.course-title {
font-size: clamp(18px, 1.1vw, 18px);
    font-weight: 600;
    margin-bottom: 10px;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating */
.course-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
  justify-content: space-between;
}

.rating_course i{ color: #f4b400!important;}

.course-meta i {
  color: var(--primary-color);
}



/* Features */
.course-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

.course-features span {
  display: flex;
  align-items: start;
  gap: 0px;
  color: black;
}

.course-features i {
  color: #2069FC;
}

/* Buttons */
.btn-outline {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9f9;
  cursor: pointer;
  margin-bottom: 10px;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #2069FC;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.course-card .line_btn {

  color: black;
  border-color: #CECECE;
}

.course_banner_img{

  padding: 18px 18px 0; 

}


.our_courses .owl-nav .owl-prev{

  width: 38px;
  height: 38px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: white;
    top: 50%;
  left: 0px;
  transform: translate(-50%, -50%);
  position: absolute;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.our_courses .owl-nav .owl-next{

  width: 38px;
  height: 38px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: white;
    top: 50%;
  right: 0px;
  transform: translate(50%, -50%);
  position: absolute;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.why_choose_sec {
  background: #000;
}

.feature-card {
  background: #131519;
  border-radius: 10px;
  transition: 0.3s;
  padding: 30px!important;
}

.spotlight-box img{     aspect-ratio: 1 / 1; object-fit: cover;     object-position: top;}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  color: #2069FC;
}

.spotlight-box img {
  border-radius: 10px;
}

.linkedin-icon {
  width: 40px;
  height: 40px;
  background: #2069FC;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.feature-card p{ color: #979595; font-size: 16px;}

.feature-card h4{font-weight: 600;}


.custom-acc {
  background: black;
  border: none;
  border-bottom: 1px solid #3D3E41;
  border-radius: 0px!important;
  padding: 15px;
}

.placement_sec .accordion-button::after {
  filter: invert(1);
}

.placement_sec .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.placement_sec .accordion-button {
  font-size: 20px;
  padding: 20px 0;
}

.placement_sec .accordion-body {
  background: #131519;
  border-radius: 15px;
  margin-bottom: 20px;
}

.placement_sec .accordion-body img{

    aspect-ratio: 1 / 0.7;
    object-fit: cover;

}

.tags span {
  margin-right: 10px;
  color: #9F9F9F;
  font-size: 16px;
}


.placement_sec .custom-acc.active .accordion-button i{ display: none;}

.custom-acc.active{

  background-color: #131519;
  border-radius: 10px!important;
  border-bottom: none!important;
}

.accordion-button:focus{ box-shadow: none!important;}

.placement_sec .accordion-button::after {
  display: none;
}

.acc-icon {
  transition: 0.3s;
  font-size: 16px;
}

/* when open */
.placement_sec .accordion-button:not(.collapsed) .acc-icon {
  transform: rotate(90deg);
  color: #2069FC;
}




.course-banner {
  overflow: hidden;
  border-radius: 20px;
}

.course-banner img {
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badges */
.badge-yellow {
  background: #ffd400;
  color: #000;
  padding: 5px 10px;
  font-weight: 600;
}

.badge-red {
  background: red;
  color: #fff;
  padding: 5px 10px;
  font-weight: 600;
}

/* Buttons spacing */
.course-content .btn {
  border-radius: 10px;
}


.top_tier_courses{    padding: 20px 0 60px;}


p{ font-size: 16px;}

.slide_course{padding: 20px 0; background-color: #131519; border-radius: 15px; padding: 15px;}

.course-content i{ color: var(--primary-color); font-size: 14px; width: 20px; }

.top_tier_courses .owl-nav .owl-prev {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: white;
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
    position: absolute;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}



.top_tier_courses .owl-nav .owl-next {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: white;
    top: 50%;
    right: 0px;
    transform: translate(50%, -50%);
    position: absolute;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.top_tier_courses .line_btn{ background-color: white; color: black;}
.owl-carousel .item {
    height: 100%;
}


/* Card */
.team-card {
    background: #131519;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    height:100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Image */
.team-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Content */
.team-content {
    padding: 20px;

}

.team-name {
  font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 600;
    margin-bottom: 5px;
}



.team-role {
    font-size: 14px;
    color: #9ca3af;
}

/* LinkedIn Button */
.linkedin-btn {
    position: absolute;
     top: 10px;
    right: 10px;
    background: #0a66c2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.linkedin-btn:hover {
    background: #004182;
}


.trigger_btn{display: flex;align-items: center; justify-content: end; gap: 10px;}

.trigger_btn button{

  width: 38px;
  height: 38px;
  border-radius: 100%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}



.awards_sec{

  padding: 80px 0;
}

.owl-item.active.center .award-card p{

visibility: visible;
}

.award-card p{ visibility: hidden;}

.award-card {
  background:#131519;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.6s;
  opacity: 0.4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}



/* SIDE CARDS */
.owl-item.active .award-card {
  opacity: 0.6;
}

/* IMAGE */
.award-card img {
  max-width: 100%;
  margin: 20px auto;
}

/* YEAR TEXT */
.year {
  color: #fff;
  font-size: 14px;
}






.award-card img{
  width: 100%;
  height: 450px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.awards_sec .owl-carousel .owl-stage{ display: flex; align-items: center;}








.testi_icons img{

  width: 150px!important;
}



.test_user{ display: flex; gap: 10px;}

.test_user p{margin: 0px; color: var(--primary-color)!important; }

.testimonilas_box p{ color: #979595; line-height: 30px;}

.testimonilas_box { display: flex; gap: 35px; align-items: start;}

.test_user img{

  width: 60px!important;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}

.btn-close{     position: absolute;
    top: 25px;
    right: 15px;
    font-size: 8px;
    z-index: 999;
    border: 1px solid #000;
    border-radius: 100%;
    padding: 4px;}

    .btn-close:focus{ box-shadow: none;} 

.modal-content{ background-color: #E3E8F6;}

.pop_outer{ background-color: white; border-radius: 15px; padding: 15px;}

.pop_outer h3{ font-size: 20px; color: black; font-weight: 600;}

.pop_outer label{ font-size: 14px; color: #818181;}

.pop_outer .form-control{ padding: 9px; border-radius: 10px;}

.pop_outer .form-select{padding: 9px; border-radius: 10px;}

.pop_outer .form-control:focus{ box-shadow: none;}

.pop_outer .form-select:focus{ box-shadow: none;}

.talk_advisor{
  padding: 80px 0;
}

.talk_advisor_inner{ background-color: #131519; padding: 30px 0; border-radius: 15px;}

.talk_advisor_inner img{ width: 80%!important; margin:auto}

.blog-card {
    width: 100%;
   border-radius: 5px;
    overflow: hidden;
    background: #11151c;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.4s;
    height:100%;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2e7df6;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

/* CONTENT */
.blog-content {
    padding: 18px;
}

.blog-content p{
    
      display: -webkit-box;
  -webkit-line-clamp: 2; /* kitni line dikhani hai */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card:hover .blog-title{ color:var(--primary-color);}

.blog-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-desc {
    color: #979595;
    font-size: 14px;
    line-height: 1.6;
}

.blog-img{

  padding: 18px 18px 0;
}



.contact_form{

  padding: 80px 0;
}

.contact_form ul li i{ color: var(--primary-color);}

.contact_form ul li{

  list-style: none;
  padding: 10px 0;
}


.contact_form .form-control::placeholder{

  color: #525252;
}

.contact_form .form-control{
padding: 10px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #525252;
  border-radius: 0px;
  color: white;
}

.contact_form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 20 12' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L10 10L18 2' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 14px;
    padding-right: 20px;
    cursor: pointer;
}

/* OPTION (dropdown list) */
.contact_form select.form-control option {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px;
}

.contact_form .form-control:focus{ box-shadow: none; border-bottom: 1px solid var(--primary-color);}


footer{

  background-color: #080808;
  padding: 50px 0;
  border-top: 1px solid #525252;
}

footer h6{font-size: 20px ; font-weight: 600;}

footer ul li{

  list-style: none;
  margin: 20px 0;
  color: #A4A4A4;
  font-size: 16px;
}

footer ul li a{
color: #A4A4A4;
  
}

.copy_right{ background-color: #121212;}

.copy_right p{ margin: 0px;}
.social_icons li a{ color: #A4A4A4}
.social_icons li{ list-style: none; color: #A4A4A4; font-size: 22px;}

.social_icons{ display: flex; gap: 10px; justify-content: end;}



.Technologies_technologiesOuter__R_U_r {
    background-color: #000;
}


.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T {
    overflow: hidden;
}


.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw {
    gap: 20px;
    overflow: hidden;
}


.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_animateSlideToLeft__mtX_0 {
    width: 100%;
    animation: Technologies_slide_to_left__v9gtT 20s linear infinite;
}



@keyframes Technologies_slide_to_left__v9gtT {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes Technologies_slide_to_right__c0laB {
    0% {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}


.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_marqueeGroupLogo__o_bgW {
    gap: 0 20px;
}


.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_marqueeGroupLogo__o_bgW li {
    padding: 11px 15px;
    border-radius: 5px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    background-color: white;
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_marqueeGroupLogo__o_bgW li img {
    max-width: 169px;
    width: 135px !important;
    height: 40px;
    object-fit: contain;
}

.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_animateSlideToRight__aV9IJ:hover {
    animation-play-state: paused;
}

.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_animateSlideToRight__aV9IJ {
    width: 100vh;
    animation: Technologies_slide_to_right__c0laB 10s linear infinite;
}


@keyframes Technologies_slide_to_right__c0laB {
    0% {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}


.Technologies_technologiesOuter__R_U_r{ padding: 40px 0 ;}


.course_detail{ padding: 60px 0;}


.course_detail h1{         font-size: clamp(28px, 2.5vw, 36px); font-weight: 600;}
.course_detail .course-features span{ color: white;}
.course_detail p{color: #979595; }

.course_detail h2{ font-size: 18px; font-weight: 600; color: var(--primary-color);}

/* Card */
.instructor-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Image */
.instructor-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Text */
.instructor-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.instructor-info p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #aaa;
}

.course_detail .accordion-item{

  margin-bottom:10px;
}

.course_detail .accordion-body{

  background-color: black;
  border: 1px solid #313131;
  border-top: none;
}

.course_detail .accordion-item{border: none;}

.accordion-button{ background-color: #131519; color: white;}


.course_detail .accordion-button:not(.collapsed) {
  background-color: #131519; color: white;
}


.course_detail .accordion-button::after {
    filter: invert(1);
}


/* Tabs */
.course_detail .nav-tabs {
    border: none;
}

.course_detail .nav-tabs .nav-link {
    color: #aaa;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
}

.course_detail .nav-tabs .nav-link.active {
    background: #2d6cdf;
    color: #fff;
}


.courses_list{ padding: 60px 0;}

.courses_list p{ font-size: 18px; color: #979595;}


.blog_details h1{ font-size: 26px; font-weight: 600; margin-top: 15px;}

.blog_details p{ color: #979595;}

.blog_details ul { margin-left: 15px;}

.blog_details ul li{

  color: #979595;
  padding: 5px 0;
  font-size: 16px;
}


.contact-section {
    background: #0f1115;
    color: #fff;
    padding: 40px 0;
    position: relative;
    z-index: 99;
}

.contact-box {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.contact-box:last-child {
    border-right: none;
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.8;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-text {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

.contact-text a {
    color: #b0b0b0;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 4px;
}

.contact-text a:hover {
    color: #fff;
    text-decoration: underline;
}


.contact_information iframe{ margin-top: -60px; border-radius: 10px;}

.tools_tools-container-agentic-ai {
  overflow: hidden;
  position: relative;
}

.tools_tools-top-wrapper-agentic-ai {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
  margin: 15px 0;
}

/* Alternate rows reverse direction */
.tools_tools-top-wrapper-agentic-ai:nth-child(even) {
  animation: scrollRight 20s linear infinite;
}

/* LEFT → RIGHT */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* RIGHT → LEFT */
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tools_tools-top-wrapper-agentic-ai:hover {
  animation-play-state: paused;
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}