@import url("https://fonts.googleapis.com/css2?family=Poppins: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&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
  color: #0066cc;
}

.navbar-light .navbar-nav .nav-link {
  color: #122658;
  font-size: 14px;
  letter-spacing: 2px;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #0066cc;
}

.dropdown-item {
  font-size: 14px;
}
.dropdown-item:hover {
  background-color: #0066cc;
  color: #fff;
}

.font14 {
  font-size: 14px !important;
}

.font12 {
  font-size: 12px !important;
}

@media (min-width: 992px) {
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    transition: transform 0.3s ease-out;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
  }
  .dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .dropdown-menu {
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
  }
}
/*hero banner start here*/
.hero-section {
  height: 90vh;
  background-image: url("../images/home-bg.png");
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Banner Styles */
.hero-content {
  padding: 20px;
}
.hero-content .btn-primary {
  background-color: #0066cc;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: #122658;
}
.hero-content h1 span {
  color: #0066cc;
}

.hero-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  margin-top: 20px;
}

.hero-images {
  position: relative;
}

.man-image {
  width: 97%;
}

.redcolor {
  background-color: #d32b3c !important;
}

.btn-primary.redcolor-btn {
  background-color: #d32b3c !important;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
}

@media (max-width: 992px) {
  .hero-images {
    text-align: center;
  }
  .man-image {
    width: 100%;
  }
}
/*client section*/
.client-sect {
  background-color: #122658;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-sect .clientwrap {
  display: flex;
  overflow: hidden;
}
.client-sect .clientwrap .clientitem {
  width: 15%;
  margin-right: 25px;
}
.client-sect .clientwrap .clientitem img {
  width: 100%;
  display: block;
}

/*about section*/
.about-us {
  background-color: #f5f5f5;
  padding: 100px 0;
}

.about-content {
  padding: 20px;
}
.about-content .btn-primary {
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0066cc;
}

.about-content h2 {
  font-size: 18px;
  font-weight: 500;
  color: #0066cc;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.about-content h3 {
  font-size: 40px;
  color: #122658;
}

.about-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  margin-top: 30px;
  font-weight: 300;
}

.about-images {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  position: absolute;
  bottom: -130px;
  left: -290px;
  z-index: 100;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: calc(45% - 20px);
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-icon {
  font-size: 24px;
  color: #387EF7;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #122658;
}

.card-content p {
  font-size: 14px;
  color: #666;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

@media (max-width: 992px) {
  .about-images {
    text-align: center;
  }
  .about-img {
    width: 100%;
  }
  .cards {
    flex-direction: column;
  }
  .card {
    width: 100%;
    margin: 10px 0;
  }
}
/* Our Courses Styles */
.our-courses {
  background-color: #fff;
  padding: 100px 0;
  background-image: url("../images/saving-their-relationships-.png");
  background-size: cover;
}

.our-courses h2 {
  font-size: 18px;
  font-weight: 400;
  color: #fff !important;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.our-courses .head-three {
  font-size: 40px;
  color: #fff !important;
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}

.our-courses p {
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding-bottom: 30px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  margin-bottom: 20px;
  padding: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card-inner h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
}
.flip-card-inner p {
  font-size: 14px;
  color: #fff;
  padding: 20px;
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: solid 1px #fff;
}

.flip-card-back {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: rotateY(180deg);
  z-index: 1;
}
.flip-card-back h3 {
  padding-top: 30px;
  color: #0066cc;
}
.flip-card-back p {
  color: #666;
}
.flip-card-back .btn-primary {
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0066cc;
}

.circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #0066cc;
  font-size: 24px;
  line-height: 50px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/*learning formats start here*/
.learningformats {
  background-image: url("../images/bg_pattern.png");
  padding: 100px 0;
  background-color: transparent;
}
.learningformats h2 {
  position: relative;
  color: #122658;
  z-index: 100;
  font-size: 40px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.learningformats p {
  text-align: center;
  padding-top: 10px;
  color: #666;
  font-size: 16px;
  padding-bottom: 30px;
}

/* Cards Styles */
.cards-section {
  background-color: #f5f5f5;
  padding: 100px 0;
}

.learningformats .card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}
.learningformats .card .btn-primary {
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0066cc;
}
.learningformats .card .circle-icon {
  background-color: #0066cc;
  color: #fff;
}

.learningformats .card.card-odd {
  background-color: #0066cc;
}
.learningformats .card.card-odd .circle-icon {
  background-color: #fff;
}
.learningformats .card.card-odd .circle-icon .fa-video {
  color: #0066cc;
}
.learningformats .card.card-odd h3, .learningformats .card.card-odd p {
  color: #fff;
  font-weight: 400;
}
.learningformats .card.card-odd .btn-primary {
  background-color: #fff;
  color: #0066cc;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #0066cc;
  font-size: 24px;
  line-height: 50px;
  margin: 20px auto;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #122658;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #387EF7;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #2f4f7f;
}

/*why choose us*/
/* Why Choose Us Styles */
.why-choose-us {
  background-color: #fff !important;
  padding: 100px 0;
}
.why-choose-us .top-head h2 {
  font-size: 18px;
  color: #0066cc;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 30px;
}
.why-choose-us .top-head h3 {
  font-size: 40px;
  color: #122658;
  padding-bottom: 40px;
  text-align: center;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-card {
  display: flex;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #0066cc;
  color: #fff;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  margin-right: 20px;
}

.content-box {
  flex-grow: 1;
}

.content-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 300;
}

.content-box p {
  font-size: 16px;
  color: #666;
}

/* Footer Styles */
.footer {
  background-color: #0066cc;
  color: #fff;
  padding: 50px 0;
  font-size: 14px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #ccc;
}

.copyright {
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
}

/*Modal start here*/
.modal#enquiryModal .btn-primary {
  background-color: #0066cc;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.modal#enquiryModal .form-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}
.modal#enquiryModal .form-control, .modal#enquiryModal .form-select {
  color: #666;
  border-radius: 0px;
  font-size: 14px;
}

@media only screen and (min-width: 300px) and (max-width: 576px) {
  .hero-section {
    height: auto;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .about-content h3 {
    font-size: 36px;
  }
  .about-us .cards {
    position: static;
  }
  .mob-pb-50 {
    padding-bottom: 50px !important;
  }
  .client-sect .clientwrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .client-sect .clientwrap .clientitem {
    width: 120px;
    margin-bottom: 20px;
  }
  .our-courses .head-three {
    font-size: 30px;
    width: 100%;
  }
  .learningformats h2 {
    font-size: 30px;
    width: 100%;
  }
  .learningformats .card {
    margin-left: auto;
    margin-right: auto;
  }
  .why-choose-us .top-head h3 {
    font-size: 30px;
    width: 100%;
  }
  .why-choose-us .icon-box {
    width: 100px;
  }
  .content-box h3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 577px) and (max-width: 640px) {
  .hero-section {
    height: auto;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .about-content h3 {
    font-size: 36px;
  }
  .about-us .cards {
    position: static;
  }
  .mob-pb-50 {
    padding-bottom: 50px !important;
  }
  .client-sect .clientwrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .client-sect .clientwrap .clientitem {
    width: 120px;
    margin-bottom: 20px;
  }
  .our-courses .head-three {
    font-size: 30px;
    width: 100%;
  }
  .learningformats h2 {
    font-size: 30px;
    width: 100%;
  }
  .learningformats .card {
    margin-left: auto;
    margin-right: auto;
  }
  .why-choose-us .top-head h3 {
    font-size: 30px;
    width: 100%;
  }
  .why-choose-us .icon-box {
    width: 100px;
  }
  .content-box h3 {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */