
body {
  font-family: 'Montserrat', sans-serif;
  color: white;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #406aff;
}

section {
  padding: 50px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h5 {
  font-weight: 300;
  padding-bottom: 20px;
  z-index: 2;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

/* Preloader Animation */
#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/* Disable AOS Animation Delay on Mobile */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Header Styling */
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}

.header.sticked {
  background: rgba(64, 48, 247, 0.3); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
}

.header-text{
  font-size: 19px;
}

/* Icon spacing */
.icon {
  margin-top: 100px;
}

/* Automation Section Background */
.automation {
  background-image: linear-gradient(to right, rgba(21, 100, 202, 0.6), rgba(207, 236, 247, 0.2));
  padding: 10px;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 2px solid white;
  }

  .navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: larger;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .work-with-us,
  .navbar .work-with-us:focus {
    display: inline-block;
    padding: 10px 20px;
    margin-left: 30px;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px #007bff;
    text-decoration: none;
    transition: box-shadow 0.3s ease, background 0.3s ease;
  }

  .navbar .work-with-us:hover {
    background: #1560bd;
  }

  .learn-more,
  .learn-more:focus {
    display: inline-block;
    padding: 5px 30px;
    margin-top: 30px;
    border: 1px solid white;
    border-radius: 5px;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(10px);
  }

  .learn-more:hover {
    background: rgba(13, 66, 255, 0.8);
    color: #fff;
  }

  .white-logo {
    filter: brightness(0) invert(1); 
    margin-left: 10px;
  }  

  .view-case-studies,
  .view-case-studies:focus,
  .subscribe,
  .subscribe:focus {
    display: inline-block;
    padding: 10px 20px;
    margin-left: 30px;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px #007bff;
    text-decoration: none;
    transition: box-shadow 0.3s ease, background 0.3s ease;
  }

  .view-case-studies:hover,
  .subscribe:hover {
    background: rgba(13, 66, 255, 0.8);
    color: #fff;
  }

  .subscribe {
    margin-top: 10px;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    left: 14px;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgba(14, 29, 52, 0.3);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-secondary);
    text-transform: none;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    left: 100%;
    top: 0;
    visibility: visible;
  }
}

/* Sub-menu position fix for narrow screens */
@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Hide mobile toggle on desktop */
@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}



/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .white-logo {
    filter: brightness(0) invert(1) !important;
    margin: 10px auto;
  }
}

@media (max-width: 1279px) {
  .white-logo {
    filter: brightness(0) invert(1) !important;
    margin: 10px auto;
  }
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .work-with-us,
  .navbar .work-with-us:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .work-with-us:hover,
  .navbar .work-with-us:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

.banner{
  background-image: url("/static/image/nexus/img/banner.77ada1b1d73c.png");
  min-height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  z-index: 1;
    height: auto;      
  object-fit: cover;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #3022d3 100%);
  pointer-events: none;
  z-index: 2;
}

/* Banner bottom fade */
.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; 
  background: linear-gradient(to bottom, rgba(246, 242, 242, 0) 0%, #1a1aff 100%);
  pointer-events: none;
  z-index: 2;
}

.case-study::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.about {
  background-image: url("/static/image/nexus/bg/bg-2.0045f18d27e8.png");
  min-height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  z-index: 1;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #ff7d1a 0%, rgba(8, 24, 146, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; 
  background: linear-gradient(to bottom, rgba(246, 242, 242, 0) 0%, #cacad7 100%);
  pointer-events: none;
  z-index: 2;
}

.featured-services {
  background-image: url("/static/image/nexus/bg/bg-2.0045f18d27e8.png");
  min-height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  z-index: 1;
}

.mission{
  min-height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  z-index: 1;
}

.featured-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #3022d3 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.featured-services .service-item {
  position: relative;
  height: 100%;

  
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: #304488;
  font-size: 48px;
  transition: 0.3s;
}


.featured-services .service-item:hover .icon i {
  color: red;
}

.featured-services .service-item .title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 22px;
  color:#f4f6fe;
  transition: 0.3s;
  
}

.featured-services .service-item .description {
  font-size: 15px;
  color: #aebef5;
  margin-bottom: 10px;
  margin-top: 5px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title
{
  color:#304488;
}
.featured-services .service-item:hover .readmore{
  color:white;
}
.featured-services .service-item:hover .icon i {
  color:white;
}

.reviews{
  background-image: url("/static/image/nexus/bg/bg-3.b3d61d58349e.png");
  min-height:80vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  z-index: 1;
}
.reviews::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.benefits{
  background-image: url("/static/image/nexus/bg/bg-4.a5cb19560c65.png");
  min-height:100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  z-index: 1;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px; /* adjust as needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.benefits::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; 
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.case-study{
  background-image: url("/static/image/nexus/bg/bg-3.b3d61d58349e.png");
  min-height:80vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  z-index: 1;
}

.case-study::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.case-study::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; /* adjust the fade height as needed */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}


.who-we-are{
  background-image: url("/static/image/nexus/bg/bg-3.b3d61d58349e.png");
  min-height:80vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  z-index: 1;
}

.who-we-are::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.who-we-are::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #1a1aff 100%);
  pointer-events: none;
  z-index: 2;
}

.gy-4{
  color: white;
  font-size: 40px;
  font-weight: 500;
}

.description{
  font-size: 13px;
  font-weight: 100;
  margin-top: -15px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: 'Quicksand', sans-serif;
  color: #001f8d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.service-text {
  font-size: 18px; 
  line-height: 1.6;
}

.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: #001973;
  transition: 0.3;
}

.services .card a:hover {
  color: var(--color-primary);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

.call-to-action {
  
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.features {
  padding-top: 100px;
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #001973;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

.tech-partners{
  background-image: url("/static/image/nexus/bg/bg-3.b3d61d58349e.png");
  min-height:100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  
}
.tech-partners>h2{
  color: #ffffff;
}

.latest-news{
  background-image: url("/static/image/nexus/bg/bg-4.a5cb19560c65.png");
  min-height:100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  z-index: 1;
}

.latest-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px; /* adjust as needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.latest-news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* adjust the fade height as needed */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.strong{
  font-size: 40px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}
.contact .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}
.service-details .services-list a.active {
  font-weight: bold;
  border-color: var(--color-primary);
}
.service-details .services-list a:hover {
  border-color: var(--color-primary);

}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}
.service-details h4 {
  font-size: 20px;
  font-weight: 700;

}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}
.hero {
  width: 100%;
  min-height: 90vh;
  background-image: url("/static/image/nexus/bg/bg-1.6527c451bc1a.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0 60px 0;
  color: white;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px; 
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #3022d3 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-header{
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 70px;
  letter-spacing: 2.5px;
}
.hero h2 {
  margin-top: 80px ;
  padding: 0;
  font-size: 85px;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 575px) {
  .hero h2 {
    margin-top: -5px;
    font-size: 30px;
  }
  .hero-header{
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 50px;
  letter-spacing: 2.5px;
  margin-top: 80px;
  }
}
.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}
.hero{
  height: 100%;
}
.info-box {
  height: 450px;
  border: 1px solid #007bff;
  border-radius: 8px;
  text-align: center;
  padding: 0px;
  color: white;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 30px;
  border-radius: 20px;
}

.info-box h3 {
  z-index: 3;
  position: relative;
  font-size: 1.5rem;
}

.image-box {
  width: 48%; 
}

.partner-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  background: transparent;
  padding: 1px;
  
}

.case-study-box {
  background: linear-gradient(to bottom, #f0f0f0 0%, #395ad3 80%, #0d055f 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 500px;   
  height: 40vh;
}

.footer {
  font-size: 14px;
  background-image: url("/static/image/nexus/bg/bg-5.0f9bf0631ba9.png");
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  padding: 30px 0;
  min-height:50vh;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}
.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 20px;
}
.footer .footer-info .logo img {
  max-height: 100px;
  margin-right: 6px;
}
.footer .footer-info p {
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid white; 
 
}
.footer .footer-links {
  margin-bottom: 30px;
  
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: #fff;
}
.footer .footer-contact p {
  line-height: 26px;
}
.footer .copyright {
  text-align: center;
}
.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}
.footer .credits a {
  color: #fff;
}
.text-bold{
  font-weight: 800;
  font-size: 20px;
}
.row-container {
  display: flex;
  width: 100%;
  height: 70vh;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
}
.col {
  flex: 1;
  box-sizing: border-box;
  padding: 5px; 
}
.col-3 {
  display: flex;
  flex-direction: column;
  gap: 10px; 
}
.col-2, .col-1,
.sub-row {

  flex: 1;
  min-height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.col-1 {
  background-image: url("/static/image/nexus/img/17.ca100fddfa6a.png");
}
.col-2 {
  background-image: url("/static/image/nexus/img/19.f45e3b4d755d.png");
}
.sub-row-1 {
  background-image: url("/static/image/nexus/img/20.d6a698925a41.png");
}
.sub-row-2 {
  background-image: url("/static/image/nexus/img/21.3161af44910b.png");
}
.sub-row-3 {
  background-image: url("/static/image/nexus/img/22.defd131cfd1b.png");
}

/* About US */

.nexus-bg{
  background-image: url("/static/image/nexus/bg/bg-1.6527c451bc1a.png");
  min-height:100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat; 
  z-index: 1;
}
.nexus-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px; 
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0d055f 100%);
  pointer-events: none;
  z-index: 2;
}

.mt-6{
  margin-top:110px;
}


.hero img {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-repeat: no-repeat;
  mask-size: cover;
  width: 100%;      
  height: auto;      
  object-fit: cover;
  transform: scale(1.1);
}

.headquarters-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
   transform: scale(1.2);
}

.mission-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0, 0, 50, 0.8); 
  border-radius: 10px;
}


/* Service */

.service-card {
  background-color: #0f51a2; 
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
