@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.carousel-control-next, .carousel-control-prev, .carousel-caption {
  color: blue !important;
}

.our-facility {
  display: flex;
  justify-content: center;
}
.our-facility .facitlity-photo-gallery {
  width: 50%;
}
.our-facility .facitlity-photo-gallery img {
  height: 350px;
}

.page-banner img {
  height: 250px;
  width: 100%;
}

nav ul .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(14, 26, 56, 0.7803921569);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px;
  z-index: 1000;
}

nav ul li {
  position: relative;
}

nav ul .dropdown li {
  padding: 5px 0;
  font-size: 1em;
  flex: 0 0 45%;
}
nav ul .dropdown li:hover {
  background: #255369;
  padding: 0 5px;
}

nav ul .dropdown li a {
  padding: 0;
}

nav ul li:hover .dropdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 400px;
}

nav ul .dropdown li:hover a, nav ul .dropdown li:active a {
  background-color: transparent;
  color: #ffffff;
}

.display-none-main {
  display: none;
}

.pre-loader {
  position: fixed;
  z-index: 5;
  background: #0e1a38;
  color: white;
  width: 100%;
  height: 100%;
}
.pre-loader .loader {
  position: absolute;
  width: 100%;
  height: 150px;
  top: calc(50vh - 75px);
  display: flex;
  justify-content: center;
}
.pre-loader .loader p {
  font-size: 4em;
  animation: loader 3s infinite;
  overflow: hidden;
  white-space: nowrap;
}
.pre-loader .loader h6 {
  text-align: center;
}

@keyframes loader {
  0% {
    width: 0ch;
  }
  100% {
    width: 8ch;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #0e1a38;
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 100;
}
header .logo img {
  height: 50px;
}
header nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
header .register-btn {
  padding: 10px 20px;
  background-color: #007bff;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.page-wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 30px;
  background: white;
  padding-bottom: 50px;
}

.page-bg {
  background: #ede8e2;
  padding: 30px;
}
.page-bg p {
  margin: 30px 0;
}

.map-container {
  position: relative;
  width: 100%; /* The map will take full width of the container */
  padding-bottom: 56.25%; /* This is a 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.responsive-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Floating Icons */
}
.hero .content {
  z-index: 2;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: white;
}
.hero .highlight {
  color: red;
}
.hero .email-signup {
  margin-top: 20px;
}
.hero .email-signup input {
  padding: 10px;
  width: 300px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
}
.hero .email-signup button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}
.hero .badge {
  display: inline-block;
  background-color: #007bff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.hero .icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .icon {
  position: absolute;
  width: 100px;
  height: 100px;
}
.hero .node {
  top: 60%;
  left: 20%;
  animation: float 6s ease-in-out infinite;
}
.hero .react {
  top: 20%;
  left: 70%;
  animation: float 5s ease-in-out infinite;
}
.hero .python {
  top: 60%;
  left: 70%;
  animation: float 4s ease-in-out infinite;
}
.hero .mysql {
  top: 10%;
  left: 20%;
  animation: float 7s ease-in-out infinite;
}
.hero .kali {
  top: 40%;
  left: 80%;
  animation: float 7s ease-in-out infinite;
}
.hero .dotnet {
  top: 20%;
  left: 40%;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Background Animation */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/banner.png");
  z-index: 0;
  animation: moveBackground 20s linear infinite, blinkBoxes 4s ease-in-out infinite;
}

/* Moving Background Animation */
@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100px; /* Moving vertically */
  }
}
/* Blinking Effect */
@keyframes blinkBoxes {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
.talk-to-expert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1E2A6A;
  padding: 40px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 50px auto;
  color: white;
  padding-bottom: 0;
}
.talk-to-expert .text-section {
  max-width: 50%;
}
.talk-to-expert h1 {
  font-size: 2.5rem;
  margin: 20px 0;
}
.talk-to-expert h2 {
  font-size: 1.5rem;
  color: #fff;
}
.talk-to-expert p {
  font-size: 1rem;
  margin: 20px 0;
}
.talk-to-expert .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
}
.talk-to-expert .btn:hover {
  background-color: #0056b3;
}
.talk-to-expert .image-section img {
  max-width: 300px;
  border-radius: 8px;
  transform: scaleX(-1);
}

.testimonial-section h2 {
  text-align: center;
  color: #012245;
  font-size: 1.7em;
  font-weight: bold;
}

.testimonials-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.testimonials-container .testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  padding: 0 20px;
}
.testimonials-container .testimonial {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 300px;
  max-width: 400px;
  flex: 0 0 auto;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.testimonials-container .testimonial p {
  font-size: 16px;
  line-height: 1.5;
}
.testimonials-container .testimonial .author {
  margin-top: 15px;
  text-align: center;
}
.testimonials-container .testimonial .author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.testimonials-container .testimonial .author h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}
.testimonials-container .testimonial .author p {
  font-size: 14px;
  color: #666;
}
.testimonials-container .test-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(74, 137, 204, 0.831372549);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 17px;
  border-radius: 5px;
}
.testimonials-container .left-btn {
  left: 0;
}
.testimonials-container .right-btn {
  right: 0;
}

.testimonials-container:hover {
  cursor: grab;
}

.timeline {
  width: 60%;
  position: relative;
  padding: 20px 0;
}

.timeline-item, .timeline-item-last {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.apply {
  background-color: #7d91b4;
  border: 5px solid #ffffff;
}

.apply-one {
  background-color: #02235c;
  border: 5px solid #ffffff;
}

.admit {
  background-color: #ffffff;
  border: 5px solid #f5a623;
}

.start {
  background-color: #0045b8;
  border: 5px solid #ffffff;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 30px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: #0045b8;
  z-index: 0;
}

.timeline-item-last:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 30px;
  height: calc(100% - 30px);
  z-index: 0;
}

.timeline-content {
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.timeline-content h2 {
  color: #243b6b;
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #4a4a4a;
  font-size: 16px;
}

@media (max-width: 768px) {
  .timeline {
    width: 90%;
  }
  .timeline-item, .timeline-item-last {
    flex-direction: column;
    align-items: center;
  }
  .timeline-content {
    margin-left: 0;
    text-align: center;
  }
  .timeline-item:before, .timeline-item-last:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-icon {
    margin-bottom: 10px;
  }
}
.scroll-container {
  width: 100%;
  overflow: hidden; /* Hide the overflow so that the images only appear within the viewport */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.scroll-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: scroll 30s linear infinite;
}

.scroll-content img {
  height: 100px;
  margin: 0 15px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Animation for infinite scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.why-choose-us {
  text-align: center;
  margin-top: 20px;
}
.why-choose-us .row h2 {
  font-size: 1.1em;
  margin: 10px 0;
}
.why-choose-us .row > div {
  margin: 20px 0;
}
.why-choose-us h2 {
  font-size: 2em;
  font-weight: bold;
  margin: 30px;
}
.why-choose-us .image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.why-choose-us .image-container img {
  height: 250px;
  width: 80%;
}

.courses .course-plans {
  transform: translateY(150px);
  transition: 1.2s ease-in;
  opacity: 0;
}
.courses .smooth-flow {
  opacity: 1;
  transform: translateY(0);
}
.courses .row > div {
  margin: 15px 0;
}
.courses .card-title {
  font-weight: bold;
}
.courses h2 {
  text-align: center;
  margin: 30px;
  text-transform: capitalize;
}
.courses .card-width {
  width: 80%;
}
.courses .card-width img {
  height: 200px;
  border-radius: 10px;
}

.life-after-learning {
  padding: 70px 20px;
}
.life-after-learning .left {
  align-items: center;
  justify-content: center;
}
.life-after-learning h2 {
  font-size: 1.2em;
  color: #0056b3;
  margin-bottom: 15px;
}
.life-after-learning h3 {
  font-size: 1.3em;
  color: #012245;
  font-weight: bold;
}
.life-after-learning .sec-one {
  text-align: center;
}

.our-team {
  text-align: center;
  margin: 70px 0;
}
.our-team h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
}
.our-team p {
  font-size: 1em;
  color: #181717;
}
.our-team img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.enroll-now {
  margin-bottom: 30px;
}
.enroll-now img {
  height: 300px;
  width: 300px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  background-color: #0e1a38;
  color: #fff;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #243663;
}

.faq-answer {
  padding: 15px;
  background-color: #f1f1f1;
  display: none;
  font-size: 16px;
  line-height: 1.5;
}

.faq-answer.show {
  display: block;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h2, h3 {
  color: #012245;
}

.up-coming-class {
  text-transform: capitalize;
}
.up-coming-class h2 {
  color: #012245;
  font-weight: bold;
  font-size: 1.8em;
  margin-top: 50px;
  margin-bottom: 20px;
}
.up-coming-class h3 {
  color: #02235c;
  margin-bottom: 30px;
}
.up-coming-class img {
  height: 300px;
  width: 80%;
}

.discount-price {
  color: red;
  text-decoration: line-through;
  font-weight: bold;
}

.course-detail-home ul {
  margin: 0;
  padding: 0;
}
.course-detail-home li {
  list-style: none;
  margin: 15px 0;
}

nav[aria-label=breadcrumb] {
  background: #255369;
  padding: 20px;
  margin: 20px 0;
}
nav[aria-label=breadcrumb] .breadcrumb-item a, nav[aria-label=breadcrumb] .breadcrumb-item + .breadcrumb-item::before {
  color: wheat;
}
nav[aria-label=breadcrumb] .active {
  color: white;
}

.register .form-select {
  border: 1px solid #d5d5d5;
}
.register .form-select:focus {
  border: 2px solid #3b71ca;
  box-shadow: none;
}

.cred-wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 100px 30px;
}

@media only screen and (min-width: 200px) and (max-width: 850px) {
  .body-bg {
    background: #0e1a38;
  }
  nav ul li:hover .dropdown {
    display: block;
  }
  header {
    position: relative;
    display: block;
    height: auto;
  }
  header .display {
    display: none !important;
  }
  header .main-menu {
    display: block;
    margin: 20px 0;
  }
  header .main-menu li {
    padding: 5px 0;
  }
  header .main-menu .dropdown {
    position: static;
    display: block;
    box-shadow: none;
  }
  header .main-menu .dropdown:hover {
    display: block;
    width: 100%;
  }
  header .main-menu .dropdown li:hover {
    background: transparent !important;
    padding: 0 !important;
  }
  header .logo {
    display: flex;
    justify-content: space-between;
  }
  header .logo a {
    display: block;
    flex: 0 0 45%;
  }
  header .logo .logo-icon {
    display: block;
    position: absolute;
    top: 24px;
    right: 30px;
    background-color: white;
    cursor: pointer;
    width: 30px;
    height: 5px;
  }
  header .logo .logo-icon::before {
    top: -10px;
  }
  header .logo .logo-icon::after {
    top: 11px;
  }
  header .logo .logo-icon::before, header .logo .logo-icon::after {
    content: "";
    display: block;
    position: absolute;
    background-color: white;
    cursor: pointer;
    width: 30px;
    height: 5px;
  }
  header .logo .logo-icon.active {
    transition: 1s;
    background: transparent;
  }
  header .logo .logo-icon.active::before {
    transform: rotate(45deg) translate(40px, -16px);
    -webkit-transform: rotate(45deg) translate(40px, -16px);
    -o-transform: rotate(45deg) translate(40px, -16px);
    -moz-transform: rotate(45deg) translate(40px, -16px);
  }
  header .logo .logo-icon.active::after {
    transform: rotate(-45deg) translate(30px, 25px);
  }
  header .logo .logo-icon.active::before, header .logo .logo-icon.active::after {
    right: 30px;
    transition: 1s;
  }
  .topics ul {
    display: block;
  }
  .divide {
    padding-top: 0 !important;
  }
  .display-none {
    display: none;
  }
  .courses .card-width {
    width: 100%;
  }
  .hero h1 {
    font-size: 1.5em;
  }
  .hero .icon {
    width: 70px;
    height: 70px;
  }
  .hero .node {
    top: 75%;
    left: 10%;
  }
  .hero .python {
    top: 75%;
    left: 50%;
  }
  .hero .kali {
    top: 65%;
    left: 70%;
  }
  .hero .email-signup input {
    width: 80%;
  }
  .hero .email-signup button {
    margin-top: 10px;
  }
  .testimonials-container .testimonial {
    min-width: 0;
    max-width: 70vw;
  }
  .apply img {
    height: 250px;
    width: 250px;
  }
  .talk-to-expert {
    display: block;
  }
  .talk-to-expert .image-section img {
    max-width: 250px;
  }
  .talk-to-expert .text-section {
    max-width: 100%;
  }
  .our-facility .facitlity-photo-gallery {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */