@font-face {
  font-family: 'Termina';
  src: url('https://fonts.cdnfonts.com/css/termina-test');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://fonts.googleapis.com/css?family=Montserrat');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Base Primary */
  --bs-primary: #0047AD;
  --bs-primary-rgb: 208, 71, 19;

  /* Links */
  --bs-link-color: #0047AD;
  --bs-link-hover-color: #053b88;
  --bs-link-active-color: #053b88;

  /* Text and backgrounds */
  --bs-primary-text-emphasis: #053b88;
  --bs-primary-bg-subtle: #f3d1c6;
  --bs-primary-border-subtle: #e8a38d;
}

.btn {
  border-radius: 9px;
}

.font-montserrat {
  font-family: 'Montserrat';
}

/* Buttons */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0047AD;
  --bs-btn-border-color: #0047AD;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #053b88;
  --bs-btn-hover-border-color: #053b88;
  --bs-btn-focus-shadow-rgb: 208, 71, 19;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #053b88;
  --bs-btn-active-border-color: #053b88;
  --bs-btn-disabled-bg: #0047AD;
  --bs-btn-disabled-border-color: #0047AD;
}

.btn-transparent {
  background: transparent;
  color: #000;
  border: solid 1px #000;
}

.btn-transparent:hover {
  background: transparent;
  color: #000;
  border: solid 1px #000;
}

.banner-btn {
  padding-top: 14px;
  padding-right: 17px;
  padding-bottom: 14px;
  padding-left: 17px;
  min-width: 284px;
}

/* Alerts */
.alert-primary {
  --bs-alert-color: #053b88;
  --bs-alert-bg: #f2d4c9;
  --bs-alert-border-color: #e3a48d;
}

/* Badges */
.badge.bg-primary {
  background-color: #0047AD !important;
}

/* Progress bars */
.progress-bar.bg-primary {
  background-color: #0047AD !important;
}

.theme-text {
  color: #0047AD !important;
}

.dark-color {
  color: #000;
}

/* Pagination */
.page-link {
  color: #0047AD;
}

.page-link:hover {
  color: #053b88;
}

.page-item.active .page-link {
  background-color: #0047AD;
  border-color: #0047AD;
}

body {
  color: #000;
  font-family: 'Termina', sans-serif;
  --dot-bg: #fafafa;
  --dot-color: #d7d7d7;
  --dot-size: 2px;
  --dot-space: 24px;
  background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), var(--dot-color);
}

.bg-white {
  background: #fff;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 130px;
}

.section-padding-top {
  padding-top: 120px;
  padding-bottom: 0;
}

/* Sticky Header */
.navbar {
  transition: all 0.3s ease;
  padding: 18px 0;
  border: solid 1px #EAEAEA;
}

.testimonials-body {
  width: 60%;
  min-height: 225px;
}

.nav-btn {
  padding-right: 17px;
  padding-left: 17px;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.nav-btn:hover {
  background-color: #0047AD;
  border-color: #0047AD;
}

.navbar.scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-link,
.navbar-nav .nav-link:focus {
  color: #000;
  font-size: 12px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--bs-primary);
}

.hero-carousel img {
  width: 100%;
}

.static-banner img {
  height: 90vh;
  object-fit: cover;
}

/* Owl Nav Buttons */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 24px !important;
  font-weight: bold;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #000 !important;
  transform: scale(1.05);
}

/* Position owl dots vertically */
.hero-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3;
}

.hero-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-carousel .owl-dots .owl-dot.active {
  background: #0047AD;
  border: 2px solid #fff;
  transform: scale(1.7);
}

.hero-carousel .owl-dots .owl-dot span {
  display: none;
}

.section-heading {
  font-weight: 700;
  font-size: 75px;
  line-height: 80px;
  text-align: center;
  vertical-align: middle;
}

.carousel-controls {
  z-index: 3;
  position: relative;
  display: flex;
  gap: 30%;
  right: 30.5%;
  top: 294px;
}

.btn-icon {
  height: 24px;
}

.about-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 35px;
  vertical-align: middle;
}

.banner-action {
  margin-top: 60px;
}

.underline {
  text-decoration: underline;
}

.banner-description {
  color: #000;
}

.banner-description .btn {
  width: 422px;
  padding: 20px;
}

.connection-carousel {
  margin-bottom: 70px !important;
}

.carousel-controls .btn {
  border-radius: 54px;
  background-color: #0047AD;
  padding: 25px;
}

.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 10%;
  color: #fff;
  z-index: 2;
  background: #ffffff00;
  background: -webkit-linear-gradient(85deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(85deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(85deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#D9D9D9", GradientType=1);
}

.hero-wrapper {
  height: 85vh;
  background-size: cover;
}

.hero-wrapper .carousel-controls {
  position: absolute;
  bottom: 78px;
}

.category-line {
  color: #000;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 32px;
  vertical-align: middle;

}

.banner-text {
  font-weight: 700;
  font-size: 65px;
  line-height: 75px;
  vertical-align: middle;
  color: #000;
}

/* About section image overlap */
.about-images {
  position: relative;
}

.richtext-wrapper {
  padding-right: 32px;
}


.sub-title {
  font-size: 4rem;
  line-height: 64px;
}

.rich-text {
  color: #000;
  line-height: 32px;
  font-weight: 300;
}

/* Service boxes */

.testimonials-container {
  text-align: center;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  min-height: 470px;
}

.start-rating {
  width: 44%;
  margin: 0 auto;
}

.name {
  font-size: 20px;
}

.service-icon {
  background: #0047AD;
  width: 70px;
  padding: 10px;
  border-radius: 10px;
  margin-right: 24px;
}

#services .owl-carousel .owl-item img {
  width: 50px;
}

.service-block {
  display: flex;
  align-items: anchor-center;
  border: solid 1px #E6E6E6;
  border-radius: 9px;
  padding: 15px;
  background: #fff;
}

.service-container h5 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  text-align: center;
}

.service-container p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.thumb-img img {
  width: 64px !important;
  border: 2px solid #0047AD;
}

.customer {
  font-weight: 300;
}

.reviews-area .mobile-mb {
  text-align: center;
  width: fit-content;
  border-radius: 50%;
}

.reviews-area .mobile-mb:nth-child(2) {
  margin-top: -8px;
}

.reviews-area .mobile-mb:nth-child(3) {
  position: absolute;
  top: 20%;
  margin-left: 200px;
}

.reviews-area .counter-text-wrap {
  width: 256px;
  height: 256px;
  padding: 80px 16px;
}

.primary-bg {
  background: #0047AD;
}

.white-bg {
  background: white;
}

.black-100-bg {
  background-color: #131412;
}

.count-text {
  font-size: 40px;
  font-weight: 300;
}

.counter-title {
  font-size: 20px;
  font-weight: 300;
}

/* Subscribe Section */
.form-control::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.form-control:focus {
  border-color: #0047AD;
  box-shadow: none;
}

.subscribe-section .form-control {
  border-width: 1px;
  border-radius: 25px;
}

.subscribe-section .btn-primary {
  position: absolute;
  right: 0;
  margin: 7px;
  padding: 16px 38px;
}

.block-2 {
  padding-top: 107px;
  margin-left: -38px;
}

.product-wrapper {
  margin-top: 96px;
  margin-right: -16px;
  margin-left: -16px;
}

.product-wrapper .service-box {
  margin-bottom: 32px;
}

.product-wrapper>* {
  padding-right: 16px;
  padding-left: 16px;
}

/*contact page*/
.contact-form .btn-primary {
  min-height: 72px;
}

.contact-form textarea {
  height: 180px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item h5 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.contact-item p {
  line-height: 35px;
  color: #fff;
}

.contact-item a:hover {
  color: var(--bs-primary) !important;
}

/* Footer */
.footer {
  color: #000;
  font-weight: 300;
  padding-top: 128px;
  padding-bottom: 60px;
  position: relative;
}

.footer .container {
  padding-top: 90px;
}

.footer h5 {
  color: #000;
  margin-bottom: 24px;
  font-weight: 600;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
}

.footer p {
  line-height: 1px;
  color: #000;
}

.footer a {
  color: #000;
  text-decoration: none;
  line-height: 32px;
}

.footer a:hover {
  color: #000;
}

.footer-logo {
  position: absolute;
  top: -78px;
  left: 50%;
  margin: 0 auto;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 2px solid #532311;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, 0px);
}

/* Animation Delay */
.delay-1-0s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-2-0s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay-0-1s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-0-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-0-3s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-0-4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-0-5s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-0-6s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-0-7s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-0-8s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-0-9s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.delay-1-1s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.delay-1-2s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-1-3s {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.delay-1-4s {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.delay-1-5s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-1-6s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.delay-1-7s {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.delay-1-8s {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.delay-1-9s {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.bg-dark {
  background: #000000;
  color: #ffffff;
}

.blog-description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.blog-description .hightligh-blog-text {
  font-weight: 700;
}

.accordion-body {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 18px;
}

.blog-item img {
  height: 24px;
  margin-right: 20px;
}

.blog-heading {
  font-weight: 700;
  font-size: 25px;
  line-height: 33px;

}

.blog-container {
  margin-bottom: 40px;
}

.about-paras,
.about-paras-heading {
  width: 48%;
  text-align: center;
}

.about-paras-heading {
  margin-bottom: 40px;
}

.certificate-container {
  background: #fff;
  color: #000;
  min-height: 180px;
  border-radius: 10px;
}

.certificate-title,
.whoweare-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  vertical-align: middle;

}

.certificate-description {
  font-family: 'Montserrat';
}

.certificate-icon {
  background: #0047AD;
  padding: 10px;
  border-radius: 10px;
  margin-right: 20px;
}

.certificate-icon img {
  width: 24px;
}

.blog-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  vertical-align: middle;
  margin-top: 14px;
}

.blog-body {
  padding: 10px 68px;
  background: #ffffff;
  border: solid 1px #E6E6E6;
  border-radius: 10px;
  min-height: 175px;
}

.whoweare-container {
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 10px;
  padding: 0 30px 30px 30px;
  min-height: 226px;
}

.whoweare-icon img {
  background: #0047AD;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  top: -35px;
}

.whoweare-block {
  margin-top: -10px;
}

#testimonials .owl-carousel .owl-item img {
  width: 140px;
  margin-bottom: 20px;
}

.name {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: var(--bs-primary);
}

.form-control {
  height: 60px;
}

.footer-terms {
  padding: 50px 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
}

.social-icons-container {
  width: 178px;
  margin: 0 auto;
}

.contact-container {
  position: relative;
  top: 150px;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 9;
}

#details {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/*===== Vertical Timeline =====*/
#conference-timeline {
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
  display: table;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background: #00b0bd;
  padding: 15px 23px;
  color: #fff;
  max-width: 5%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#conference-timeline .conference-center-line {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background: #dedede;
  z-index: 1;
}

.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 44%;
  width: 100%;
}

.timeline-article .timeline-author {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  text-align: right;
}

.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  padding: 0 25px 54px 25px;
}

.timeline-article p {
  margin: 0 0 0 60px;
  padding: 0;
  font-weight: 400;
  color: #242424;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}

.timeline-article p span.article-number {
  position: absolute;
  font-weight: 300;
  font-size: 44px;
  top: 10px;
  left: -60px;
  color: #00b0bd;
}

.timeline-article .content-left-container {
  float: left;
}

.timeline-article .content-right-container {
  float: right;
}

.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 50%;
  width: 62px;
  height: 62px;
  margin-left: -31px;
  color: #fff;
  border-radius: 100%;
  z-index: 2;
}

.meta-date.dark {
  background: #000;
}

.meta-date.light {
  background: #0047AD;
}

.timeline-article .meta-date .date {
  display: block;
  text-align: center;
  font-weight: 900;
}

.timeline-article .meta-date .date {
  font-size: 30px;
  line-height: 60px;
}

.timeline-article .meta-date .month {
  font-size: 18px;
  line-height: 10px;
}

/*===== // Vertical Timeline =====*/

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {

  #conference-timeline .timeline-start,
  #conference-timeline .timeline-end {
    margin: 0;
  }

  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 50px;
  }

  .timeline-article .meta-date {
    margin-left: 0;
    left: 20px;
  }

  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }

  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }

  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }

  .timeline-article .content-right:before {
    display: none;
  }
}


.timeline-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  text-align: center;
  vertical-align: middle;
}

.timeline-desc {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.meta-date.last {
  top: 27px
}

.timeline-article.not-first {
  padding-top: 30px;
}

.np-pad {
  padding-bottom: 0 !important;
}

.accordion-button-custom {
  background: transparent;
  border: none;
  color: #0047AD;
  font-weight: 700;
  font-size: 25px;
  line-height: 33px;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: solid 1px;
}

.accordion-header {
  margin-bottom: 0;
  padding: 10px;
}

.collapsed .fa-minus {
  display: none;
}

.accordion-button-custom:not(.collapsed) .fa-plus {
  display: none;
}

.icons {
  font-size: 16px;
  margin-right: 20px;
}

.accordion-button-custom.collapsed {
  color: #000000 !important;
}

.service-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.certificate-block {
  align-items: anchor-center;
}

.nav-gap {
  gap: 3rem;
}

.blog-container div,
.facility-container div {
  overflow: hidden;
  border-radius: 10px;
}

footer .navbar-brand img {
  width: 180px;
}

@media only screen and (max-width: 1399px) {
  .navbar-brand img {
    width: 140px;
  }

  .nav-gap {
    gap: 2rem;
  }
}

@media only screen and (max-width: 1199px) {
  .navbar-brand img {
    width: 110px;
  }

  .nav-gap {
    gap: 1rem;
  }

  .section-heading {
    font-size: 60px;
    line-height: 65px;
  }

  .accordion-button-custom {
    font-size: 16px;
  }

  .certificate-container {
    min-height: 216px;
  }

  .whoweare-container {
    min-height: 276px;
  }

  .blog-body {
    padding: 10px 40px;
    min-height: 216px;
  }

  .service-block {
    min-height: 114px;
  }
}

@media only screen and (max-width: 992px) {
  .facility-container {
    text-align: center;
  }

  .blog-container {
    text-align: center;
  }

  .whoweare-container {
    margin-bottom: 60px;
  }

  .blog-body {
    padding: 10px;
    min-height: 220px;
  }

  .certificate-container {
    min-height: 140px;
  }

  .about-paras,
  .about-paras-heading {
    width: 100%;
    text-align: center;
  }

  .w-50 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 767px) {
  .banner-text {
    font-size: 41px;
    line-height: 50px;
  }

  .banner-description .btn {
    width: 300px;
    padding: 10px;
  }

  .section-heading {
    font-size: 40px;
    line-height: 35px;
  }

  .service-title {
    font-size: 14px;
    line-height: 22px;
  }

}

@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }

  .timeline-article p span.article-number {
    display: none;
  }

  .hero-wrapper {
    height: 100vh;
  }

  .testimonials-body {
    width: 100%;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}