/** @format */




  header {
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); subtle 3D feel */
  }

  /* Default at top */
  .header-transparent {
    background-color: transparent !important;
  }

  /* Light mode scrolled */
  .header-white {
    background-color: white !important;
  }

/** @format */
* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
}
html body {
  font-family: "Open Sans", sans-serif;
}
html body a {
  color: black;
  text-decoration: none;
}
html body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
html body #top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 92vh;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #025add;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

#top.show {
  opacity: 0.7;
  visibility: visible;
}

#top .top {
  font-size: 18px;
  color: white;
  position: absolute;
  z-index: 2;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  z-index: 1;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.35s;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}

html body #top .top {
  font-size: 20px;
  color: white;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
html body #top:hover .top {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}

::-webkit-scrollbar {
  width: 0;
}

canvas {
  display: block;
  aspect-ratio: auto 1314/957;
}

#particles-js {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.header {
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding-bottom: 50px;
}
.header .title {
  color: #025add;
  font-size: 34px;
}

.home-page .header .title {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
}

.home-page .header .title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 190px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(2, 90, 221, 0.35) 14%,
    rgba(2, 90, 221, 0.9) 50%,
    rgba(2, 90, 221, 0.35) 86%,
    transparent 100%
  );
}

.home-page .header .title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 2px solid #025add;
  box-shadow: 0 0 0 4px rgba(2, 90, 221, 0.14);
}

.case-studies-accent {
  position: relative;
  display: block;
  width: 190px;
  height: 18px;
  margin: 8px auto 6px;
}

.case-studies-accent::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(2, 90, 221, 0.35) 14%,
    rgba(2, 90, 221, 0.9) 50%,
    rgba(2, 90, 221, 0.35) 86%,
    transparent 100%
  );
}

.case-studies-accent::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border: 2px solid #025add;
  box-shadow: 0 0 0 4px rgba(2, 90, 221, 0.14);
}

.alt-surface {
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}
.header .para {
  color: #b8651d;
}
.para {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0px auto;
  padding: 10px;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.5px;
}
.popup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  cursor: zoom-out;
}

.popUp {
  position: fixed;
  padding: 40px;
  width: 850px;
  z-index: 2001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .popUp {
    width: 370px;
  }
}
.popUp img {
  max-width: 100%;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  cursor: grab;
}
.popUp img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/** @format */
.landing .letters .btn-custom {
  --button-bg: #025add;
  font-size: 14px;
  margin-right: 20px;
  margin-top: 20px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  background: var(--button-bg);
  color: var(--button-fg, inherit);
}
@media (prefers-reduced-motion: no-preference) {
  .landing .letters .btn-custom {
    --_percentage: calc(100% / var(--ripples, 1));
    --ripple-speed: 2s;
    background: linear-gradient(var(--button-bg), var(--button-bg)) padding-box,
      repeating-conic-gradient(
          from var(--gradient-angle),
          transparent,
          var(--button-bg) calc(var(--_percentage) * 0.5),
          transparent var(--_percentage)
        )
        border-box;
    animation: var(--ripple-speed) ripple linear infinite;
  }
  .landing .letters .btn-custom::before {
    content: "";
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    width: 150%;
    aspect-ratio: 1;
    background: linear-gradient(
      transparent,
      hsla(0, 0%, 100%, 0.1),
      transparent
    );
    animation: calc(var(--ripple-speed) * 3 / var(--ripples)) shimmer linear
      infinite;
    pointer-events: none;
  }
  @keyframes ripple {
    to {
      --gradient-angle: 360deg;
    }
  }
  @keyframes shimmer {
    to {
      rotate: 360deg;
    }
  }
}

@media (prefers-reduced-motion: no-preference) {
  @property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
}

* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

header {
  color: white !important;
  height: 88px;
  padding-top: 5px;
}
@media (max-width: 767px) {
  header {
    padding: 20px 0;
  }
}
header nav .navbar-brand img {
  width: 160px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  margin-right: 50px;
}
@media (max-width: 991px) {
  header nav .navbar-brand img {
    margin-right: 420px;
  }
}
@media (max-width: 767px) {
  header nav .navbar-brand img {
    margin-right: 250px;
  }
}
@media (max-width: 528px) {
  header nav .navbar-brand img {
    margin-right: 150px;
  }
}
@media (max-width: 414px) {
  header nav .navbar-brand img {
    margin-right: 50px;
  }
}
header nav .navbar-brand img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
header nav .navbar-toggler {
  margin: 0 -26px 0 50px !important;
}
header nav .navbar-toggler .fa-sliders {
  color: white !important;
}
@media (max-width: 991px) {
  header nav .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: absolute; /* Ensure this is set */
    top: 100%; /* Position the collapsed menu below the navbar */
    left: 0;
    width: 100%;
  }
}
header nav .navbar-collapse ul li {
  margin: 0 6px;
}
header nav .navbar-collapse ul li a {
  font-weight: 800 !important;
  color: white;
}
@media (max-width: 991px) {
  header nav .navbar-collapse ul li a {
    color: black !important;
  }
}
header nav .navbar-collapse ul li a.active,
header nav .navbar-collapse ul li a:hover,
header nav .navbar-collapse ul li a:focus {
  color: #025add !important;
}
header nav .navbar-collapse ul li.dropdown ul li a {
  color: rgba(128, 128, 128, 0.829) !important;
  font-weight: normal !important;
  padding: 8px 18px;
  font-size: 14px !important;
}
header nav .navbar-collapse ul li.dropdown ul li a:hover {
  color: #0c6de0 !important;
  background-color: transparent;
}
header nav .get-quotes {
  margin: 0 16px 0 30px !important;
  height: 45px;
  padding: 0 18px;
}
header nav .get-quotes a {
  color: white;
  font-weight: 600 !important;
  font-size: 14px !important;
}
@media (max-width: 992px) {
  header nav .get-quotes {
    margin-left: 0px !important;
  }
}
@media (max-width: 767px) {
  header nav .get-quotes {
    width: 90%;
    margin-bottom: 10px !important;
  }
}

.landing {
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  max-height: 100vh;
  color: white;
}
.landing .letters {
  position: absolute;
  top: 53%;
  left: 50%;
  padding: 40px 35px;
  z-index: 1002;
  max-width: 1100px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  margin-left: 10px;
}
@media (max-width: 992px) {
  .landing .letters {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    text-align: center;
  }
}
.landing .letters h2 {
  font-weight: 650;
  margin-bottom: 22px;
  font-size: 41px !important;
}
@media (max-width: 767px) {
  .landing .letters h2 {
    font-size: 30px !important;
  }
}
.landing .letters h2 span {
  color: #025add;
}
.landing .letters p {
  font-size: 16px;
  margin-bottom: 42px;
  padding-right: 30px;
}
.landing .letters .social a {
  margin-right: 25px;
}
.landing .letters .social a svg {
  font-size: 14px;
  color: #025add;
}
@media (max-width: 767px) {
  .landing .letters .social a svg {
    color: white;
    font-size: 16px;
  }
}
.landing .letters .buttons {
  margin-top: 8px;
}
.landing .letters .buttons button {
  padding: 13px 24px !important;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
.landing .letters .btn-custom-ghost {
  --button-bg: transparent !important;
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
  animation: none !important;
  box-shadow: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.landing .letters .btn-custom-ghost::before {
  display: none !important;
}
.landing .letters .btn-custom-ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .landing .letters .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .landing .letters .buttons button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

.services {
  padding: 100px 0 0 0 !important;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 10px 30px;
  padding: 0 50px 0 40px;
}
.services .container div {
  text-align: center;
  padding: 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  box-shadow: 0 1px 20px rgba(82, 90, 101, 0.1);
  margin-bottom: 15px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  position: relative;
  z-index: 1004;
}
.services .container div::before,
.services .container div::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #025add;
  transition: 1s;
  height: 0;
}
.services .container div::before {
  left: 0;
  bottom: 5px;
}
.services .container div::after {
  top: 5px;
  right: 0;
}
.services .container div:hover {
  opacity: 1;
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}
.services .container div:hover::before,
.services .container div:hover::after {
  height: calc(100% - 10px);
}
.services .container div img {
  width: 80px;
}
.services .container div h4 {
  color: #025add;
  margin: 29px 0 20px;
  font-size: 26px;
  cursor: pointer;
}
.services .container div p {
  color: #3a3a3a;
}

.about-us {
  padding: 100px 0 0;
}
.about-us img {
  width: 60px;
  position: relative;
  z-index: 1004;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}
.about-us img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.about-us .box {
  margin-bottom: 25px;
}
.about-us .text {
  width: 78%;
  display: inline-block;
}
.about-us .text p {
  color: #3a3a3a;
}
.about-us .left {
  text-align: right;
}
.about-us .left img {
  float: right;
  margin-left: 15px;
}
.about-us .center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .center img {
  width: 300px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}
@media (min-width: 992px) {
  .about-us .center img {
  }
}
.about-us .right img {
  float: left;
  margin-right: 15px;
}

.about-us img {
  width: 60px;
  transition: 0.25s;
}
.about-us img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.about-us .box {
  margin-bottom: 25px;
}
.about-us .text {
  width: 78%;
  display: inline-block;
}
.about-us .text p {
  color: #3a3a3a;
}
.about-us .left {
  text-align: right;
}
.about-us .left img {
  float: right;
  margin-left: 15px;
}
.about-us .center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .center img {
  width: 300px;
}
.about-us .right img {
  float: left;
  margin-right: 15px;
}

.portfolio {
  padding: 100px 0 0;
}
.portfolio .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio .buttons button {
  margin: 10px;
  font-size: 18px;
  padding: 8px 20px;
}
@media (max-width: 767px) {
  .portfolio .buttons button {
    margin: 5px;
    font-size: 14px;
    padding: 5px 9px;
  }
}
.portfolio .photos {
  margin-top: 30px;
}
.portfolio .photos .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 30px;
  padding: 30px;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}
.portfolio .photos .container div {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
.portfolio .photos .container div img {
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: zoom-in;
}
.portfolio .photos .container div img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
/* Add animation classes */
.photo {
  opacity: 1;
  transform: scale(1);
  transition: all 0.2s ease;
}

.photo.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.photo.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.pricing {
  padding: 100px 0 40px;
}
.pricing .container {
  padding: 0 40px;
}
.pricing .row .card {
  box-shadow: 0 1px 20px rgba(82, 90, 101, 0.1);
  border: none;
  padding: 60px 20px 40px 20px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  margin-bottom: 20px;
}
.pricing .row .card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.pricing .row .card:hover li .fa-circle-check {
  color: #025add;
}
.pricing .row .card:hover li .fa-circle-xmark {
  color: red;
}
.pricing .row .card h2 {
  font-size: 30px;
  padding: 0px 10px 20px;
}
.pricing .row .card h4 {
  font-size: 50px;
}
.pricing .row .card .option ul li {
  padding: 8px 5px;
  font-weight: 300;
}
.pricing .row .card .option ul li svg {
  font-weight: 100;
}
.pricing .row .card button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  margin: 8px auto;
}

.testimonials {
  padding: 90px 0;
}
.testimonials .container .swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.testimonials .container .swiper .swiper-slide .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 0px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgba(82, 90, 101, 0.1);
  width: 345.333px;
  margin-bottom: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.testimonials .container .swiper .swiper-slide .testimonial-item:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -webkit-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -moz-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -ms-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -o-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box {
  min-width: 276px;
}
.testimonials
  .container
  .swiper
  .swiper-slide
  .testimonial-item
  .info-box
  .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #025add;
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials
  .container
  .swiper
  .swiper-slide
  .testimonial-item
  .info-box
  .stars {
  margin: 7px 0;
  font-size: 15px;
}
.testimonials
  .container
  .swiper
  .swiper-slide
  .testimonial-item
  .info-box
  .stars
  .filled {
  color: #ffc107;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p {
  font-size: 17px;
  font-style: italic;
  margin: 15px auto 15px auto;
  color: #3a3a3a;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p svg {
  color: #025add;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p svg::before {
  content: "\f6b0";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1.6;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
}
.testimonials
  .container
  .swiper
  .swiper-slide
  .testimonial-item
  p
  svg.fa-quote-left {
  margin-right: 5px;
  font-size: 20px;
}
.testimonials
  .container
  .swiper
  .swiper-slide
  .testimonial-item
  p
  svg.fa-quote-right {
  margin-left: 5px;
  font-size: 20px;
}

.status {
  padding: 130px 0;
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  color: white;
}
.status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
}
.status .container .box {
  text-align: center;
  position: relative;
  z-index: 2;
}
.status .container .box img {
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
  cursor: pointer;
}
.status .container .box img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.status .container .box span {
  display: block;
  font-size: 30px;
  margin: 6px 0;
}
.status .container .box h4 {
  color: #025add;
}
.status .container .box p {
  font-size: 15px;
}

.clients {
  padding: 100px 0;
}
.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.clients .clients-slider .swiper-wrapper {
  display: flex;
  transition: transform ease-in-out;
  -webkit-transition: transform ease-in-out;
  -moz-transition: transform ease-in-out;
  -ms-transition: transform ease-in-out;
  -o-transition: transform ease-in-out;
}
.clients .clients-slider .swiper-wrapper .swiper-slide {
  flex: 0 0 auto;
  width: 20%;
  margin-right: 15px;
}
.clients .clients-slider .swiper-wrapper .swiper-slide img.img-fluid {
  display: block;
  width: 90%;
  height: auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: filter 0.25s;
  -webkit-transition: filter 0.25s;
  -moz-transition: filter 0.25s;
  -ms-transition: filter 0.25s;
  -o-transition: filter 0.25s;
}
.clients .clients-slider .swiper-wrapper .swiper-slide:hover img.img-fluid {
  filter: none;
  -webkit-filter: none;
}

.team {
  padding: 100px 0;
  background-color: #f8f8f8;
}
.team .container .box {
  text-align: center;
  margin-bottom: 20px;
}
.team .container .box img {
  width: 90%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: pointer;
}
.team .container .box img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.team .container .box h5 {
  margin: 20px 0;
  color: #025add;
  font-weight: 500;
}
.team .container .box p {
  margin-top: -17px;
  font-size: 14px;
  font-style: italic;
  color: #3a3a3a;
}
.team .container .box .social a {
  margin: 0 4px;
  color: #025add;
  border-radius: 50%;
  border: 2px solid #c9c6c6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 4px 6px;
  font-size: 14px;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}
.team .container .box .social a:hover {
  border-color: #025add;
}

.faqs {
  padding: 100px 0;
}
.faqs .container {
  padding: 0 40px;
}
.faqs .container .accordion-item {
  overflow: hidden;
  margin-top: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: 1px solid rgba(221, 221, 221, 0.5764705882);
  background-color: #f8f8f8;
}
.faqs .container .accordion-item .accordion-header {
  border: none;
  padding: 6px 0;
}
.faqs .container .accordion-item .accordion-header button {
  background-color: #f8f8f8;
  color: #025add;
}
.faqs .container .accordion-item .accordion-header button::after {
  color: #025add !important;
}
.faqs .container .accordion-item .accordion-header button span svg {
  padding-right: 10px;
}
.faqs .container .accordion-item .accordion-body {
  border: none;
  padding: 40px;
  line-height: 1.8;
}
.faqs .accordion-button:focus,
.faqs .accordion-button:active {
  box-shadow: none;
  outline: none;
}

.discuss {
  padding: 150px 0;
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  color: white;
}
.discuss::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
}
.discuss .container {
  text-align: center;
  position: relative;
  z-index: 2;
}
.discuss .container p {
  margin: 22px 0 27px;
  font-weight: 500;
}
.discuss .container button {
  margin: auto;
  padding: 12px 50px;
  font-weight: 600;
  letter-spacing: 1px;
}

.blogs {
  padding: 100px 0 0;
}
.blogs .container {
  padding: 0 40px;
}
.blogs .container .card {
  border: 1px solid #f3f3f3;
  margin-bottom: 20px;
  box-shadow: 0 1px 20px rgba(82, 90, 101, 0.1);
}
.blogs .container .card .box {
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.blogs .container .card .box img {
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: crosshair;
}
.blogs .container .card .box img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.blogs .container .card .card-body {
  padding: 20px 25px;
}
.blogs .container .card .card-body p {
  padding: 0;
  margin: 0;
  color: rgba(58, 58, 58, 0.6588235294);
}
.blogs .container .card .card-body .card-text {
  color: #025add;
  padding: 10px 0;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.2;
}
.blogs .container .card .card-body .card-text:hover {
  color: #3a3a3a;
}
.blogs .container .card .card-body p:last-of-type {
  font-size: 14px;
}
 
    /* Ensure images have fixed height and responsive width */
.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: scale(0.95);
}

/* Loaded state for animation */
.card-img-top.loaded {
  opacity: 1;
  transform: scale(1);
}

   

.contact-us {
  padding: 100px 0;
}
.contact-us .container {
  padding: 0 40px;
}
.contact-us form [class="input-group-text"] {
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
}
.contact-us form input,
.contact-us form textarea {
  width: 100%;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
}
.contact-us form input {
  max-height: 55px;
}
.contact-us form textarea {
  resize: none;
}
.contact-us form button {
  padding: 10px 30px;
}

footer {
  padding: 50px 0;
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  color: white;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  z-index: 1;
}
footer .container {
  position: relative;
  z-index: 2;
}
footer .container .footer-logo img {
  width: 200px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  margin-bottom: 30px;
}
footer .container .footer-logo img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
footer .container .footer-text p {
  font-size: 14px;
  line-height: 2;
}
footer .container .footer-social-icon {
  margin-bottom: 50px;
}
footer .container .footer-social-icon span {
  color: #025add;
  font-size: 20px;
  display: block;
}
footer .container .footer-social-icon a {
  margin-right: 15px;
}
footer .container .footer-social-icon a svg {
  margin-top: 25px;
  color: white;
  font-size: 18px;
}
footer .container .footer-column {
  margin-bottom: 30px;
}
footer .container .footer-column h3 {
  font-size: 20px;
  color: #025add;
  margin-bottom: 20px;
}
footer .container .footer-column ul li {
  margin: 10px 0;
}
footer .container .footer-column ul li a {
  color: white;
  font-weight: normal !important;
  font-size: 14px;
}
footer .container .footer-column ul li a:hover {
  color: #025add;
}
footer .container .footer-widget h3 {
  font-size: 20px;
  color: #025add;
  margin-bottom: 20px;
}
footer .container .footer-widget .footer-text svg {
  font-size: 16px;
  margin-right: 4px;
}
footer .container .footer-widget form {
  position: relative;
}
footer .container .footer-widget form input {
  display: block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 17px 30px;
  width: 100%;
  background-color: #ddd;
  outline: none;
  border: none;
}
footer .container .footer-widget form button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: none;
  border: none;
}
footer .container .footer-widget form button svg {
  font-size: 50px;
  color: #0088cc;
}
footer .container .copyright-text {
  font-size: 14px;
  margin-top: 30px;
}
footer .container .copyright-text span {
  color: #025add;
  font-weight: bold;
} /*# sourceMappingURL=style.css.map */



/* Landing pages Videos */
  .project-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  white-space: normal;
  word-spacing: 2px;
}

  /* CSS */
  

/* Section Styles */
.video-wrapper {
  height: 40vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content Styling */
.content {
  text-align: center;
  color: whitesmoke;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 1);
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

.content .section-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.content .section-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
    text-transform: uppercase;
  font-size: 2rem;
}

.content .section-title span {
  font-weight: 400;
}

/* Video Button */
.vid-butn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 1px 10px rgba(82, 90, 101, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px auto;
}

.vid-butn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}


.vid-butn .icon {
  font-size: 26px;
  margin-left: 5px;
  color: red;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 30px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  height: 70%;
  animation: modalOpen 0.5s;
  background: #000;
  border-radius: 10px;
}

.close {
  position: absolute;
  right: -25px;
  top: -25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ccc;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.agency-positioning,
.delivery-process,
.trust-section,
.strong-cta {
  padding: 72px 0;
}

.agency-positioning {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.agency-positioning .container {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 12px;
  box-shadow: none;
}

.agency-intro-panel {
  background: #ffffff;
  border: 1px solid #dbe8ff;
  border-radius: 14px;
  padding: 20px;
  color: #19365f;
  box-shadow: 0 6px 18px rgba(4, 39, 90, 0.06);
}

.agency-kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(2, 90, 221, 0.2);
  border-radius: 999px;
  color: #025add;
  background: rgba(2, 90, 221, 0.06);
  padding: 4px 9px;
  margin-bottom: 10px;
}

.agency-intro-panel h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f2f59;
}

.agency-intro-panel p {
  color: #51657f;
  margin-bottom: 12px;
}

.agency-benefits {
  margin: 0;
  padding-left: 20px;
}

.agency-benefits li {
  margin-bottom: 6px;
  color: #476182;
}

.agency-panel {
  background: #ffffff;
  border: 1px solid #e2ebfb;
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 5px 16px rgba(4, 39, 90, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.agency-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(2, 90, 221, 0.1);
}

.agency-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 90, 221, 0.1);
  color: #025add;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.agency-panel h4 {
  color: #0c2852;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.agency-panel p {
  color: #5d6d80;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.scope-card,
.process-card,
.trust-card,
.case-study-card {
  background: #ffffff;
  border: 1px solid #e6eeff;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 26px rgba(2, 90, 221, 0.06);
}

.delivery-process {
  background:
    radial-gradient(circle at 10% 20%, rgba(2, 90, 221, 0.08), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(11, 42, 84, 0.12), transparent 42%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.projects {
  background:
    radial-gradient(circle at 10% 20%, rgba(2, 90, 221, 0.08), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(11, 42, 84, 0.12), transparent 42%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.delivery-process .roadmap-track {
  position: relative;
  margin-top: 10px;
}

.delivery-process .roadmap-step {
  position: relative;
}

.delivery-process .roadmap-step::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(2, 90, 221, 0.5), rgba(11, 43, 84, 0.2));
  z-index: 1;
}

.delivery-process .roadmap-step:last-child::after {
  display: none;
}

.delivery-process .roadmap-step:nth-child(even) {
  margin-top: 44px;
}

.delivery-process .process-card {
  position: relative;
  border: 1px solid rgba(2, 90, 221, 0.15);
  box-shadow: 0 14px 32px rgba(5, 32, 69, 0.1);
  padding: 54px 16px 18px;
  backdrop-filter: blur(2px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 3;
}

.delivery-process .process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(5, 32, 69, 0.18);
}

.delivery-process .process-index {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0a2e5b 0%, #025add 100%);
  box-shadow: 0 8px 20px rgba(2, 90, 221, 0.35);
  border: 2px solid #fff;
  z-index: 4;
}

.delivery-process .process-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.delivery-process .process-card p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.scope-card h5,
.process-card h5,
.trust-card h5,
.case-study-card h5 {
  color: #0d2b53;
  font-weight: 700;
  margin-bottom: 10px;
}

.scope-card p,
.process-card p,
.trust-card p,
.case-study-card p {
  color: #5d6775;
  font-size: 0.96rem;
  margin-bottom: 0;
}

.case-study-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.case-study-meta span {
  background: #eef4ff;
  color: #1f4f96;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.case-study-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.case-study-list li {
  color: #4f5f74;
  margin-bottom: 6px;
}

.trust-highlight {
  background: linear-gradient(135deg, #0d2b53 0%, #025add 100%);
  color: #ffffff;
}

.trust-highlight p,
.trust-highlight h5 {
  color: #ffffff;
}

.trust-points {
  margin: 16px 0 0;
  padding-left: 18px;
}

.trust-points li {
  margin-bottom: 8px;
}

.strong-cta {
  position: relative;
  margin-top: 26px;
  padding-top: 94px;
  background: linear-gradient(135deg, #0d2b53 0%, #025add 100%);
  color: #ffffff;
  text-align: center;
}

.strong-cta::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.strong-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  padding: 34px 30px;
  backdrop-filter: blur(3px);
  box-shadow: 0 20px 40px rgba(5, 22, 46, 0.2);
}

.cta-kicker {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.strong-cta h3 {
  font-size: 2.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.strong-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #d7e5ff;
}

.strong-cta .cta-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.strong-cta .btn {
  margin: 0;
}

.proposal-note {
  font-size: 0.88rem;
  color: #687487;
  margin-top: 8px;
}

.proposal-consent {
  font-size: 0.9rem;
  color: #56606f;
}

.proposal-consent-box {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  transition: none;
}

.proposal-consent-box.is-invalid {
  border: none;
  box-shadow: none;
}

.proposal-consent .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.22rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  border: 1.5px solid #8fb1ea;
  background-color: #fff;
}

.proposal-consent .form-check-input:checked {
  background-color: #025add;
  border-color: #025add;
}

.proposal-consent-box.is-invalid .form-check-input {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.14rem rgba(220, 53, 69, 0.12);
}

.proposal-consent .form-check-label {
  line-height: 1.5;
}

.proposal-consent-error {
  display: none;
  margin-top: 8px;
  font-size: 0.82rem;
}

.proposal-consent-box.is-invalid .proposal-consent-error {
  display: block;
}

.proposal-consent a {
  color: #025add;
}

@media (max-width: 767px) {
  .agency-positioning,
  .delivery-process,
  .trust-section,
  .strong-cta {
    padding: 50px 0;
  }

  .strong-cta {
    margin-top: 18px;
    padding-top: 72px;
  }

  .strong-cta::before {
    top: -34px;
    height: 52px;
  }

  .strong-cta-inner {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .agency-positioning .container {
    padding: 0 12px;
  }

  .agency-intro-panel {
    padding: 18px;
  }

  .strong-cta h3 {
    font-size: 1.45rem;
  }

  .agency-panel,
  .scope-card,
  .process-card,
  .trust-card,
  .case-study-card {
    padding: 20px;
  }

  .delivery-process .roadmap-step:nth-child(even) {
    margin-top: 0;
  }

  .delivery-process .roadmap-step::after {
    display: none;
  }

  .delivery-process .roadmap-track {
    border-left: 2px dashed rgba(2, 90, 221, 0.3);
    margin-left: 10px;
    padding-left: 14px;
  }

  .delivery-process .roadmap-step {
    margin-bottom: 14px;
  }

  .delivery-process .process-index {
    left: 0;
    transform: translateX(-50%);
  }
}

/* ---------------- Intern Login dropdown item ---------------- */
.dropdown-menu a.dropdown-item-intern,
.dropdown-menu .dropdown-item-intern {
  padding: 9px 20px !important;
  margin: 0;
  color: #000000 !important;
  background: transparent;
  font-weight: 600 !important;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown-menu .dropdown-item-intern i {
  font-size: 13px;
  color: #000000;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.dropdown-menu .dropdown-item-intern:hover,
.dropdown-menu .dropdown-item-intern:focus {
  color: #000 !important;
  background: rgba(0, 0, 0, 0.05) !important;
}
.dropdown-menu .dropdown-item-intern:hover i,
.dropdown-menu .dropdown-item-intern:focus i {
  transform: translateX(2px);
}
.dropdown-menu hr.dropdown-divider.my-1 {
  margin: 4px 10px !important;
  opacity: 0.45;
}

/* ================================================================
   PAGE TRANSITION — Cinematic dark reveal
   ================================================================ */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}
.page-transition-overlay.is-active { pointer-events: auto; }

/* ---- Sliding backdrop ---- */
.pt-backdrop {
  position: absolute;
  inset: 0;
  background: #07101e;
  transform: translateY(100%);
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dot-grid texture */
.pt-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* ambient glow blob */
.pt-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 68%);
  pointer-events: none;
  animation: pt-glow-pulse 2.4s ease-in-out infinite;
}

/* ---- Centred content ---- */
.pt-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.38s ease 0.22s, transform 0.48s cubic-bezier(0.2, 0.8, 0.3, 1) 0.22s;
}

/* icon emblem */
.pt-emblem {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d1f4e 0%, #1a3a8f 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow:
    0 0 0 8px rgba(37, 99, 235, 0.08),
    0 0 40px rgba(37, 99, 235, 0.32),
    0 0 80px rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #93c5fd;
  animation: pt-emblem-float 3s ease-in-out infinite;
}

/* brand wordmark */
.pt-wordmark {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f1f5f9;
  margin-top: 4px;
}

/* role label */
.pt-role {
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

/* progress bar */
.pt-bar {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 6px;
}
.pt-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, #3b82f6, #818cf8);
}

/* ---- Active: overlay slides in, content appears ---- */
.page-transition-overlay.is-active .pt-backdrop {
  transform: translateY(0);
}
.page-transition-overlay.is-active .pt-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.page-transition-overlay.is-active .pt-bar span {
  animation: pt-fill 0.9s ease 0.72s forwards;
}

/* ---- Page-enter: overlay starts visible, sweeps off upward ---- */
body.page-enter .pt-backdrop {
  transform: translateY(0);
  animation: pt-exit 1.15s cubic-bezier(0.76, 0, 0.24, 1) 0.5s forwards;
}
body.page-enter .pt-content {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: pt-content-out 0.28s ease 0.3s forwards;
}
body.page-enter .pt-bar span { width: 100%; }
body.page-enter .auth-shell,
body.page-enter main {
  animation: pt-page-in 0.75s cubic-bezier(0.2, 0.8, 0.3, 1) 1.0s both;
}

/* ---- Admin variant — amber accent ---- */
.page-transition-overlay.pt-admin .pt-glow {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 68%);
}
.page-transition-overlay.pt-admin .pt-emblem {
  background: linear-gradient(145deg, #170f00 0%, #78350f 100%);
  border-color: rgba(251, 191, 36, 0.38);
  box-shadow:
    0 0 0 8px rgba(245, 158, 11, 0.07),
    0 0 40px rgba(245, 158, 11, 0.22),
    0 0 80px rgba(245, 158, 11, 0.08);
  color: #fcd34d;
}
.page-transition-overlay.pt-admin .pt-bar span {
  background: linear-gradient(90deg, #f59e0b, #f87171);
}

/* ---- Keyframes ---- */
@keyframes pt-fill        { to { width: 100%; } }
@keyframes pt-exit        { to { transform: translateY(-100%); } }
@keyframes pt-content-out { to { opacity: 0; transform: translateY(-10px) scale(0.97); } }
@keyframes pt-page-in {
  from { opacity: 0; transform: translateY(18px); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes pt-glow-pulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.12); opacity: 0.7; }
}
@keyframes pt-emblem-float {
  0%, 100% { transform: translateY(0);   }
  50%      { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .pt-backdrop, .pt-content, .pt-emblem, .pt-glow {
    transition: none !important;
    animation: none !important;
  }
  body.page-enter .auth-shell,
  body.page-enter main { animation: none !important; }
}
