:root {
  --primarycolor: #0d0047;
  --secondarycolor: #f4782c;
  --accentcolor: #0b0039;
  --headingclr: #000000;
  --textclr: #666666;
  --white: #ffffff;
  --black: #000000;
  --headfont: "Montserrat", sans-serif;
  --parafont: "Montserrat", sans-serif;
}

body {
  color: var(--textclr);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--parafont);
  overflow-x: hidden;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a[href^="tel:"] {
  display: inline-block;
}

a:hover {
  color: var(--secondarycolor);
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  outline: 0;
  box-shadow: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 20px;
}

p {
  line-height: 1.6;
  color: #666;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--headclr);
  font-family: var(--headfont);
}

.container {
  max-width: 1420px;
  width: 90%;
}

section {
  position: relative;
}

ul.lists {
  margin-bottom: 20px;
}

ul.lists li {
  margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primarycolor);
}

::-webkit-scrollbar-thumb {
  background: var(--othercolor);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primarycolor);
}

/* --- Button Code --- */
.custom-btn {
  display: inline-block;
  font-family: var(--parafont);
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  padding: 15px 25px;
  border-radius: 0px;
  text-transform: capitalize;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.custom-btn:before {
  left: -20px;
  transform: translate(-50%, -50%);
}

.custom-btn:after {
  right: -20px;
  transform: translate(50%, -50%);
}

.custom-btn:before,
.custom-btn:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--black);
  border-radius: 50%;
  z-index: -1;
}

.custom-btn:hover:before {
  -webkit-animation: criss-cross-left 0.8s both;
  animation: criss-cross-left 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.custom-btn:hover:after {
  -webkit-animation: criss-cross-right 0.8s both;
  animation: criss-cross-right 0.8s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.custom-btn span:after {
  content: "\2192";
  font-size: 32px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 1.3;
  transition: all 0.3s ease-in-out;
}

.custom-btn:hover span:after {
  transform: translateX(10px);
}

.dark-btn {
  color: var(--white);
  background-color: #0d0047;
  border: 1px solid var(--primarycolor);
}

.dark-btn:hover {
  color: var(--white);
}

.light-btn {
  color: var(--black);
  border: 1px solid var(--secondarycolor);
  background-color: var(--secondarycolor);
}

.light-btn:hover {
  color: var(--white);
}

.border-btn {
  color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
}

.border-btn:hover {
  color: var(--white);
  border: 1px solid var(--secondarycolor);
}

.subtitle {
  margin-bottom: 15px;
  color: #f4782c;
  font-size: 18px;
  font-weight: 700;
}
h2.maintitle {
  margin-bottom: 18px;
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
}

h2.maintitle span {
  display: block;
}

.desc h4,
h4 {
  color: #000;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 22px;
}
/* --- Header Code --- */

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

header .nav-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

header.fixed-header .header-btn {
  background-color: var(--secondarycolor);
  color: var(--bgdktxtclr);
}

header.fixed-header header .nav-header {
  padding: 20px 0;
}

header.fixed-header .top-header {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
}

header.fixed-header {
  background-color: var(--primarycolor);
  position: fixed !important;
  animation: smoothScroll 1s forwards;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

header .logo-col img {
  transition: all 0.3s ease-in-out;
}

header.fixed-header .logo-col img {
  max-width: 60%;
}

nav button.navbar-toggler {
  background-color: var(--primarycolor);
}

.nav-header .row {
  align-items: center;
}
.row.info-row {
  max-width: 1272px;
  width: 100%;
  background-image: url("../images/top_bng.png");
  background-size: 100% 100%;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  margin: auto;
}
ul.header-info li {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.logo-col {
  position: absolute;
  max-width: 240px;
  width: 100%;
  left: 65px;
  top: 15px;
}
.nav-col {
  max-width: 1330px;
  width: 100%;
  height: 82px;
  background-image: url("../images/menu_curve.png");
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
ul#menu-main-menu {
  display: flex;
  gap: 25px;
}
nav.navbar {
  width: fit-content;
}

ul.navbar-nav li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

ul.navbar-nav > li {
  padding-right: 0;
  margin-right: 0;
}

ul.navbar-nav li a {
  position: relative;
  color: #0b0039;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

ul.navbar-nav li:hover a,
ul.navbar-nav li.current-menu-item a {
  color: #f4782c;
  border-bottom: 1px solid #f4782c;
}

ul.navbar-nav li.menu-item-has-children {
  position: relative;
}

ul.navbar-nav li.menu-item-has-children > span {
  position: absolute;
  top: 0;
  right: 0;
}

ul.navbar-nav li.menu-item-has-children > span:after {
  content: "\276E";
  transform: rotate(-90deg);
  position: absolute;
  right: 0px;
  color: var(--bgwhclr);
  transition: all 0.3s ease-in-out;
}

ul.navbar-nav li.menu-item-has-children > span.active:after {
  transform: rotate(90deg);
}

ul.navbar-nav ul.sub-menu {
  position: absolute;
  left: 0;
  padding: 0;
  width: 180px;
  list-style: none;
  background-color: var(--bgwhclr);
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 50%);
  transition: all 0.3s ease-in-out;
}

ul.navbar-nav li.menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
}

ul.navbar-nav li ul.sub-menu a {
  color: var(--bgdktxtclr);
}

ul.navbar-nav ul.sub-menu > li {
  padding: 7px 15px;
  border-bottom: 1px solid #dcdcdc;
  font-size: 14px;
}

.header-btn {
  padding: 12px 25px;
}

ul.header-info {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  width: fit-content;
  padding: 5px 0;
  margin: 0;
  justify-content: center;
}

ul.header-info li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px;
  line-height: 1;
}

ul.header-info li a {
  color: var(--bgwhtxtclr);
}
ul.header-info li a:hover {
  color: #f4782c;
}
ul.header-info li a:hover {
  color: var(--accentcolor);
}

ul.header-info li:first-child {
  padding-left: 0;
}

ul.header-info li:last-child {
  padding-right: 0;
}

ul.header-info li img {
  width: 20px;
  margin-right: 5px;
}

/* --- Footer Code --- */

.footer_contact_sec {
  background-color: var(--primarycolor);
  padding: 40px 0;
}

.footer_detail_sec {
  background-color: var(--black);
  padding: 40px 0 0 0;
}

.copyright-row {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #818181;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright-txt {
  color: var(--white);
}

.copyright-row ul.f_links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.copyright-row ul.f_links a {
  color: var(--white);
}

.copyright-row ul.f_links a:hover {
  color: var(--secondarycolor);
}

.footer_detail_sec .row {
  align-items: center;
}

.footer_detail_sec a.f_logo {
  max-width: 260px;
  display: block;
  margin-bottom: 10px;
}

.footer_detail_sec .f_content {
  color: var(--white);
  line-height: 1.8;
}

.footer_detail_sec .links_col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 50px;
}

.footer_detail_sec .quick_links a {
  color: var(--white);
  font-weight: 500;
}

.footer_detail_sec .quick_links a:hover {
  color: var(--secondarycolor);
}

.footer_detail_sec .quick_links h6 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer_detail_sec .quick_links li {
  margin: 10px 0;
}

.form_col h6 {
  color: var(--white);
  font-size: 18px;
}

.form_col h4 {
  font-size: 26px;
  color: var(--white);
}

.form_col form.wpcf7-form {
  margin-top: 20px;
}

.form_col span.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}

.form_col input,
.form_col select,
.form_col textarea {
  border-radius: 8px;
  border: 1px solid var(--white);
  width: 100%;
  background: transparent;
  padding: 10px 15px;
  color: var(--white);
}

.form_col select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/select.png");
  background-repeat: no-repeat;
  background-position: 96% center;
}

.form_col input::placeholder,
.form_col textarea::placeholder {
  color: var(--white);
}

.form_col input[type="submit"] {
  width: fit-content;
  background-color: var(--white);
  color: var(--black);
  padding: 10px 40px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.form_col input[type="submit"]:hover {
  background-color: var(--secondarycolor);
  border-color: var(--secondarycolor);
  color: var(--white);
}

.form_col textarea {
  height: 120px;
  resize: none;
}

ul.f_social_media {
  display: flex;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}

ul.f_social_media > li {
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
}

ul.f_social_media > li:hover {
  transform: scale(0.9);
}

.contact_info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.contact_info .contact_box {
  display: flex;
  flex-wrap: wrap;
}

.contact_info .contact_img {
  margin-right: 15px;
}

.contact_info .contact_text h6 {
  color: var(--white);
  font-weight: 600;
}

.contact_info .contact_text p,
.contact_info .contact_text a {
  color: var(--white);
  margin-bottom: 0;
}

/* --- Back To Top Code --- */
.back-to-top {
  position: fixed;
  z-index: 9;
  bottom: 150px;
  right: -2px;
  background-color: var(--secondarycolor);
  padding: 10px 12px 5px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #979797;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top i {
  transition: all 0.3s ease-in-out;
  color: var(--white);
}

.back-to-top:hover {
  background-color: var(--darkclr);
}

.back-to-top:hover i {
  color: var(--white);
}

/* --- Contact Form 7 --- */
.wpcf7 form span.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form input.wpcf7-not-valid,
.wpcf7 form select.wpcf7-not-valid {
  border: 1px solid #ff0000;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  text-align: center;
  border: 0 !important;
  color: red;
}

/* --- Home Page Code --- */
.banner-section {
  padding: 56px 40px 40px;
}
.banner-content-wrp {
  height: 900px;
  position: relative;
  background-size: cover;
  background-position: center top;
  border-radius: 25px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
}
.banner-content-wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.67) 6.86%,
    rgba(0, 37, 71, 0.67) 68.57%
  );
  opacity: 0.65;
  z-index: 1;
}
.b-content-col {
  position: relative;
  z-index: 9;
  padding-right: 10%;
}
.b-content-col h1 {
  color: #fff;
  font-size: 66.872px;
  font-weight: 300;
  margin: 0;
}

.b-content-col h1 strong {
  color: #f4782c;
  font-weight: 700;
}
h6.sub-title {
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  margin: 0;
  padding: 18px 0px 22px;
}

.b-content-col p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.btn-col a {
  display: flex;
  max-width: 250px;
  width: 100%;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  height: 62px;
  border-radius: 24px;
  border: 2px solid #fff;
  background-color: #f4782c;
}
.btn-col a:first-child {
  background-color: transparent;
}
.btn-col {
  display: flex;
  gap: 30px;
}
/* --- Inner Page Code --- */
.inner-banner-section {
  padding: 180px 0 100px 0;
  background-color: var(--darkclr);
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 25px;
}
.inner-banner-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.67) 6.86%,
    rgba(0, 37, 71, 0.67) 68.57%
  );
  opacity: 0;
  z-index: 1;
}
.inner-banner-section .container {
  position: relative;
  z-index: 9;
}
.inner_banner_content_wrp h1 {
  color: #fff;
  font-size: 66.872px;
  font-weight: 700;
  margin-bottom: 0;
}
.breadcrumb,
.breadcrumb a {
  color: #fff;
}
.breadcrumb a:hover {
  color: #f4782c;
}
.breadcrumb {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
}

.banner-text {
  text-align: center;
}
/* --- Animation Code --- */
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    transform: scale(2);
  }

  100% {
    left: 50%;
    transform: scale(15);
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    transform: scale(2);
  }

  100% {
    right: 50%;
    transform: scale(15);
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
section.about-section {
  padding: 60px 0px 70px;
  clear: both;
}
.common-btn-col a.custom-btn {
  border-radius: 16px;
  display: flex;
  max-width: 250px;
  width: 100%;
  padding: 12px 10px;
  justify-content: center;
  gap: 10px;
  height: 62px;
  align-items: center;
  margin: 0 !important;
}
.common-btn-col a.custom-btn:hover {
  border: 2px solid #f4782c;
  background: #f4782c;
}
.call-us-btn h6 {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.call-us-btn span a {
  color: #0b0039;
  font-size: 20px;
  font-weight: 700;
}
.call-us-btn span a:hover {
  color: #f4782c;
}
.call-us-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.common-btn-col {
  display: flex;
  gap: 30px;
}
.abt-step {
  color: #0b0039;
  font-size: 18px;
  font-weight: 500;
  max-width: 48.5%;
  width: 100%;
  position: relative;
  padding: 20px 71px 20px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  background-image: url("../images/a_curve.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.abt-li {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  padding: 20px 0px;
}
.services-section {
  background: #0b0039;
  padding: 70px 0px;
}
.services-top-content h2,
.services-top-content h4,
.services-top-content p {
  color: #fff;
}

.services-top-content {
  position: relative;
  padding-bottom: 30px;
}
.services-section .common-btn-col a.custom-btn {
  border: 2px solid #fff;
  width: 280px;
  max-width: initial;
}
.services-top-content .common-btn-col {
  position: absolute;
  right: 0px;
  top: 0px;
}
.service_img img {
  height: 308px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

span.ser_icon img {
  height: auto;
  width: auto;
}
.service_img {
  position: relative;
}

.service_img:after {
  content: "";
  position: absolute;
  right: -2px;
  top: -1px;
  width: 81px;
  height: 81px;
  background-image: url("../images/service_curve.png");
  opacity: 0;
}
img.arrow2 {
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}
span.ser_icon {
  border-radius: 100%;
  border: 2.5px solid #fff;
  background: #0b0039;
  width: 58px;
  height: 58px;
  position: absolute;
  bottom: 28px;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.service-card-content {
  border-radius: 16px;
  background: #d9d9d9;
  height: 140px;
  width: 92%;
  z-index: 9;
  margin: -55px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: 0.3s;
}

.service-card-content h3 {
  color: #0b0039;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
.inn-service-card:hover .service-card-content {
  border-radius: 16px;
  background: #f4782c;
}
.inn-service-card:hover .service-card-content h3 {
  color: #fff;
}
.service.common-btn-col {
  justify-content: center;
  padding-top: 40px;
}
.process-section {
  padding: 70px 0px 0px;
}

.process-top-content {
  text-align: center;
}
span.title {
  color: #0b0039;
  font-size: 22px;
  font-weight: 600;
  display: block;
  line-height: normal;
  margin-bottom: 10px;
  width: 60%;
}

.inn-process-step p {
  color: #0b0039;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: normal;
}

.p-num {
  width: 60px;
  height: 60px;
  background: #0b0039;
  color: #f4782c;
  font-size: 32px;
  font-weight: 700;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -24px;
  top: -26px;
}
.process-step {
  background-image: url("../images/why_item_bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 30px 30px 30px 30px;
  height: 205px;
  margin-bottom: 25px;
  width: 96%;
}

.inn-process-step {
  position: relative;
}
.row.process-row {
  padding: 40px 160px 0px;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0px 0;
  align-items: center;
  justify-content: center;
}
.counter-section .wrap {
  border-radius: 32px;
  background: #0b0039;
  display: flex;
  justify-content: center;
  height: 165px;
  align-items: center;
  gap: 0;
}
.wrp-counter {
  padding: 0px 160px 70px;
}
.counter-box .counter {
  color: #f4782c;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: normal;
}

.counter-box .label {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.counter-box {
  border-right: 1px solid #fff;
  padding: 0px 60px;
}

.counter-box:last-child {
  border: none;
}
.values-section {
  background: #0b0039;
  display: flex;
  padding: 105px 164px 130px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.values-top-content h2,
.values-top-content p,
.values-top-content h4 {
  color: #fff;
}

.values-top-content {
  text-align: center;
  padding-bottom: 54px;
}
.value-card {
  max-width: 23.8%;
  width: 100%;
  background-image: url("../images/proces_bg1.png");
  background-size: 100% 100%;
  padding: 30px;
  position: relative;
}
.value-card:nth-child(2n) {
  background-image: url("../images/proces_bg2.png");
  padding-right: 65px;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.value-card h4 {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
}

.value-card p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.v-num {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: #f4782c;
  color: #fff;
  font-size: 23.46px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
.value-card:nth-child(2n) .v-num {
  top: auto;
  bottom: 0;
}
.value-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -58px;
  width: 105px;
  height: 25px;
  background-image: url("../images/Vector2.png");
}
.value-card:nth-child(2):after {
  top: -40px;
  right: -58px;
  bottom: auto;
  background-image: url("../images/Vector1.png");
}
.value-card:last-child:after {
  display: none;
}
.projects-section {
  padding: 70px 0px;
}

.projects-top-content {
  text-align: center;
  padding-bottom: 30px;
}
.gallery-side img {
  height: 316px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.gallery-center img {
  height: 649px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gal_box {
  padding: 0;
  position: relative;
}

.gallery-side,
.gallery-center {
  padding: 8px;
}
.project.common-btn-col a {
  border: 2px solid #f4782c;
  background: #f4782c;
  max-width: 230px;
}

.project.common-btn-col {
  justify-content: center;
  padding-top: 40px;
}
.gallery-center {
  position: relative;
}

.gallery-center:after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 112px;
  height: 118px;
  background-image: url("../images/g_curve.png");
  display: none;
}
img.b_icon_h {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
}
.testimonial_wrapper {
  padding: 70px 0px;
}

.testimonial_top_content {
  text-align: center;
  padding-bottom: 12px;
}

.testimonial_top_content h2,
.testimonial_top_content h4 {
  color: #fff;
}
.blogs-section {
  padding: 70px 0px;
}

.blogs-top-content {
  padding-bottom: 25px;
}

.bblog.common-btn-col {
  justify-content: center;
  padding-top: 40px;
}
.blog_img img {
  height: 580px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.blog_img {
  position: relative;
}

.blog_img:after {
  content: "";
  position: absolute;
  right: -2px;
  top: -1px;
  width: 102px;
  height: 103px;
  background-image: url("../images/b_curve.png");
  display: none;
}
.blog-card-content {
  border-radius: 16px;
  border: 1px solid #0b0039;
  background: rgba(0, 37, 71, 0.88);
  width: 92%;
  z-index: 9;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 80px 15px 30px;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}

.blog-card-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.inn-blog-card:hover .blog-card-content {
  border-radius: 16px;
  background: #f4782c;
}
.inn-blog-card:hover .blog-card-content h3 {
  color: #fff;
}
.blog_img img.arrow2,
img.arrow2_H {
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}
img.arrow2_H {
  opacity: 0;
}

.inn-blog-card:hover img.arrow2_H {
  opacity: 1;
}
.bblog.common-btn-col a {
  max-width: 190px;
}
.inn-blog-card {
  position: relative;
}
.b-date {
  border-radius: 0 0 16px 16px;
  background: #f4782c;
  width: 94px;
  height: 66px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  right: 15px;
  top: -1px;
  padding: 8px 4px;
}
.inn-blog-card:hover .b-date {
  background: rgba(0, 37, 71, 0.88);
}
.faq-section {
  padding: 0px 0px 70px;
}
.faqs_top_content h2 {
  position: relative;
  padding-bottom: 15px;
}

.faqs_top_content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 108px;
  height: 4px;
  background: #f4782c;
}

.faqs_top_content {
  padding-bottom: 20px;
}

div#faqAccordion {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.accordion-item {
  width: 100%;
  border: none;
}

.accordion-button:not(.collapsed) {
  border-radius: 8px 8px 0 0 !important;
  background: #f4782c;
  border: 1px solid #f4782c;
  box-shadow: none;
  color: #fff;
  letter-spacing: 0.36px;
  font-size: 18px;
  font-weight: 500;
}

button.accordion-button.collapsed {
  border-radius: 8px;
  border: 1px solid #e3e3e3 !important;
  outline: none !important;
  color: #0b0039;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  box-shadow: none;
}

.accordion-collapse.collapse.show {
  border-radius: 0 0 8px 8px;
  border: 1px solid #fff;
  background: #fafafa;
  border-top: none;
}

.accordion-body p {
  color: #0b0039;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
}
.accordion-button::after {
  background-image: url(../images/faq_arrow.png);
  border: none;
  position: absolute;
  right: 15px;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../images/faq_arrow_hover.png);
  transform: none;
}

.faq-section .container {
  padding: 0px 50px;
}
.faqs_cta {
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  background: #0b0039;
  margin-top: 25px;
}

.faqs_cta_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 25px;
}

.faqs_cta_content {
  width: 50%;
}

.faqs_cta_btn {
  width: 184px;
}

.faqs_b.common-btn-col a {
  border-radius: 50px;
  background: #f4782c;
  max-width: 184px;
  height: 54px;
}

.faqs_cta_content h5 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.48px;
  margin-bottom: 0;
}

.faqs_cta_content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.32px;
  margin: 0;
}
.b-date span {
  display: block;
  font-size: 24px;
  font-weight: 700;
}
.slick-dots li button:before {
  font-size: 23px;
  content: "\2014";
  text-align: center;
  opacity: 1;
  color: #fff;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #f4782c;
}
.banner-section .slick-dots {
  position: absolute;
  bottom: 0;
  right: 15px;
  top: 0;
  margin: auto 0;
  display: flex;
  flex-wrap: wrap;
  height: 40px;
  width: 20px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.banner-section .slick-dots li {
  margin: 0px;
}

/* .about-process .process-image {
    position: absolute;
    height: 100%;
    left: -105px;
    right: 0;
    bottom: -40px;
    margin: auto;
    display: flex;
    align-items: flex-end;
    width: auto;
    justify-content: center;
} */

.about-process .row.process-row {
  position: relative;
  justify-content: space-between;
}

.about-process .process-steps {
  justify-content: center;
}
.counter-section {
  position: relative;
}
.desc ul {
  padding: 15px 0px 25px;
  margin-bottom: 0;
}
.desc li {
  background-image: url("../images/charm_circle-tick.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  list-style: none;
  padding-left: 40px;
  margin-bottom: 8px;
}
.common-btn-col a.custom-btn.abt {
  max-width: 278px;
}
section.banner-section.inn {
  padding-bottom: 0;
}
section.about-section.about_page {
  background-image: url("../images/abg.webp");
  background-size: cover;
  background-position: center -185px;
  padding: 115px 0px;
}
.about-steps {
  background: #fff;
}

.about-steps h4 {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 32px;
}
.inn-ab-step span.title {
  color: #000;
  width: 100%;
  margin: 0;
  padding: 6px 0px 15px;
}

.inn-ab-step p {
  color: #000;
  font-weight: 400;
}

.a-num {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 22.315px;
  background: #0b0039;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}
.inn-ab-step {
  position: relative;
  padding-left: 56px;
}

.ab-step {
  width: 30%;
}

.row.ab-steps {
  justify-content: space-between;
}
.our-team-section {
  background: #f8f8f8;
  padding: 80px 0px;
}
.our-team-section .inn-top-content {
  text-align: center;
  padding-bottom: 38px;
}
.inn-our-team-box {
  border-radius: 32px;
  /* border: 1px solid #A4A4A4; */
  display: inline-block;
  width: 100%;
  position: relative;
  background: #fff;
}

.our-team-box {
  display: flex;
  justify-content: center;
  margin: 0px 10px;
}

.team-details {
  border-radius: 32px;
  background: rgba(0, 43, 108, 0.82);
  backdrop-filter: blur(1.5px);
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 40px 32px;
  width: 88%;
}
h4.name {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

h5.designnation {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 12px 0px;
}

p.info {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.socail {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.inn-our-team-box img {
  width: 100%;
}

.our-team-section .row {
  padding: 0px 50px;
}
.services-section.services {
  background: transparent;
}
.services .row.services-grid {
  justify-content: center;
}

.services .service-card {
  padding: 30px 20px;
}
.request-a-quote-wrapper {
  background-image: url("../images/form_bg.png");
  background-size: cover;
  background-position: center center;
  padding: 80px 0px;
  background-color: #f4f4f4;
}
.gallery-wrapper.services {
  background-image: url("../images/abg.webp");
  background-size: contain;
  background-position: center 0px;
  padding: 80px 0px;
}
.gallery-top-content {
  text-align: center;
  padding-bottom: 15px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 18px;
  padding: 10px 0;
}

.gallery-grid .item {
  overflow: hidden;
  border-radius: 25px; /* SAME rounded corners */
  background: #f5f5f5; /* Light placeholder bg */
  transition: 0.4s;
}

.gallery-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px; /* SAME as design */
  display: block;
  transition: 0.4s;
}
.gallery-grid .item:hover img {
  transform: scale(1.5);
}
/* Tall images (same layout as screenshot) */
.gallery-grid .tall {
  grid-row: span 2;
}

/* Wide images (same layout as screenshot) */
.gallery-grid .wide {
  grid-column: span 2;
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-grid .tall,
  .gallery-grid .wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.inn-services-cards {
  border-radius: 16px;
  border: 1px solid #dadada;
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  justify-content: space-between;
}

.services-card-content p {
  margin: 0;
  color: #0b0039;
}

.services-card-content h3 {
  margin-bottom: 10px;
  color: #0b0039;
  font-size: 22px;
  font-weight: 600;
}

span.ser_icons {
  height: 80px;
  display: flex;
  align-items: center;
}

.services-cards {
  padding: 20px;
}

.service-top-content {
  margin-bottom: 30px;
}
.form-group input,
.form-group select {
  border-radius: 8px;
  border: 2px solid #eaeaea;
  background: #fff;
  height: 62px;
  color: #6e6e6e;
  font-size: 18px;
  font-weight: 300;
}
.form-group select {
  background-image: url("../images/select.svg");
  background-repeat: no-repeat;
  background-position: 98% center;
}
.form-btn input {
  border-radius: 8px;
  background: #f4782c;
  border: 1px solid #f4782c;
  display: flex;
  max-width: 249px;
  width: 100%;
  padding: 10px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  height: 55px;
  transition: 0.4s;
}
.form-btn input:hover {
  background: #0d0047;
  color: #fff;
}
.request-top-content .subtitle {
  margin-bottom: 4px;
}

.request_a_quote_form {
  padding-top: 20px;
}

.form-group {
  margin-bottom: 21px;
}
.services-section .ser_btn a.custom-btn {
  border: 2px solid #fff;
  width: 196px;
  max-width: initial;
}
.request-top-content {
  padding-left: 40px;
}
.contact-form-area-wrap {
  background-image: url("../images/contact_bg.svg");
  background-size: cover;
}

.contact-form-area-wrap .container {
  padding: 70px 0px;
}

.map_iframe {
  padding: 0px 30px 20px;
  height: 100%;
}

.map_iframe iframe {
  border-radius: 32px;
  height: 480px;
}

.contact-form-content .form-group input,
.contact-form-content .form-group select {
  border: 1px solid #0b63b7;
}
.contact-form-content textarea.wpcf7-form-control.wpcf7-textarea {
  height: 220px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #0b63b7;
  background: #fff;
  color: #6e6e6e;
  font-size: 18px;
  font-weight: 300;
  resize: none;
}

.contact-form-content .form-group {
  margin-bottom: 0;
}

.contact-form-content .inputs {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact-form-content .form-btn input {
  border-radius: 8px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 54px;
  transition: 0.4s;
  border: 1px solid #ffe6d7;
  background: #002547;
  display: flex;
  max-width: 382px;
  padding: 2px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contact-form-content .form-btn input:hover {
  border: 1px solid #f4782c;
  background: #f4782c;
}
.contact-form-content .form-btn {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: 15px;
}

.contact-form-content span.wpcf7-spinner {
  position: absolute;
  bottom: -25px;
}
.d_content p,
.d_content p strong {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.d_content p strong {
  display: block;
}
.details-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.row.contact-details-wrap {
  margin-bottom: 70px;
}

.blog-list-item-wrap {
  max-width: 1320px;
  width: 100%;
  margin: auto;
}
.blog-image {
  width: 100%;
}
.blog-image img {
  width: 100%;
  border-radius: 32px;
  max-height: 430px;
  object-fit: cover;
}
.inner-blog-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.blogger-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.author,
.blog-date {
  color: #818181;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: normal;
  gap: 10px;
}
.inner-blog-card p,
.inner-blog-card h2 {
  margin: 0;
}
span.b-link-btn {
  display: flex;
  padding: 10px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #0b0039;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: 0.4s;
}
.inner-blog-card:hover span.b-link-btn {
  background: #f4782c;
}
section.blog-section {
  padding: 70px 0px;
}

.blog_items {
  margin-bottom: 50px;
}

.blog_items:last-child {
  margin-bottom: 0;
}
section.for-section {
  padding: 70px 0px;
}

section.for-section .inner-blog-card {
  max-width: 1320px;
  width: 100%;
  margin: auto;
}
.post_thumbnail {
  width: 100%;
}
.post_thumbnail img {
  width: 100%;
  border-radius: 32px;
  max-height: 430px;
  object-fit: cover;
}
.post-content h2,
.post-content h2 strong,
.service_content_wrp h2,
.service_content_wrp h2 strong,
h2.b-title {
  color: #000;
  font-size: 42px;
  font-weight: 700;
}

.post-content h3,
.post-content h3 strong {
  color: #000;
  font-size: 24px;
  font-weight: 700;
}
.service_content_wrp h3,
.service_content_wrp h3 strong {
  color: #000;
  font-size: 32px;
  font-weight: 400;
  padding: 10px 0px;
}
.post-content h2,
.post-content h3 {
  padding: 15px 0px;
  margin: 0;
}
.post-content p {
  padding: 8px 0px;
  margin: 0;
  color: #0b0039;
}

.post-content li {
  color: #0b0039;
  font-size: 18px;
  font-weight: 400;
  padding: 5px 0px;
}
.sidebar-menu {
  border-radius: 32px;
  border: 1px solid #d9d9d9;
  background: #fffefe;
  padding: 30px 30px 10px;
}

.post-featured-image img {
  border-radius: 32px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.sidebar-menu h4 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
}
.sidebar-menu li {
  margin-bottom: 10px;
}
.sidebar-menu li a {
  background-color: transparent;
  background-image: url("../images/ep_right.svg");
  display: block;
  background-repeat: no-repeat;
  background-position: 98% center;
  padding: 8px 10px;
  color: #0b0039;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
}
.sidebar-menu li:hover a {
  background-color: #f6f6f6;
  background-image: url("../images/ep_right_h.svg");
  color: #f4782c;
}
.sidebar-menu li.current-menu-item a {
  background-color: #f6f6f6;
  background-image: url("../images/ep_right_h.svg");
  color: #f4782c;
  font-weight: 700;
}
.services_details_wrp {
  margin-bottom: 30px;
}
.service-main-content h4 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

.service-featured-content li {
  position: relative;
  list-style: none;
  padding-left: 34px;
  color: #0b0039;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.service-featured-content li:before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

.service-main-content ul {
  margin: 0 0 20px;
  padding: 0;
}
.need_helps {
  border-radius: 32px;
  border: 1px solid #d9d9d9;
  padding: 30px 30px;
}

.row.services_featured_wrp {
  padding: 40px 0px;
}

p {
}

.need_helps p strong {
  display: block;
  font-weight: 700;
}

.need_helps p {
  color: #000;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
}

.need_helps p img {
  display: block;
  margin: 25px auto;
}

.need_helps h4 {
  color: #f4782c;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.need_helps h4 a {
  color: #f4782c;
}
.need_helps h4 a:hover {
  color: #000;
}
.c_btn a {
  display: flex;
  max-width: 249px;
  width: 100%;
  padding: 10px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #0b0039;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.c_btn a:hover {
  background: #f4782c;
}
.c_btn {
  padding-top: 15px;
  display: flex;
  justify-content: center;
}
.services_faqs h4 {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
}
.services_faqs .accordion-collapse.collapse.show {
  border-radius: 0 0 16px 16px;
  background: #f8fdff;
}
.services_faqs button.accordion-button.collapsed,
.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 16px;
  border: 2px solid #d9d9d9 !important;
}
.services_faqs .accordion-button:not(.collapsed) {
  border-radius: 16px 16px 0 0 !important;
  background: #002547;
  border: 1px solid #002547;
}
.contact_text p span {
  display: block;
}
.contact_info .contact_text a:hover {
  color: #f4782c;
}
/* /<--------------update--------------->/ */
.process-section .container {
  width: 100%;
  max-width: 1820px;
}
.post-content {
  padding-bottom: 15px;
}
.bottom-item-inner a {
  display: inline-block;
}
.slick-slide {
  margin-right: 10px;
  margin-left: 10px;
}
.has-padding-top {
  padding-top: 20px; 
}
.mimg img {
  height: 100%;
  object-fit: cover;
}
.mimgi {
  height: 100%;
}
 single single-services postid-474 .bottom-wrap{
	margin-bottom:0 !important;
}
