@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lexend: "Lexend deca", sans-serif;
  --urbanist: "urbanist", sans-serif;
  --orange: #ff450d;
  --white: #fff;
  --blue: #1b222f;
  --light-grey: #808080;
}

html,
body {
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
b,
strong,
label,
ul,
li,
a {
  margin-bottom: 0;
  text-decoration: none;
  color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--urbanist);
}

p,
span,
ul,
li,
label,
span {
  font-family: var(--lexend);
}

/* all */
.padding_70 {
  padding: 70px 0px;
}
p.descp {
  font-size: 14px;
  font-family: var(--lexend);
  font-weight: 400;
}
/* Common button styling */
.orange_btn,
.white_btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--urbanist);
  border-radius: 5px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--orange);
  cursor: pointer;
  width: fit-content;
}

/* Orange button */
.orange_btn {
  background: var(--orange);
  color: #fff;
}

/* White button */
.white_btn {
  background: #fff;
  color: var(--orange);
}

/* Shine for orange button (white streak) */
.orange_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

/* Shine for white button (orange streak) */
.white_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 69, 13, 0) 0%,
    /* fully transparent start */ rgba(255, 69, 13, 0.3) 40%,
    /* soft orange */ rgba(255, 69, 13, 0.6) 50%,
    /* smooth orange center */ rgba(255, 69, 13, 0.3) 60%,
    /* fade */ rgba(255, 69, 13, 0) 100% /* fully transparent end */
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

/* Shine animation */
/* @keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
} */

header {
  transition: 0.3s ease;
}

header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.3s ease;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--lexend);
  color: #4d4d4d;
}
.nav-link:focus,
.nav-link:hover {
  color: var(--orange);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--orange);
}
/* footer */
.social_links img {
  max-width: 22px;
}
.footer_sec h5 {
  font-family: var(--urbanist);
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 12px;
}
.footer_sec ul {
  list-style: none;
  padding-left: 0px;
}
.footer_options a {
  font-size: 18px;
  font-family: var(--urbanist);
  font-weight: 500;
}
.footer_options li {
  padding-bottom: 5px;
}

.social_links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.copyright {
  padding: 20px;
  border-top: 1px solid;
}
/* banner */
.carousel-item {
  background: var(--blue);
}
.carousel-caption {
  position: absolute;
  right: 6%;
  top: 16%;
  left: 52%;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #fff;
  text-align: start;
}

.carousel-control-prev {
  left: 52%;
}
.carousel-control-next {
  right: 26%;
}
h2.heading {
  font-size: 58px;
  font-family: var(--urbanist);
  font-weight: 600;
  line-height: 70px;
}
p.dscp {
  font-size: 15px;
  font-family: var(--lexend);
  font-weight: 400;
  line-height: 28px;
}

.banner_content p {
  width: 74%;
}
.banner_content .orange_btn {
  border: 1px solid #fff;
}

/* Hover Only Highlight */
.custom-indicators button:hover .line {
  background: #ff4500;
}
.custom-indicators button:hover .number {
  color: #ff4500;
}

/* Custom Indicators */
.custom-indicators {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  bottom: 20%;
  left: 24%;
}
.carousel-indicators [data-bs-target] {
  height: 0px;
  width: 20px;
}
.custom-indicators button {
  background: none;
  border: none;
  text-align: center;
  padding: 0;
  outline: none;
  position: relative;
  cursor: pointer;
}

.custom-indicators .line {
  display: block;
  width: 56px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.custom-indicators .number {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-indicators .active .line {
  background: #ff4500;
}
.custom-indicators .active .number {
  color: #ff4500;
  font-weight: 600;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 1rem;
  height: 1rem;
}
.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: unset;
  bottom: 15%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 45px;
  color: #fff;
  background: var(--orange);
}
.banner_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Banner wrapper */
.banner {
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 145px;
  height: 118px;
  background: url("../images/left_img.png") no-repeat;
  background-size: contain;
  z-index: 1;
}
.banner .carousel-item {
  position: relative;
}

/* Left Triangle */
.banner .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 44%;
  width: 145px;
  height: 118px;
  background: url("../images/left-traingle.png") no-repeat;
  background-size: contain;
  z-index: 1;
}

/* Right Crosses */
.banner .carousel-item::after {
  content: "";
  position: absolute;
  top: 42%;
  right: -46px;
  width: 100px;
  height: 82px;
  background: url("../images/right-crosses.png") no-repeat;
  background-size: contain;
  z-index: 1;
}

/* Underline only for heading */
.banner .heading {
  position: relative;
  display: inline-block;
  z-index: 3;
}

.banner .heading::after {
  content: "";
  position: absolute;
  bottom: -6px; /* distance below text */
  left: 80%;
  transform: translateX(-50%);
  width: 160px; /* adjust size of underline */
  height: 28px;
  background: url("../images/underline.png") no-repeat center;
  background-size: contain;
  z-index: 2;
}
/* who we are */
.global h3.heading,
.who_content h3.heading {
  color: #000;
  line-height: 67px;
}
.who_content .left_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.who_content p.dscp {
  color: #808080;
  width: 85%;
}
.who_card {
  width: 100%;
  max-width: 120px;
}
.who_we_are .card {
  border: none;
  align-items: center;
  min-height: 315px;
  text-align: start;
  display: flex;
  padding: 22px 30px;
  margin: 0px 20px;
  background: #fff;
  gap: 25px;
  border-bottom: 5px solid #0d2645;
}
.who_we_are {
  background: #fafafa;
}
.card_content p.dscp {
  width: 100%;
  color: #808080;
}
/* global */
.circle {
  position: relative;
  z-index: 1;
}

.circle::after {
  content: "";
  position: absolute;
  background: url("../images/circle.png") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 35px;
  left: -220px;
  pointer-events: none;
  z-index: -1;
}
.next_circle::after {
  background: url("../images/Group.png") no-repeat center;
  left: -309px;
}
h5.title_heading {
  font-size: 23px;
  color: #f5744c;
  line-height: 32px;
  font-weight: 500;
  width: 90%;
  font-family: var(--lexend);
}
/* about */

.subscribe {
  background-color: #1b222f;
  color: white;
  /* height: 350px; */
}
.sub_heading {
  color: #ff450d;
  font-size: 21px;
  font-family: Urbanist;
  font-weight: 700;
}

h3.heading {
  color: #ffebe5;
  font-family: var(--urbanist);
  font-weight: 700;
  /* font-style: Bold; */
  font-size: 56px;
  line-height: 68px;
}

.subscribe_detail .underline-heading {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.subscribe_detail .underline-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 150px;
  height: 10px;
  background: url("../images/underline_img.png") no-repeat center;
  background-size: contain;
}
/*
    .subscribe_section {
        margin-top: 15px;
        padding: 20px 30px 50px 41px;
        display: flex;
        flex-direction: column;
        gap: 63px;
    } */

.section_detail p.dscp {
  color: #f2f2f2;
  text-align: justify;
  font-weight: 300;
  font-style: Light;
}

.subscribe-input .form-group {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

.subscribe-input .form-group p {
  display: flex;
  align-items: center;
}

.subscribe-input span.wpcf7-form-control-wrap {
  flex: 1;
}

.form-control {
  box-shadow: none !important;
  border: 1px solid #dee2e6 !important;
  outline: none !important;
  color: #000 !important;
}

.subscribe-input input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  color: #fff !important;
  font-size: 16px;
  padding: 10px 0;
  padding-bottom: 0 !important;
  border-radius: 0;
}

.subscribe-input input[type="submit"],
.subscribe-input button {
  border-bottom: none !important;
}

.subscribe-input input::placeholder {
  color: #ccc;
}

.subscribe-input input[type="submit"],
.subscribe-input button,
.modal form input[type="submit"],
.modal form button {
  background: #ff450d !important;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 12px !important;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-input button:hover {
  background: #e63e00;
}

.screen-reader-response {
  display: none;
}

span.wpcf7-not-valid-tip {
  color: red;
}

.wpcf7-response-output:empty {
  display: none;
}

.wpcf7-response-output {
  color: orange;
  border: 1px solid orange;
  padding: 5px;
  margin-top: 10px;
}

.scroll-section {
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.scroll-item {
  display: inline-block;
  margin: 0 30px;
  height: 80px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
h4.card_heading {
  font-family: var(--urbanist);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}
.discover_text {
  font-family: var(--lexend);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.dis_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.discover_Sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.scroll-section h4.card_heading {
  text-align: center;
  margin-bottom: 15px;
  color: var(--orange);
}
/* wht we do */

.smart_solutions {
  font-family: var(--urbanist);
  font-weight: 700;
  font-size: 56px;
  line-height: 68px;
  line-height: 100%;
}
.wht_We_Do .card:hover {
  transform: scale(1.01);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.empcard_title {
  font-family: var(---urbanist);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.bg_gray {
  background-color: #0d2645a3;
  color: #fff;
}
.card-body {
  padding: 23px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wht_We_Do .card {
  height: 100%;
}
.empcard_text {
  font-family: var(--urbanist);
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
  min-height: 108px;
}
a.wht_read {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--urbanist);
  line-height: 30px;
}
/* insight */
.insight_head h3.heading {
  color: #000;
}
.insights .empcard_title {
  color: var(--orange);
  font-weight: 700;
}
.insights .empcard_text {
  font-size: 26px;
  color: #000;
  width: 86%;
}
.insights .card {
  border-radius: 0px;
  border: none;
  background: #fff3e5;
}
.insight_card .empcard_text {
  width: 100% !important;
}
.insight_card.card_content p.dscp {
  width: 100% !important;
}
/* sub banner */
.sub_banner {
  background: var(--blue);
  color: #fff;
}
.margin_70 {
  margin: 70px 0px;
}

.about_us .card {
  min-height: 275px;
}
/* mission */
.mission_box {
  background: var(--blue);
  color: #fff;
}
.vision_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}
.footer_sec {
  min-height: 100%;
}
.footer_sec .social_links {
  margin-top: 10px;
}
.vision_box p.dscp {
  text-align: start;
  width: 52%;
}
.vision h3.heading {
  color: #000;
}
.vision p.dscp {
  color: #1b222f;
}
.vision_box h3.heading {
  margin-bottom: 15px;
}
.mission_box {
  position: relative;
}
.mission_box::after {
  content: "";
  position: absolute;
  top: 0%;
  right: -46px;
  width: 100px;
  height: 100%;
  background: url("../images/Polygon_1.png") no-repeat;
  background-size: contain;
}
.mission_box::before {
  content: "";
  position: absolute;
  top: 70%;
  right: -56px;
  width: 100px;
  height: 100%;
  background: url("../images/Polygon_2.png") no-repeat;
  background-size: contain;
}
/* service detail */
.service_heading h3.heading {
  font-size: 50px;
  line-height: 60px;
}
.insight_detail {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.insight_detail p.dscp {
  text-align: justify;
}
.sub_banner_Content {
  gap: 14px;
}
.sub_banner_Content h2.heading {
  font-size: 46px;
  line-height: 58px;
}
.description {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* contact */
.contact_cards .empcard_text {
  font-size: 20px;
  min-height: 0px;
}
.career_card {
  padding: 23px;
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 15px !important;
}

.contact_cards .empcard_text {
  min-height: 0px;
}
.width_48 {
  width: 48px;
}
.overflow_hide {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-header {
  background: #e63e00;
  color: #fff;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal form label {
  width: 100% !important;
}