:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --nav-font: "Poppins", sans-serif;
}
:root {
  --background-color: #ffffff;
  --heading-color: #2a2c39;
  --accent-color: #005f99;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #005f99;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #060606;
  --nav-dropdown-hover-color: #005f99;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  position: relative;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
p {
  font-size: 18px;
  margin-bottom: 0;
}
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.headerWrap{
  position: relative;
}
.header {
  --heading-color: #005f99;
  color: var(--default-color);
  background-color: #ffffff;
  padding: 10px 30px;
  transition: all 0.5s;
  z-index: 997;
  justify-content: space-between;
  /* position: absolute;
  top: 40px; */
  width: 100%;
}
.headerWrap.headerFixed .topHeader{
  display: none
}
.headerWrap.headerFixed .header{
  position: fixed;
  top: 0;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 65px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 08px rgba(0, 95, 153, 0.4);
}

.scrolled .header {
  --background-color: rgba(221, 219, 216, 1);
}
@media (min-width: 768px) {
  .justify-content-md-between {
      justify-content: space-between !important;
  }
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }
  .navmenu a {
    font-family: var(--nav-font);
    padding: 8px 0;
    font-weight: 500;
    color: #043a5d;
    border-bottom: 2px solid transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    border-bottom: 2px solid #043a5d;
    color: #043a5d;
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    min-width: 250px;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    display: inline-block;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    background-color: transparent;
    color: var(--nav-hover-color);
    border-bottom: 2px solid #005f99;
    display: block;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0 8px;
    border-radius: 4px;
    background-color: #043a5d;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #043a5d;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: #043a5d;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  .fcLi{
    margin-left: 20px;
  }
  .topHeader{
    display: none !important;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  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;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.navmenu li.fcLi:hover .read-more {
  color: #ffffff;
  background-color: #ff8000;
}
.navmenu li .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  padding: 10px;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: none;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

.section-title {
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff8000;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #043a5d;
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    0deg,
    #005f99 0%,
    color-mix(in srgb, #000210 90%, white 10%) 100%
  );
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  /* margin-top: 85px; */
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
  z-index: 2;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 52px;
  font-weight: 700;
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  font-size: 21px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  background-color: #ff8000;
  color: #ffffff;
  border: 2px solid #ff8000;
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}
.hero .carousel-item.carousel-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero .carousel-item.carousel-item.carousel-item1{
  background-image: url(../img/customImages/bannerImg1.jpg);
}
.hero .carousel-item.carousel-item.carousel-item2{
  background-image: url(../img/customImages/bannerImg2.jpg);
}
.hero .carousel-item.carousel-item.carousel-item3{
  background-image: url(../img/customImages/bannerImg3.jpg);
}
.hero .carousel-item.carousel-item>.container{
  z-index: 3;
}
#hero-carousel{
  width: 100%;
  height: 100%;
  position: relative;
}
.hero .carousel-item.carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #043a5dad;
  z-index: 2;
}
#hero-carousel .carousel-control-prev,
#hero-carousel .carousel-control-next {
  display: none;
}
.hero.section{
  padding: 0;
}
/* .hero .carousel-item.carousel-item.carousel-item1{
  background-image: url(../img/customImages/bannerImg1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} */
@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 50vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  z-index: 1;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #043a5d;
  opacity: 0.4;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #ff8000;
  opacity: 0.8;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #7bd3ea;
  opacity: 0.8;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* #about{
  padding-top: 200px;
} */

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.about ul i {
  font-size: 20px;
  padding-right: 8px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: #ff8000;
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}
.aboutImgWrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.aboutImgWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 95, 153, 0.4);
}
.aboutImgWrap > img {
  max-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  height: 100%;
}
.features .nav-link.active img {
  filter: invert(0);
}

.features .nav-link img {
  filter: invert(1);
  transition: 0.3s;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 565px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
  .features .nav-link {
    padding: 8px;
  }
  .onDemandTabs > li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Main Gallery Styling */
.case-study-gallery {
  margin-top: 50px;
  width: 90%;
  margin: 50px auto;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* Adds spacing between items */
  justify-content: space-between;
}

/* Individual Case Study */
.case-study {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
}

/* Responsive Grid Layout */

/* Large Screens: 4 Items */
@media (min-width: 992px) {
  .case-study {
    flex: 1 1 calc(25% - 1.5rem); /* 4 items per row */
    height: 300px;
  }
}

/* Medium Screens: 2 Items */
@media (min-width: 768px) and (max-width: 991px) {
  .case-study {
    flex: 1 1 calc(50% - 1.5rem); /* 2 items per row */
    height: 300px;
  }
}

/* Small Screens: 1 Item */
@media (max-width: 767px) {
  .case-study {
    flex: 1 1 100%; /* Full width */
    height: 250px;
  }
}

/* Overlay Styling */
.case-study__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(32, 32, 32, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study:hover .case-study__overlay {
  opacity: 1;
}

/* Title Styling */
.case-study__title {
  position: absolute;
  top: -50px;
  width: 100%;
  color: white;
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.75rem;
  transition: top 0.3s ease;
}

.case-study:hover .case-study__title {
  top: 20%;
}

/* Link Button */
.case-study__link {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 3px;
  text-align: center;
  font-size: 1rem;
  transition: bottom 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.case-study:hover .case-study__link {
  bottom: 10%;
}

.case-study__link:hover {
  background-color: rgb(255, 255, 255) ;
  color: #202020;
  font-weight: 600;
}

/* Background Images */
.study1 {
  background-image: url("https://images.unsplash.com/photo-1558673532-102034a5f6e4?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fHd3d3xlbnwwfHwwfHx8MA%3D%3D");
  background-position: center;
}

.study2 {
  background-image: url("https://assets.justinmind.com/wp-content/uploads/2022/06/mobile-app-templates-justinmind-768x492.png");
}

.study3 {
  background-image: url("https://i.pinimg.com/originals/1a/f4/ed/1af4ed9670c13c7bb5fafbca0fbb69d0.jpg");
}

.study4 {
  background-image: url("https://htmlburger.com/blog/wp-content/uploads/2024/06/Mobile-App-Design-Templates-Balance-UI-KIT-by-Nguyen-Tiep.png");
}

.study5 {
  background-image: url("https://bs-uploads.toptal.io/blackfish-uploads/uploaded_file/file/407509/image-1602273724900-c1788742664b65d7717f8493fa894eb2.jpg");
}

.study6 {
  background-image: url("https://fireart.studio/wp-content/uploads/2021/11/5-18-1024x768.jpg");
}


.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 24px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 1.4;
  font-size: 16px;
  margin-bottom: 0;
}
.services.section {
  background-color: #eeeeee;
}
@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    background-color: #f0f8ff;
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

.testimonials {
  background: #043a5d;
}
.testimonials .section-title p {
  color: #ffffff;
}
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
  border-radius: 8px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #b1b0b0;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff8000;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/* =========porfolio slide============ */


/* =========/porfolio slide============ */


.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}
.custom-accordion {
  background: #005f99;
  padding: 15px;
  border-radius: 6px;
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: #043a5d;
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: #f0f8ff;
  font-weight: 500;
  border-bottom: 1px solid #043a5d30;
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 600 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded="true"] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  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(--accent-color);
}

.blueText {
  color: #043a5d;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
}
.inrContent h2 {
  color: var(--heading-color);
  margin: 0 0 30px 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.inrOs {
  text-align: center;
}
.outSorceSection {
  background: #eeeeee;
  align-items: center;
  justify-content: center;
  display: flex;
}
.outSorceSection > .row {
  padding: 10px;
}
.outSorceSection > .row > div {
  padding-top: 20px;
  padding-bottom: 20px;
}
.outSorceBottom {
  background: #f0f8ff;
  padding: 15px 10px;
}
.outSorceBottomInr {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.ossContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ossContent h4 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
  color: #043a5d;
}
.ossContent p {
  margin: 0;
}
.onDemandTabs > li {
  width: 100%;
}
.onDemandTabs > li:not(:last-child) {
  margin-bottom: 16px;
}
.tabImWrap {
  width: 100%;
  margin-top: 30px;
}
.tabImWrap > img {
  border-radius: 6px;
  width: 100%;
}
p.sectionParagraph {
  font-size: 18px;
  color: #ff8000;
}
.csLeft {
  position: relative;
  height: 100%;
}
.csLeft1 {
  min-height: 300px;
  max-width: 250px;
  width: 100%;
  padding: 25px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #1c1c1c;
  color: #fff;
}
.csLeft1 > span,
.csRight1 > span {
  color: #ff8000;
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}
.csLeft1 p,
.csRight1 p {
  font-size: 14px;
}
.csLeft1 .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 32px;
  bottom: 32px;
  padding: 7px 16px;
  gap: 5px;
  border-radius: 4px;
  text-transform: capitalize;
}
.csLeft1 .read-more:hover {
  background: #ff8000;
}
.csRight1 .read-more {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 5px;
  transition: 0.3s;
  border-radius: 4px;
  gap: 5px;
  display: inline-flex;
}
.csLeftt1 .read-more:hover {
  background: #ff8000;
}
.csLeft1 .read-more span {
  margin: 0;
}
.csRight1 {
  width: 100%;
  padding: 15px;
  position: relative;
  background-color: #1c1c1c;
  color: #ffffff;
  height: 100%;
}
.csRight1.csRight1Blue {
  background-color: #043a5d;
}
.csRight1.csRight1Blue .read-more:hover {
  background-color: #ff8000;
}
.csRight1.csRight1Orange {
  background-color: #ff8000;
}
.csRight1.csRight1Orange .read-more:hover {
  background-color: #043a5d;
}
.csRight1.csRight1Orange > span {
  color: #043a5d;
}
.digitalInnerWrap {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 7px 14px rgba(55, 55, 66, 0.04),
    4px 18px 20px rgba(0, 0, 0, 0.09), 2px -3px 12px 8px rgba(55, 55, 66, 0.04);
  padding: 40px 30px;
  border-radius: 8px;
}
.digital-lifecycle .section-title p span {
  color: #043a5d;
}
.digital-lifecycle .section-title {
  margin-bottom: 20px;
}
.dmmWrap h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff8000;
}
.dmmWrap p {
  margin-bottom: 20px;
  font-weight: 500;
}
.dmwinr {
  position: relative;
  min-height: 315px;
  background: #005f990f;
  padding: 15px;
  border-radius: 6px;
}
.dmwinr img {
  position: absolute;
  bottom: 15px;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}
.caseStudy img {
  filter: contrast(0.8);
  height: 100%;
}
.aboutUs {
  text-align: center;
}
.aboutUs .section-title {
  text-align: center;
}
.aboutUs .section-title P {
  color: #043a5d;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  line-height: 1;
}
.aboutUs .section-title P::before {
  content: "";
  background-color: #ff8000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  bottom: 0;
  display: inline-block;
  width: 80%;
  height: 3px;
}
.abtInr {
  text-align: center;
}
.abtInr h3 {
  font-size: 48px;
  font-weight: 600;
  color: #000000;
}
.abtInr p {
  font-weight: 500;
  color: #000000;
}
.abtrowWrap {
  margin-top: 50px;
  align-items: center;
}
.abtrowWrapInr {
  background: #f0f8ff;
  border-radius: 6px;
}
.abtrowWrapInr > div {
  padding-top: 15px;
  padding-bottom: 15px;
}
.outsourcingService > .container > .row {
  margin: 0;
}

.footer {
  color: var(--default-color);
  background-color: #002c47;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
}
.footer .social-links {
  margin-top: 15px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #ff8000;
  border: 1px solid #ff8000;
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ff8000;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: #ffffff;
}

.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 {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #ff8000;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}
.footer .footer-about a > img {
  max-height: 80px;
  filter: invert(1);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #ffffff;
}
.footer p {
  color: #ffffff;
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #ff8000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* ======================Portfolio Section====================== */

.portfolio {
  display: grid;
  gap: 20px;
  padding: 20px ;
  /* background-color: #f9f9f9; */
}

  .portfolio .section-title h2 {
    /* font-size: 2.5rem; */
    margin-bottom: 10px;
    font-family: "Oswald", sans-serif;
  }

  .portfolio .section-title p {
    color: #000000;
    font-size: 1rem;
  }

  .portfolioCard{
    display: flex;
    justify-content: space-evenly;
  }

  .portfolio-item {
    margin: 10px;
    padding: 10px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .portfoliogallery{
    display: flex;
    justify-content: center;
  }

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
  }

  .portfolio-item .img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .portfolio-item .details {
    padding: 20px;
    text-align: center;
  }

  .portfolio-item .details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-family: "Oswald", sans-serif;
  }

  .portfolio-item .details p {
    font-size: 1rem;
    color: #6c757d;
  }

  .portfolio-item .icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
  }

  .portfolio-item .stretched-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
  }
.hidden-items {
  display: none;
}

@media (max-width: 991px) {
  .portfolio-item .img img {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .portfolio-item .img img {
    height: 150px;
  }
}
/* /portfolio section */

/* ============================contact form========================== */
 /* General styling */
 #contact {
  padding: 2rem;
  font-family: Arial, sans-serif;
  color: #333;
}

.contact h2, h3 {
  text-align: center;
}

.contact-container {
  margin-top: 1rem;
}

.contact-info {
  /* margin-bottom: 2rem; */
  text-align: center;
}

/* Flexbox layout for form and map row */
.form-map-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-form, .contact-map {
  flex: 1 1 calc(50% - 1rem); 
  min-width: 300px; 
}

input, textarea, button {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.7rem;
  margin-top: 1rem;
  font-size: 1rem;
}

button:hover {
  background-color: #0056b3;
}

iframe {
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #contact{
    padding: 0px;
  }
  .form-map-row {
    flex-direction: column;
    padding: 2rem;
  }

  .contact-form, .contact-map {
    flex: 1 1 100%;
  }
}
/* ============================/contact form========================== */

.contact-info .bi{
  color: #FFFFFF;
}
.contact-info a{
  color: #FFFFFF;
}
.contact-info>div{
  display: flex;
  align-items: center;
  gap: 5px;
}
.topHeader {
  background-color: var(--accent-color);
  font-size: 14px;
  transition: all 0.5s;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topHeader .social-links{
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.topHeader .social-links a{
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .portfolio-item .details p{
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}
@media (max-width: 1200px) {
  .section-title p {
    font-size: 28px;
  }
  .about ul li {
    font-size: 16px;
  }
  .section-title {
    padding-bottom: 20px !important;
  }
  .inrContent h2 {
    font-size: 24px;
  }
  p {
    font-size: 16px;
  }
  .inrContent h2 {
    margin-bottom: 20px;
  }
  section,
  .section {
    padding: 30px 0;
  }
  .abtrowWrap {
    margin-top: 30px;
    width: 100%;
    margin: 0 auto;
  }
  .abtrowWrap > div:first-child {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .abtInr h3 {
    font-size: 28px !important;
  }

  .hero p {
    font-size: 18px;
  }
  .csLeft1 > span, .csRight1 > span{
    font-size: 16px;
  }
  .csLeft1 p, .csRight1 p {
    font-size: 11px;
}
.csRight1 .read-more{
  padding: 4px 10px;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
}
.csRight1{
  padding: 10px;
}
}
@media (max-width: 991px) {
  .thinkBigRow {
    flex-direction: column-reverse;
  }
  .abtrowWrap {
    gap: 30px;
  }
  .abtrowWrap > div {
    width: 100%;
  }
  .digital-lifecycle .section-title {
    margin-bottom: 0;
  }
  .features .nav-link h4 {
    display: block !important;
  }
  .onDemandTabs > li {
    width: auto;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .section-title p {
    font-size: 20px;
  }
  .section-title h2 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  section,
  .section {
    padding: 20px 0;
  }
  p.sectionParagraph {
    font-size: 16px !important;
  }
  .hero p {
    font-size: 16px;
  }
  .inrContent h2 {
    font-size: 20px;
  }
  .csRight1 .read-more {
    position: static;
    margin-top: 20px;
    display: inline-flex;
  }
  .caseStudy img {
    width: 100%;
  }
  .csLeft1 {
    min-height: 250px;
  }
  .digitalInnerWrap {
    padding: 20px;
  }
  .cr1,
  .cr2 {
    display: none;
  }
  .ossContent {
    min-width: 130px;
  }
  .ossContent h4 {
    font-size: 24px;
  }
  .header {
    padding: 10px 16px;
  }
}
