@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{box-sizing: border-box;padding:0;margin:0;}
body{font-family: "Inter", sans-serif;}
.mont-font{  font-family: "Montserrat", sans-serif;}



.header-menu li .nav-link:hover{

    background: linear-gradient(180deg, #F39813 0%, #EB6319 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.2s ease;
}

.add_class .header-menu{
  background-color: #fff;
}
 header{
  padding: 10px 0;
}



.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

 
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}


.main-btn {
    border:1px solid #EB6319;
    background: linear-gradient(180deg, #F39813 0%, #EB6319 100%);
}

.main-btn::before , .main-blue-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 80%
    );
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.main-btn:hover {
    box-shadow: 0 12px 28px rgba(235, 99, 25, 0.4);
}

.main-btn:hover::before , .main-blue-btn:hover::before {
    transform: translateX(120%);
}

.main-btn:active , .main-blue-btn:active{
    transform: translateY(-1px);
}




.main-blue-btn , .main-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.35s ease; 
}
.main-blue-btn:hover , .main-btn:hover{
    transform: translateY(-3px);
}

.main-blue-btn {
    border:1px solid #0D3767;
    background: linear-gradient(180deg, #1f3c5e 0%, #0D3767 100%); 
} 

.main-blue-btn:hover { 
    box-shadow: 0 12px 28px #0d376785;
}
 











.diagonal-panel {
    clip-path: polygon(0 0, 61.15% 0, 40.04% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 61.15% 0, 40.04% 100%, 0 100%);
}

.tread-mask { 
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
    background: linear-gradient(90deg, #08213E 0%, rgba(8, 33, 62, 0.97) 46.25%, rgba(8, 33, 62, 0.79) 100%);
}

.text-gradient{
    background: linear-gradient(180deg, #F39813 0%, #EB6319 100%);
     -webkit-background-clip: text;-webkit-text-fill-color: transparent;
    background-clip: text;
}









  @keyframes twFadeUp {
    from { opacity: 0; transform: translateY(24px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes twBadgePop {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.6) rotate(-8deg); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  }
  @keyframes twRingPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 55, 103, 0.35); }
    50%      { box-shadow: 0 0 0 14px rgba(13, 55, 103, 0); }
  }
  @keyframes twIconFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
  }

  /* Hidden by default — only animates once .tw-in-view is added by JS */
  .tw-tile { opacity: 0; overflow: hidden; }
  .tw-in-view .tw-tile { animation: twFadeUp 0.7s ease-out forwards; }
  .tw-in-view .tw-tile-1 { animation-delay: 0.05s; }
  .tw-in-view .tw-tile-2 { animation-delay: 0.2s; }
  .tw-in-view .tw-tile-3 { animation-delay: 0.35s; }

  .tw-tile img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
    will-change: transform;
  }
  .tw-tile:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
  }

  .tw-badge-wrap {
    opacity: 0;
    transition: transform 0.4s ease;
  }
  .tw-in-view .tw-badge-wrap {
    animation: twBadgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.55s;
  }
  .tw-in-view .tw-badge-wrap.tw-pulse-ready {
    animation: twBadgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               twRingPulse 2.8s ease-in-out 1.1s infinite;
  }
  .tw-badge-wrap:hover { transform: translate(-50%, -50%) scale(1.06) !important; }
  .tw-badge-wrap:hover .tw-badge-icon {
    animation-play-state: paused;
    transform: scale(1.08);
  }

  .tw-badge-icon {
    animation: twIconFloat 3s ease-in-out infinite;
    transition: transform 0.4s ease;
  }

  @media (prefers-reduced-motion: reduce) {
    .tw-tile, .tw-badge-wrap, .tw-badge-icon { animation: none !important; opacity: 1 !important; }
  }

  



   .tw-step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 10;
  }
  .tw-step.tw-active { opacity: 1; transform: translateY(0); }

  .tw-connector-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-image: repeating-linear-gradient(90deg, #DEDEDE 0 5px, transparent 5px 12px);
    opacity: 0.5;
    transition: width 0.35s ease-out;
  }
  .tw-connector-line.tw-active { width: 100%; }

  .tw-arrow {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
  }
  .tw-arrow.tw-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }

  .tw-connector {
    position: relative;
    width: 2px;
    height: 110px;
    margin: 4px auto;
    z-index: 0;
  }

  @media (min-width: 1024px) {
    .tw-connector {
      position: absolute;
      top: 42px;
      left: 50%;
      width: 100%;
      height: 2px;
      margin: 0;
    }
    .tw-connector-line {
      background-image: repeating-linear-gradient(90deg, #DEDEDE 0 5px, transparent 5px 12px);
      opacity: 0.5;
    }
  }

  @media (max-width: 1023px) {
    .tw-connector-line {
      background-image: repeating-linear-gradient(180deg, #DEDEDE 0 5px, transparent 5px 12px);
      opacity: 0.5;
    }
    .tw-arrow { transform: translate(-50%, -50%) rotate(90deg) scale(0.5); }
    .tw-arrow.tw-active { transform: translate(-50%, -50%) rotate(90deg) scale(1); }
  }

  @media (prefers-reduced-motion: reduce) {
    .tw-step, .tw-connector-line, .tw-arrow {
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
      width: 100% !important;
      height: 100% !important;
    }
  }

@keyframes twFlowX {
  from { background-position-x: 0; }
  to   { background-position-x: 24px; }
}
@keyframes twFlowY {
  from { background-position-y: 0; }
  to   { background-position-y: 24px; }
}

.tw-connector-line.tw-active {
  width: 100%;
  animation: twFlowX 0.8s linear infinite;
}

@media (max-width: 1023px) {
  .tw-connector-line.tw-active {
    height: 100%;
    animation: twFlowY 0.8s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tw-connector-line.tw-active { animation: none !important; }
}


.link-btn {   
  background: linear-gradient(180deg, #F39813 0%, #EB6319 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; 
}

.link-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(180deg, #F39813 0%, #EB6319 100%);
  transition: width 0.3s ease;
}

.link-btn:hover::after {
  width: 100%;
}

.link-btn i {
  transition: transform 0.25s ease;
}

.link-btn:hover i {
  transform: translateX(4px);
}






/* about */
 /* ---- whole round shape: scale 0 to scale 1 on scroll-in, replays every time ---- */
 
 


 .main-bg-round {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding-bottom: 100%;
    background: linear-gradient(180deg, #F49915 0%, #F26317 100%);
    opacity: 0;
    transform: scale(0);
    transform-origin: center; 
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.is-visible .main-bg-round {
    opacity: 1;
    transform: scale(1);
}

.reveal-ring {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.reveal-on-scroll.is-visible .reveal-ring {
    opacity: 1;
    transform: none;
}

.inner-main-round img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: transform 0.6s ease;
}
.group:hover .inner-main-round img {
    transform: scale(1.12);
}
 

/* ---- sun rays + wheel: keep spinning independently once visible ---- */
.sun-wheel-animated .sun-rays,
.sun-wheel-animated .center-wheel {
    transform-box: fill-box;
    transform-origin: center;
    animation-play-state: paused;
}
/* .sun-wheel-animated .sun-rays {
    animation: rays-spin 12s linear infinite;
} */
.sun-wheel-animated .center-wheel {
    animation: wheel-spin-reverse 8s linear infinite;
}
.reveal-on-scroll.is-visible .sun-wheel-animated .sun-rays,
.reveal-on-scroll.is-visible .sun-wheel-animated .center-wheel {
    animation-play-state: running;
} 
@keyframes wheel-spin-reverse {
    to { transform: rotate(360deg); }
}







/* ---- heading fade-in ---- */
.reveal-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.is-visible .reveal-fade {
    opacity: 1;
    transform: none;
}

/* ---- connecting line: single element, draws via scaleX ---- */
.journey-line {
    position: absolute;
    background: linear-gradient(90deg, #D8DCE3 10%, rgba(216, 220, 227, 0) 100%, #D8DCE3 100%, rgba(216, 220, 227, 0) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.reveal-on-scroll.is-visible .journey-line {
    transform: scaleX(1);
}

/* desktop: horizontal line across the top of the circles */
@media (min-width: 1024px) {
    .journey-line {
        top: 35px;
        left: 0;
        right: 0;
        height: 2px;
    }
}

/* mobile: vertical line down the left edge, draws top to bottom */
@media (max-width: 1023px) {
    .journey-line {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 2px;
        background: linear-gradient(180deg, #D8DCE3 10%, rgba(216, 220, 227, 0) 100%, #D8DCE3 100%, rgba(216, 220, 227, 0) 100%);
        transform: scaleY(0);
        transform-origin: top center;
        transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
    }
    .reveal-on-scroll.is-visible .journey-line {
        transform: scaleY(1);
    }
}

/* ---- steps: pop in one by one, staggered ---- */
.journey-step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.is-visible .journey-step {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.is-visible .journey-step.step-1 { transition-delay: 0s; }
.reveal-on-scroll.is-visible .journey-step.step-2 { transition-delay: 0.35s; }
.reveal-on-scroll.is-visible .journey-step.step-3 { transition-delay: 0.7s; }
.reveal-on-scroll.is-visible .journey-step.step-4 { transition-delay: 1.05s; }
.reveal-on-scroll.is-visible .journey-step.step-5 { transition-delay: 1.4s; }
.reveal-on-scroll.is-visible .journey-step.step-6 { transition-delay: 1.75s; }



/* ---- badge number: little pop, matches the step's own timing ---- */
.journey-badge {
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-on-scroll.is-visible .journey-step .journey-badge {
    transform: scale(1);
    transition-delay: inherit;
}

/* ---- hover: gentle lift + highlight ring on the circle ---- */
.journey-circle {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.journey-step:hover .journey-circle {
    transform: translateY(-4px);
    box-shadow: 0px 10px 24px 0px #F499151A;
    border-color: #F49915;
}


.crumb-underline {
    height: 10px;
    width: 100%; 
    background: linear-gradient(90deg, #F38F15 0%, #FFFFFF 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.reveal-on-scroll.is-visible .crumb-underline {
    transform: scaleX(1);
}

.validate-has-error{
  
    display: block;
    padding-top: 0;
    font-size: 12px;
    color: #cc3f44;
    position: absolute;

}
 

.nav-link:hover,
.nav-link.active {
    color: #F26317; 
} 

/* the sliding underline bar */
.nav-pill {
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
    opacity: 0;
}
.header-menu:hover .nav-pill {
    opacity: 1;
}
.nav-link.active{
  border-bottom: 2px solid #F49915;
}

/* mobile: fall back to a simple left accent bar, no pill/JS needed */
@media (max-width: 1023px) {
    .nav-link { 
        border-left: 0;
        padding-top: 4px;
        padding-bottom: 4px; 
    } 
}