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

:root {
  --spacer: 10px;
  --theme-color-icss: linear-gradient(45deg, #011037, #040074, #011037);
  --color-1: #011037;
  --color-1-light: #001b5f;
  --color-2: #040074;
  --color-2-light: #0500a3; 
  --color-3: #ff0000; 
  --color-3-dark: #8b0000; 
  --color-4: #272727;
  --color-4-light: #4b4b4b;
  --color-5: #3b005e;
  --color-5-light: #51206d;
  --color-6: #470070;
  --color-6-light: #6e3f8a;
  --boxShadowShade01: 0 0.5rem 1rem rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.15);
  --boxShadowShade02: 0 7px 15px 0 rgba(0, 0, 0, 0.13), 0 1px 4px 0 rgba(0, 0, 0, 0.11);
  --boxShadowShade03: 0 7px 15px 0 rgba(0, 0, 0, 0.3), 0 1px 4px 0 rgba(0, 0, 0, 0.3);
  --BlueRadialGradient: radial-gradient(#02006b, #011037);
  --BlackRadialGradient: radial-gradient(#222222, #141414);
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

/** Custom scrollbar style **/
.scrollbar::-webkit-scrollbar {width: 8px; height: 100%;}
.scrollbar::-webkit-scrollbar-thumb {background: linear-gradient(45deg, #011037, #02006b);}
.scrollbar::-webkit-scrollbar-track {background: #292929d2;}

.scrollbar-player::-webkit-scrollbar {width: 6px; margin-left: -13px;}
.scrollbar-player::-webkit-scrollbar-thumb {background: #444444; border-radius: 10px;}
.scrollbar-player::-webkit-scrollbar-track {background: #131313; margin-top: 17px; margin-bottom: 17px;}
.scrollbar-player-white::-webkit-scrollbar {width: 6px; margin-left: -13px;}
.scrollbar-player-white::-webkit-scrollbar-thumb {background: #989898; border-radius: 10px;}
.scrollbar-player-white::-webkit-scrollbar-track {background: #cdcdcd; margin-top: 17px; margin-bottom: 17px;}


.scrollbar-form::-webkit-scrollbar {width: 2px;}
.scrollbar-primary::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: rgb(71, 86, 124);
  opacity: 100%;
}.scrollbar-primary::-webkit-scrollbar-track{
  margin-top: 30px; margin-bottom: 30px;
}

::-moz-scrollbar {width: 8px;}
::-moz-scrollbar-thumb {background: linear-gradient(45deg, #011037, #02006b);}
::-moz-scrollbar-track {background: #292929d2;}

/** Custom fading animation **/
@keyframes fadeIn {from {opacity: 0;} to {opacity: 1;}}
@keyframes fadeOut {from {opacity: 1;} to {opacity: 0;}}
.fading-component {
  animation: fadeIn 0.3s ease-in-out;
}.fadout-component {
  animation: fadeIn 0.3s ease-in-out;
}

/** Custom preset **/
a {text-decoration: none !important;}
.no-outline {border: none; outline: 0;}
.fixed-textarea-messagebox {
  height: 60px; 
  resize: none; 
  font-size: 13px !important;
}
.next-btn, .prev-btn {
  background: 0 0; cursor: pointer;
}
.rotate-90 {transform: rotate(90deg);}
.rotate-0 {transform: rotate(0);}
.flip-vertical {transform: rotateX(180deg);}
.flip-horizontal {transform: rotateY(180deg);}
#spacer {height: 60px;}
.verticalDash {
  color: #34343499;
  font-weight: 400;
}
.verticalDash-white{
  border-left: 3px solid #ffffff;
  height: 300px;
  display: block;
}
.horizontalDash-white {
  border-top: 3px solid #ffffff;
  width: 300px;
  display: block;
}

#flex-strip i{ font-size: 14px; }

/** Mobile and tablet view **/
@media (max-width: 1024px) {
  .verticalDash-white {display: none;}
  .horizontalDash-white {display: none;}
  #spacer {height: 300px;}
}

/** Topbar style **/
.topbar-style {
  background: rgb(232 232 232);
  font-size: 10px;
  font-weight: 600;
}
.topbar-style a{color: #2c2c2c !important;}


/** Navbar style **/
.nav-logo { height: 36px;}
@media (max-width: 1024){
  .nav-logo { height: 30px;}
}
.navbar {
  font-family: Roboto, sans-serif;
  background-image: var(--theme-color-icss);
  background-color: transparent;
  padding: 0.75rem 0;
}.navbar-brand:hover {
  color: #fff;
}
.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500 !important;
}.nav-link:hover {
  color: #fff;
  transition: 0.5s;
}
.navbar-nav .nav-link.active {color: #fff;
}.navbar-nav .nav-link:not(:hover) {color: #d8d8d8;}
.nav-item {position: relative;
}.nav-item::after {
  position: absolute;
  bottom: -4px;
  width: 0%;
  height: 3px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  content: "";
  transition: all 0.7s;
}.nav-item:hover::after {width: 60%;}
.navbar-toggler {
  color: #fff;
  fill: azure;
  border-color: #fff;
  border: none;
}
.spacer{height: 20px;}
.SaveIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.dropdown-item {
  font-size: 14px;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu {
  top: 46px;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 0 1rem 1rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  font-size: 12px;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .dropdown-menu {
      height: auto;
      width: 94vw;
  }
  .dropdown-card {
      font-size: 13px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .dropdown-menu {
      height: auto;
      width: 90vw;
  }
  .dropdown-card {
      font-size: 12px;
  }
}
@media (min-width: 1025px) {
  .dropdown-menu {
      height: auto;
      width: 700px;
  }
  .dropdown-card {
      font-size: 11px;
  }
}
.dropdown-menu li > a {
  text-decoration: none !important;
  color: #242424;
}
.dropdown-card {
  padding-top: 50px;
  padding-bottom: 30px;
}
.horizontal-line {
  height: 2px;
  width: 160px;
  background: linear-gradient(to right, #ff5757, #8c52ff);
  border-radius: 100px;
  margin-top: 3px;
  margin-bottom: 10px;
}
.top-card-horizontal-line {
  margin-top: -10px;
  height: 5px;
  width: 100%;
  background: #cf0000;
}
.comptia-card-horizontal-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #ff5757, #8c52ff);
  border-radius: 100px;
  margin-top: 3px;
  margin-bottom: 10px;
}
.comptia-btn {
  width: 120px;
  height: 30px;
  color: #fff;
  background: red;
  margin: 2px;
  font-size: 10px;
  font-weight: 600;
}

/** banner **/
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  background: none;
}.breadcrumb li {
  display: flex;
  align-items: center;
}.breadcrumb-divider {
  margin: 0 0.2rem;
}.breadcrumb li a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600 !important;
  color: white;
}.breadcrumb li.active a {
  color: #daeeff;
}

/** Form Style **/
.form-group {
  position: relative;
}.form-group label {
  position: absolute; 
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  pointer-events: none;
  padding: 0 5px;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -4px;
  font-size: 0.8rem;
  background-color: white;  
  padding: 0 5px;
}

/* Popup container */
.popup {
  font-size: 13px;
  background: #ffffff;
}

/* Allow form to stretch naturally */
.popup-form {
  flex-grow: 1;
}.popup #message {
  font-size: 13px;
  padding: 8px;
}.popup input[type="checkbox"] {
  width: 20px;
}

input[type="submit"],
.btn-primary {
  background-color: #001b5f;
  color: #ffffff;
  transition: 0.3s ease;
}input[type="submit"]:hover,
.btn-primary:hover {
  background-image: linear-gradient(90deg, #001b5f, #560088);
  color: #ffffff;
}


.intl-tel-input,
.iti {width: 100%;
}.iti__country-list {
  background: #ffffff;
  color: #141414;
  border-radius: 10px;
}

/* Floating Widget Styles */
.reg-widget {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Positioned on the left; change to 'right' if needed */
    z-index: 9999;
    font-family: sans-serif;
}

/* Round Floating Button */
.reg-floating-btn {
    background-color: #452586;
    color: white;
    border: none;
    
    /* These dimensions make it a perfect circle */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.reg-floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #5a32ad;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Icon size inside the button */
.reg-floating-btn i {
    font-size: 24px;
}

/* Optional: Add a "Register" label that appears on hover */
.reg-floating-btn::after {
    content: "Register";
    position: absolute;
    left: 70px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.reg-floating-btn:hover::after {
    opacity: 1;
}

.reg-card {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: none; /* Hidden by default */
    flex-direction: column;
    animation: slideIn 0.3s ease-out;
}

.reg-card.active {
    display: flex;
}

.reg-card-header {
    background: #452586;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure mobile responsiveness */
@media (max-width: 480px) {
    .reg-card {
        width: 280px;
        bottom: 60px;
    }
}

/** Banner Style **/
#banner svg{margin-right: 10px;}
#banner-btn svg {
  margin-right: 10px;
  fill: #d6d6d6;
}
#banner-btn .btn {
  font-size: 15px;
  font-weight: 500;
  height: 48px;
  transition: background-color 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}#awards .btn{height: 48px;}
/* Btn DCS */
.banner-btn-dcs {background: var(--color-5) !important;}
.banner-btn-dcs:hover { 
  background-image: linear-gradient(90deg, #440088, #560088, #440088) !important; 
}
/* Btn EHP */
.banner-btn-ehp{background: var(--color-2) !important;}
.banner-btn-ehp:hover { 
  background-image: linear-gradient(90deg, var(--color-2), var(--color-2-light), var(--color-2)) !important; 
}
/* Btn NPT */
.banner-btn-npt{background: var(--color-2) !important;}
.banner-btn-npt:hover { 
  background-image: linear-gradient(90deg, var(--color-2), var(--color-2-light), var(--color-2)) !important; 
}

/* Btn OSCP */
.banner-btn-oscp{background: #410067 !important;}
.banner-btn-oscp:hover { 
  background: #560088 !important;
}
/* Btn CEH */
.banner-btn-ceh{background: var(--color-3-dark) !important;}
.banner-btn-ceh:hover { 
  background-image: linear-gradient(90deg, var(--color-3-dark), var(--color-3), var(--color-3-dark)) !important; 
}

.btn-custom:hover { 
  background-image: linear-gradient(90deg, #001b5f, #560088) !important; 
}


/** Strip Style **/
.strip {
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #f6f7f8;
}
.price {
  font-size: 40px;
  font-weight: 500;
}

img.tools {
  width: 80px;
  height: auto;
  padding: 10px;
}img.hiring-partner {
  height: 70px;
  padding: 10px;
  columns: auto;
}
.feature {
  font-size: 15px;
}
.certificate-location {
  font-size: 1.5rem;
  color: #333;
}.certificate-description {
  color: #555;
}.certificate-program {
  font-size: 0.8rem;
  line-height: 1.8;
  color: #333;
}.certificate-image {
  border: 2px solid #ddd;
  border-radius: 10px;
}.certificate-footer {
  background-color: #2d2d2d;
  padding: 20px;
  border-radius: 10px;
}

/* Section 02 */
.section-2 .card{
  min-height: 700px;
  margin-bottom: 20px;
}

/* Hiring Partners */
.hiring-partners img{
  width: 100px !important;
  height: auto;
}

/** Video Playlist **/
.video-container .horizontal-line{width: 50vw;}
.video-js .vjs-tech {
  border-radius: 10px;
}.video-js .vjs-poster {
  border-radius: 10px;
}.video-js .vjs-control-bar {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.video .title{
  margin-right: 30px;
  font-size: 30px !important;
}
.video-list{color: white;}
.video-list video{
  width: 100px; height: 56px;
  margin-right: 20px;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}.video-list img{
  width: 100px; height: 56px;
  margin-right: 20px;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}.video-list .active{
  background: rgb(192, 192, 192);
  border-radius: 12px;
  color: #1a1a1a;
}
.video-list .vid{transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);}
.video-list .vid:hover {transform: scale(1.02);}
.video-list .title{  
  font-size: 12px; 
  font-weight: 400;
  line-height: 1.2;
  width: 60%;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}.video-list .active .title {
  font-weight: 600;
  font-size: 13px; 
}


/** Job Card **/
.job-card {
  background-color: #fff;
  border-radius: 16px !important;
  padding-top: 20px;
  padding: 26px;
  height: 240px !important;
}.job-card .title {
  height: 80px;
  font-size: 18px;
  font-weight: 600;
}.job-card a {
  display: block;
  padding: 10px;
  height: 48px;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}
.job-card .naukri {
  background-color: #275df5;
}.job-card .indeed {
  background-color: #313131;
}.job-card .linkedin {
  background-color: #0a66c2;
}.job-card .glassdoor {
  background-color: #00580d;
}.job-card .monster {
  background-color: #58003b;
}.job-card .shine {
  background-color: #d24a00;
}.job-card .foundit {
  background-color: #6e00be;
}

/** Course Module Style **/
#accordionForensics,
#accordionOSCP,
#accordionEthicalHacking,
#accordionNetworking,
#accordionWAPT,
#accordionNPT
{
  .accordion-item {
    position: relative;
    border-bottom: 0;
  }
  .accordion-header {
    position: relative;
    padding-left: 30px;
  }
  .accordion-button{ font-weight: 600; }
  .accordion-body-item {
    font-size: 12px;
    font-weight: 600;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 3px;
    margin-left: 6px;
    border-radius: 30px;
    color: #fff;
    background: #242424;
  }
  .accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: #3f3f3f;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .accordion-item::before {
    content: '';
    position: absolute;
    left: 4px; /** Adjust the position to match the bullet **/
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #3f3f3f;
  }
  .accordion-item:first-child::before {top: 26px;}
  .accordion-item:last-child::before {bottom: 26px;}
}

/** Items Animation **/
.items-left {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: carouselAnimInitLeft 30s infinite alternate linear;
}
.items-right {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: carouselAnimInitRight 30s infinite alternate linear;
}
.items-up {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: fit-content;
  animation: carouselAnimInitUp 10s infinite alternate linear;
}
.items-down {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: fit-content;
  animation: carouselAnimInitDown 10s infinite alternate linear;
}
#clients-carousel{
  .items-left {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: carouselAnimInitLeft 20s infinite alternate linear;
  }
  .items-right {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: carouselAnimInitRight 20s infinite alternate linear;
  }
  .card{
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: #fff;
    margin: 1em;
    padding: 0.5em;
    border: none;
  }
}

.entry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #fff;
  margin: 1em;
  padding: 0.5em;
}
.entry-card-1 {
  justify-content: start;
  width: 300px;
  height: 460px;
}.entry-card-2 {
  justify-content: center;
  width: 260px;
  height: 200px;
  margin: 6px;
}.entry-card-3 {
  justify-content: start;
  width: 240px;
  height: auto;
}


/** Workshop Animation & Equal Card Sizing **/

/* 1. Ensure the moving container aligns items to the same height */
.workshop-training .items-right {
  display: flex;
  align-items: stretch; /* This forces all children to match the tallest card */
  width: fit-content;
  animation: carouselAnimInitRight 30s infinite alternate linear;
}

/* 2. Update the card definition */
.entry-card-1 {
  display: flex;
  flex-direction: column; /* Stack image and text */
  justify-content: flex-start;
  width: 300px;
  /* Remove fixed height: height: 460px; */
  min-height: 460px; /* Use min-height instead to allow for growth */
  margin: 1em;
  padding: 0; /* Changed to 0 to allow image to flush to edges if desired */
  background: #fff;
  overflow: hidden; /* Keeps the rounded corners clean */
}

/* 3. Standardize the Image sizes */
.entry-card-1 img {
  width: 100%;
  height: 300px; /* Fixed height for all images */
  object-fit: cover; /* This prevents stretching of different sized logos/photos */
  margin: 5px; /* Removed large margins to keep sizing consistent */
  padding: 25px; /* Adds internal spacing for logos */
  border-radius: 14px;
  
}

/* 4. Make the quote section fill the remaining space */
.workshop-training .entry-card-1 p.quote {
  padding: 1.5em;
  margin: 5px;
  font-size: 13px;
  text-align: left;
  display: flex;
  align-items: center; /* Vertically centers text in shorter quotes */
}
@media only screen and (max-width: 768px) {
  .workshop-training .items-right {
    animation: carouselAnim 35s infinite alternate linear;
  }
  @keyframes carouselAnim {
    from {transform: translate(0, 0);}
    to {transform: translate(calc(-100% + (2 * 300px)));}
  }
}

@keyframes carouselAnimInitRight {
  from {transform: translate(0, 0);}
  to {transform: translate(calc(-100% + (5 * 300px)));}
}
@keyframes carouselAnimInitLeft {
  from {transform: translate(calc(-100% + (5 * 300px)));}
  to {transform: translate(0, 0);}
}
@keyframes carouselAnimInitUp {
  from {transform: translate(0, calc(100% - (5 * 300px)));}
  to {transform: translate(0, 0);}
}

@keyframes carouselAnimInitDown {
  from {transform: translate(0, 0);}
  to {transform: translate(0, calc(-100% + (5 * 300px)));}
}


/** Fader Carousel **/
.left, .right, .up, .down {
  position: absolute;
  z-index: 200;
}
.left, .right {
  width: 15%;
  height: 100%;
}
.up, .down {
  height: 15%;
  width: 100%;
}

.left {
  background: linear-gradient(to right, var(--fader-color) 0, rgba(255, 255, 255, 0) 100%);
  left: 0;
}
.right {
  background: linear-gradient(to left, var(--fader-color) 0, rgba(255, 255, 255, 0) 100%);
  right: 0;
}
.up {
  background: linear-gradient(to bottom, var(--fader-color) 0, rgba(255, 255, 255, 0) 100%);
  top: 0;
}
.down {
  background: linear-gradient(to top, var(--fader-color) 0, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
}

/** Dark faders **/
.dark-faders {
  --fader-color: rgb(var(--bs-dark-rgb));
}

/** White faders **/
.white-faders {
  --fader-color: #fff;
}




#faq svg {
  margin-right: 6px;
}
.review svg {
  fill: #ffc107;
  margin: 1px;
}


.footer {
  font-family: Inter, sans-serif;
  font-size: 13px;
  background-color: #343a40;
  color: #fff;
}
.footer .h5 {
  font-weight: 700;
}
.footer .social-icons i {
  font-size: 24px;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer img {
      width: 60%;
  }
  .footer {
      text-align: center;
  }
}


/** Widget **/
.grecaptcha-badge{bottom: 160px !important;}