* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400 !important;
  font-style: normal;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

:root {
  /* Colors */
  --color-primary: #358bfc;
  --color-primary-dark: #1a2aff;

  --color-bg-dark: #020a3a;
  --color-bg-light: #eef2f7;
  --color-section-light-blue: #1a3e8e;
  --color-section-dark-blue: #001d3b;

  --color-text-main: #111;
  --color-text-muted: #6b7280;
  --color-text-light: #cbd5e1;

  --section-padding: 4rem;

  --radius-lg: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  scroll-snap-align: start;
}

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.custom-navbar::before {
  background: transparent;
}

.custom-navbar::after {
  background: var(--color-bg-dark);
  backdrop-filter: blur(8px);
}

.custom-navbar > .container {
  border-bottom: 0.5px solid
    color-mix(in srgb, var(--color-primary) 30%, transparent 70%);
}

.custom-navbar.transparent::before {
  background: transparent;
}

/* On scroll */
.custom-navbar.scrolled {
  background: var(--color-bg-dark);
  backdrop-filter: blur(8px);
}

.custom-navbar.scrolled > .container {
  border: none;
}

.navbar-brand img {
  width: 150px;
  height: 40px;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.nav-link:hover {
  cursor: pointer;
  color: #358bfc;
}

.nav-link.active {
  color: #53a9ff !important;
}

.navbar-toggler-icon {
  color: #fff;
  /* filter: invert(1); */
}

.navbar-nav {
  margin-left: auto;
}

.btn-blue {
  background-color: var(--color-primary);
  border-radius: 0%;
  color: #fff;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.btn-blue:hover {
  background-color: color-mix(in srgb, var(--color-primary) 90%, #000 10%);
  border-radius: 0%;
  color: #fff;
  transform: translateX(6px);
}

.btn-blue.active {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border-color: var(--color-primary) !important;
}

.navbar-nav .dropdown-toggle::after {
  display: none;
}

.navbar-nav .custom-dropdown.show .nav-link::after {
  transform: rotate(180deg);
}

.navbar-nav .custom-menu {
  border-radius: 0;
  border: none;
  padding: 10px 0;
  min-width: max-content;
  background: #ffffff;
  /* left: 50%; */
  transform: translateX(-50%);
  overflow: hidden;
}

.navbar-nav .custom-menu .dropdown-item {
  padding: 10px 18px;
  font-size: 0.9rem;
  /* color: #3B4450; */
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.navbar-nav .custom-menu .dropdown-item:hover {
  background: #daecff;
  color: #358bfc;
  transform: translateX(6px);
}


@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .navbar-nav .custom-menu {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 10px;
  }

  .custom-dropdown.open .custom-menu {
    display: contents;
    background: #020a3a;
  }
  .custom-dropdown.open .custom-menu li a{
    color: #fff;
  }

  .navbar-collapse {
    background: #020a3a;
    padding: 1rem;
  }

  .navbar-collapse.scrolled {
    background: var(--color-bg-dark);
  }

  .navbar-nav {
    gap: 1rem;
  }

  .nav-link {
    padding: 0.5rem 0;
  }

  .custom-navbar > .container {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .navbar-nav .custom-menu {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 10px;
  }

  .custom-dropdown.open .custom-menu {
    display: contents;
    background: #020a3a;
  }
  .custom-dropdown.open .custom-menu li a{
    color: #fff;
  }
}



section:not(.hero) {
  /* position: relative; */
  /* z-index: 2; */
}

/* Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("./assets/Home-hero.png");
}

/* Content above bg */
.hero .container {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.text-blue {
  color: #53a9ff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    background-position: center;
  }

  .hero .container {
    flex-grow: 0.5;
  }

  section .row,
  footer .row {
    margin: auto;
  }
}

.text-lighter {
  font-weight: 400;
  color: #fff;
}

.second-text-lighter {
  font-weight: 400;
  color: #dde3ec;
  size: 18px;
}

.brand-secondary {
  font-weight: 400;
  color: #eef6ff;
}

.brand-primary {
  font-weight: 400;
  color: #003a76;
}

.business-primary {
  color: #99b6d4;
}

/* DOTS */
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #94a3b8;
  cursor: pointer;
}

.dot:hover {
  box-shadow: 0px 0px 5px 2px #fff;
  background-color: #fff;
}

.dot.active {
  background: var(--color-primary);
}

.leader-text {
  color: var(--color-primary);
}

.second-section {
  background: var(--color-section-light-blue);
  color: var(--color-bg-light);
}

/* Image polish */
.second-section img {
  max-width: 100%;
  border-radius: 1rem;
}

.stats-section {
  background: #eef6ff;
  color: var(--color-text-main);
}

.stats-section .fst-italic {
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
  line-height: 1.6;
}

/* Numbers */
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
}

/* Text */
.stat p {
  color: var(--color-text-main);
}

.leader-primary {
  color: #004894;
}

/* Wrapper */
.image-wrapper {
  position: relative;
  display: inline-block;
  /* background: linear-gradient(
    135deg,
    #A1AAB600,
    #00489480
  ); */
  border-radius: 4%;
  /* filter: blur(10px); */
  width: 90%;
  z-index: 1;
  overflow: hidden;
}

/* Logo overlay centered */
.logo-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo styling */
.logo-overlay img {
  z-index: 2;
  width: 60%;
}

/* Target the image */
.image-wrapper img,
.img-fluid {
  transition: transform 0.6s ease;
}

/* Hover effect */
.image-wrapper:hover img,
.second-section .img-fluid:hover {
  transform: scale(1.05);
}

.image-box {
  position: relative;
  display: inline-block;
}

.image-box .img-fluid {
  width: 85%;
}

.experience-box {
  position: absolute;
  bottom: -12%;
  left: -15%;

  background: #004894;
  color: #eef6ff;

  padding: 2rem;
  border-radius: 20px;

  text-align: left;
  min-width: 200px;
}

.image-box .play-btn {
  position: absolute;
  bottom: -20%;
  left: 20%;

  width: 85px;
  height: 85px;

  background: var(--color-primary);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 4rem;
  cursor: pointer;
}

.image-box .play-btn .bi {
  margin-left: 10%;
}

.image-box .play-btn:hover {
  transform: scale(0.9);
  transition: 0.4s ease;
}

@media (max-width: 991px) {
  .second-section {
    padding: 5rem 0;
  }

  .experience-box {
    left: -10%;
    bottom: -10%;
    padding: 1rem;
    width: 75px;
  }

  .image-box .play-btn {
    bottom: -15%;
    left: 20%;
    width: 70px;
    height: 70px;
    font-size: 3rem;
  }

  .testimonial-section {
  min-height: 70vh !important;
  }

 
}

@media (max-width: 768px) {

  .testimonial-section {
  min-height: 70vh !important;
}
  .second-section {
    padding: 5rem 0;
  }

  .experience-box {
    left: 0%;
    bottom: -25%;
    padding: 1rem;
    width: 40px;
  }

  .image-box .play-btn {
    left: 45%;
    bottom: -20%;
    width: 70px;
    height: 70px;
    font-size: 3rem;
  }
}

/* Card */
.services-section .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  height: 40vh;
}

/* Image */
.services-section .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Overlay */
.services-section .service-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  font-size: x-large;
  color: white;
  font-weight: 500;

  background: linear-gradient(
    to top,
    var(--color-section-light-blue),
    transparent
  );
  transition: 0.3s ease;
}

/* Hover effect */
.services-section .service-card:hover img {
  transform: scale(1.08);
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
}

/* Make indicators visible */
.carousel-indicators button {
  background-color: var(--color-text-muted) !important;
  border-radius: 100%;
  width: 2px;
  height: 2px;
  opacity: 1;
  border: none;
}

.custom-indicators {
  position: relative;
  top: 1.5rem;
  justify-content: center;
}

.carousel-indicators .active {
  background-color: var(--color-primary) !important;
  /* box-shadow: 0px 0px 8px 0px var(--color-primary-dark); */
  opacity: 1;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

/* Slide base */
.hero-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

/* Active */
.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.expert-card {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0px 0px 8px 1px var(--color-text-light);
  border-bottom: 5px solid var(--color-section-light-blue);
  background: linear-gradient(
    to bottom,
    #ffffff 10%,
    var(--color-section-light-blue) 100%
  );
  cursor: pointer;
}

.expert-card-inner {
  background: #fff;
  border-radius: calc(1.5rem - 0px);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 1rem 2rem;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.3s ease;
}

.expert-card p,
.neutral-p {
  color: #4f5b6a;
}

.expert-card:hover .expert-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.expert-card:hover::after {
  height: 8px;
}

.testimonial-section {
  background: #dde3ec;
  min-height: 50vh;
}


/* Card */
.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 80%;
  /* height: 35vh; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Text */
.testimonial-text {
  color: #4b5563;
  text-align: left;
}

/* User image */
.user-img {
  border-radius: 50%;
  object-fit: cover;
}

/* Stars */
.stars {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.brand-section {
  min-height: 40vh;
  background: var(--color-section-light-blue);
}

/* Slider container */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: -webkit-fill-available;
}

/* Track */
.logo-track {
  display: flex;
  gap: 4rem;
  animation: scroll 20s linear infinite;
}

@media (max-width: 768px) {
  .logo-track {
    gap: 2rem;
  }

  .logo-track img {
    height: 30px;
  }

  .testimonial-text {
    font-size: small;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.footer-section {
  background: var(--color-section-dark-blue);
  color: var(--color-text-light);
}

.footer-section ul li,
.footer-section ul li a,
.contact-item span,
.footer-section .col-lg-4 p {
  font-size: 14px;
  line-height: 2em;
  text-decoration: none;
  color: #ccdaea;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover ,
.contact-item span:hover{
  color: var(--color-primary);
  opacity: 0.8;
}

.footer-section .social-icons .bi,
.footer-section .bi {
  color: var(--color-primary);
}

.footer-bottom {
  background: #002b59;
  font-size: 13px;
  color: #dde3ec;
}

.contact-item span,
.footer-section .col-lg-4 p {
  font-size: 14px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 7vh;
  right: 2vh;

  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background: var(--color-primary);
  color: white;
  font-size: 30px;

  display: flex;
  align-items: end;
  justify-content: center;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  z-index: 1000;
}

/* Show when scrolling */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* Hover */
#scrollTopBtn:hover {
  transform: translateY(-3px);
}

.about-us-hero {
  min-height: 50vh;
}

.leader-section {
  background-color: #daecff;
}

.leader-section .team-card {
  /* height: 65vh; */
  border-radius: 1rem;
  overflow: hidden;
  background: white;
  transition: transform 0.3s ease;
}

/* Hover */
.leader-section .team-card:hover {
  transform: translateY(-6px);
}

/* Image section */
.leader-section .team-img {
  background: #004894;
  position: relative;
}

/* Optional subtle pattern overlay */
.leader-section .team-img::before {
  content: "";
  position: absolute;
  top: 10;
  inset: 0;
  opacity: 0.1;
  background: url("/assets/plain-logo.svg") center/contain no-repeat;
}

/* Image */
.leader-section .team-img img {
  width: stretch;
  /* max-height: 260px; */
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.leader-section .team-info {
  padding: 5%;
}

.leader-section .team-info h5 {
  color: #061c3d;
  font-weight: 600;
  font-size: 18px;
}

.leader-section .team-info p {
  color: #6a778b;
  font-weight: 400;
  font-size: 14px;
}

/* Card container */
.service-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  margin-bottom: 3%;
  box-shadow: 0 4px 24px #00000012;
}

.stats-section .service-card:last-child {
  margin-bottom: 0;
}

/* Image */
.stats-section .service-image img {
  width: max-content;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cloud-img-para {
  padding: 0 2rem;
  background: #fff;
}

.service-card .service-image .cloud-image{
  margin: 5% ;
  width: 90%;
  object-fit: cover;
}

/* Content */
.service-card .service-content {
  padding: 4% 5%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
}

/* Dark version */
.service-card .service-content.dark {
  background: #004894;
  color: white;
}

/* Light version */
.service-card .service-content.light {
  background: #f8fafc;
  color: #0f172a;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Feature item */
.feature-item {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 3rem 1.2rem;
  border: 1px solid #ffffff33;
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1.5;
}

.service-content.light .feature-item {
  border: 1px solid #e2e8f0;
}

/* Responsive */


@media (min-width: 992px) {

  /* Card 1: image left, content right */
  .stats-section .service-card:first-child .col-lg-6:first-child .service-image {
    border-radius: 1rem 0 0 0;         /* top-left only */
    overflow: hidden;
  }
  
  .stats-section .service-card:first-child .col-lg-6:first-child {
    border-radius: 0 0 0 1rem;         /* bottom-left */
    overflow: hidden;
  }
  .stats-section .service-card:first-child .service-content {
    border-radius: 0 1rem 1rem 0;      /* right side */
  }

  /* Card 2: image left, content right */
  .stats-section .service-card:last-child .col-lg-6:first-child .service-image {
    border-radius: 1rem 0 0 1rem;      /* left side */
    overflow: hidden;
  }

  
  .stats-section .service-card:last-child .service-content {
    border-radius: 0 1rem 1rem 0;      /* right side */
  }

  .service-card .service-content.dark {
    padding: 2rem;
  }
}

@media (max-width: 991px) {

  .about-us-hero {
  min-height: 35vh;
}

  .stats-section .service-card {
    border-radius: 0.875rem;
  }

  .stats-section .service-image {
    min-height: 240px;
    border-radius: 0.875rem 0.875rem 0 0;  /* round top only */
    overflow: hidden;
  }

  .service-card .service-content {
    padding: 1.8rem;
    border-radius: 0 0 0.875rem 0.875rem;  /* round bottom only */
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card .service-image img{
    width: stretch;
  }
}

@media (max-width: 575px) {

  .about-us-hero {
  min-height: 28vh;
}

  .stats-section .service-card {
    border-radius: 0.75rem;
  }

  .stats-section .service-image {
    min-height: 200px;
    border-radius: 0.75rem 0.75rem 0 0;
  }

  .service-card .service-content {
    padding: 1.25rem;
    border-radius: 0 0 0.75rem 0.75rem;
    gap: 0.75rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;           /* single column on phone */
  }

  .feature-item {
    padding: 0.75rem 1rem;
  }
  
}

/* FORM BOX */
.contact-form-box {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--color-text-light);
  border-radius: 1.5rem;
}


.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 2% 3%;
  border: 1px solid #99b6d4;
  font-size: 16px;
}

.contact-form-box textarea {
  resize: none;
}

.contact-form-box .row input {
  padding: 4%;
}

.contact-form-box label {
  font-size: 14px;
  margin-bottom: 1%;
  display: block;
}

.contact-form-box .send-message-btn {
  width: 100%;
  background: #004894;
  color: white;
  border: none;
  margin-top: 3%;
  font-size: 18px;
  font-weight: 600;
  padding: 2%;
}

.contact-form-box .form-select {
  /* color: var(--color-text-muted); */
  /* border-radius: 0; */
}

/* INFO CARDS */
.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid #dde3ec;
  background: #f1f5f9;
  padding: 6%;
  border-radius: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.info-card h6 {
  text-overflow: ellipsis;
  word-break: break-all;
  font-weight: 700;
  color: #004894;
}

.info-card span {
  font-size: 13px;
  font-weight: 500;
  color: #4f5b6a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-form-box {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .info-card {
    flex-direction: row;
  }

  .contact-form-box .row input {
  padding: 3%;
}

  .contact-form-box .row .col-md-6{
    padding: 0;
  }
}

.map-section {
  width: 100%;
  min-height: 50vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: stretch;
  border: 0;
}

/* Custom expert carousel dots */
#expertCarouselDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px;
  position: static; 
  box-sizing: content-box;
  /* opacity: .5; */
  
}

#carouselDots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px;
  position: static; 
  box-sizing: content-box;
  /* opacity: .5; */
  
}

.expert-dot , .services-dot{
  width: 8px !important;
  height: 8px !important;
  border-radius: 100%;
  background: var(--color-text-muted);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}


.expert-dot.active , .services-dot.active{
  opacity: 1 ;
  width: 10px;
  border-radius: 4px;
  background: var(--color-primary);
}


/* ============================================
   ANIMATION UTILITY — SCROLL TRIGGERED ONLY
   All effects fire ONLY when scrolled into view
   JS adds .anim-visible via IntersectionObserver
   ============================================ */

/* ── Shared base: everything starts hidden ── */
.anim-fade,
.anim-fade-left,
.anim-fade-right,
.anim-fade-up,
.anim-fade-down {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
}

/* ── Starting positions (before scroll) ── */
.anim-fade       { transform: none; }
.anim-fade-left  { transform: translateX(-50px); }
.anim-fade-right { transform: translateX(50px); }
.anim-fade-up    { transform: translateY(40px); }
.anim-fade-down  { transform: translateY(-40px); }

/* ── Revealed state — JS adds .anim-visible ── */
.anim-fade.anim-visible,
.anim-fade-left.anim-visible,
.anim-fade-right.anim-visible,
.anim-fade-up.anim-visible,
.anim-fade-down.anim-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   DELAY MODIFIERS
   ============================================ */
.anim-delay-100 { transition-delay: 0.1s; }
.anim-delay-200 { transition-delay: 0.2s; }
.anim-delay-300 { transition-delay: 0.3s; }
.anim-delay-400 { transition-delay: 0.4s; }
.anim-delay-500 { transition-delay: 0.5s; }
.anim-delay-600 { transition-delay: 0.6s; }
.anim-delay-700 { transition-delay: 0.7s; }
.anim-delay-800 { transition-delay: 0.8s; }

/* ============================================
   DURATION MODIFIERS
   ============================================ */
.anim-fast   { transition-duration: 0.35s; }
.anim-slow   { transition-duration: 1s; }
.anim-slower { transition-duration: 1.4s; }

/* ============================================
   LINE-BY-LINE (for paragraphs / quotes)
   ============================================ */
.line-by-line-wrap {
  overflow: hidden;
}

.anim-line {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.line-by-line-wrap.anim-visible .anim-line:nth-child(1) { transition-delay: 0.00s; opacity: 1; transform: translateY(0); }
.line-by-line-wrap.anim-visible .anim-line:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: translateY(0); }
.line-by-line-wrap.anim-visible .anim-line:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
.line-by-line-wrap.anim-visible .anim-line:nth-child(4) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
.line-by-line-wrap.anim-visible .anim-line:nth-child(5) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.line-by-line-wrap.anim-visible .anim-line:nth-child(6) { transition-delay: 0.50s; opacity: 1; transform: translateY(0); }