/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo svg {
  width: 38px;
  height: 20px;
}

.app-brand-text.demo {
  font-size: 1.25rem;
  letter-spacing: 0.15px;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 300px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}
/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.25rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1.25rem;
}
/* lp css */
  :root {
  --bs-primary: #65748A!important;
  --bs-primary-rgb: 26, 115, 232 !important;

  --bs-secondary: rgb(107 114 128/var(--tw-text-opacity,1)) !important;
  --bs-body-color: #5d596c !important;
}

/* Headings Color */
h1, h2, h3, h4, h5, h6 {
  color: var(--bs-primary) !important;
}

/* Buttons */
.btn-primaryy {
    color: #fff !important;
    background-color: #8c9fb5 !important;
    border-color:  #8c9fb5 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    height: 45px !important;
    line-height: 2.5 !important;
  
    border-radius: 50px !important;
    text-align: center !important;
    text-decoration: none !important;
    z-index: 1 !important;
}

.btn-outline-primary {
  color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

/* Tabs Active */
.nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

/* Icons & Badges */
.text-primaryy,
.ri-star-fill {
  color: var(--bs-primary) !important;
}

/* Links */
/* Links */
a {
  color: var(--bs-primary) !important;
  text-decoration: none !important;
}

/* No hover effect */
a:hover {
 
  text-decoration: none !important;
}

/* Table highlight */
.table-dark {
  background: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

/* Section Title Gray text */
.text-body, p, small {
  color: var(--bs-secondary) !important;
}

#swiper-reviews {
   /* height: 120px;*/
    display: flex;
    align-items: center;
}

#swiper-reviews img {
    max-height: 80px;
    object-fit: contain;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-reviews-carousel {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.landing-hero-wrapper {
  padding: 110px 0 90px  !important;
  background: linear-gradient(135deg, #eef3ff, #ffffff) !important;
  position: relative !important;
  overflow: hidden !important;
}

.landing-hero-wrapper::before,
.landing-hero-wrapper::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.landing-hero-wrapper::before {
  top: -50px;
  left: -70px;
  background: #1a73e8;
}

.landing-hero-wrapper::after {
  bottom: -60px;
  right: -80px;
  background: #5d596c;
}

.hero-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a73e8;
  line-height: 1.4;
}

.hero-heading .highlight {
  background: linear-gradient(to right, #1a73e8, #004cbf);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: #5d596c;
  max-width: 650px;
  margin: 10px auto;
}

.custom-btn {
  background: #1a73e8;
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  transition: 0.3s;
}

.custom-btn:hover {
  transform: translateY(-3px);
  background: #004cbf;
}

.hero-main-img {
  max-width: 650px;
  filter: drop-shadow(0px 8px 25px rgba(0,0,0,0.1));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero-margin {
  margin-top: 25% !important;
}
.hero-margin-frm{
   margin-top: 15% !important;  
}
.landing-features {
    padding-top: 5rem !important;
}
.img-blue {
  filter: brightness(0) saturate(100%) invert(48%) sepia(9%) saturate(1112%) 
          hue-rotate(184deg) brightness(90%) contrast(87%);
}

.landing-features .features-icon-wrapper .features-icon-box .features-icon {
    border: 2px solid rgba(101, 116, 138, 1) !important;
}

.header-bg {
    background: url(https://www.iitjobs.com/assets/img/front-pages/backgrounds/banner.jpg)  !important;
    height: 850px !important;
    background-position: center !important;
    background-size: cover !important;
}
  .register-link {
    position: relative;
  }

  .register-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    font-size: 11px;
    padding: 2px 5px;
  }

  @media(max-width: 576px) {
    .register-badge {
      right: -9px;
      top: -6px;
      font-size: 9px;
      padding: 1px 4px;
    }
    h1, .h1 {
    font-size: 1.6rem !important;
}
  }
  
  .primarybg-color{
      color:#007aff !important;
  }
  .primarybg{
      background:#007aff !important;
  }
  
  .text-color{
    color:#5d596c !important;
  }
  .hero-title{
      line-height:1.5 !important;
  }
       .lh-25{
           
         line-height: 2.5 !important;
      }
      .flinks{
          color:#8c9fb5 !important;
      }
  .img-emp{
      max-width: 100% !important;  height: auto !important;  border-radius: 25px !important; box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px !important;
  }
  
  .bg-label-hover-primary {
  background-color: rgb(163, 178, 195) !important;
  color: #fff !important;
}
.bg-label-hover-primary:hover {
  background-color: rgb(126, 143, 162) !important;
  color: #fff !important;
}
.client-logo {
    filter: brightness(0) invert(1) !important;
    height: 100px !important;
    object-fit: contain !important;
    background-color: transparent !important;
    mix-blend-mode: multiply !important;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.8555rem 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.375;
    color: #3b4056;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #cfd0d6;
    border-radius: 2.5rem !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus,
.form-select:focus {
  border-color: #7f7f7f  !important;
}

.input-group:not(.input-group-floating):focus-within .input-group-text {
    border-color: #7f7f7f !important;
}

.input-group.input-group-merge {
    border-radius: 50px !important;
    overflow: hidden !important;
}

.input-group.input-group-merge .form-control {
    border-radius: 50px 0 0 50px !important;
}

.input-group.input-group-merge .input-group-text {
    border-radius: 0 50px 50px 0 !important;
}
.navbar.landing-navbar .navbar-nav .nav-link:hover {
    color: #8c9fb5 !important;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #8FA3B8; /* same bluish-grey */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 9999;
}



/* Hover effect */
.scroll-top-btn:hover {
    background-color: #9BB1C5;
    transform: translateY(-3px);
}
.accordion-item {
    box-shadow:none !important;
}