@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
  font-family: "Lato", sans-serif;
color: #444444;
	font-size: 1rem;
}
p {
  font-family: "Lato", sans-serif;

}
.carousel-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1906 / 480; /* matches your image */
  overflow: hidden;
}

/* IMAGE (bottom layer) */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: center left; /* or right / top */

  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  transform: none;
  transition: none;
}


/* Base state */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 2.2s ease-in-out;
}

/* Active slide */
.carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 2;
}

/* Ensure next/prev slides also fade properly */
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
  opacity: 1;
  z-index: 1;
}

/* When sliding, fade OUT the current one */
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
  z-index: 2;
}

/* When sliding, keep incoming visible */
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
  z-index: 1;
}
/* initial hidden state */
.glass-inner {
  opacity: 0;
  transform: translateY(20px);
}

/* animate when slide becomes active */
.carousel-item.active .glass-inner {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s ease 0.4s;
}


.glass-inner h2,
.glass-inner p {
  opacity: 0;
  transform: translateY(20px);
}

.carousel-item.active h2 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.3s;
}

.carousel-item.active p {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.6s;
}
/* CUSTOM CAROUSEL ARROWS */
.custom-arrow {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
}

/* circle background */
.custom-arrow .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;

  background: rgba(0, 76, 151, 0.85); /* Novus blue */
  color: #fff;
  font-size: 26px;
  border-radius: 50%;

  transition: all 0.3s ease;
}

/* hover effect */
.custom-arrow:hover .arrow-icon {
  background: #1f5fa9;
  transform: scale(1.1);
}

/* position left/right */
.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

/* mobile tweak */
@media (max-width: 768px) {
  .custom-arrow {
    width: 45px;
    height: 45px;
  }

  .custom-arrow .arrow-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}


/* OVERLAY (middle layer) */
/*.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    120deg,
    rgba(10,20,35,0.85),
    rgba(10,20,35,0.55),
    rgba(243,112,33,0.25)
  );
}*/

/* TEXT (top layer) */
/* Move carousel hero text higher + shift it right */
.hero-content {
  position: absolute;     /* REQUIRED */
  top: 42%;
  left: 12%;
  transform: translateY(-50%);

  z-index: 5;
  width: 80%;
  text-align: left;
  color: #fff;           /* so it shows on dark overlay */
}
/* Add extra left padding inside the text box */
.hero-content .glass {
  padding-left: 40px;  /* increase/decrease to taste */
  padding-right: 20px;
}

/* Mobile: go back to centered layout */
@media (max-width: 768px) {
  .hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-content .glass {
    padding-left: 0;
    padding-right: 0;
  }
}
.glass {
  position: relative;  /* makes overlay position correctly */
  display: inline-block;
}

/* the overlay only behind the text */
.glass .text-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    120deg,
    rgba(0, 76, 151, 0.45),
    rgba(0, 76, 151, 0.55),
    rgba(0, 76, 151, 0.25)
  );

  border-radius: 8px;
}
/* ensure content sits above overlay */
.glass .glass-inner {
  position: relative;
  z-index: 2;
  padding: 22px 30px; /* controls "overlay padding" around text */
}

/* optional: better defaults if .glass currently has styles */
.hero-content {
  width: 80%;
  text-align: left;
	  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.logo {
 
    max-width: 235px !important;
  
}
.glass-inner p {
    font-size: 1.5rem;
}
.glass-inner h2 {
    font-weight: 600;
    font-style: italic;
}
/* DOT CONTAINER */
.progress-dots {
  bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* DOT */
.progress-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50% !important; /* FORCE circle */
  background: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  cursor: pointer;

  border: none;        /* remove Bootstrap default */
  text-indent: -999px; /* hide numbers if any */
}

/* ACTIVE DOT */
.progress-dots li.active {
  background: #ffffff;
  transform: scale(1.2);
}
.progress-dots li {
  transform: scale(0.9);
}

.progress-dots li.active {
  transform: scale(1.3);
}

/* SECTION */
.careers-section {

  padding: 40px 0px;

}

/* TITLE */
.section-title {
  font-size: 2.4rem;
  color: #2d3e50; /* dark blue/grey */
  font-weight: 400;
  margin-bottom: 10px;
	    FONT-STYLE: ITALIC;
}

.section-title strong {
  font-weight: 700;
}

/* BLUE LINE */
.title-underline {
  width: 60px;
  height: 3px;
  background-color: #1f5fa9; /* Novus blue feel */
  margin: 15px auto 25px;
}

/* SUBTITLE */
.section-subtitle {
  color: #1f5fa9;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TEXT */
.section-text {
  max-width: 720px;
  margin: 0 auto 15px;
  color: #6c7a89;
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .section-text {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

.jobs-section {
    background-color: #f4f6f8;
    padding: 40px 0px;
  background-color: #EFEFF0;
}
/* SECTION */
.growth-section {
  background-color: #f4f6f8;
  padding: 80px 20px;
}

/* IMAGE */
.split-img {
   border-radius: 4px;
  object-fit: cover;
}

/* TITLE */
.split-title {
  font-size: 2rem;
  color: #2d3e50;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 15px;
	    FONT-STYLE: ITALIC;
}

.split-title strong {
  font-weight: 700;
}

/* TEXT */
.split-text {
  color: #6c7a89;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-novus {
  background-color: #1f5fa9;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.btn-novus:hover {
  background-color: #174a82;
  color: #fff;
}
.parallax-section {
  height: 350px;
  position: relative;
  background-image: url('/sites/novusholdings/image/jpeg/par.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  overflow: hidden;
}

/* Overlay */
.parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 60, 0.65); /* dark blue overlay */
  z-index: 1;
}

/* Ensure text stays above overlay */
.parallax-section .container {
  z-index: 2;
}

/* Optional: improve mobile behavior */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll; /* fixes iOS issues */
  }
}


.logo-slider-section {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

/* Slider container */
.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track (animated) */
.logo-track {
  display: flex;
  width: calc(200px * 20); /* 10 logos x2 */
  animation: scrollLogos 30s linear infinite;
}

/* Each logo */
.logo-item {
  width: 200px;
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Image styling */
.logo-item img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
/*  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;*/
}

/* Hover effect */
.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile tweak */
@media (max-width: 768px) {
  .logo-item {
    width: 140px;
    flex: 0 0 140px;
  }

  .logo-track {
    width: calc(140px * 20);
  }
}
/* CTA SECTION */
.cta-section {
  background: #f5f6f7;
  padding: 60px 0;
}

.cta-section h3 {
  color: #2c5c8a;
  font-weight: 400;
  margin-bottom: 15px;
}

.cta-section p {
  color: #555;
  margin-bottom: 10px;
}

/* Optional: if .btn-novus doesn't already exist */


/* FOOTER BOTTOM BAR */
.footer-bottom {
  background: #0f4c81;
  color: #fff;
  padding: 15px 0;
  font-size: 13px;
}

.footer-bottom a {
  color: #fff;
}
/* TOP SECTION */
.cv-register-section {
  background: #f2f3f5; /* light grey like screenshot */
  padding: 70px 20px;
}

.cv-title {
  font-size: 2.4rem;
  color: #2d3e50;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
}

.cv-subtitle {
  max-width: 720px;
  margin: 0 auto 20px;
  color: #6c7a89;
  font-size: 1rem;
  line-height: 1.6;
}

/* HELP SECTION (dark blue gradient) */
.help-section {
  background: linear-gradient(
    135deg,
    #1f3f66,
    #1f5fa9
  );
  padding: 50px 20px;
  color: #fff;
}

.help-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
}

.help-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.help-text a {
  color: #fff;
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .cv-title {
    font-size: 1.8rem;
  }

  .help-title {
    margin-bottom: 20px;
    font-size: 1.6rem;
    text-align: center;
  }

  .help-text {
    text-align: center;
  }
}

.page-content {
    padding-bottom: 0rem;
}


.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
}

/* VIDEO SECTION */
.video-section {
  background: #ffffff;
  padding: 60px 20px;
}

/* Responsive video */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Slight polish */
.video-section .section-text {
  max-width: 700px;
}