/* ========================
   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;
  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;
}

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

.header-navbar ul li {
    font-weight: 600;
}

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: 120px;
}

.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;
}

.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: 50px 0;
  background-color: white;
}

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

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

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

.info-image .info-left{
width: 50%;
}

section.info-section .info-image .info-right{
  width: 50%;
  }

  section.info-section .info-image .info-right img {
    height: 50vh;
    width: 100%;
    object-fit: contain;
}

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

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: center;
}

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

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

section.info-section .info-image ul li {
  margin-left: 25px;
  line-height: 32px;
}






/* 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: 40px !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-bottom: 80px;
  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: 55px;
}

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

.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%;
}
.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;
}

.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;
}




/* light-box */

.light-box {
  padding: 40px 0;
}

.gallery-section {
  padding: 40px;
}

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

.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: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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




.gallery-item h3 {
  padding: 20px 10px 20px 10px;
    font-size: 18px;
    background: #162b6f;
    color: white;
    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: #f7f9fc;
  /* 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-top h3 {
  padding-bottom: 20px;
  text-align: left;
}

.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;
}

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

.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: #354052 ;
}

.footer-bottom p {
  margin: 0px 0;
  color: white;
  font-size: 13px;
}

.footer-bottom {
  background: #162b6f;
  display: flex;
    justify-content: space-between;
    padding: 20px 150px;
}

.footer-bottom a {
  color: #354052;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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


footer {
  background: white !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;
  gap: 50px;
}

.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;
}











.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;
}

.info-social {
    display: flex;
    gap: 18px;
    margin-left: 12px;
}

.info-social a {
    font-size: 20px;
}

.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: #162b6f !important;
}

.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: 70px;
}

.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');

    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: 420px;
    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;
}

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: 420px;
    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: white;
    padding: 25px 0 60px 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: 8px 6px;
    margin-bottom: 0;
    width: 90px;
    font-weight: 600;
    height: 35px;
}

.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;
}








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

.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;

}

}


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


@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;
}

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

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


.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;
}
}


@media (max-width: 1299px){
.header-navbar a {
    padding: 10px 10px;
    font-size: 15px;
}
.course-inner-banner-right {
    align-items: center;
}

.footer-bottom {
    padding: 20px 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: 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;
}

.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;
}

.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: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;
    }

    .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;
}



    .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;
  }
  .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-top: 50px !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: 50vh;
    margin-top: 50px;
}

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

.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;
}




@media (max-width: 699px) {
.header__btn.ml-20.d-none.d-sm-block a.e-btn.btn-primary-white {
    padding: 6px 20px;
}
.resettle-video-bg .overlay-content {
    width: 100%;
}

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

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

.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;
}



.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.video-banner.aos-init.aos-animate {
    height: 40vh;
}

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;
}