@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
	--dark:#161616;
    --black:#3C3C3C;  
    --theme:#E8B734;
    --white:#FFFFFF;
    --gray:#575757;
    --blue:#03204A;
}
body{
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  background: linear-gradient(0deg, #F2F7FF, #F2F7FF),
linear-gradient(180deg, rgba(255, 255, 255, 0) 65.72%, rgba(7, 44, 73, 0.2) 100%);

}
.container-fluid {
    padding: 0 50px;
}
 /* Loader Styles */
    #loader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #111;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 9999;
    }
    #loader img {
      width: 150px; /* adjust ship size */
      height: auto;
    }
    #loader .bar {
      width: 0;
      height: 4px;
      background: var(--theme);
      margin-top: 20px;
      border-radius: 2px;
    }
header{
    transition: all .3s;
}
.sticky {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #000000e8;
}
.navbar-brand {
    height: 100px;
    transition: all .5s;
}
.sticky .navbar-brand {
    height: 70px;
}
.navbar-brand img{
    height: 100%;
    width: auto;
    object-fit: contain;
     transition: all .5s;
}
nav.navbar.navbar-expand-lg.navbar-dark.bg-dark {
    border-bottom: 1px solid #313131;
    background: rgba(54, 54, 54, 0.10);
    backdrop-filter: blur(5px);
}
h1{
	font-family: "Oswald", sans-serif;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: -1px;
}
h2{
	font-family: "Oswald", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
h3{
	color: var(--blue);
	font-family: "Oswald", sans-serif;
    font-size: 3rem;
    font-weight: 400;  
    letter-spacing: -1px;
}
h4 {
	color: var(--blue);
	font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -1px;
}
h5{
	font-size: 1.2rem;
	font-weight: 600;
}
p{
	 font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 300;
    color: var(--gray);
}
a:hover{
    color: var(--theme);
}
.navbar-nav .nav-link {
    position: relative;
    padding-right: 0 !important;
    padding-left: 0 !important;
    transition: all 0.3s ease-in-out;
}
/* Underline effect */
    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 4px;
      width: 0%;
      height: 2px;
      background: var(--theme);
      transition: width 0.3s ease-in-out;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Glow effect */
    .nav-link:hover {
      color: var(--theme) !important;
    }
.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: none;
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.title {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 20px
}
.title:before {
    position: absolute;
    content: "";
    background: var(--orange);
    height: 100%;
    width: 8px;
    left: 0;
    top: -5px;
}
.title.text-white:before {
    background: var(--white);
}
.mb-20{
    margin-bottom: 20px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-50{
    margin-bottom: 50px;
}
.text-theme{
	color: var(--theme) !important;
}
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    transition: all .3s;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--theme) !important;
}
.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link {
    color: var(--theme);
}
.btn.btn-primary {
   font-size: 14px;
   font-weight: 600;
   text-transform: capitalize;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    color: var(--dark) !important;
    background-color: var(--theme);
     border-color: var(--theme);
    padding: .5rem 1rem !important;
    border-radius: 6px;
    transition: all .3s;
    position: relative;
    z-index: 1;
  overflow: hidden;
}
a.btn.btn-primary.btn-explore {
    font-size: 14px;
   font-weight: 600;
   text-transform: capitalize;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    color: var(--white) !important;
    background-color: var(--blue);
     border-color: var(--white);
    padding: .5rem 1rem !important;
    border-radius: 6px;
    transition: all .3s;
    position: relative;
    z-index: 1;
  overflow: hidden;
}
.btn.btn-primary:hover {
  color: var(--white) !important;
  border-color: var(--blue);
}
a.btn.btn-primary.btn-explore:hover{
  color: var(--dark) !important;
  border-color: var(--theme);
}
a.btn.btn-primary.btn-explore:hover svg path{
  stroke: var(--dark) !important;
}
.btn.btn-primary::after {
  content: '';
  position: absolute;
  background-color: var(--blue);
  z-index: -1;
  padding: 0.25em 0.5em;
  display: block;
  transition: all 0.35s;
}
a.btn.btn-primary.btn-explore::after {
  content: '';
  position: absolute;
  background-color: var(--theme);
  z-index: -1;
  padding: 0.25em 0.5em;
  display: block;
  transition: all 0.35s;
}
.btn.btn-primary:hover::after {
  /* Hover effect for the overlay slide effect */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.35s;
}
a.btn.btn-primary.btn-explore:hover::after {
  /* Hover effect for the overlay slide effect */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.35s;
}

.btn.btn-primary::after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
}
a.btn.btn-primary.btn-explore::after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
}
.btn.btn-theme {
   font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    color: var(--dark) !important;
    background-color: var(--theme);
     border-color: var(--theme);
    padding: .75rem 3rem;
    border-radius: 6px;
    transition: all .3s;
    position: relative;
    z-index: 1;
  overflow: hidden;
}
.btn.btn-theme:hover {
  color: var(--theme) !important;
}
.btn.btn-theme::after {
  content: '';
  position: absolute;
  background-color: var(--white);
  z-index: -1;
  padding: 0.25em 0.5em;
  display: block;
  transition: all 0.35s;
}
.btn.btn-theme:hover::after {
  /* Hover effect for the overlay slide effect */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.35s;
}

.btn.btn-theme::after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
}
span.blue {
    color: var(--theme);
}
 .section {
            height: 100vh;
            padding: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
        }
.banner {
    position: relative;
    background-image: url(../images/banner.jpg);
    background-color: #383838;
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.inner-banner{
    background-image: url(../images/about-banner.jpg);
    height: 450px;
    background-position: bottom;
    background-attachment: fixed;
}
.services-banner{
    background-image: url(../images/services-bg2.jpg);
    background-position: center;
}
.contact-banner{
    background-image: url(../images/contact-us-bg.jpg);
    background-position: center;
}
.banner-overlay {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.13%, #03204A 100%);
}
.inner-banner .banner-overlay{
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69.66%, #03204A 100%);
}
.banner-content {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 0;
    max-width: 1140px;
    margin: 0 auto;
}
.inner-banner .banner-content {
    bottom: 50px;
}
.banner-content h1 {
    color: #E8B734FC;
}

.inner-banner .banner-content h1 {
    text-transform: uppercase;
}
.banner-content h4{
    font-size: 2.8rem;
    font-weight: 800;
    display: inline-block;
}
.banner-content p {
    font-size: 1.3rem;
    font-weight: 400;
    width: 600px;
}
.sec-pad{
    padding: 80px 0;
}
.blue-card {
    background: url(../images/pattern.png), #03204A;
    background-position: left bottom;
    background-size: 200px;
    background-repeat: no-repeat;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background-blend-mode: soft-light;
    transition: all .1s cubic-bezier(.2,0,.2,.3);
}
.blue-card:hover{
    transform: translate3d(0, -8px, 0);
    transform: translateY(-8px) scale(1.05);
}
.blue-card h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 0;
}
.blue-card p{
	font-weight: 300;
}
.gray-card {
    background: #03204A12;
    padding: 30px 20px;
    border-radius: 20px;
    height: 360px;
    transition: all .1s cubic-bezier(.2,0,.2,.3);
    text-align: center;
}
.gray-card img {
    height: 160px;
}
.gray-card p {
    color: var(--black);
}
.gray-card:hover{
    transform: translate3d(0, -8px, 0);
    transform: translateY(-8px) scale(1.05);
}
.gray-card img {
    margin-bottom: 70px;
}
.feature {
    background-image: url(../images/banner.jpg);
}
.feature-overlay {
    background: linear-gradient(0deg, rgba(0, 168, 240, 0.75) 0%, rgba(0, 168, 240, 0.75) 100%);
}
.feature-list {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    height: 260px;
}
.feature-list img {
    height: 50px;
    margin-bottom: 1rem;
}
.feature-list h4 {
    margin-bottom: 1rem;
}
.aggregate {
    background: linear-gradient(180deg, rgba(235, 252, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.scaling-success {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    position: absolute;
    width: 100%;
    bottom: -240px;
    border-radius: 12px;
    border: 1px solid var(--Foundation-Blue-blue-500, #00A8F0);
    box-shadow: 0px 4px 50px 13px rgba(0, 0, 0, 0.08);
}
.scaling-success-list img {
    height: 32px;
    margin-bottom: 10px;
}
.scaling-success-list h4 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-img img{
    width: 100%;
    object-fit: cover;
}
h4.scaling-h {
    position: relative;
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 0;
}
h4.scaling-h:before{
    position: absolute;
    content: "";
    background: var(--theme);
    height: 100%;
    width: 8px;
    left: -20px;
    top: -5px;
}
.contact {
    background: #F2F7FF;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.address-list {
    display: flex;
    grid-gap: 20px;
    padding: 10px 0;
    align-items: flex-start;
}
.address-grp {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 10px;
}
.address-grp .company {
    padding: 20px;
    border-bottom: 1px solid #EAEAEA;
}
.address-grp h4 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.address-grp a{
    color: var(--gray);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: all .3s;
}
.address-grp a:hover{
  color: var(--theme);
}
.contact-img img {
    height: 305px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.contact-form {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
}
.contact-form h4 {
    font-size: 24px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}
.contact-form h4:before {
    position: absolute;
    content: "";
    background: var(--orange);
    height: 100%;
    width: 4px;
    left: 0;
    top: -5px;
}
.form-control {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
    padding: .375rem .575rem;
    border-bottom: solid 1px #2F2B3D26;
}
::placeholder{
    color: #2F2B3D99 !important;
}
.address-text h6 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}
.address-text p {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
}
.contact .address-text h6 {
    color: #2F2B3DE5;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .address-text p {
    color: #505050;
    font-size: 1.15rem;
}
.contact .address-text a {
    color: var(--gray);
}
.address-text a {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}
.page-title.sec-pad {
    background: #ebfcff;
    margin-bottom: 20px;
}
ol.breadcrumb a{
    color: var(--theme);
}
.policy li{
  color: var(--gray);
}
.expertise-list{
	position: relative;
	margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
  transition: all 1s ease;
}
.expertise-list img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.expertise-title {
    position: absolute;
    bottom: 20px;
    padding: 20px;
    padding-bottom: 0;
}
.expertise-list:hover .expertise-overlay:before{
  opacity: 0;
}
.expertise-overlay:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #000000 100%);
    opacity: 1;
    transition: opacity 1s ease;
}
.services-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #03204AC9;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding: 30px;
    transition: .5s ease;
}
.expertise-list:hover .services-overlay {
    height: 85%;
    bottom: 0;
}
.services-overlay a {
    text-decoration: none;
    color: var(--theme);
}
.services-overlay  h5{
    font-size: 1.5rem;
}
.services-overlay p {
    color: #FFFFFF;
    font-size: 13px;
}
.services {
  position: relative;
    text-align: center;
    border: 12px solid #E5F0FF;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    position: absolute;
    width: 100%;
    bottom: -380px;
    background-blend-mode: color-burn;
}
.services-inner.position-relative {
      padding: 0 100px;
    height: 320px;
}
.services h3{
  position: absolute;
    z-index: 99;
    top: 100px;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.services::before {
  content: "";
  position: absolute;
  background: #03204ACC;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9;
  border-radius: 24px;
}

.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
  border-radius: 24px;
}
.legacy-img img{
	border-radius: 24px 24px 0 0;
}
.text-theme{
	color: var(--theme);
}
.our-expertise {
    position: relative;
    padding-bottom: 200px;
}
.our-expertise-inner {
    position: relative;
}
a.btn.btn-know-more {
    font-size: 14px;
    font-weight: 600;
    background: #F0F6FF;
    padding: 0 !important;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    padding-left: 10px !important;
    border-radius: 8px;
    border: 0.5px solid #C4C4C4;
    transition: all .3s;
}
a.btn.btn-know-more span {
    background: var(--theme);
    padding: 7px 6px;
    margin-left: 10px;
    border-radius: 0 8px 8px 0;
    transition: all .5s;
}
a.btn.btn-know-more:hover {
    color: #ffffff;
    background: var(--blue);
}
a.btn.btn-know-more:hover span{
    transform: rotate(90deg);
     border-radius: 8px 8px 0 0;
}
.legacy{
    background: url(../images/legacy-bg-new.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 250px;
}
.write-img img {
    border-radius: 8px;
    height: 450px;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--theme);
    outline: 0;
    box-shadow: none;
}
.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}
.project-img {
    display: flex;
    grid-gap: 10px;
}
footer{
    background: url(../images/footer-bg.jpg),  #03204A;
    background-blend-mode: color-burn;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0 30px !important;
}
ul.useful-links {
    padding: 0;
}
ul.useful-links {
    list-style: none;
}
ul.useful-links li {
    padding-bottom: 15px;
}
ul.useful-links li a{
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all .3s;
}
ul.useful-links li a:hover{
  color: var(--theme);
}
.border-none{
    border:none !important;
}
.mob-processing-img{
    display: none;
}
ul.social-media {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    list-style: none;
    justify-content: end;
}
.footer-bottom p {
    font-size: 13px;
}
ul.social-media li a{
	background-color: #FFFFFF38;
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition:  all .3s;
}
ul.social-media li a:hover{
	background-color: var(--theme);
}
.vision-box {
    background: #03204A12;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all .1s cubic-bezier(.2,0,.2,.3);
}
.vision-box:hover{
    transform: translate3d(0, -8px, 0);
    transform: translateY(-8px) scale(1.05);
}
.vision-box p {
    color: #000000;
    margin-bottom: 0;
}
.vision-box img {
    height: 80px;
    margin-bottom: 15px;
}
.team-content {
    background: var(--white);
    padding: 30px;
    border-radius:16px;
    min-height: 450px;
}
.team-list img {
    width: 100%;
    border-radius: 16px;
}
.team-social ul{
    display: flex;
    list-style: none;
    padding: 0;
    grid-gap: 10px;
}
.team-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E3E3E3;
    margin-bottom: 20px;
}
.team-head h4 {
    font-size: 2rem;
    color: #000000;
}
.team-head p {
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    color: #3C3C3C;
}
section.global-prefrence {
    background-image: url(../images/testimonials-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.global-list {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    border: solid 1px #1490bf54;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    justify-content: center;
    transition: all 0.3s ease;
}
.global-list:hover {
   box-shadow: 0 0 20px rgb(14 174 222), 0 0 10px rgb(14 193 234), 0 0 60px rgb(16 117 167);
 }
.certification {
    background: #DAE5F4;
}
.certification-list{
    background: #F2F7FF;
    height: 250px;
    width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    transition: all .1s cubic-bezier(.2,0,.2,.3);
}
.certification-list:hover {
    transform: translate3d(0, -8px, 0);
    transform: translateY(-8px) scale(1.05);
}
.certification-list img{
    height: 200px;
    width: 200px;
    object-fit: contain;
}
.about-img img {
    height: 580px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.inner-services .expertise-list {
    border-radius: 16px;
}
.inner-services .expertise-list img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.contact-right {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0px 4px 84px 0px #0000000D;
}
p.note {
    background: #F2F2F2;
    padding: 5px;
    text-align: center;
    border-radius: 30px;
}
.project-content {
    background: url(../images/project-bg.jpg), #03204ACC;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px;
    border-radius: 24px;
    background-blend-mode: multiply;
}

.border-right {
    border-left: solid 5px #E8B734;
    padding-left: 30px;
}
.testimonials
 {
    background: url(../images/legacy-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.client-list img {
    width: 300px;
    object-fit: contain;
}
.career{
    position: relative;
    height: 680px;
}
.career-box {
    background: #001947;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}
.career-box h3 {
    position: relative;
    font-size: 2.2rem;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.career-box h3:before{
 position: absolute;
 content: "";
 width: 100px;
 height: 3px;
 left: 0;
 right: 0;
 bottom: 0;
 background: #E8B734;
 margin: 0 auto;
}
.career-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
}
.career-img {
    position: absolute;
    right: 0;
    top: 0;
}
.career-img img {
    height: 680px;
    width: 550px;
    object-fit: cover;
}
.bold{
    font-weight: 700 !important;
}
.project-img img {
    height: 558px;
    width: 50%;
    object-fit: cover;
    max-width: 100%;
    border-radius: 16px;
}
 .img-container {
      position: relative;
      overflow: hidden;
    }

    /* Flash overlay */
    .flash {
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        75deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
      );
      transform: skewX(-25deg);
      pointer-events: none;
    }
.web img {
    opacity: .3;
}
  .gallery-container {
            display: flex;
            gap: 20px;
            max-width: 100%;
            width: 100%;
            height: 550px;
        }

        .image-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            flex: 1;
        }

        .image-card.active {
            flex: 2;
        }

        .image-card.active .overlay {
            opacity: 1;
        }

        .image-card.active .overlay h3,
        .image-card.active .overlay p,
        .image-card.active .cta-button {
            transform: translateY(0);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        iframe{
            display: block;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
           background: linear-gradient(89.95deg, rgba(3, 32, 74, 0.92) 0.04%, rgba(3, 32, 74, 0.840385) 51.74%, rgba(3, 32, 74, 0.46) 99.96%);
            opacity: 0;
            transition: opacity 1.5s ease;
            color: white;
            text-align: left;
            padding: 50px;
        }
        .overlay h3 {
        font-size: 2.5rem;
    transition: transform 0.4s 
ease 0.1s;
}
.wow {
    visibility: hidden;
  }

        /* Hover effects */
        .image-card:hover {
            flex: 2;
        }

        .image-card:hover .overlay {
            opacity: 1;
        }

        .image-card:hover .overlay h3,
        .image-card:hover .overlay p,
        .image-card:hover .cta-button {
            transform: translateY(0);
        }

        /* When active or one card is hovered, shrink others */
        .gallery-container:hover .image-card:not(:hover):not(.active),
        .gallery-container .image-card:not(.active) {
            flex: 0.8;
            filter: brightness(0.6) saturate(0.8);
        }

        /* Reset when hovering over any card */
        .gallery-container:hover .image-card:hover {
            flex: 2;
            filter: none;
        }
        span.special {
    font-weight: 700;
    font-size: 18px;
}
.blue-card img {
    height: 50px;
}

        /* Responsive design */
@media only screen and (min-width: 1600px) {
    body {
    font-size: 18px;
}
html {
    font-size: 18px;
}
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    padding-right: 2rem !important;
    padding-left: 2rem !important;
    transition: all .3s;
}
.btn.btn-primary {
    font-size: 16px;
    padding: .75rem 1.35rem !important;
}
a.btn.btn-primary.btn-explore {
    font-size: 16px;
    padding: .75rem 1.25rem !important;
}
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
.banner-content {
    padding-top: 100px;
    max-width: 1420px;
}
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.gray-card {
    height: 366px;
}
ul.useful-links li a {
    font-size: 16px;
}
.address-text p {
    font-size: 16px;
}
.address-text h6 {
    font-size: 16px;
}
ul.social-media li a {
    height: 35px;
    width: 35px;
}
.career-img img {
    height: 680px;
    width: 650px;
    object-fit: cover;
}
.footer-bottom p {
    font-size: 15px;
}
.about-img img {
    height: 612px;
}
.project-img img {
    height: 622px;
}
.gallery-container {
    height: 650px;
}
span.special {
    font-weight: 700;
    font-size: 20px;
}
}
@media only screen and (min-width: 1920px) {
    html {
    font-size: 18px;
}
     body {
    font-size: 20px;
}
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
.banner {
    height: 100vh;
}
.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.career {
    height: 720px;
}
.career-img img {
    height: 720px;
    width: 750px;
    object-fit: cover;
}
.banner-content {
    padding-top: 100px;
    max-width: 1520px;
  }
}
@media only screen and (max-width: 1024px) {
.gray-card img {
    margin-bottom: 30px;
}
.gallery-container {
    height: 650px;
}

*,
}
@media only screen and (max-width: 991px) {
h1 {
    font-size: 4rem;
}
h4 {
    font-size: 1.3rem;
}
h3 {
    font-size: 2.3rem;
}
.banner {
    height: 600px;
}
p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}
.navbar-nav .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

a.nav-link.btn.btn-primary {
    padding: .5rem 1rem !important;
}
.navbar {
    background: var(--dark);
    padding-bottom: 20px;
    z-index: 999;
}
.sec-pad {
    padding: 50px 0;
}
.legacy {
    padding-top: 250px !important;
}
.banner-content h4 {
    font-size: 2.5rem;
}
.scaling-success-list h4 {
    font-size: 2.1rem;
}
.feature-overlay {
    padding-bottom: 250px;
    margin-bottom: 150px;
}
.scaling-success {
    position: absolute;
    width: 100%;
    bottom: -380px;
}
  .feature-list {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    height: 330px;
}
.project-content {
    margin-bottom: 30px;
}
h4.scaling-h {
    position: relative;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 0;
    margin-top: 30px;
    padding-left: 20px;
}
h4.scaling-h:before {
    height: 100%;
    width: 8px;
    left: 0;
    top: -5px;
}
.about-img {
    margin-bottom: 30px;
}
.contact-form {
    margin-top: 30px;
}
.banner-content {
        padding: 0 50px;
        display: block;
        bottom: 50px;
}
footer ul {
    float: left;
    margin-top: 16px;
}
.desk-processing-img{
    display: none;
}
.mob-processing-img{
    display: block;
}
.gray-card {
    margin-bottom: 20px;
}
.legacy-img{
    margin-top: 30px;
}
.write-img img{
    border-radius: 8px;
    height: auto;
    margin-bottom: 30px;
}
ul.social-media{
    justify-content: start;
    padding: 0;
}
.team-list {
    margin-bottom: 30px;
}
.project-img img {
    height: auto;
    width: 48%;
    object-fit: cover;
    max-width: 100%;
    border-radius: 16px;
}
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 300;
    padding: .75rem 0;
}
.gallery-container {
    flex-direction: column;
    height: auto;
    gap: 15px;
}

.image-card {
    height: 250px;
    flex: none;
}
.gallery-container:hover .image-card:not(:hover) {
    flex: none;
    transform: scale(0.95);
}
.image-card {
        height: 250px;
        flex: none;
        min-height: 650px !important;
    }
    .image-card img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.6s 
ease;
}
.image-card:hover {
        flex: none;
        height: 300px;
        width: 100%;
        max-height: 550px;
    }
.gallery-container:hover .image-card:not(:hover):not(.active), .gallery-container .image-card:not(.active) {
    flex: none;
}
}
@media only screen and (max-width: 767px) {
h1 {
    font-size: 3.2rem;
}
h3 {
        font-size: 1.8rem;
}
.banner.inner-banner {
    height: 400px;
}
.navbar-brand {
    height: 70px;
}
.banner-content {
    display: block;
    align-items: center;
    position: absolute;
    bottom: 50px;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 0 20px;
}
.banner-content h4 {
        font-size: 2rem;
    }
.banner-content p {
    font-size: 1rem;
    font-weight: 400;
}
footer p {
    font-size: 13px;
}
footer ul li a {
    font-size: 13px;
}
.banner-content p {
    font-size: 1rem;
    font-weight: 400;
    width: auto;
}
.legacy{
    padding-top: 120px;
}
.inner-services .expertise-list img {
    height: 450px;
}
.expertise-list:hover .services-overlay {
    height: 90%;
    bottom: 0;
}
.client-list img {
    width: 100%;
    object-fit: contain;
    height: 80px;
}
.overlay {
    padding: 30px;
}

}