/* ========================
   CSS Reset & Base Styles
======================== */
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bungee&family=Bungee+Inline&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&family=Mohave:ital,wght@0,300..700;1,300..700&family=Oswald:wght@200..700&family=Righteous&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}


@font-face {
  font-family: 'Avenir Light';
  src: url('/fonts/avenir/Avenir-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}



body {
  font-weight: 400;
  color: rgb(22, 43, 111);
  line-height: 1.6;
  /* background-color: #f3f4f8; */
  background-color: white;
  margin: 0;
}





/* ========================
   Typography
======================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #162b6f;
  margin: 0 !important;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p,
li {
  font-size: 1rem;
  color: rgb(22, 43, 111);
}

a {
  color: #162b6f;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

body,
p,
span,
div,
a,
li,
ul,
ol,
input,
textarea,
button,
label,
td,
th,
table,
nav,
section,
article {
  font-family: 'Avenir Light', sans-serif !important;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  animation: fadeDown 1s ease-out;
}

@keyframes fadeDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* .fade-down-once:not(.loaded) {
  animation: fadeDown 1.2s ease-out;
} */


button {
  text-transform: capitalize !important;
}






/* ========================
   Buttons
======================== */
.btn-primary {
  background-color: #162b6f !important;
  background-image: none;
  color: white !important;
  padding: 0.75em 1.5em;
  border: 1px solid #162b6f;
  border-radius: 4px;
  font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  text-align: center;
  text-transform: capitalize !important
}

.btn-primary:hover {
  background-color: white !important;
  color: #162b6f !important;
}


.btn-primary-white {
  background-color: #162b6f !important;
  background-image: none;
  color: white !important;
  padding: 0.75em 1.5em;
  border: 1px solid #162b6f;
  border-radius: 4px;
  font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  text-align: center;
  border: 1px solid !important;
  text-transform: capitalize !important
}

.btn-primary-white:hover {
  background-color: white !important;
  color: #162b6f !important;
  border: 1px solid;
}










/* ========================
   Container
======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}


/* ========================
   Section Styling
======================== */




/* ========================
   Forms (Optional if you use forms)
======================== */
input,
textarea,
select,
button {
  font-family: inherit;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--accent-color-2);
  border-radius: 4px;
}

/* ========================
   Responsive
======================== */






/* header */

header {
  background: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.header-navbar ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.header-navbar ul li {
  font-weight: 600;
  height: fit-content;
  width: auto;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container .header-logo img {
  height: 110px;
}

.header-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #162b6f;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

ul.submenu {
  display: flex;
  flex-direction: column;
  padding: 10px !important;
}

/* .course-cat-btn a {
    background: white;
    display: block;
    padding: 10px;
    width: 140px;
    border: 1px solid #e6cd6e;
    border-radius: 5px;
    height: 50px;
}

.course-cat-btn img {
    width: 100%;
    height: 100%;
}



.course-cat-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
} */
.course-cat-btn {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  justify-content: center;
}

.course-tab-btn {
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 50px;
  border: 2px solid #e6cd6e;
  cursor: default;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  margin-bottom: 40px;
}

.course-tab-btn img {
  height: 35px;
  width: auto;
  transition: 0.3s ease;
}

/* Active tab look */
/* .course-tab-btn.active {
    background: #e6cd6e;
    border-color: #e6cd6e;
} */

.course-tab-btn.active img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Hover effect only for design */
.course-tab-btn:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.mega-menu-item.has-inner-submenu.third-parent.ipro-menu a::after {
    display: none;
}
.header-navbar li {
  position: relative;
}

.header-navbar a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 12px 0;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}

.submenu li {
  width: 100%;
}

.submenu a {
  padding: 5px 15px;
  color: #162b6f;
  font-weight: 600;
  white-space: nowrap;
  font-size: 15px;
}

.submenu a:hover {
  background: #f3f3f3;
}




/* banner-video */

video.hero-video {
  width: 100%;
  height: 83vh;
  object-fit: cover;
}

.banner-center-text {
  position: absolute;
  bottom: 0px;
  right: 35%;
}

.banner-center-text h1 {
  background: #ffffff7a;
  padding: 20px;
}

/* 
section.video-banner.aos-init.aos-animate .overlay-content {
  top: -12%;
} */

section.video-banner.aos-init.aos-animate .overlay-content .glass-card {
  border-radius: 0;
}

/* info-section */

section.info-section {
  padding: 80px 0;
  background-color: white;
}

section.info-section .container .info-title p {
  text-align: left;
}

section.info-section .container .info-title span {
  text-align: left;
}

section.info-section .container .info-title p {
  padding-top: 12px;
}

.info-left {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

section.info-section .info-image .info-right {
  width: 50%;
  max-width: 410px;
  height: 445px;
}

.info-social a:nth-child(3) {
  padding: 10px 14px;
}

.info-bottom h2::after {
  content: "";
  position: absolute;
  left: 3%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ffdd5f;
  border-radius: 2px;
}

.credentials-view-btn a.btn.btn-primary:hover {
  background: #e6cd6e !important;
  color: #162b6f !important;
  border: 1px solid #e6cd6e !important;
}

.info-bottom h2 {
  position: relative;
}

section.info-section .info-image .info-right img {
  height: auto;
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-bottom h2 {
  text-align: left;
  margin-bottom: 30px !important;
  margin-top: 50px !important;
}

.info-bottom ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

section.info-section .info-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0px;
  flex-direction: column;
  gap: 0;
}


span.blob-dot1 {
  position: absolute;
  border-radius: 50%;
  width: 3%;
  height: 5%;
  background: rgb(37 37 37 / 15%);
  top: 7%;
  left: 90%;
  animation: moveBlobLeft 12s ease-in-out infinite alternate;
  z-index: 0;
}

span.blob-dot2 {
  position: absolute;
  border-radius: 0;
  width: 3%;
  height: 5%;
  background: rgb(230 205 110 / 45%);
  top: 1%;
  left: 46%;
  animation: moveBlobLeft 12s ease-in-out infinite alternate;
  z-index: 0;
}

span.blob-dot3 {
  position: absolute;
  border-radius: 0;
  width: 3%;
  height: 5%;
  background: rgb(230 205 110 / 45%);
  top: 80%;
  left: 5%;
  animation: moveBlobLeft 12s ease-in-out infinite alternate;
  z-index: 0;
}

span.blob-dot4 {
  position: absolute;
  border-radius: 50%;
  width: 3%;
  height: 5%;
  background: rgb(180 209 255);
  top: 88%;
  left: 64%;
  animation: moveBlobLeft 12s ease-in-out infinite alternate;
  z-index: 0;
}

span.blob-dot5 {
  position: absolute;
  border-radius: 50%;
  width: 3%;
  height: 5%;
  background: rgb(180 209 255);
  top: 45%;
  left: 58%;
  animation: moveBlobLeft 12s ease-in-out infinite alternate;
  z-index: 0;
}





section.info-section .container .info-title span {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 20px;
}

section.info-section .container .info-title p {
  text-align: left;
}

section.info-section .container .info-title h2 {
  text-align: center;
  margin-bottom: 25px !important;
  color: #162b6f;
}

.gallery-item:hover h3 {
  background: #162b6f;
  color: white !important;
}

.service-item:hover {
  border: 2px solid;
}

.service-item:hover .service-icon {
  color: #162b6f;
}


section.info-section .container .info-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 55%;
  position: relative;
}

.gallery-item:hover {
  border-left: 2px solid #162b6f;
  border-top: 2px solid #162b6f;
}

section.info-section .info-image ul li {
  margin-left: 25px;
  line-height: 32px;
  color: #162b6f;
  text-align: left;
}

.info-title h2::after {
  left: 30px !important;
}





/* course-card-slider */



.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card.swiper-slide.aos-init.aos-animate:hover .card-image {
  border-radius: 15px 15px 0 0;
}

.card-image {
  overflow: hidden;
}

.card-image {
  overflow: hidden;
}

.course-slider-title h2 {
  margin-bottom: 30px !important;
  color: white;
}

.course-slider-title p {
  margin-bottom: 30px !important;
}

.card {
  border-radius: 25px;
  background-color: #FFF;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.2), 0 0px 12px 0 rgba(0, 0, 0, 0.20);
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  padding-bottom: 0;
}

.course-card-slider button.btn-primary {
  margin: 20px 0;
  width: 100%;
}

.card-content p {
  border-bottom: 1px solid;
  width: auto;
  padding-bottom: 12px;
  margin-bottom: 30px;
  margin-top: 20px;
  display: none;
}

.image-content {
  padding: 0;
}

.swiper-pointer-events {
  touch-action: pan-y;
  padding-top: 10px;
}



.swiper-navBtn {
  color: #6E93f7;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: #4070F4;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #6E93f7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4070F4;
}

.course-slider-title h2 {
  text-align: center;
  margin-bottom: 30px !important;
}


.course-slider-title p {
  margin-bottom: 25px !important;
  color: white !important;
  text-align: center;
}

.course-card-slider {
  padding: 40px 0 50px 0;
}

/* .credentials-view-btn a.btn.btn-primary {
  background: white !important;
  color: #162b6f !important;
} */

.card-image img {
  width: 100%;
  height: 180px;
  border-radius: 6px 6px 0 0;
  object-fit: cover;
}

.card-content span {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 25px;
}


.for-client-content h4 {
  margin-top: 10px !important;
}

.for-client-content p:nth-child(3) {
  padding-top: 0px;
  padding-bottom: 14px;
}

/* testimonia */

.carousel-bg {
  background-color: white;
  padding: 40px 0 40px 0;
}


.quote-image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  padding-top: 60px;
  width: 80px;
}

.testimonial-style .testimonial-caption-style {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 24px;
  color: #354052;
  line-height: 30px;
  bottom: 40%;
  text-shadow: none;
  top: 10%;
}

.banner-wrapper.container p {
  text-align: center;
}

.testimonial-style .testimonial-authors {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 20px;
  color: #354052;
  line-height: 30px;
  margin-top: 40px;
}

.testimonial-title h2 {
  color: #162b6f;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.course-cards.py-5 .container {
  position: relative;
}

.testimonial-style .carousel-inner>.item {
  padding-top: auto;
  padding-bottom: auto;
  height: 380px;
}

.testimonial-style .carousel-control.left {
  background: none;
  box-shadow: none;
  text-shadow: none;
}

.testimonial-style .carousel-control.right {
  background: none;
  box-shadow: none;
  text-shadow: none;
}







.testimonial-style .carousel-control {
  color: #354052;
}

.testimonial-style .carousel-control:hover {
  color: #354052;
  text-decoration: none;
  transition: background-color 1s ease;
}

.testimonial-style .carousel-indicators .active {
  background-color: #fff;
  width: 14px;
  height: 14px;
  transition: background 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-style .carousel-indicators li {
  border: 2px solid #354052;
  background-color: #354052;
}

.carousel-caption.testimonial-caption-style p {
  font-size: 20px;
  font-weight: 500;
}


.read-more-btn {
  color: #162b6f;
  border: none;
  font-size: 18px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 4px;
  padding: 4px 15px;
}


.blog-card {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, .11);
}

/* light-box */

/* .light-box {
  padding: 40px 0;
  background: #f7f7f7;
  background-image: url(/frontend/images/ai-line-bg3.png) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
} */

.light-box {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.gallery-section {
  padding: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  position: relative;
}

.gallery-item {
  background: #fff;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #e6cd6e;
  border-bottom: none;
  border-right: 0;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 10px;
}

.card.swiper-slide .blog-video {
    height: auto
}
.card.swiper-slide .image-content .blog-video iframe {
    width: 100%;
    height: 100%;
}

.gallery-item h3 {
  padding: 20px 10px 20px 10px;
  font-size: 18px;
  background: #e6cd6e;
  color: #162b6f;
  margin-bottom: 0;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex !important;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.popup-content .swiper-pointer-events {
  padding-bottom: 0;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #fff;
  width: 100%;
  max-width: 90%;
  padding: 20px;
  position: relative;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  z-index: 999999;
}

.slide-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.slide-image {
  flex: 1 1 58%;
}

.slide-image img {
  width: 100%;
  border-radius: 10px;
  height: 90vh;
  object-fit: contain;
}

.slide-info {
  flex: 1 1 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
}

.slide-info h2 {
  margin-bottom: 10px;
  text-align: left !important;
}

.slide-info p {
  margin-bottom: 20px;
  text-align: left;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}






/* footer */

.custom-footer {
  background-color: white;
  /* padding: 40px 20px; */
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #354052;
  font-size: 15px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 50px;
}

.footer-link-a a {
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1d3a6b;
}

.footer-contact a {
  font-size: 18px !important;
  transition: all 0.3s ease;
}

.footer-link-a a:hover {
  transform: scale(1.02);
}

.footer-contact a:hover {
  transform: scale(1.02);
}

a:hover,
a:focus {
  color: #1a3566 !important;
}

.footer-bottom a:hover {
  color: white !important;
}

.footer-top h3 {
    padding-bottom: 10px;
    text-align: left;
    font-size: 26px;
    margin-bottom: 20px !important;
    position: relative;
    color: #1d3a6b;
}

.footer-top h3::after {
  content: "";
  background: #e6cd6e;
  height: 3px;
  width: 90px;
  z-index: 9;
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-link-a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a {
    padding-bottom: 10px;
    color: #1d3a6b;
    text-decoration: none;
    font-size: 16px !important;
}

.footer-link-a {
  gap: 10px;
}

.career-btn {
  margin-top: 60px;
  border: none !important;
}

a.btn-primary.cta-btn.career-btn:hover {
  background: #e6cd6e !important;
  color: #162b6f !important;
  border: none;
}


.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  width: 40px;
  height: 40px;
  background: #162b6f;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #e6cd6e;
}

.info-social a:hover {
  background: #e6cd6e;
}

.footer-bottom p {
  margin: 0px 0;
  color: #162b6f;
  font-size: 14px;
  font-weight: 600;
}


.footer-bottom {
  background: #e6cd6e;
  display: flex;
  justify-content: space-between;
  padding: 10px 150px;
}

.footer-bottom a {
  color: #162b6f !important;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px !important;
}

.footer-bottom a:hover {
  color: #162b6f !important;
  text-decoration: underline;
}


footer {
  background: white !important;
  border-top: 1px solid #ededed !important;
}

.light-box h2 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}





/* h2-underline */

.info-title h2::after,
.course-slider-title h2::after,
.testimonial-title h2::after,
.light-box .container h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ffdd5f;
  border-radius: 2px;
}

.info-title h2,
.course-slider-title h2,
.testimonial-title h2,
.light-box .container h2 {
  position: relative;
  display: block;
  padding-bottom: 10px;
}




/* animation */

/* Fade Up Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade animation on scroll */
.fade-up {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}


/* Zoom on hover */
.gallery-item img,
.card-img {
  transition: all 0.4s ease;
}

.gallery-item:hover img,
.card:hover .card-img {
  transform: scale(1.05);
  opacity: 0.9;
}


.header-logo img {
  transition: opacity 0.4s ease;
}

.header-logo img:hover {
  opacity: 0.7;
}


.btn-primary,
.read-more-btn {
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.btn-primary:hover,
.read-more-btn:hover {
  background-color: #4070F4;
  transform: translateY(-3px);
}


.gallery-item,
.testimonial-style .item {
  transition: all 0.5s ease-in-out;
}








/* ====================  recruitment - page  ============================ */



/* banner */

.recruitment-slider {
  text-align: center;
}

.recruitment-slider h2 {
  margin-bottom: 60px !important;
  color: white;
}


.recruitment-slider {
  text-align: center;
  background: #162b6f;
  padding-top: 50px;
  padding-bottom: 50px;
}

.banner-center-text.recruitment {
  position: absolute;
  bottom: 0px;
  right: 20%;
  margin: 0 auto;
  width: 60%;
}

.banner-center-text.recruitment {
  background: #ffffff7a;
  padding: 20px;
}

.banner-center-text.recruitment h1 {
  background: none !important;
  text-align: center;
}



/* job-seekers-banner */

.job-seekers-banner {
  background: #162b6f;
  padding: 50px 0;
}


.job-seekers-banner h2 {
  color: white;
  text-align: center;
  margin-bottom: 30px !important;
}

.job-seekers-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.job-seekers-banner span {
  color: white;
  font-size: 18px;
  position: relative;
  display: block;
  padding-bottom: 10px;
}

.job-seekers-banner span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #fdde5f;
  border-radius: 2px;
}



/* free-support */

.free-support .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
}

.free-support-left p {
  text-align: left;
}

.free-support-right p {
  text-align: left;
}

.free-support-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.free-support-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.free-support-left a.btn-primary {
  margin-bottom: 25px;
}

.free-support-right a.btn-primary {
  margin-bottom: 25px;
}

.free-support-right img {
  height: 190px;
}

.free-support-left img {
  height: 190px;
}

.free-support {
  padding: 60px 0;
}

p.descaimer {
  font-size: 12px;
  width: 60%;
  margin: 0 auto;
  margin-top: 35px;
}


/* Recruitment Verticals */

.category-slider-section {
  background-color: #42559a;
  padding: 50px 0;
  color: white;
  text-align: center;
}

.category-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 160px;
  padding: 10px;
}

.category-swiper .swiper-slide img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.category-swiper .swiper-slide p {
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  font-size: 20px;
  color: white;
  text-align: center;
}

section.category-slider-section .swiper-pointer-events {
  padding-bottom: 0;
}

section.category-slider-section h2 {
  margin-bottom: 50px !important;
  color: white;
}









/* ======================   aicertifications-page    ========================== */


.aicertifications-title p {
  text-align: left;
  padding-top: 12px;
}

.aicertifications-title {
  padding: 60px 0 0;
}



/* course-tabing */


.course-tabing-grid {
  padding: 50px 0 80px;
}

.tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  overflow-x: auto;
  border-bottom: 2px solid #ccc;
}

.tab-link {
  background: none;
  border: none;
  font-weight: 600;
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-link.active {
  color: #2a4c98;
  border-color: #2a4c98;
}

.card-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}

.course-tabing-grid .card-image {
  width: 100%;
}

.card-grid {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.06);
  overflow: hidden;
}

.card-grid h5 {
  padding: 0 16px;
}

.card-grid img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  margin-bottom: 12px;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.card-grid img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-card span {
  font-size: 20px;
}

.footer-card a i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.footer-card a:hover i {
  transform: translateX(3px);
}

.footer-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.badge {
  background: #8e44ad;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-card {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  border-top: 1px solid #d9d9d9;
  padding: 16px;
}








/* ============  skill-straining-page  ============= */



/* skill-content */

.skill-training-info {
  padding: 60px 0;
}

.skill-training-info p {
  font-size: 18px;
  font-weight: 600;
}

.for-client-one .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.for-client-content {
  width: 60%;
}

.for-client-image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.for-client-content p {
  text-align: left;
  padding-top: 20px;
}

.for-client-image p {
  text-align: left;
}

.for-client-one {
  background: white;
  padding: 50px 0;
}



/* for-client-two */


.for-client-two .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.for-client-two {
  padding: 60px 0;
}











/*  ==================  bird-services-page       ====================== */



/* bg-banner */

.bird-serives-banner video {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.bird-serives-banner {
  position: relative;
}

span.bird-services-banner-overlay {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 50%;
  margin: 0 auto;
  background: #ffffff6e;
  padding: 30px;
  font-size: 20px;
  font-weight: 600;
}



/* image-card */

.birdservice-image-card .card-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.birdservice-image-card .card-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.birdservice-image-card .card-main .card h4 {
  padding: 20px;
  text-align: left;
  height: 75px;
}

.birdservice-image-card .card-main .card p {
  padding: 20px;
  text-align: left;
  height: 130px;
}

.birdservice-image-card .card-main .card a.btn-primary {
  margin: 0 20px 20px;
  width: -webkit-fill-available;
}


.birdservice-image-card {
  padding: 80px 0;
}

.birdservice-image-card .card-main .card {
  border-radius: 0px;
  background-color: #FFF;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.2), 0 0px 12px 0 rgba(0, 0, 0, 0.20);
}








/* =====================  book-online  ==================== */

.book-service-card .container .book-service-card-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


.book-service-card {
  padding-bottom: 80px;
}


.book-service-card-grid img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  margin-bottom: 12px;
  height: 350px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.book-service-card-grid {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.book-service-card-grid h5 {
  padding: 0 20px;
}

.book-service-footer-card {
  display: flex;
  justify-content: center;
  padding: 0 20px 15px;
  border-top: 1px solid #e9e9e9;
  padding-top: 15px;
}

.book-service-footer-card a {
  text-transform: capitalize;
}



.book-service-footer-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 10px;
}

.book-service-card-grid p {
  padding: 0 20px;
  text-align: left;
}

.book-service-title {
  padding: 60px 0;
}

.book-service-title h2 {
  text-align: center;
}








/* ==============    resettle-page     ====================== */


.resettlement-info {
  padding: 40px 0;
}

.resettlement-info p {
  text-align: center;
}

.resettlement-info h2 {
  text-align: center;
}

.resettlement-info h2 {
  padding-bottom: 30px;
}

.resettlement-info p {
  padding: 0;
}

.resettlement-info .container {
  text-align: center;
}


.resettle-video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.resettle-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resettle-video-bg .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.resettle-video-bg .glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px 40px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  margin: auto;
}

.resettle-video-bg .glass-card h4 {
  margin-bottom: 20px !important;
  font-size: 24px;
  font-weight: 600;
}



.resettle-video-bg .glass-card ul {
  list-style: none;
  padding: 0;
}

.resettle-video-bg .glass-card ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.resettle-video-bg a.btn-primary {
  margin-top: 20px;
}

.glass-card p {
  margin-top: 20px;
  color: black;
}

.glass-card span {
  color: black !important;
}



/* ====================  prp page   ======================== */



.prp-info {
  padding: 40px 0;
}

.prp-info p {
  text-align: center;
}

.prp-info h2 {
  text-align: center;
}

.prp-info h2 {
  padding-bottom: 30px;
}

.prp-info p {
  padding: 0;
}

.prp-info .container {
  text-align: center;
}

.prp-video-bg video {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

.prp-info a {
  margin-top: 20px;
}

.prp-video-bg .overlay-content-prp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.prp-video-bg .glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px 40px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  margin: auto;
}

.prp-video-bg .glass-card h4 {
  margin-bottom: 20px !important;
  font-size: 24px;
  font-weight: 600;
}

.prp-video-bg .glass-card ul {
  list-style: none;
  padding: 0;
}

.prp-video-bg .glass-card ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.prp-video-bg a.btn-primary {
  margin-top: 20px;
}


.prp-video-bg {
  position: relative;
  height: 100vh;
}



/* career-page */


.careerservices-info li {
  text-align: left;
}



.careerservices-info {
  padding: 50px 0;
}

.careerservices-info h2 {
  text-align: center;
}

.careerservices-info p {
  text-align: center;
}


.video-class video {
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
}

div#slot-buttons p {
  width: 100%;
  margin-left: 140px;
  text-align: center;
}



.careerservices-info h2 {
  padding-bottom: 30px;
}

.careerservices-info p {
  padding: 0;
}

.careerservices-info .container {
  text-align: center;
}

.careerservices-video-bg video {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

.careerservices-info a {
  margin-top: 20px;
}

.careerservices-video-bg .overlay-content-careerservices {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.careerservices-video-bg .careerservices-glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px 40px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  margin: auto;
}

.careerservices-video-bg .glass-inner {
  width: 100%;
}

.careerservices-info a.btn-primary {
  text-transform: capitalize;
}

.careerservices-video-bg .careerservices-glass-card h4 {
  margin-bottom: 20px !important;
  font-size: 24px;
  font-weight: 600;
}

.careerservices-video-bg .careerservices-glass-card ul {
  list-style: none;
  padding: 0;
}

.careerservices-video-bg .careerservices-glass-card ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.careerservices-video-bg a.btn-primary {
  margin-top: 20px;
}


.careerservices-video-bg {
  position: relative;
  height: 100vh;
}

.careerservices-glass-card {
  display: flex;
  justify-content: center;
  align-items: baseline;
}





/* harman - page */


.harman-info .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.harman-info {
  padding: 80px 0;
}

.harman-info .harman-content {
  background: none;
  padding: 0;
}

.harman-info .container .harman-content h2 {
  margin-bottom: 25px !important;
}

.harman-content .harman-content-text h2 {
  margin-bottom: 20px !important;
}

.harman-content .harman-content-text p {
  padding-bottom: 12px;
}

.harman-info .container .harman-content {
  width: 50%;
}

.harman-info .container .harman-image {
  width: 50%;
}

.harman-content p {
  padding-left: 0;
  text-align: left;
}


.harman-content .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.harman-content-text {
  width: 60%;
}



.harman-sticky-section {
  flex: 1;
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  gap: 20px;
}

.harman-content-text ul {
  line-height: 30px;
}

.harman-content-text h2 {
  padding-bottom: 20px;
}

.harman-content {
  background: white;
  padding: 80px 0;
}


.harman-join-info .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.harman-join-info {
  padding: 80px 0;
}

.harman-join-info .container .harman-join-info-image {
  width: 40%;
  display: flex;
  justify-content: center;
}

.harman-join-text p {
  text-align: left;
  padding: 10px;
  margin: 0;
}

.harman-join-info .container .harman-join-text {
  width: 60%;
}


.harman-cta {
  background: #162b6f;
}

.harman-cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}


.harman-inner-one {
  width: 60%;
}

.harman-inner-two {
  width: 40%;
  display: flex;
  justify-content: end;
}

.harman-inner-one p {
  text-align: left;
  margin-top: 20px;
  color: white;
}

.harman-inner-two a {
  color: #162b6f;
  padding: 10px;
  background: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 2px;
}

.harman-inner-one h3 {
  color: white;
}




/* =============  contact-page  ================= */



.contact-data .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 30px;
  height: 200px;
  width: 300px;
  background: white;
  border-radius: 8px;
}

.contact-box:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0px 60px 0 rgba(0, 0, 0, 0.19);
  padding: 30px;
  height: 200px;
  width: 300px;
  background: white;
}

.contact-box h3 {
  margin-bottom: 20px !important;
}

.contact-data {
  padding: 80px 0;
}

section.error__area.pt-200.pb-200 {
  padding: 60px 0;
}


section.error__area.pt-200.pb-200 .row {
  display: flex;
  justify-content: center;
}

.error__content {
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
  gap: 12px;
}






.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px 40px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  margin: auto;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}



/* new-add */

section.info-section.aos-init.aos-animate h4 {
  padding-bottom: 20px;
  padding-top: 20px;
  color: #162b6f;
  text-align: left;
}

.info-social {
  display: flex;
  gap: 18px;
  margin-left: 12px;
  margin-top: 30px !important;
  justify-content: center;

}

.info-social a {
  padding: 10px 10px;
  background: #162b6f;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.image-content,
.card-content {
  padding: 20px 20px;
}



/* term of use */


.term-first .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.term-first .container {
  padding: 50px;
  background: white;
  margin: 50px auto 40px;
}

.content-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.term-second .container {
  background: white;
  padding: 50px;
}

.term-second .container h2 {
  margin-bottom: 20px !important;
}

.term-second h4 {
  margin: 20px 0 !important;
}

.term-first .container h2 {
  margin-bottom: 20px !important;
}

.term-third .container {
  padding: 50px;
  background: white;
  margin-top: 40px;
  margin-bottom: 70px;
}

.term-third-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}





/* privacy */

.privacy-first {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 50px;
  background: white;
  margin-bottom: 40px;
}

.privacy-second {
  padding: 50px;
  background: white;
}


.term-first .container .image-box {
  width: 40%;
}

.term-first .container .image-box img {
  width: 100%;
}

.term-first .container .content-box {
  width: 60%;
}

.term-first .container {
  padding: 50px 0px;
  background: white;
  margin: 50px auto 40px;
  gap: 50px;
}

.term-second ul {
  margin-left: 30px;
}

p.skill-p {
  text-align: center;
}









.main-banner {
  position: relative;
  text-align: center;
}

.main-banner .image-center img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 303px;
  object-fit: cover;
}

.main-banner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 9;
}

.main-banner .mb-4.image-center::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.main-banner .mb-4.text h2 {
  color: white;
}

section.contact-section .info-card P {
  text-align: center;
}

.dropdown-menu li a {
  padding: 0 !important;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
  color: white !important;
  background-image: none !important;
}

.dropdown-menu li:hover {
  color: white !important;
  background: #162b6f !important;
}

.dropdown-menu li a:hover {
  background-color: transparent !important;
}

.dropdown-menu li:hover a {
  color: white !important;
}

#userDropdownToggle i.fas.fa-chevron-down {
  color: white !important;
  font-size: 10px;
}

.dropdown-menu li a {
  color: #162b6f !important;
}

.dropdown-menu {
  background-color: #ffffff !important;
}

.dropdown-menu li a {
  font-size: 15px !important;
  font-weight: 600 !important;
}









.card.swiper-slide.swiper-slide-duplicate.aos-init.aos-animate.swiper-slide-active img.card-img {
  height: 213px;
  width: 213px;
}



.card-image img {
  width: 100%;
  height: auto;
}



div#slider {
  padding: 10px 0;
}



.card-content h3 {
  font-size: 24px;
  height: 55px;
  line-height: 32px;
}

.course-card-slider .card-image img.card-img.img-fluid {
  width: 230px;
  height: 230px;
}

.card-grid-main .card.swiper-slide.aos-init.aos-animate h3.name {
    height: auto;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.card-grid-main .card.swiper-slide.aos-init.aos-animate h3.name a {
    font-family: 'Oswald', sans-serif !important; 
  }

.card.swiper-slide.aos-init.aos-animate h5.name {
    margin-bottom: 10px !important;
}
.card-grid-main .card.swiper-slide.aos-init.aos-animate .card-content span {
  padding: 0;
  padding-bottom: 15px;
}

.pagination-wrapper ul.d-flex.align-items-center a {
  font-size: 24px;
  font-weight: 600;
}


.card-content h3 {
  font-size: 24px;
  height: 55px;
  line-height: 32px;
}

.course-tabing-grid .card-content {
  gap: 30px;
}

.card.swiper-slide .card-content {
  gap: 15px;
}

.card.swiper-slide .card-content span {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  padding-top: 20px;
}

.card-content a.btn-primary {
  width: 100%;
}

.card.swiper-slide.aos-init.aos-animate .image-content {
  padding-bottom: 5px;
}


.recruitment {
  padding: 50px 0;
  text-align: center;
}

.recruitment h2 {
  margin-bottom: 25px !important;
}

.credentials-view-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.credentials-view-btn a.btn-primary {
  width: auto;
}






a:hover {
  text-decoration: none !important;
}

.term-first ul {
  display: flex;
  gap: 10px;
  list-style-type: none;
}


header.aos-init.aos-animate a.e-btn.btn-primary-white {
  padding: 10px 20px;
}

.light-box .swiper-slide.swiper-slide-active h2::after {
  left: 7% !important;
}

.page-title {
  background-image: url('/frontend/images/banner.avif');
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-title>* {
  position: relative;
  z-index: 3;
}

.page-title h2 {
  text-align: center;
  color: white;
}

.card.swiper-slide.aos-init.aos-animate .name {
  height: auto;
  padding-bottom: 10px;
}

.course-card-slider .card-image img.card-img.img-fluid {
  width: 230px;
  height: 230px;
}

.blog-image {
  width: 100%;
  height: 230px;
  object-fit: cover !important;
}



.resettle-video-bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  /* Or desired height */
}

.resettle-video-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000;
}

.resettle-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}





.careerservices-video-bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  /* Or desired height */
}

.careerservices-video-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000;
}

.careerservices-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}




.overlay-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.overlay-content-careerservices {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.careerservices-glass-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}


.prp-video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Adjust height as needed */
  overflow: hidden;
}

.prp-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.overlay-content-prp {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}



section.info-section.aos-init.aos-animate .info-title p {
  margin: 0;
  padding-top: 10px;
  color: #162b6f;
  text-align: left !important;
}

section.video-banner.aos-init.aos-animate {
  height: 83vh;
  width: 100%;
}

.course-tabing-grid .card.swiper-slide.aos-init.aos-animate .card-content {
  gap: 0;
}

header .container {
  padding: 0 50px;
}

header .container::before {
  display: none;
}

.footer-logo img {
  height: 120px;
}

header .container::after {
  display: none;
}

.resettlement-info a.btn-primary {
  text-transform: unset !important;
}



.prp-info a.btn-primary {
  text-transform: unset !important;
}

.careerservices-info a.btn-primary {
  text-transform: unset !important;
}

.careerservices-info li {
  text-align: left;
  list-style-type: disc !important;
}








.rc__post.d-flex.align-items-center .rc__thumb.mr-20 img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar__widget-content .rc__post.d-flex.align-items-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.sidebar__widget-content .rc__post-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

h3.sidebar__widget-title {
  margin-bottom: 15px !important;
}

.rc__content .rc__meta {
  margin-bottom: 5px;
}

div#comment_form {
  display: none !important;
}

.blog__sidebar.pl-70 .sidebar__widget.mb-60 input[type="text"] {
  margin-bottom: 0 !important;
}

.blog__recent.mb-65 {
  display: none !important;
}

.latest-comments.mb-95 {
  display: none !important;
}


.blog__author-3.d-sm-flex.grey-bg.mb-90 {
  display: none !important;
}

section.page__title-area.page__title-height-2.page__title-overlay.d-flex.align-items-center .col-xxl-10.col-xl-10.col-lg-10 {
  width: 100%;
}

h4.blog-heading a {
  font-family: 'Oswald', sans-serif !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.col-md-6.bundle-dec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.col-xl-4.dashboard-left-menu-bar {
  margin-bottom: 40px;
}

.col-md-6.bundle-dec-inner .col-md-6 {
  padding: 0;
}

section.page__title-area.page__title-height-2.page__title-overlay.d-flex.align-items-center {
  background-image: url('/frontend/images/banner.avif');
  background-size: 100% 100%;
  background-position: 100% 100%;
  height: 300px;
  width: 100%;
  background-repeat: no-repeat;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

h3.page__title-2 {
  z-index: 5;
  color: white;
  text-align: center;
  line-height: 45px;
  position: relative;
}

section.page__title-area.page__title-height-2.page__title-overlay.d-flex.align-items-center::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

section.page__title-area.page__title-height-2.page__title-overlay.d-flex.align-items-center .row {
  display: flex;
  justify-content: center;
}

section.info-section.aos-init.aos-animate .info-title br {
  display: none;
}


section.blog__area.pt-120.pb-120 .blog-video {
  height: 400px;
  margin-top: 30px;
}

h3.page__title-2 {
  position: relative;
  top: 0;
  left: 0;
  z-index: 5;
  color: white;
  text-align: center;
  line-height: 45px;
}

section.blog__area.pt-120.pb-120 {
  padding-bottom: 50px;
}

.blog__meta.d-flex.align-items-center {
  display: none;
}

.page__title-shape {
  display: none;
}

.sidebar__widget.mb-55:nth-child(3) {
  display: none;
}

.blog__meta-3.d-sm-flex.justify-content-between.align-items-center.mb-80 {
  display: none;
}






.thank-you-main .container.py-5 .row.justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.thank-you-main .container.py-5 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-main .container.py-5 .row.justify-content-center .card.shadow-lg.border-0 {
  padding: 40px;
}

.thank-you-main .container.py-5 .row.justify-content-center .card.shadow-lg.border-0 .thank-you-icon {
  margin-bottom: 0 !important;
}

.thank-you-main .container.py-5 .row.justify-content-center .card.shadow-lg.border-0 h2.mb-3.text-success {
  margin-bottom: 20px !important;
}


.header-navbar ul li form {
  border: 1px solid;
  border-radius: 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.header-navbar ul li form input.form-control {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  padding-left: 10px;
  border-radius: 8px;
}

.header-navbar ul li form button.btn.btn-primary {
  padding: 8px 20px;
  border-radius: 0 8px 8px 0;
}

/* .header__btn.ml-20.d-none.d-sm-block a.e-btn.btn-primary-white {
    padding: 6px 20px;
    margin-top: 0px;
    width: 90px;
    height: 35px;
} */

.testimonial-main {
  background: #f7f7f7;
  padding: 60px 0 70px 0;
}

.header-navbar ul li form button.btn.btn-primary:hover {
  transform: translateY(0px) !important;
  background: #162b6f !important;
  color: white !important;
}

.container.search-page {
  padding: 0;
  padding-bottom: 60px;
  padding-top: 12px;
}

.animated-search-container {
  display: none !important;
}



.show-certificate .cert-box i.fa-solid.fa-magnifying-glass-plus {
  color: white;
  font-size: 25px;
}

section.blog__area.pt-120.pb-120 .blog-image {
  margin-bottom: 0px !important;
  margin-top: 20px !important;
}

.h2-underline::after {
  margin-top: 15px !important;
}


.rc__post.d-flex.align-items-center .rc__meta span {
  display: none;
}



.header__btn.ml-20.d-none.d-sm-block form select {
  background: #203c70;
  color: white;
  padding: 0;
  margin-bottom: 0;
  width: 77px;
  font-weight: 600;
  height: auto;
}

.header__btn.ml-20.d-none.d-sm-block a.e-btn.btn-primary-white i.fas.fa-sign-in-alt {
  margin-left: 5px;
}



.header__btn.ml-20.d-none.d-sm-block form option {
  background: white !important;
  color: #203c70;
}

/* .header__btn.ml-20.d-none.d-sm-block {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 15px;
} */


.header-navbar ul li form button.btn.btn-primary {
  margin: 0 !important;
}


#bundleCoursesModal23 .card-body {
  display: flex;
  flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

#bundleCoursesModal23 .card-body img {
  height: auto !important;
}

.error__content a:hover {
  color: white !important;
}


section.page__title-area.page__title-height-2.page__title-overlay.d-flex.align-items-center {
  position: relative;
}

.workshop-page .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

.banner-wrapper.container h1 {
  font-size: 44px !important;
}

/* responsive */
@media (max-width: 1799px) {
  .header-navbar ul li form input.form-control {
    padding: 5px !important;
  }

  section.info-section {
    padding: 70px 0;
    background-color: white;
  }

  .header-navbar a {
    padding: 10px 10px;
  }

  header .container {
    padding: 0px 25px;
  }

  header .container .header-logo img {
    margin-left: -25px;
  }
}

@media (max-width: 1699px) {

  /* .header__btn.ml-20.d-none.d-sm-block {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: column;

} */
  .error__thumb.mb-45 img {
    width: 55%;
  }

  .banner-wrapper.container h1 {
    font-size: 36px;
  }


}


@media (max-width: 1599px) {
  header .container {
    padding: 0 20px;
  }

  section.info-section {
    padding: 60px 0;
  }
}


@media (max-width: 1499px) {

  .nav.next {
    right: -1% !important;
  }

  .nav.prev {
    left: -1% !important;
  }

  header .container .header-logo img {
    height: 100px;
  }

  .footer-logo img {
    height: 100px;
  }

  .header-navbar a {
    padding: 10px 10px;
  }




  .search-icon {
    right: -30px;
  }

  .animated-search-container:hover .search-input {
    width: 250px;
    opacity: 1;
    right: 20px !important;
    top: 0px !important;
    padding: 6px 20px !important;
  }
}


@media (max-width: 1399px) {
  .harman-cta .container {
    padding: 50px;
  }
    .nav.next {
    right: 0% !important;
  }


  .banner-wrapper.container h1 {
    font-size: 36px !important;
  }

  .text-content {
    max-width: 60%;

  }

  .header-navbar ul li form {
    display: none !important;
  }

  .animated-search-container {
    display: block !important;
  }

}


@media (max-width: 1299px) {
  .header-navbar a {
    padding: 10px 10px;
    font-size: 15px;
  }

  .blog-next {
    right: 50px !important;
  }

  .blog-section .container .swiper-button-prev.blog-prev {
    left: 10px !important;
  }

  .nav.next {
    right: 1% !important;
  }

  .nav.prev {
    left: 2% !important;
  }

  .course-inner-banner-right {
    align-items: center;
  }

  .footer-bottom {
    padding: 10px 90px;
  }

  .what-you-learn .what-you-learn-content ul {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .dashboard-wrapper .flex-container {
    gap: 80px !important;
    padding: 0 50px;
  }
}


@media (max-width: 1199px) {
  .header-navbar a {
    padding: 10px 6px;
  }

}



@media (max-width: 1024px) {
  .skill-training-info {
    padding: 50px 0;
  }

  .animated-search-container {
    display: none !important;
  }

  /* .header__btn.ml-20.d-none.d-sm-block a.e-btn.btn-primary-white {
    margin-top: 0;
} */
  /* .header__btn.ml-20.d-none.d-sm-block {
    flex-direction: row;
} */

  .header__btn.ml-20.d-none.d-sm-block form {
    width: 100px;
  }

  .dashboard-wrapper .flex-container {
    flex-direction: column !important;
  }

  .dashboard-wrapper .dashboard-left-menu-bar {
    width: 100% !important;
  }

  .dashboard-right-content {
    width: 100% !important;
  }

  .dashboard-wrapper div#profileView .row.mb-20::after {
    display: none;
  }

  .dashboard-wrapper div#profileView .row.mb-20::before {
    display: none;
  }

  .dashboard-wrapper div#profileView .row.mb-20 {
    display: flex;
    flex-direction: row;
    gap: 67px;
    align-items: center;
    justify-content: space-between;
  }


}

@media (max-width: 1099px) {
  .course-tabing-grid .container {
    padding: 0 20px;
  }

  .text-content h1 {
    font-size: 3rem !important;
  }

  .cta-btn {
    padding: 8px 20px;
  }

  .harman-info .container .harman-content {
    margin-top: 40px;
  }

  .harman-content-text ul {
    margin-left: 20px;
  }

  .harman-content p {
    text-align: left;
  }

  .harman-info p {
    text-align: center;
  }

  .harman-info {
    padding: 50px 0;
  }

  .harman-info .container .harman-content h2 {
    text-align: center;
  }

  .card-grid-main .card.swiper-slide.aos-init.aos-animate h3.name {
    height: 70px;
  }

  .card.swiper-slide.aos-init.aos-animate .name {
    height: 50px;
  }

     .card-grid-main {
        gap: 30px;
        grid-template-columns: 1fr 1fr 1fr;
    }

  .harman-info .container {
    flex-direction: column;
  }

  .harman-info .container .harman-image {
    text-align: center;
  }

  .harman-info .container .harman-content {
    width: 100%;
  }

  .container.search-page {
    padding-left: 50px;
    padding-right: 50px;
  }

}

@media (max-width: 1199px) {

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 22px;
    line-height: 30px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 14px;
  }

  header .container .header-logo img {
    height: 100px;
  }

  .header-navbar a {
    font-size: 13px;
  }

  .blog-page div#bird {
    grid-template-columns: 1fr 1fr;
  }

  .blog-image {
    height: 300px !important;
  }

  .search-icon {
    margin-right: 30px;
  }

  .blog-page .blog-video {
    width: 100%;
    height: 300px;
  }

  /* .page-title::after {
    height: 300px !important;
  } */

  .page-title {
    height: 200px !important;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
  }

  .social-icons a {
    margin: 0 2px;
    width: 35px;
    height: 35px;
  }

  .course-card-slider .container .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .course-card-slider .container .row::before {
    display: none;
  }


  .course-card-slider .container .row .col-md-3.mb-4.aos-init.aos-animate {
    width: 100%;
  }

  .course-card-slider .image-content {
    display: flex;
    align-items: center;
  }

  .course-card-slider .card-content.p-3 {
    text-align: center;
    display: flex;
    align-items: center;
  }

}



@media (max-width: 1099px) {
  .header-navbar a {
    font-size: 12px;
  }

  .header-navbar a {
    padding: 10px 8px;
  }
}



@media (max-width: 1024px) {
  .mega-menu-item:last-child a {
    margin-top: 0 !important;
  }

  .has-inner-submenu:hover>.inner-submenu {
    border: none !important;
    padding: 10px 0 0 0 !important;
    padding-left: 16px !important;
    margin-bottom: 10px;
  }

  .inner-submenu {
    top: -5px !important;
  }

  .mega-menu-item.has-inner-submenu a p {
    font-size: 15px !important;
  }

  .header-navbar ul li a:hover {
    border-bottom: 0 !important;
  }
}

@media (max-width:991px) {
  .footer-top {
    display: flex;
    align-items: flex-start;
    padding: 40px 20px;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .social-icons h3::after {
    content: "";
    background: #e6cd6e;
    height: 3px;
    width: 90px;
    z-index: 9;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 30px;
  }

  .banner-wrapper.container h1 {
    font-size: 32px !important;
  }


  .footer-top h3 {
    padding-bottom: 20px;
  }

  .header__btn {
    width: 200px !important;
  }

  .social-icons h3 {
    text-align: center;
  }


  .dashboard-wrapper .flex-container {
    gap: 30px !important;
  }

  .dashboard-wrapper div#profileView .row.mb-20 {
    gap: 0;
  }

  .mb-5.bundle-card-main .row {
    align-items: center !important;
    flex-direction: column;
    gap: 30px;
  }

  .exam-blue-print h2 {
    margin-bottom: 10px !important;
  }

  div#enroll-bundle {
    padding: 30px;
  }

  div#enroll-bundle {
    padding-bottom: 0 !important;
  }


  .price-pop-btn {
    padding: 40px;
    padding-top: 0;
  }

  .course-inner-banner-right {
    align-items: center !important;
  }


  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .what-you-learn .what-you-learn-content ul {
    grid-template-columns: 1fr 1fr !important;
  }


  span.blob-dot4 {
    width: 10%;
    height: 2%;
    top: 96%;
    left: 84%;
  }

  span.blob-dot3 {
    width: 10%;
    height: 2%;
    top: 70%;
    left: -5%;
  }

  span.blob-dot5 {

    width: 10%;
    height: 2%;
    top: 60%;
    left: 70%;
  }

  span.blob-dot1 {
    width: 14%;
    height: 3%;
    top: 0%;
    left: 80%;
  }

  span.blob-dot2 {
    width: 10%;
    height: 2%;
    top: 30%;
    left: 75%;
  }

  .tab-container .container {
    padding: 0;
  }

  .harman-join-info .container {
    flex-direction: column;
    gap: 40px;
  }

  .harman-join-info {
    padding: 15px 0;
  }

  .harman-join-info .container .harman-join-info-image {
    width: 100%;
  }

  .harman-join-info .container .harman-join-text {
    width: 100%;
  }

  .harman-join-text p {
    text-align: center;
  }

  .pagination-wrapper ul.d-flex.align-items-center a {
    font-size: 18px;
  }

  .card-grid-main {
    gap: 20px;
  }

  .main-banner .image-center img {
    height: 250px;
    object-fit: cover;
  }



  .custom-footer h3 {
    font-size: 22px;
  }

  .footer-logo img {
    width: 100%;
  }

  .social-icons a {
    font-size: 15px;
    width: 30px;
    height: 30px;
  }
}


@media (max-width: 768px) {

  html {
    font-size: 15px;
  }

  .container {
    width: 95%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .price-pop-btn {
    background: white;
    padding: 40px 0 40px 0 !important;
    border-radius: 0px 0px 10px 10px;
  }



  .video-banner {
    height: 70vh;
  }

  .slide-content {
    margin: 0 10px;
  }

  .blog-section .container .swiper.blogSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 60px !important;
}

  .swiper-navBtn {
    display: none;
  }

  .course-inner-banner {
    padding: 0px 0;
  }

  .course-inner-banner {
    padding: 0px 0 !important;
  }

  .col-md-6.bundle-dec-inner .col-md-6 {
    padding: 0;
  }

  .bundle-dec-inner {
    gap: 30px;
  }

  .exam-blue-print {
    padding: 30px 0 0 0;
  }

  .tool-image img {
    max-width: 100%;
  }

  .course-inner-banner-left {
    width: 100% !important;
  }

  .course-inner-banner-right {
    width: 100% !important;
    align-items: center !important;
  }

  .industry-opportunities {
    padding: 30px 0 !important;
  }



  .industry-opportunities-content ul {

    grid-template-columns: 1fr 1fr !important;

  }

  .course-inner-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-direction: column;
  }

  .course-inner-banner-left {
    width: 100%;
  }

  .course-inner-banner-right {
    width: 100%;
    align-items: center;
  }

  .course-inner-banner-left h1 {
    text-align: center;
  }

  .course-inner-banner-left .mb-4 {
    text-align: center;
  }

  .contact-page section.contact-section .container {
    flex-direction: column !important;
  }

  .contact-page .form-section {
    width: 100% !important;
  }

  .timeline-row.left.aos-init.aos-animate .timeline-icon {
    left: 0px !important;
  }

  .term-third-content {
    flex-direction: column;
  }

  .term-third-content {
    margin-top: 20px;
  }

  .term-third-content p {
    text-align: center;
  }

  .term-third .container h2 {
    text-align: center;
  }

  .term-third .container {
    padding: 30px;
  }

  .contact-page .info-section {
    width: 100% !important;
    margin-top: 20px;
  }

  .contact-page .container {
    padding: 10px 0 !important;
    padding-bottom: 40px;
  }

  .mapouter {
    margin: 40px 0 !important;
  }

  .course-tabing-grid .container {
    padding: 0 5px;
  }

  .for-client-one .container {
    flex-direction: column;
  }

  .blog-page div#bird {
    grid-template-columns: 1fr !important;
  }

  .blog-page h4.blog-heading {
    height: auto;
  }

  .blog-page p.blog-description {
    height: auto;
  }

  .blog-image {
    height: auto;
  }

  .book-service-card .container .book-service-card-main {
    grid-template-columns: 1fr;
  }

  .page-title {
    margin-bottom: 60px;
  }

  .for-client-image {
    width: 100%;
  }

  .for-client-content {
    width: 100%;
  }

  .for-client-one {
    padding: 10px 0;
  }

  .for-client-two {
    padding: 10px 0 !important;
  }

  .for-client-two .container {
    flex-direction: column-reverse;
  }



  .card-content h3 {
    font-size: 22px;
    height: 70px;
  }

  .card-grid-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    gap: 25px;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-links.useful-links {
    margin-right: 70px;
  }



  .footer-contact {
    align-items: center;
  }

  .footer-links.useful-links {
    margin-right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .footer-other-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .custom-footer h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  section.info-section .info-image {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  section.info-section.aos-init.aos-animate .info-left.aos-init.aos-animate {
    width: 100%;
  }

  section.info-section.aos-init.aos-animate .info-right.aos-init.aos-animate {
    width: 100%;
  }

  section.info-section .info-image .info-right img {
    height: auto;
    margin-top: 50px;
  }

  section.info-section .info-image .info-right {
    width: auto;
    max-width: fit-content;
    height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  section.info-section .container .info-title {
    width: auto;
  }

  section.info-section.aos-init.aos-animate .container {
    width: 100%;
  }

  .info-bottom h2 {
    margin-top: 30px !important;
  }

  .info-bottom ul {
    grid-template-columns: 1fr;
  }

  .info-bottom h2::after {
    left: 10%;
  }


  .recruitment {
    padding: 30px 0;
  }

  .job-seekers-banner .container {
    font-size: 16px;
    text-align: center;
  }


  p.descaimer {
    width: 90%;
  }
}


.info-right.d-block.d-md-none.mob-about-image.aos-init.aos-animate {
  display: none !important;
}

.third-parent:hover .third-level {
    display: block;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px;
    height: auto;
    overflow: scroll;
    scrollbar-width: thin;
    overflow-x: hidden;
}


@media (max-width: 699px) {
  .contact-page section.contact-section .container {
    padding: 0 20px !important;
}
.mapouter {
    margin: 70px 0;
    padding: 0 20px;
}

.contact-page section.contact-section .info-section {
    padding: 0 0px !important;
}
  .mega-menu-content {
    width: fit-content !important;
  }
.main-banner .mb-4.text h2 {
  line-height: normal;
}
  .mega-menu-item:last-child a {
    margin-top: 0 !important;
  }

  .has-inner-submenu:hover>.inner-submenu {
    border: none !important;
    padding: 10px 0 0 0 !important;
    padding-left: 0px !important;
  }

  .header-navbar ul li a p::after {
    right: 5px !important;
    top: 2px !important;
  }

  .inner-submenu {
    top: -5px !important;
  }

  .career-btn {
    margin-top: 50px;
  }

  .mega-menu-item.has-inner-submenu a p {
    font-size: 15px !important;
  }

  .header-navbar ul li a:hover {
    border-bottom: 0;
    border-radius: 0;
  }

  .resettle-video-bg .overlay-content {
    width: 100%;
  }

  .course-slider-title h2 {
    line-height: normal;
  }

  section.video-banner.aos-init.aos-animate {
    height: 70vh !important;
  }

  .banner-wrapper.container h1 {
    font-size: 28px !important;
  }

  .gallery-item h3 {
    line-height: normal;
  }

  .contact-form .submit-btn {
    padding: 10px 20px;
  }

  .info-bottom h2 {
    margin-top: 30px !important;
  }

  .info-right.d-none.d-md-block.desk-about-image.aos-init.aos-animate {
    display: none;
  }

  section.info-section .info-image .info-right {
    display: block;
  }

  .info-left {
    flex-direction: column;
  }

  .info-right.d-block.d-md-none.mob-about-image.aos-init.aos-animate {
    display: block !important;
  }

  section.blog__area.pt-120.pb-120 .blog-video {
    height: 300px;
    margin-top: 30px;
  }

  .card.swiper-slide.aos-init.aos-animate .name {
    height: auto;
    padding-bottom: 10px;
  }

  .blog__sidebar.pl-70 .sidebar__widget.mb-60 input[type="text"] {
    margin-top: 50px;
  }

  .slide-image img {
    height: auto;
  }

  .swiper-button-next {
    top: 40% !important;
  }

  .swiper-button-prev {
    top: 40% !important;
  }

div#global-accreditation .swiper-button-prev {
    top: 75% !important;
}

div#global-accreditation .swiper-button-next {
    top: 75% !important;
}
div#popupOverlay .swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    height: 500px;
}

div#popupOverlay .swiper-slide.swiper-slide-active {
    overflow: scroll;
}
  .harman-content .harman-content-text h2 {
    text-align: center;
  }

  /* .header__btn.ml-20.d-none.d-sm-block {
        flex-direction: column;
        align-items: end;
        gap: 8px;
        margin-right: 15px;
    } */

  .burger {
    margin-left: 0px !important;
  }

  .header__btn.ml-20.d-none.d-sm-block form {
    width: auto;
  }

  .container.search-page {
    padding-left: 30px;
    padding-right: 20px;
  }

  .dashboard-wrapper .flex-container {
    padding: 0;
  }

  .dashboard-wrapper div#profileView {
    padding: 30px !important;
  }



  .price-pop-btn {
    background: white;
    padding: 40px 0 40px 0 !important;
    border-radius: 0px 0px 10px 10px;
  }

  .page-title h2 {
    font-size: 34px;
  }

  .card-grid-main .card.swiper-slide.aos-init.aos-animate h3.name {
    height: auto;
  }

  .col-md-6.bundle-dec-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-banner h2 {
    font-size: 34px;
  }

  .course-inner-faq {
    padding: 0 20px;
  }

  .tools-you-use {
    padding: 50px 0px;
  }

  .exam-blue-print h2 {
    margin-bottom: 10px !important;
  }

  header .container {
    padding: 0;
    padding-right: 30px;
    padding-left: 30px;
  }

  .timeline-box h3 {
    line-height: 24px;
  }

  .harman-image img {
    width: 100%;
  }

  .card-content h3 {
    height: auto;
    margin-bottom: 20px !important;
  }

  section.gallery-section.aos-init.aos-animate {
    padding: 0;
    margin-top: 35px !important;
  }

  .nav.next {
    right: 0% !important;
  }

  .nav.prev {
    left: 0% !important;
  }

  .gallery-item.aos-init.aos-animate {
    padding: 0;
  }

  .footer-bottom {
    padding: 20px;
  }

  .industry-opportunities-content ul {
    grid-template-columns: 1fr !important;
  }

  .bundle-dec-inner {
    flex-direction: column;
  }

  .what-you-learn .what-you-learn-content ul {
    grid-template-columns: 1fr !important;
  }

  .term-first .container {
    flex-direction: column;
  }

  .term-first .container .image-box {
    width: 90%;
  }

  .term-first .container {
    padding: 0px 0px;
  }

  .term-first .container .content-box {
    width: 90%;
  }

  video.hero-video {
    height: 40vh;
  }

  .harman-info .container .harman-image {
    width: 100%;
  }

  .harman-cta .container {
    padding: 30px 10px;
    flex-direction: column;
  }

  .harman-content .container {
    flex-direction: column-reverse;
  }

  .harman-sticky-section {
    width: 100%;
    position: relative;
    top: auto;
  }

  .harman-content-text {
    width: 100%;
  }

  .harman-sticky-section {
    margin-bottom: 20px;
  }

  .harman-content {
    padding: 20px 0;
  }

  .harman-inner-one {
    width: 100%;
  }

  .harman-inner-two {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .harman-inner-one h3 {
    text-align: center;
  }

  .harman-inner-one p {
    text-align: center;
  }



  section.info-section.aos-init.aos-animate h4 {
    text-align: center;
  }

  .main-banner .image-center img {
    height: 200px;
  }

  .prp-video-bg .overlay-content-prp {
    width: 100%;
  }

  .careerservices-video-bg .overlay-content-careerservices {
    width: 100%;
  }

  .careerservices-video-bg {
    height: 80vh;
  }

  .resettle-video-bg {
    height: 80vh;
  }

  .prp-video-bg {
    height: 80vh
  }

  .course-card-slider .container .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }

  .course-card-slider .card-image img.card-img.img-fluid {
    width: 100%;
    height: 100%;
  }

  .gallery-item img {
    height: 100%;
  }

  .free-support .container {
    padding: 0 10px;
    flex-direction: column;
  }

  .free-support {
    padding: 30px 0;
  }

  p.descaimer {
    margin-top: 0px;
  }

  .category-swiper .swiper-slide p {
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .header-navbar ul li form {
    display: flex !important;
    flex-direction: row-reverse;
    margin: 0;
  }

  .header-navbar ul li form button.btn.btn-primary {
    margin: 0 !important;
    border-radius: 8px 0 0 8px;
  }
}






@media (max-width: 499px) {
  .card-grid-main {
    grid-template-columns: 1fr;
  }

  .term-second .container {
    padding: 30px;
  }

  .accordion-header {
    font-size: 14px !important;
  }

  .exam-table th,
  .exam-table td {
    font-size: 16px !important;
  }

  .exam-blue-print .container {
    padding: 0;
  }

  .cert-module .container {
    padding: 0;
  }

  .timeline-section {
    padding: 35px 0;
  }

  .course-inner-faq .container {
    padding: 0;
  }



  .term-first .container::before {
    display: none;
  }

  .term-first .container::after {
    display: none;
  }

  .term-first .container {
    padding-top: 30px;
  }

  .d-flex.align-items-center {
    gap: 20px !important;
  }

  .aicertifications-title {
    padding: 32px 0 0;
  }

  .blog-page .container {
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    width: 95%;
  }

  .course-tabing-grid {
    padding: 30px 0 30px;
  }

  .skill-training-info {
    padding: 30px 0;
  }

  .main-banner .text {
    width: 100%;
  }
}

.btn-primary.btn-a,
.btn-primary-white.btn-a {
  text-transform: none !important;
}

.book-service-card .container .book-service-card-main {
  padding-top: 70px;
}






/*  */

.new-events-popup {
  top: 0;
  left: 0;
  width: 100%;
  background: #e6cd6e;
  color: #fff;
  text-align: center;
  z-index: 9999;
  padding: 6px 0;
  overflow: hidden;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease forwards;
}

/* Slide in animation */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}


.new-events-popup a {
  color: #1d3a6b;
  text-decoration: none;
  display: block;
  padding: 0 20px;
  font-size: 0.95rem;
  white-space: nowrap;
  text-transform: capitalize;
  overflow: hidden;
  animation: marquee 32s linear infinite;
  text-overflow: ellipsis;
  width: 100%;
}


@media (max-width: 767px) {
  .new-events-popup a {
    font-size: 14px;
  }
}


@keyframes marquee {
  0% {
    transform: translateX(50%);
  }

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




@media (max-width: 768px) {
  .new-events-popup a {
    font-size: 0.85rem;
  }
}

/* 
.new-events-popup {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  background: #1a3566; 
  color: #fff;
  text-align: center;
  z-index: 9999;
  padding: 12px 0;
  overflow: hidden;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  animation: slideDown 0.5s ease forwards;
}


@keyframes slideDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}


.new-events-popup a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0 20px;
  font-size: 0.95rem;
  text-transform: capitalize;
  animation: marquee 28s linear infinite; 
}




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


.new-events-popup a:hover {
  color: white !important;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .new-events-popup a {
    font-size: 0.85rem;
  }
}
 */










.course-cards.py-5 {
  padding: 60px 0;
  position: relative;
}

.info-image {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-left {
  flex: 1;
}

.info-bottom {
  position: relative;
}

.desk-about-image {
  position: relative;
}

.mob-about-image {
  display: block;
}

.desk-about-image {
  display: block;
}

@media (max-width: 768px) {
  .desk-about-image {
    display: none;
  }
}


.cta-section {
  width: 100%;
  background: linear-gradient(90deg, #1b2c71, #3a50a1);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-section .cta-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}

.cta-section .cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
  margin-top: 25px;
  font-weight: 600;
}

.cta-section .cta-btn {
  background-color: #e6cd6e !important;
  color: #162b6f !important;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  margin-right: 10px;
  margin-bottom: 10px;
}

.home-banner-btn-wrp {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}






/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}




.coaching-services {
  padding: 80px 20px;
  background-color: white;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px !important;
}

.section-title p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e6cd6e;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  color: #e6cd6e;
  margin-bottom: 6px;
}

.service-item h4 {
  font-size: 1.3rem;
  margin-bottom: 12px !important;
  position: relative;
}

.service-item h4::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  z-index: 9;
  border: 0;
  background: #e6cd6e;
  left: 50%;
  transform: translate(-50%, 10px);
  bottom: 0;
}

.service-item p {
  font-size: 1rem;
  color: #1b2c71;
  margin-top: 30px !important;
}


.section-title.text-center.mb-5 h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ffdd5f;
  border-radius: 2px;
  top: 60px;
}

.section-title.text-center.mb-5 h2 {
  position: relative;
  margin-bottom: 70px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-item h4 {
    font-size: 1.2rem;
  }
}


.testimonial-card {
  display: flex;
  flex-direction: column-reverse;
  align-items: baseline;
  justify-content: flex-end;
}

.testimonial-rating {
  margin-top: 5px;
}

.testimonial-rating i {
  color: #f4b400; /* Gold color for stars */
  margin-right: 2px;
}



.blog-section {
  position: relative;
  padding: 70px 0;
  background: #f7f7f7;
  padding-bottom: 10px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 2px solid #e6cd6e;
  border-top: 2px solid #e6cd6e;
}

.blog-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px 0 0px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1b2c71;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 20px 20px;
  min-height: calc(1.5em * 2);
  padding-bottom: 0;
  margin-bottom: 20px !important;
}

button.submit-btn.btn-primary:hover {
  background: #162B6E !important;
  color: white !important;
}

.blog-footer {
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e6cd6e;
  padding: 20px;
}

.blog-date {
  font-size: 0.9rem;
  color: #666;
}

.read-more {
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 14px;
  padding: 10px 20px;
  background: #162b6f;
  border-radius: 20px;
}

.read-more:hover {
  border-bottom: 1px solid #1b2c71;
  color: #162b6f !important;
  background: white;
}

.read-more i {
  font-size: 0.85rem;
  margin-left: 4px;
}

/* Swiper Navigation */
.blog-nav .swiper-button-prev,
.blog-nav .swiper-button-next {
  color: #1b2c71;
  background: #fff;
  border: 1px solid #ddd;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-nav .swiper-button-prev::after,
.blog-nav .swiper-button-next::after {
  font-size: 16px;
}

.blog-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  pointer-events: none;
}

.blog-nav .swiper-button-prev,
.blog-nav .swiper-button-next {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  pointer-events: all;
}

.blog-prev {
  left: -20px;
}

.blog-next {
  right: -20px;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-prev {
    left: 0;
  }

  .blog-next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .blog-img {
    height: 180px;
  }

  .blog-title {
    min-height: auto;
  }
}

.blog-section .container {
  position: relative;
}


.blog-section .container .swiper-button-prev.blog-prev {
  left: -60px;
  background: #162b6f;
  color: white;
}

.blog-section .container .swiper-button-next.blog-next {
  background: #162b6f;
  color: white;
}


section.blog-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ffdd5f;
  border-radius: 2px;
  bottom: -20px;
}

section.blog-section h2 {
  position: relative;
  margin-bottom: 60px !important;
}










@keyframes rotateGlow2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}





section.cta-section {
  position: relative;
  overflow: hidden;
  background-image: url(/frontend/images/cta-banner21.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 20px;
  z-index: 1;
  color: #fff;
}

section.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000087;
  z-index: 0;
}

section.cta-section .container {
  position: relative;
  z-index: 2;
}




section.cta-section .container {
  position: relative;
}








.blue-wave svg {
  display: block;
  width: 100%;
  height: 100px;
  background: #f7f7f7;
}

.conversion-panel.blue {
  position: relative;
  padding: 60px 0;
  background: #f0f8ff;
  /* optional light blue background */
}

.conversion-panel h2 {
  color: white;
  /* W3 Blue */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px !important;
}

.conversion-panel p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 20px;
}

.primary-btn {
  display: inline-block;
  background-color: white;
  color: #162b6f;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.blue-wave.additional-background path {
  fill: #2c3c73;
}

/* Optional: decorative images */
.conversion-panel__bg-left,
.conversion-panel__bg-right {
  position: absolute;
  top: 0;
  width: 150px;
  height: auto;
  z-index: 0;
}

.conversion-panel__bg-left {
  left: 0;
}

.conversion-panel__bg-right {
  right: 0;
}



.conversion-panel.blue {
  position: relative;
  padding: 60px 0;
  background: #2c3c73;
  /* optional light blue background */

  /* Desktop left image */
  background-image: url('/frontend/images/Lattice_left.svg'),
    url('/frontend/images/Lattice_right-1.svg');
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
  background-size: auto 100%, auto 100%;
}

/* Mobile left image */
@media (max-width: 767px) {
  .conversion-panel.blue {
    background-image: url('/frontend/images/Lattice.svg'),
      url('/frontend/images/Lattice_right-1.svg');
    background-position: left top, right top;
    background-size: auto 80%, auto 100%;
  }
}
.iprodigy-wrp .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section a.primary-btn.xl {
    background: #1d3a6b;
    color: white !important;
}
.iprodigy-wrp .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section a.primary-btn.xl:hover {
    background: #e5cc6e !important;
    color: #1d3a6b !important;
}

.workshop-wrp-main .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section a.primary-btn.xl {
    background: #1d3a6b;
    color: white !important;
}

.workshop-wrp-main .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section a.primary-btn.xl:hover {
     background: #e5cc6e;
    color: #1d3a6b !important;
}
.btns-wrap.c-mt-8.justify-content-sm-center a.primary-btn.xl {
  transition: background-color 0.4s ease, transform 0.4s ease;
  font-size: 16px;
}

.btns-wrap.c-mt-8.justify-content-sm-center a.primary-btn.xl:hover {
  transform: translateY(-3px);
  background: #e6cd6e;
}

.row-fluid-wrapper.row-depth-1.row-number-1.dnd-section a.primary-btn.xl {
    background: white;
    color: #2c3c73;
}


.newsletter-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #162b6f 0%, #e6cd6e 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0px;
}

.course-cards.py-5 a.btn.btn-primary {
  padding: 10px 30px !important;
  font-size: 16px;
  border-radius: 6px;
      color: white !important;
}

.course-cards.py-5 a.btn.btn-primary:hover {
      color: #162b6f !important;
}

/* Styling button inside newsletter section */
.newsletter-section .btn {
  background: #fff;
  color: #162b6f;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
}

.newsletter-section .btn:hover {
  background: #e6cd6e;
  color: #162b6f;
}



.animated-bg span {
  position: absolute;
  border-radius: 50%;
  background: rgb(22 43 111);
  animation: moveDots 8s linear infinite;
}

.animated-bg span:nth-child(1) {
  width: 60px;
  height: 60px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  background: #ddc66e;
}

.animated-bg span:nth-child(2) {
  width: 100px;
  height: 100px;
  left: 70%;
  top: 10%;
  animation-delay: 2s;
}

.animated-bg span:nth-child(3) {
  width: 80px;
  height: 80px;
  left: 40%;
  top: 70%;
  animation-delay: 4s;
  background: linear-gradient(45deg, #ddc66e, #21346f);
}

.animated-bg span:nth-child(4) {
  width: 120px;
  height: 120px;
  left: 85%;
  top: 60%;
  animation-delay: 6s;
}

.animated-bg span:nth-child(5) {
  width: 50px;
  height: 50px;
  left: 25%;
  top: 80%;
  animation-delay: 8s;
  background: #c1b06e;
}

@keyframes moveDots {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}





.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: white;
}

.newsletter-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: white;
  margin-top: 30px;
}

/* Form styling */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  width: 60%;
  max-width: 350px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background-color: #1a3566;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: normal !important;
  height: fit-content;
}

.newsletter-form button:hover {
  background-color: #d8c26e;
  transform: scale(1.05);
  color: #162b6f;
}

/* Responsive */
@media (max-width: 600px) {
  .newsletter-container h2 {
    font-size: 1.8rem;
  }

  .newsletter-form input {
    width: 100%;
  }
}



.coaching-services {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 70px 20px;
  text-align: center;
}


.coaching-services .animated-bg span {
  position: absolute;
  border-radius: 50%;
  width: 35%;
  height: 75%;
  background: rgba(0, 102, 255, 0.15);
  top: 60%;
  left: -8%;
  animation: moveBigDots 10s ease-in-out infinite alternate;
  z-index: 0;
}

.coaching-services .animated-bg span:nth-child(2) {
  background: rgba(235, 215, 138, 0.35);
  top: -3%;
  left: 75%;
  animation-delay: 10s;
}

/* Animate movement and scale */
@keyframes moveBigDots {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(30px, -20px) scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
}

/* Section content above the dots */
.coaching-services .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

section.coaching-services .container {
  position: relative;
}





.info-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

/* Left Top Blob */
.light-box .animated-bgtwo .blob-left {
  position: absolute;
  border-radius: 50%;
  width: 45%;
  height: 75%;
  background: rgba(0, 102, 255, 0.15);
  top: -15%;
  left: -15%;
  animation: moveBlobLeft 12s ease-in-out infinite alternate;
  z-index: 0;
}

/* Bottom Right Blob */
.light-box .animated-bgtwo .blob-right {
  position: absolute;
  border-radius: 50%;
  width: 45%;
  height: 75%;
  background: rgba(235, 215, 138, 0.35);
  bottom: -15%;
  right: -16%;
  animation: moveBlobRight 14s ease-in-out infinite alternate;
  z-index: 0;
}

/* Animate left blob */
@keyframes moveBlobLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(20px, 20px) scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
}

/* Animate right blob */
@keyframes moveBlobRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-20px, -20px) scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
}

/* Section content above blobs */
.course-cards.py-5 .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #222;
}

.contact-header a:hover {
  color: white !important;
}

.header-navbar ul li a {
  font-size: 18px !important;
}


/*  */




.course-cards.py-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/frontend/images/ai-line-bg3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  display: block;
}



/* workshop page */


.workshop-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.workshop-title {
  margin-bottom: 20px;
  line-height: 1.3;
}

.workshop-intro {
  margin: 0 auto 40px;
}

.workshop-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.workshop-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.workshop-card-title {
  margin-bottom: 10px;
}

section.coaching-services.workshop-page {
  padding: 60px 0;
}

.banner-wrapper.container h1 {
  text-align: center;
}


.video-banner .text-content {
  max-width: 90% !important;
  margin: 0 auto;
}







/* new resposnive start */


@media (max-width: 1699px) {
  .header-navbar ul li a {
    font-size: 16px !important;
  }
}


@media (max-width: 1599px) {
  .header-navbar ul li a {
    font-size: 15px !important;
  }
}

@media (max-width: 1499px) {
  .header-navbar ul li a {
    font-size: 14px !important;
  }
}

@media (max-width: 1399px) {
  .banner-wrapper {
    gap: 50px !important;
  }

  .text-content h1 {
    font-size: 3rem !important;
  }
}


@media (max-width: 1199px) {
  .header-navbar ul li a {
    font-size: 13px !important;
  }
  .mega-menu-item.has-inner-submenu a p {
    font-size: 14px !important;
}
    header .container {
    width: 95% !important;
}

  .coaching-services .animated-bg span {
    position: absolute;
    border-radius: 50%;
    width: 50%;
    height: 60%;
  }

  .coaching-services .animated-bg span:nth-child(2) {
    top: -25%;
    left: 59%;
  }

  .mega-logo {
    width: 100px !important;
  }
}

@media (max-width: 1099px) {
  .header-navbar ul li a {
    font-size: 16px !important;
  }

  .header-navbar a {
    padding: 10px 6px;
  }
}


@media (max-width: 991px) {
  section.video-banner.aos-init.aos-animate {
    height: 120vh;
  }
.mapouter {
    margin: 70px 0;
    padding: 0 20px;
}

  .text-content {
    max-width: 100% !important;
  }

  .form-content.aos-init.aos-animate {
    max-width: 100% !important;
  }

  .banner-wrapper {
    align-items: self-start !important;
  }

  .info-image .info-left {
    position: relative;
  }
}

@media (max-width: 768px) {
  .info-image .info-left {
    width: 100%;
  }

  .home-banner-btn-wrp {
    flex-direction: column;
  }

  .light-box .animated-bgtwo .blob-left {
    width: 75%;
    height: 65%;
    top: -15%;
    left: -15%;
  }

  .light-box .animated-bgtwo .blob-right {
    width: 75%;
    height: 65%;
    bottom: -15%;
    right: -16%;

  }
}




@media (max-width: 699px) {

  .light-box .animated-bgtwo .blob-left {
    width: 100%;
    height: 36%;
    top: -8%;
    left: -31%;
  }

  section.coaching-services.workshop-page .section-title.text-center.mb-5 h2::after {
    top: 85px;
  }

  section.coaching-services h2::after {
    top: 75px !important;
  }

  .info-section .animated-bgtwo .blob-right {
    width: 100%;
    height: 35%;
    bottom: -6%;
    right: -48%;
  }

  .contact-header a {
    font-size: 14px;
  }

  .contact-header .contact-header-col {
    gap: 5px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .text-content h1 {
    font-size: 30px !important;
  }

  .contact-header a {
    font-size: 14px;
  }

  header .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .header__btn.ml-20.d-none.d-sm-block {
    gap: 5px !important;
    flex-direction: column;
  }

  .header__btn {
    width: 100px !important;
  }

  header .container .header-logo img {
    height: 90px;
  }

  .text-content {
    max-width: 100% !important;
    gap: 20px !important;
  }

  .cta-btn {
    padding: 8px 18px !important;
  }


  .course-cards.py-5 .animated-bgtwo .blob-left {
    border-radius: 50%;
    width: 100%;
    height: 15%;
    top: -2%;
    left: -34%;
  }

  .card-btn {
    padding: 8px 14px !important;
    font-size: 14px !important;
  }

  .course-cards.py-5 {
    padding: 50px 20px;
  }

  .course-cards.py-5 .container {
    position: relative;
    padding: 0;
  }

  .info-image .info-left {
    width: 100%;
  }

  section.info-section .info-image .info-right img {
    margin-top: 0;
    margin-bottom: 20px;
  }

  section.coaching-services .container {
    padding: 0;
  }

  .course-cards.py-5 .animated-bgtwo .blob-right {
    width: 100%;
    height: 15%;
    bottom: -2%;
    right: -30%;
  }

  .coaching-services {
    padding: 40px 20px;
  }

  .coaching-services .animated-bg span {
    width: 70%;
    height: 50%;
    top: 60%;
    left: -8%;
  }

  .light-box {

    padding: 20px 0 10px;
  }

  .testimonial-title h2 {
    margin-bottom: 30px !important;
    padding-top: 0 !important;
  }

  .newsletter-section {
    padding: 55px 20px;
  }

  .coaching-services .animated-bg span:nth-child(2) {
    background: rgba(235, 215, 138, 0.35);
    top: -6%;
    left: 40%;
    animation-delay: 10s;
  }

  .blog-section {
    padding: 50px 0;
    padding-bottom: 0;
  }
.blog-section .container .swiper.blogSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding-bottom: 40px;
}
  .cta-section .cta-title {
    font-size: 26px;
    line-height: normal;
  }

  section.cta-section .container {
    position: relative;
    width: 100% !important;
    padding: 0;
  }

  section.cta-section {
    padding: 65px 20px;
  }

  .section-title.text-center.mb-5 h2 {
    margin-bottom: 55px !important;
  }

  .cta-section .cta-btn {
    padding: 10px 30px;
  }

  .cta-section {
    padding: 55px 20px;
  }

  .banner-wrapper {
    max-width: 100% !important;
    width: 100%;
  }

  .gallery-section {
    padding: 40px 0;
  }

  .testimonial-main {
    padding: 40px 0 50px 0;
  }

  .animated-bg span:nth-child(4) {
    top: 77%;
  }

  .animated-bg span:nth-child(2) {
    left: 88%;
  }

  .animated-bg span:nth-child(1) {
    top: 70%;
  }

  .animated-bg span:nth-child(5) {
    left: 6%;
    top: 78%;
  }

  .animated-bg span:nth-child(3) {
    left: 40%;
    top: 97%;
  }

  .cta-btn {
    padding: 6px 25px;
  }


  .newsletter-section .animated-bg span:nth-child(1) {
    top: 17%;
  }

  .course-cards.py-5 a.btn.btn-primary {
    padding: 8px 28px !important;
    font-size: 14px;
  }
}

@media (max-width: 499px) {
  .coaching-services .animated-bg span {
    width: 99%;
    height: 30%;
    top: 60%;
    left: -8%;
  }

  .animated-bg span:nth-child(1) {
    top: 82%;
  }
}

section.blog-section {
    overflow: hidden !important;
}

.blog-section .container .swiper.blogSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 10px;
}


.blog-section .container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -6px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: none;
}

@media (max-width: 767px) {

  .blog-prev,
  .blog-next {
    display: none !important;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: block;
  }
}





.client-logo-slider {
  padding: 60px 0;
}

.client-logo-slider .container {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.client-logo-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
}

.client-logo-track a {
  display: inline-flex;
}

.client-logo-track img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}


header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90% ;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}

.course-cards {
  background-color: #f7f7f7 !important;
}

.course-slider-title h2 {
  color: #152868 !important;
}

/* Mega Menu */
.mega-menu {
  position: relative;
}

.mega-menu-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mega-menu:hover .mega-menu-content {
    display: flex;
    height: auto;
    gap: 22px;
    padding: 25px 0px;
}

ul.inner-submenu li.third-parent a::after {
    top: 25px;
}
li.third-parent a:hover {
    padding-bottom: 8px !important;
}
.third-level li a:hover {
    padding-bottom: 0px !important;
}
.mega-menu-item {
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}

.mega-menu-item:last-child {
  margin-bottom: 0;
}
.mega-menu-item a {
    padding: 0 0px !important;
    margin: 0 !important;
}

.mega-logo {
  width: 80px;
  height: 25px;
  object-fit: contain;
}

.mega-menu-item a {
  text-decoration: none;
  color: #162b6f;
  font-weight: 600;
}

/* Optional floating animated dots */
.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-dots span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, #1b2c71, #e6cd6e);
  animation: floatDots 6s infinite;
}

.floating-dots span:nth-child(2) {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 50%;
  animation-delay: 1s;
}

.floating-dots span:nth-child(3) {
  width: 10px;
  height: 10px;
  top: 60%;
  left: 30%;
  animation-delay: 2s;
}

.floating-dots span:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 70%;
  animation-delay: 3s;
}

@keyframes floatDots {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-10px) translateX(5px);
    opacity: 0.7;
  }

  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
}

/* Responsive */
@media(max-width:1024px) {
  .mega-menu-content {
    position: static;
    width: 100%;
    padding: 15px;
  }

  .mega-menu-item {
    justify-content: flex-start;
  }
}


.quote-float {
  background: #e6cd6e !important;
  color: #1b2c71 !important;
}


.our-clients {
  position: relative;
  padding: 60px 0;
  background: #2c3c73;
  background-image: url(/frontend/images/Lattice_left.svg), url(/frontend/images/Lattice_right-1.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
  background-size: auto 100%, auto 100%;
}

.clients-title {
  text-align: center;
  margin-bottom: 80px !important;
}

.custom-card {
  border: 1px solid #1b2c71 !important;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.client-logos a img {
  height: 100px;
  transition: transform 0.3s ease;
  background: #f7f7f7;
  padding: 30px;
  width: 250px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid #e6cd6e;
}

.client-logos a img:hover {
  transform: scale(1.1);
}


.clients-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ffdd5f;
  border-radius: 2px;
}

.clients-title {
  position: relative;
  color: white;
}

.contact-form input,
.contact-form textarea {
  text-transform: capitalize;
}

.mega-menu-content {
  border-radius: 0 !important;
  border: 1px solid #efefef !important;
}

.testimonial-main {
  position: relative;
}

.testimonial-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/frontend/images/ai-line-bg3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  display: block;
}
.custom-card {
    height: 100%;
}
.mega-menu-item.has-inner-submenu.third-parent.ipro-menu a {
    font-size: 20px !important;
    font-weight: 600;
    color: #1d3a6b;
    margin-left: 5px !important;
}
.custom-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
h5.name {
    color: #cfa935;
}
.card-course-list {
    flex-grow: 1;
}
.career-page .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section a.primary-btn.xl {
    color: #2c3c73 !important;
}
.mega-menu-item.has-inner-submenu.third-parent:nth-child(8) ul.third-level {
    display: none;
}
#anexasEnrollForm .modal-header .close {
    background: #1d3a6b;
    opacity: 1;
    border-radius: 50%;
    padding: 6px 8px;
    color: white;
}
.mega-menu-item.has-inner-submenu.third-parent:nth-child(8) a::after {
  display: none;
}
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.custom-card .card-course-list li:nth-child(n+5) {
    display: none;
}
div#provider-4 .col-12
 {
    font-size: 20px;
    width: max-content;
    font-weight: 600;
    text-align: center;
}
.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content .btn-primary {
    margin-top: auto;
}

div#player {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
}
.card-btn-col {
    margin-top: auto;
}

.course-cat-btn img {
  width: 100%;
  height: 35px;
}

.course-slider-title p {
  color: #1b2c71 !important;
}

.card-content a.btn-primary {
    color: white !important;
}

.card-content a.btn-primary:hover {
    color: #162b6f !important;
}

@media (max-width: 699px) {
  .client-logos {
    flex-direction: column;
  }
  .course-cat-btn {
    gap: 0 20px;
    flex-wrap: wrap;
}
.course-tab-btn {
    margin-bottom: 25px;
}    .course-tabing-grid .container {
        padding: 0 20px;
    }
  .btns-wrap.c-mt-8.justify-content-sm-center a.primary-btn.xl {
    font-size: 14px;
  }
.course-cat-btn img {
    width: 85%;
    height: 25px;
}
  .client-logos a img {
    height: 90px;
    width: 180px;
    border-radius: 10px;
    object-fit: contain;
    margin: 0 auto;
  }

  .blue-wave svg {
    height: 50px;
  }

  .conversion-panel h2 {
    line-height: normal;
    font-size: 28px;
    padding: 0 20px;
  }

  .conversion-panel.blue {
    padding: 45px 0;
  }

  li.has-submenu ul.submenu a {
    padding-bottom: 0 !important;
  }

  .has-inner-submenu {
    margin-top: -16px;
  }

  .has-inner-submenu:hover>.inner-submenu {
    padding-top: 0 !important;
  }

  ul.inner-submenu li {
    margin-bottom: 0 !important;
  }


  .quote-float {
    width: 130px;
    height: 40px;
    font-size: 15px;
  }

  .testimonial-card::after {
    display: none;
  }

  .profile-row {
    margin-left: 0 !important;
  }
}




section.info-section.aos-init.aos-animate {
  padding: 40px 0;
  background: #f7f7f7;
  background-image: url(/frontend/images/ai-line-bg3.png) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}



/* personal coaching */



.career-page .container {
  margin: auto;
  padding: 0 20px;
}

.career-section {
  padding: 60px 0;
}

.career-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;
}
.career-image {
    width: 45%;
}
.career-content h2 {
    margin-bottom: 12px !important;
    font-size: 40px;
    line-height: normal;
}

.career-content  {
    width: 55%;
}
.career-image img {
  width: 100%;
  border-radius: 12px;
}

.career-content {
  flex: 1;
}

.career-content p {
  margin-bottom: 15px;
}

.program-overview-section {
    background: #ffffff;
    padding: 0 0 60px 0;
}
.program-overview-section h2 {
margin-bottom: 42px !important;
font-size: 40px;
line-height: normal;
}
.overview-container {
  text-align: center;
}
p.fee-amount {
    color: white;
}
.overview-list-box {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 0px;
  text-align: left;
}
.career-page .btns-wrap.c-mt-8.justify-content-sm-center {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.career-page .btns-wrap.c-mt-8.justify-content-sm-center a {
text-decoration: none;
}
.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 18px;
  font-weight: 600;
}

.overview-list li:last-child {
  border-bottom: none;
}

.program-fee-box {
  background: #1a237e;
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
}
.why-box p {
    font-size: 18px;
    font-weight: 600;
}
.why-section {
  text-align: center;
  padding: 0 0 60px 0;
  background: #ffffff;
}
section.why-section h2 {
    margin-bottom: 40px !important;
    font-size: 40px;
    line-height: normal;
}
.why-box-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-box {
  flex: 1;
  min-width: 260px;
  background: #f7f7f7;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease, transform 0.3s ease;
  border: 1px solid #e6cd6e;
}

.why-box:hover {
  transform: translateY(-5px);
}
.overview-list-box {
position: relative;
}

.ribbon {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.ribbon {
    --r: .6em;
    --s: 1.5em;
    line-height: 1.8;
    padding-inline: calc(var(--r) + .3em) 1lh;
    border-bottom: var(--s) solid #0005;
    background: #e6cd6e;
    clip-path: polygon(calc(100% - 1lh) 0, 0 0, var(--r) calc(50% - var(--s) / 2), 0 calc(100% - var(--s)), calc(100% - 1lh) calc(100% - var(--s)), calc(100% - 1lh) calc(100% - var(--r)), calc(100% - .5lh) 100%, 100% calc(100% - var(--r)), 100% calc(100% - var(--s)));
    width: fit-content;
    color: #1d3a6b;
}

.ribbon {
    position: absolute;
    right: -25px;
    top: -15px;
    z-index: 0;
    font-size: 22px;
}



/* workshop */

.intro-section {
    display: flex;
    padding: 50px 0;
    gap: 40px;
    align-items: center;
}
.intro-img {
    width: 45%;
}
.intro-content {
    width: 55%;
}
.intro-content ul {
    margin-left: 28px;
}
.module-box-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.module-box-row {
    margin-top: 35px;
}
.intro-img img {
    width: 100%;
    border-radius: 12px;
}
.module-box {
    padding: 20px;
    background: #f7f7f7;
    border-radius: 12px;
    width: 100%;
    height: -webkit-fill-available;
    border: 1px solid #e6cd6e;
    transition: 0.3s;
}

.module-box:hover {
transform: translateY(-5px);
}

.worksho-module {
    padding-bottom: 50px;
}
.module-box h4 {
    margin-bottom: 18px !important;
}
.intro-content h2 {
    margin-bottom: 25px !important;
    font-size: 40px;
    line-height: normal;
}
.career-workshop-container {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.career-workshop-image img {
  width: 100%;
  border-radius: 12px;
}

.career-workshop-content h2 {
  margin-bottom: 15px;
}

.career-workshop-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.career-workshop-content p {
  margin-bottom: 15px;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #1a237e;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.timeline-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a237e;
  position: absolute;
  left: -2px;
  top: 0;
}

.timeline-content {
  background: #f4f6ff;
  padding: 15px 20px;
  border-radius: 8px;
  margin-left: 40px;
}

.timeline-content h4 {
  margin: 0 0 5px 0;
}

.timeline-content p {
  margin: 0;
}

.outcomes-box-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
section.outcomes-section {
    margin-bottom: 50px;
}
.outcome-box {
    flex: 1;
    min-width: 220px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e6cd6e;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

.outcome-box:hover {
  transform: translateY(-5px);
}
 
.benefits-box-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.benefits-box {
  flex: 1;
  min-width: 200px;
  background: #f4f6ff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}


.outcomes-section ul {
  padding-left: 20px;
}

.outcomes-section ul li {
  margin-bottom: 10px;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.cta-btn {
  background: #1a237e;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #3949ab;
}

/* IPRODIGY BOXES */
.iprodigy-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.iprodigy-box {
  flex: 1;
  min-width: 250px;
  background: #f4f6ff;
  padding: 20px;
  border-radius: 12px;
}

.iprodigy-box h4 {
  margin-bottom: 10px;
}
.worksho-module h2 {
    margin-bottom: 20px !important;
    font-size: 40px;
}

section.outcomes-section h2 {
    margin-bottom: 35px !important;
    font-size: 40px;
}

.iprodigy-section {
  padding: 60px 0px;
}



.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  margin-bottom: 8px;
}

.courses-grid-aipro {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.course-card-aipro {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      border: 1px solid #e6cd6e;
}

.course-card-aipro img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.course-card-aipro h3 {
  font-weight: 700;
  margin-bottom: 5px;
}

.course-card-aipro .age {
    font-style: normal;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
}
.iprodigy-wrp .conversion-panel.blue {
    padding: 100px 0;
    padding: 0;
    background: none;
    margin-bottom: 50px;
}
.iprodigy-wrp a.primary-btn.xl {
    background: #1c3968 !important;
    color: white !important;
}
.iprodigy-wrp a.primary-btn.xl:hover {
    color: #1c3968 !important;
}
.course-card-aipro ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

.course-card-aipro ul li {
  margin-bottom: 5px;
}

section.iprodigy-section h2 {
    margin-bottom: 30px !important;
    font-size: 40px;
    line-height: normal;
}
.iprodigy-wrp .btns-wrap.c-mt-8.justify-content-sm-center {
    gap: 20px !important;
    display: flex;
    justify-content: center;
}

.ipro-menu::after {
    display: none;
}



.search-li {
  width: 18%;
}
.workshop-wrp-main .conversion-panel.blue {
    padding: 0;
    background: none;
    margin-bottom: 50px;
}

.btns-wrap.c-mt-8.justify-content-sm-center a.primary-btn.xl {
    background: #1d3a6b;
    color: white !important;
    text-decoration: none !important;
}

.btns-wrap.c-mt-8.justify-content-sm-center a.primary-btn.xl:hover {
    color: #1d3a6b !important;
}

@media (max-width: 1399px){
.search-li {
  width: auto;
}
}


@media (max-width: 1299px){
.ribbon {
    font-size: 20px;
}
.outcomes-box-container {
    grid-template-columns: 1fr 1fr 1fr;
}
.career-content h2 {
    font-size: 36px;
}
section.iprodigy-section h2 {
    font-size: 36px;
}
.program-overview-section h2 {
    font-size: 36px;
}
section.why-section h2 {
    font-size: 36px;
}
.intro-content h2 {
    font-size: 36px;
}
.worksho-module h2 {
    font-size: 36px;
}
.program-overview-section h2 {
    font-size: 36px;
}
section.outcomes-section h2 {
    font-size: 36px;
}

}

@media (max-width: 1024px){
.ribbon {
    right: -10px;
}
.module-box-row {
    flex-wrap: wrap;
}

}

@media (max-width: 900px) {
  .career-container {
    flex-direction: column;
    text-align: center;
  }
  .career-container {
    flex-direction: column;
}
.outcomes-box-container {
    grid-template-columns: 1fr 1fr;
}
.intro-section {
    flex-direction: column;
}

.intro-img {
    width: 100%;
}
.intro-content {
    width: 100%;
}
.career-image {
    width: 100%;
}
.career-content {
    width: 100%;
}
.career-workshop-container {
    flex-direction: column;
    text-align: center;
  }
  .timeline {
    padding-left: 20px;
  }
  .timeline-content {
    margin-left: 30px;
  }
  .intro-img {
    width: 100%;
}
.intro-content {
    width: 100%;
}
.module-box-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

}

@media (max-width: 600px) {
  .career-container {
    gap: 20px;
  }
  .worksho-module .container {
    max-width: 100% !important;
    padding: 0;
    margin: 0;
    width: 100%;
}

.workshop-wrp-main .conversion-panel.blue {
    padding: 0px 0;
}
    header .container .header-logo img {
        margin-left: -10px;
    }
  section.outcomes-section h2 {
    font-size: 26px;
}
.program-overview-section h2 {
    margin-bottom: 70px !important;
}
  section.iprodigy-section h2 {
    font-size: 26px;
}
section.outcomes-section .container {
    margin: 0;
    padding: 0;
    width: 100%;
}
.ribbon {
    top: -40px;
}
.worksho-module h2 {
    font-size: 26px;
}
.program-overview-section h2 {
    font-size: 26px;
}
.intro-content h2 {
    font-size: 26px;
}
.program-overview-section h2 {
    margin-bottom: 70px !important;
}
section.why-section h2 {
    font-size: 26px;
}
.ribbon {
    top: -40px;
}
.iprodigy-section {
    padding: 30px 0px;
}
  .program-overview-section h2 {
    font-size: 26px;
}
  .module-box-row {
    grid-template-columns: 1fr 1fr;
}
.career-content h2 {
    font-size: 26px;
}
  .why-box {
    min-width: 200px;
  }
  .iprodigy-section .container {
    padding: 0;
    margin: 0;
}

  .overview-list li {
    font-size: 16px;
}
.course-card-aipro {
    max-width: fit-content;

}
     .ribbon {
        font-size: 16px;
        padding: 8px 22px;
    }
    .why-box p {
    font-size: 16px;
}
.career-section {
    padding: 50px 0;
    padding-bottom: 35px;
}
.program-overview-section {
    padding: 0 0 50px 0;
}
.why-section {
    padding: 0 0 40px 0;
}
}

@media (max-width: 499px){
.career-page .btns-wrap.c-mt-8.justify-content-sm-center {
    flex-direction: column;
}
.outcomes-box-container {
    grid-template-columns: 1fr;
}
    .btns-wrap.c-mt-8.justify-content-sm-center a.primary-btn.xl {
        width: max-content;
    }
      .module-box-row {
    grid-template-columns: 1fr;
}
    .career-page .btns-wrap.c-mt-8.justify-content-sm-center {
    align-items: center;
}
.iprodigy-wrp .btns-wrap.c-mt-8.justify-content-sm-center {
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
}

}

@media (max-width: 370px) {
    .ribbon {
        font-size: 16px;
        padding: 5px 20px;
    }
        .ribbon {
        top: -50px;
    }
}

body#tinymce {
    padding: 20px;
}

body#tinymce ul {
    padding-left: 40px;
}
body#tinymce ol {
    padding-left: 40px;
}

.blog__sidebar.pl-70 .sidebar__widget.mb-60 input[type="text"] {
    border: 1px solid #162b6f !important;
}

.blog__wrapper ul {
    margin-left: 30px !important;
}

.blog__wrapper span {
    line-break: anywhere !important;
}
