body {
  background-color: var(--color-white);
}
.hero {
    margin-top: 85px !important; 
    height: calc(100vh - 85px) !important;
}

.hero-bg {
  position: relative;
  height: 100%;
  width: 100%;
  background: url("../assets/PRJT007.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 79, 143, 0) 0%, var(--color-primary-blue) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem;
  gap: 1rem;
}

.hero-small {
  font-family: "Work Sans", sans-serif;
  font-weight: var(--weight-black);
  font-size: var(--size-hero);
  line-height: 75px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.8;
  text-align: left;
}

.hero-big {
  font-family: "Work Sans", sans-serif;
  font-weight: var(--weight-black);
  font-size: var(--size-hero);
  line-height: 75px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.8;
  text-align: center;
}

.hero-big span {
  color: var(--color-accent-orange);
  opacity: 0.8;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-bottom p {
  max-width: 200px;
  font-size: var(--size-small);
  line-height: 20px;
  color: var(--color-white);
  opacity: 1;
}

.hexagon-scroll {
  position: relative; 
  display: inline-block;
}

.hexagon-scroll img {
  display: block;
}

.scroll-arrow-down {
  position: absolute;
  top: 50%;
  left: 51%;
  width: 55px;
  height: 55px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.capabilities {
    /*padding: var(--space-section) 0;*/
    background: var(--color-white);
    position: relative;
    min-height: 600px; 
    display: flex;
    align-items: center;
    overflow: hidden; 
}

.capabilities-layout {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: inherit;
}

.side-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 20vw; 
    max-width: 320px;
    min-width: 200px;
}

.left-img {
  left: 0;
}

.right-img {
  right: 0;
}

.side-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; 
}

.capabilities-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0; 
}


.capabilities-content .main-title {
  font-size: var(--size-header);
  font-weight: var(--weight-bold);
  color: var(--color-primary-blue);
  max-width: 55%;
  margin: 0 auto;
      text-align: justify;
    text-align-last: center;
}

.capabilities-content .sub-title {
  font-size: var(--size-body);
  line-height: 23px;
  font-weight: var(--weight-regular);
  color: var(--color-black);
  max-width: 58%;
  margin: 0 auto;
      text-align: justify;
    text-align-last: center;
}
.counter-item {
  text-align: center;
  position: relative;
}
.counter-num {
  font-size: var(--size-body-large);
  font-weight: var(--weight-black);
  color: var(--color-primary-blue);
}
.counter-num::after {
  content: "";
  display: block;
  width: 120px;         
  height: 1px;         
  background-color: var(--color-accent-orange); 
  margin: 8px auto;    
}
  
.counter-label {
  font-size: 16px;
  font-weight: normal;
  color: var(--color-black);
}


.what-we-do {
  max-width: 100%;
  margin: 2rem auto;
}

.what-we-do .container {
  width: 90%;
  padding-top: 4rem;
}

.what-we-do .heading {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

.what-we-do .heading h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 50px;
  color: var(--color-primary-blue);
}

.what-we-do .heading p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  max-width: 49%;
  font-size: 16px;
  color: var(--color-black);
  text-align: justify;
}

.what-we-do .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.what-we-do .card-item {
  flex: 1 1 250px;
  max-width: 278px;
  margin: 1rem;
}
.what-we-do .card-item:hover .card {
    top: -10px; 
    filter: brightness(1.05); 
}
.what-we-do .card-link {
  text-decoration: none;
  color: inherit;
}

.what-we-do .card {
  width: 100%;
  height: 270px;
  background: url("../../public/assets/Icons/SVG/card1.svg") no-repeat center;
  background-size: cover; 
  border: 1px solid var(--color-primary-blue);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 15px 20px 15px;
  color: var(--color-white);
  border: none;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  top: 0;
}

.what-we-do .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: 0.5s;
    pointer-events: none;
}

.what-we-do .card-item:hover .card::before {
    left: 100%;
}

.what-we-do .card img.card-icon {
  width: 49px;
  height: 49px;
  object-fit: cover;
  transition: transform 0.4s ease;

}
.what-we-do .card-item:hover img.card-icon {
    transform: scale(1.1) rotate(-5deg); 
}
.js-ajax-link.is-active .card {
    top: 0 !important;
    filter: grayscale(0.5) opacity(0.8) !important;
    box-shadow: none !important;
    cursor: default;
}
.what-we-do .card-title {
  text-align: left;
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  font-size: 27px;
  line-height: 27px;
  text-transform: uppercase;
  margin: 20px 0;
}

.what-we-do .card-icon-with-arrow {
  position: relative;
  width: 46px;
  height: 46px;
}

.what-we-do .card-icon-with-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.what-we-do .card-icon-with-arrow .side-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 50px;
  transform: translate(-44%, -52%);
  pointer-events: none;
}

.track-record {
  position: relative;
  height: 520px;
  overflow: hidden;
  font-family: 'Work Sans', sans-serif;
}

.track-record .text-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  font-weight: var(--weight-black);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  z-index: 1000;
  pointer-events: none;
  mix-blend-mode: normal;
}

.track-record .text-layer span {
  color: var(--color-white);
}

.track-record .text-layer .orange {
  color: var(--color-accent-orange);
}

.track-record .rows {
  position: relative;
  z-index: 1;
}

.track-record .carousel {
  overflow: hidden;
  margin: var(--space-sm) 0;
}

.track-record .track {
  display: flex;
  gap: var(--space-sm);
  width: max-content;
}

.track-record .track.left {
  animation: marquee-left 35s linear infinite;
}

.track-record .track.right {
  animation: marquee-right 35s linear infinite;
}

.track-record .card {
  width: 376px;
  height: 223px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.track-record .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end; 
    padding: var(--space-sm);
    background: rgba(0,0,0,0.45);
    transition: background 0.4s ease;
}
.track-record .overlay:hover{background: rgba(0,0,0,0.7);} 
.track-record .project-mini-card-wrapper {
    transform: translateY(150%); 
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-record .card:hover .project-mini-card-wrapper {
    transform: translateY(0);
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.news-updates {
    margin: 8rem auto 2rem auto;
}

.news-updates .section-title {
    color: var(--color-primary-blue);
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
    font-family: 'Work Sans', sans-serif;
    font-size: 55px; 
    text-transform: uppercase; 
}

.news-updates .news-card {
    width: 100%; 
    height: 420px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
}

.news-updates .news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 50%);
    z-index: 1;
}

.news-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.news-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.news-text {
    font-weight: 700;
    font-size: 1.25rem;
    max-width: 90%;
    line-height: 1.4;
}

.news-arrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hexagon-arrow {
  position: relative;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.hexagon-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.hexagon-arrow .arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  pointer-events: none;
}

.news-arrow:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .hero {
    height: 100vh;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .hero-content {
    gap: 1px;
  }
  .hero-bottom .hero-big{
    order: 1;
  }
  .hero-small,
  .hero-big,
  .hero-bottom h1 {
    font-size: 67px;
    text-align: left;
    margin: 0;
    padding: 0;
    line-height: 50px;
  }
  .hero-big span {
    display: block;
  }
  .hero-bottom p {
    font-size: 18px;
    max-width: 50%;
        order: 2;
    max-width: 100%;
  }
  .hero-bottom .scroll-down-container{
    order: 3;
  }
  .img-md {
    margin: 10px auto;
  }
  .capabilities {
    padding-top: 3rem;
  }
  .capabilities-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .side-img {
    position: static;
    transform: none;
    width: 100% !important;
  }
  .left-img {
    right: 0 !important;
    margin-right: auto !important;
    order: 1;
  }
  .right-img {
    left: 0 !important;
    margin-left: auto !important;
    order: 3;
  }
  .capabilities-content {
    order: 2;
    width: 100%;
  }
  .capabilities-content .main-title {
    max-width: 80%;
    font-size: clamp(24px, 6vw, 32px);
  }
  .capabilities-content .sub-title {
    width: 100%;
    padding: 0 0 !important;
  }
  .what-we-do {
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .track-record .floating-text {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 40px;
  }
  .card {
    width: auto;
    height: auto;
  }
  .track-record {
    margin: 0rem auto !important;
  }
  .news-updates .news-card {
    width: auto;
    height: 363px;
  }
  .news-updates {
    margin: 2rem auto !important; 
  }
  .news-updates .section-title {
    font-size: 37px; 
    max-width: 100%;
    margin-bottom: 20px !important;
  }
  .news-updates .headeing {
    align-items: flex-start !important;
  }
  .counter-num::after {
    width: 110px;         
  }
}

@media (max-width: 767.98px) {
  .offcanvas {
    border: none;
    background-color: var(--color-primary-blue);
    z-index: 11 !important;
  }
  .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .social-icons {
    display: flex !important;
  }
  .offcanvas-header .offcanvas-title {
    display: none;
  }
  .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .nav-link,
  .header-inner-page .nav-link {
    font-size: 26px;
    text-align: center;
    margin: 30px 0;
  }
  .header-inner-page .nav-link { 
    color: var(--color-white) !important;
  }
  .hero-bottom p {
    font-size: 18px;
    max-width: 75%;
  }
  .what-we-do .heading {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; 
  }
  .what-we-do .heading h1 {
    font-size: 35px;
    width: 100%;
  }
  .what-we-do .heading p {
    max-width: 100%; 
    font-size: 14px;
  }
}

@media (max-width: 515px) {
  .hero-small,
  .hero-big,
  .hero-bottom h1 {
    font-size: 45px;
    text-align: left;
    margin: 0;
    padding: 0;
    line-height: 40px;
  }
}

@media (max-width: 315px) {
  .hero-small,
  .hero-big,
  .hero-bottom h1 {
    font-size: 30px;
  }
}