* {
  padding: 0;
  margin: 0;
  text-decoration: none !important;
}

body {
  font-family: "Montserrat", sans-serif !important;
}

.margin-bottom {
  margin-bottom: 5%;
}

.login-section h1 {
  font-size: 30px;
  line-height: inherit;
  font-weight: 600;
  letter-spacing: 0px;
  color: #4d4d4d;
}
.login-section p {
  font-size: 18px;
  line-height: inherit;
  font-weight: 400;
  letter-spacing: 0px;
  color: #4d4d4d;
}
.login-section h4 {
  font-size: 18px;
  line-height: inherit;
  font-weight: 600;
  letter-spacing: 0px;
  color: #4d4d4d;
}
.login-section video {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: 100dvh;
}
.login-section form {
  padding: 5% 20% 0% 0%;
}
.login-section form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.login-section form span {
  font-size: 16px;
  line-height: inherit;
  font-weight: 400;
  letter-spacing: 0px;
  color: #968585;
}
.login-section form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #f9fafb;
  box-sizing: border-box;
}
.login-section form input:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.login-section form input.invalid {
  border-color: #ef4444;
  background: #fef2f2;
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.login-section form .otp-btn {
  cursor: pointer;
  width: 130px;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.login-section form .otp-btn:hover {
  border: 1px solid #5a89d4;
}
@keyframes shake {
  10%, 90% {
    transform: translateX(-1px);
  }
  20%, 80% {
    transform: translateX(2px);
  }
  30%, 50%, 70% {
    transform: translateX(-4px);
  }
  40%, 60% {
    transform: translateX(4px);
  }
}
.login-section form input.valid {
  border-color: #10b981;
  animation: success 0.5s ease;
}
@keyframes success {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.login-section .bottom-footer {
  background-color: rgba(199, 191, 191, 0.3333333333);
  padding: 15px 0px;
  border-top: 1px solid #B0AFB1;
  position: relative;
  bottom: -65px;
}
.login-section .bottom-footer p,
.login-section .bottom-footer span {
  font-size: 14px;
  color: #4d4d4d;
  font-weight: 400;
  line-height: inherit;
}

/* Sidebar styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  /* Hide sidebar initially */
  height: 100vh;
  width: 250px;
  background-color: #4D4D4d;
  transition: left 0.3s ease;
  /* Smooth slide animation */
  z-index: 1000;
}
.sidebar nav {
  position: absolute;
  top: 35%;
  width: 100%;
}

.logo img {
  padding: 10px;
  width: 200px;
}

/* Show sidebar when active */
.sidebar.active {
  left: 0;
  background-color: #4d4d4d;
}

/* Navigation links */
.nav-link {
  font-size: 1rem;
  color: #fff;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  border-bottom: 1px solid #fff;
}

/* Navbar styles */
.navbar {
  z-index: 1100;
}

/* Main content area */
.content {
  margin-left: 0;
  transition: margin-left 0.3s ease;
  padding: 2%;
}

footer {
  position: absolute;
  bottom: 5%;
}

.btn-get {
  background-color: #4d4d4d;
  border-radius: 50px;
  padding: 8px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.btn-get:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#main-content span i {
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin-right: 15px;
}
#main-content span {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: inherit;
}
#main-content h1 {
  font-size: 28px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: inherit;
  margin-top: 10px;
}
#main-content h4 {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: inherit;
}
#main-content .form-control {
  width: 150px;
  height: 30px;
  border-radius: 10px;
}
#main-content .form-control::-moz-placeholder {
  font-size: 14px;
}
#main-content .form-control::placeholder {
  font-size: 14px;
}

.card-section .card {
  padding: 8px;
  border-radius: 10px;
  border: 0;
  margin-bottom: 20px;
  cursor: pointer;
  border: 1px solid lightgray;
  height: 300px;
}
.card-section .card:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.card-section .card p {
  font-size: 16px;
  color: #4d4d4d;
  font-weight: 400;
  line-height: inherit;
  margin: 10px 0px 20px 10px;
}
.card-section .card .pill {
  background-color: #4d4d4d;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: 0px !important;
  position: absolute;
  bottom: 35%;
  left: 5%;
}

.call-to-action {
  background: url("../img/cta.png") no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
}
.call-to-action h2 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  line-height: inherit;
}
.call-to-action p {
  font-size: 18px !important;
  color: #fff !important;
  font-weight: 400;
  line-height: inherit;
  margin-bottom: 30px;
}
.call-to-action .btn-get-yellow {
  font-size: 14px;
  font-weight: 500;
  background-color: #ffe000;
  color: #4d4d4d;
  padding: 8px 10px;
  border-radius: 20px;
}
.call-to-action img {
  width: 300px;
}

#about-main-content h1 {
  font-size: 26px;
  color: #4d4d4d;
  font-weight: 600;
  line-height: inherit;
  margin-top: 10px;
}
#about-main-content p {
  font-size: 16px;
  color: #4d4d4d;
  font-weight: 400;
  line-height: inherit;
}
#about-main-content .form-control {
  width: 150px;
  height: 30px;
  border-radius: 10px;
}
#about-main-content .form-control::-moz-placeholder {
  font-size: 14px;
}
#about-main-content .form-control::placeholder {
  font-size: 14px;
}
#about-main-content .about-card {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 20px;
  padding: 20px;
  margin: 50px;
}

.logos-section h2 {
  font-size: 20px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: inherit;
  margin-top: 10px;
}
.logos-section .card {
  border: 0;
  border-radius: 10px;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.logos-section .card img {
  width: 120px;
}

.testmonial_section img {
  width: 100px;
}
.testmonial_section h2 {
  font-size: 20px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: inherit;
  margin-top: 10px;
}
.testmonial_section .text {
  padding: 13% 15%;
}
.testmonial_section button {
  border: none;
  cursor: pointer;
}
.testmonial_section .card-slider {
  display: flex;
  overflow-x: auto;
  margin-top: 10px;
  gap: 50px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testmonial_section .card-slider::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.testmonial_section .label-container {
  display: flex;
  align-items: center;
}
.testmonial_section .label-container {
  position: absolute;
  right: 0%;
  top: 5%;
}
.testmonial_section .label-container button {
  background-color: rgba(0, 0, 0, 0.1);
  color: #111;
  cursor: pointer;
  padding: 3px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 10px;
  border-radius: 10%;
  width: 40px;
}
.testmonial_section .label-container button:disabled {
  background-color: rgba(152, 152, 152, 0.8117647059);
  cursor: not-allowed;
  border: none;
}
.testmonial_section .solution-card {
  transition: transform 0.3s ease-in-out;
}
.testmonial_section .solution-card .card {
  width: 500px;
  height: auto;
  background-color: transparent;
  border-radius: 15px;
}
.testmonial_section .solution-card .card h3 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: inherit;
  color: #4d4d4D;
  margin-bottom: 0px;
}
.testmonial_section .solution-card .card i {
  font-size: 12px;
  font-weight: 400;
  line-height: inherit;
  color: #4d4d4D;
}
.testmonial_section .solution-card .card p {
  font-size: 14px !important;
  font-weight: 400;
  line-height: inherit;
  color: #4d4d4D;
}
.testmonial_section .solution-card .card img {
  border-radius: 15px 15px 0px 0px;
}
.testmonial_section .solution-card:hover {
  cursor: pointer;
  transform: scale(0.95);
  border-radius: 15px;
}

.trusted-section h2 {
  font-size: 20px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: inherit;
  margin-top: 10px;
}
.trusted-section img {
  width: 80px;
  height: 80px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 10px;
}

#resource-main-content span i {
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin-right: 15px;
}
#resource-main-content span {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: inherit;
}
#resource-main-content h1 {
  font-size: 28px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: inherit;
  margin-top: 10px;
}
#resource-main-content h4 {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 400;
  line-height: inherit;
}
#resource-main-content .form-control {
  width: 150px;
  height: 30px;
  border-radius: 10px;
}
#resource-main-content .form-control::-moz-placeholder {
  font-size: 14px;
}
#resource-main-content .form-control::placeholder {
  font-size: 14px;
}
#resource-main-content .nav-link {
  color: #B0AFB1;
}
#resource-main-content .nav-tabs .nav-link.active {
  border-bottom: 1px solid #4d4d4d;
  border-color: #fff #fff #4d4d4d;
}
#resource-main-content .nav-tabs .nav-link:hover {
  border-color: #fff #fff #4d4d4d;
  isolation: isolate;
}
#resource-main-content .nav-tabs {
  border-bottom: 1px solid #fff;
}
#resource-main-content .card {
  padding: 8px;
  border-radius: 10px;
  border: 0;
  margin-bottom: 20px;
  cursor: pointer;
  border: 1px solid lightgray;
}
#resource-main-content .card:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#resource-main-content .card img {
  position: relative;
}
#resource-main-content .card p {
  font-size: 16px;
  color: #4d4d4d;
  font-weight: 400;
  line-height: inherit;
  margin: 10px 0px 20px 10px;
}
#resource-main-content .card .pill {
  background-color: #4d4d4d;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: 0px !important;
  position: absolute;
  bottom: 45%;
  left: 5%;
}

/* Push content when sidebar opens (on larger screens) */
@media (min-width: 768px) {
  .sidebar {
    left: 0;
    /* Always visible on medium/large screens */
  }
  .content {
    margin-left: 250px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .login-section h1 {
    font-size: 18px;
  }
  .login-section p {
    font-size: 14px;
  }
  .login-section h4 {
    font-size: 12px;
  }
  .login-section video {
    width: 100%;
    position: relative;
    height: 100%;
    padding: 10px;
  }
  .login-section form {
    padding: 5%;
  }
  .login-section form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
  }
  .login-section form span {
    font-size: 14px;
  }
  .login-section form input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #f9fafb;
    box-sizing: border-box;
  }
  .login-section form input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  .login-section form input.invalid {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  }
  .login-section form .otp-btn {
    width: 100px;
  }
  @keyframes shake {
    10%, 90% {
      transform: translateX(-1px);
    }
    20%, 80% {
      transform: translateX(2px);
    }
    30%, 50%, 70% {
      transform: translateX(-4px);
    }
    40%, 60% {
      transform: translateX(4px);
    }
  }
  .login-section form input.valid {
    border-color: #10b981;
    animation: success 0.5s ease;
  }
  @keyframes success {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  .login-section .bottom-footer {
    bottom: -10px;
  }
  .login-section .bottom-footer p,
  .login-section .bottom-footer span {
    font-size: 12px;
    text-align: center;
  }
  .navbar-brand img {
    width: 120px;
  }
  .content {
    padding: 20% 0% 2%;
  }
  .logo img {
    display: none;
  }
  #main-content span {
    font-size: 14px;
  }
  #main-content h1 {
    font-size: 18px;
  }
  #main-content .btn-get {
    font-size: 12px;
    height: 30px;
    padding: 6px 10px;
  }
  .btn-get-yellow {
    font-size: 12px;
  }
  #about-main-content .about-card {
    padding: 0px;
    margin: 15px;
  }
  #about-main-content .award-img {
    width: 250px;
  }
  #about-main-content p {
    font-size: 14px;
  }
  .call-to-action {
    padding: 5px;
  }
  .call-to-action h2 {
    font-size: 20px;
  }
  .call-to-action p {
    font-size: 14px !important;
    margin-bottom: 15px;
  }
  .call-to-action img {
    width: 250px;
  }
  #about-main-content h1 {
    font-size: 18px;
  }
  #about-main-content .logos-section h2 {
    font-size: 18px;
  }
  #about-main-content .logos-section .card img {
    width: 100%;
  }
  #about-main-content .testmonial_section h2 {
    font-size: 18px;
  }
  #about-main-content .testmonial_section .label-container {
    right: 5%;
    top: 15%;
  }
  #about-main-content .testmonial_section .solution-card .card {
    width: 350px;
  }
  #about-main-content .testmonial_section .trusted-section h2 {
    font-size: 18px;
  }
  #about-main-content .testmonial_section .trusted-section img {
    width: 70px;
    height: 70px;
  }
}
/*125% screen Small Laptops*/
@media screen and (min-resolution: 120dpi) and (min-width: 1440px) {
  .card-section .card {
    padding: 8px;
    border-radius: 10px;
    border: 0;
    margin-bottom: 20px;
    cursor: pointer;
    border: 1px solid lightgray;
    height: 230px;
  }
  .card-section .card:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .card-section .card p {
    font-size: 14px;
    color: #4d4d4d;
    font-weight: 400;
    line-height: inherit;
    margin: 10px 0px 20px 10px;
  }
  .card-section .card .pill {
    background-color: #4d4d4d;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff !important;
    font-size: 12px !important;
    letter-spacing: 0px !important;
    position: absolute;
    bottom: 35%;
    left: 5%;
  }
  .logos-section img {
    width: 400px;
  }
  .login-section form {
    padding: 3%;
  }
  .login-section .bottom-footer {
    bottom: 0%;
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  /* your css rules for ipad portrait */
  .login-section .col-md-7,
  .login-section .col-md-5 {
    width: 100%;
  }
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation: landscape) {
  /* your css rules for ipad landscape */
}/*# sourceMappingURL=styles.css.map */