@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

/* Root Styling */
:root {
  --c1: #004AAD;
  --c2: #123c55;
  --f1: 'poppins';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 12px 35px;
  background: var(--c1);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
}

.themebtn:hover {
  background: var(--c1);
  color: #fff;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c2);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
}

a.header__logo img {
  width: 82px;
  height: auto;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

ul.header-main__nav li a {
  font-size: 15px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: all 500ms;
}

ul.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover {
  color: var(--c1);
}

ul.header-main__nav li a.active {
  color: var(--c1);
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  min-height: 89vh;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont {
  position: relative;
  color: #fff;
}

.banner_cont h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--f1);
}

.banner_cont h3 {
  font-size: 55px;
  font-family: var(--f1);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 59px;
}

.banner_cont p {
  font-size: 15px;
}

/* baner css end */



/* new css start */







.why-choose-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Grid Background */


.why-badge {
  display: inline-block;
  background: #004aad3b;
  color: var(--c1);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid var(--c1);
  margin-bottom: 10px;
}

.main-heading {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--c1);
}

.desc {
  color: #000;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.feature-list li {
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  width: 39%;
}

.feature-list li::before {
  content: "\ed31";
  font-family: 'boxicons';
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--c1);
  font-size: 22px;
  font-weight: bold;
  transform: translateY(-50%);
}

.image-wrapper {
  border-radius: 30px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

/* Responsive */

@media (max-width: 991px) {
  .main-heading {
    font-size: 42px;
  }

  .desc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .main-heading {
    font-size: 24px;
  }

  .why-badge {
    font-size: 16px;
  }

  .desc {
    font-size: 16px;
  }

  .feature-list li {
    font-size: 16px;
  }
}


/*  */

.services-section {
  background: #004aad24;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Left Pink Glow */

/* Right Cyan Glow */


.service-heading {
  color: var(--c1);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-desc {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  width: 75%;
  margin: 0 auto;
}

.section-title {
  color: var(--c1);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.service-card {
  background: #fff;
  border: 2px solid var(--c1);
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  height: 100%;
  transition: .3s;
  box-shadow: 0 5px 20px rgba(0, 74, 173, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.2);
}

.service-card img {
  border-radius: 12px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--c1);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-card ul li {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-card ul li::before {
  content: "\ed31";
  font-family: 'boxicons';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--c1);
  font-size: 18px;
  font-weight: bold;
}

.service-btn {
  display: flex;
  padding: 10px 20px;
  background: var(--c1);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--c1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--c2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-primary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--c1);
  border: 2px solid var(--c1);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--c1);
  color: #fff;
  transform: translateY(-2px);
}

/*  */


.contact-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Blue Glow */
/* Left Side */

.contact-title {
  color: var(--c1);
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-subtitle {
  color: #000;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.contact-card {
  border: 2px solid var(--c1);
  padding: 15px 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-radius: 50pc;
  background: #000;
}

.icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--c1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
}

.contact-content {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  transition: 300ms;
}

/* Form */

.form-wrapper {
  border-radius: 20px;
  border: 2px solid var(--c1);
  padding: 30px;
  background: #004aad1c;
}

.custom-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #4444;
  border-radius: 0;
  color: #fff;
  padding: 15px 0;
}

.custom-input:focus {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border-color: #ff1f78;
}

.custom-input::placeholder {
  color: #bdbdbd;
}

.custom-textarea {
  background: transparent;
  border: 1px solid #4444;
  border-radius: 0;
  color: #fff;
  padding: 15px;
}

.custom-textarea:focus {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border-color: #ff1f78;
}

.custom-textarea::placeholder {
  color: #bdbdbd;
}

.contact-btn {
  background: var(--c1);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: .3s;
}

.contact-btn:hover {
  background: #e1005f;
}

/* Responsive */

@media(max-width:991px) {

  .contact-title {
    font-size: 39px;
  }

  .contact-content {
    font-size: 14px;
  }

  .form-wrapper {
    padding: 30px;
  }
}

.icon-box i {
  font-size: 28px;
}

.contact-content:hover {
  color: var(--c1);
}

/*  */



.orm-section {
  background: #0d1117;
  position: relative;
  overflow: hidden;
  background-image: url('../images/grid.webp');
  background-attachment: fixed;
}


.orm-image-wrapper {
  position: relative;
}

.orm-image-wrapper img {
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-12px);
  }
}

.orm-content {
  color: #fff;
}

.orm-badge {
  display: inline-block;
  background: #004aad3b;
  color: var(--c1);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid var(--c1);
  margin-bottom: 10px;
}

.orm-content h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--c1);
}

.orm-content h2 span {
  color: var(--c1);
  display: block;
}

.orm-content p {
  color: #000;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.orm-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #000;
  position: relative;
  padding-left: 20px;
  margin-left: 14px;
  transition: 300ms all;
  font-weight: 600;
}

.orm-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.orm-btn {
  display: flex;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  background: var(--c1);
  font-weight: 600;
  transition: .3s;
  font-size: 14px;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: fit-content;
}

.orm-btn:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 10px 30px #004aad26;
}

@media(max-width:991px) {

  .orm-content {
    text-align: center;
  }

  .orm-content h2 {
    font-size: 27px;
  }

  .orm-feature {
    justify-content: center;
  }
}

/* Footer CSS Start */

.footer {
  background: var(--c1);
  padding: 20px;
  position: relative;
}

.footer__top {
  margin-bottom: 50px;
}

.footer__logo-link img {
  width: 170px;
  height: auto;
  margin-bottom: 20px;
}

.footer__desc {
  color: #000;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.footer__title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.footer__list {
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list li a {
  color: #000;
  font-size: 14px;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.footer__list li a:hover {
  color: var(--c1);
  padding-left: 5px;
}

.footer__contact-list {
  padding: 0;
  margin: 0;
}

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #d9d9d9;
  font-size: 15px;
}

.footer__contact-list li i {
  color: var(--c1);
  font-size: 22px;
}

.footer__contact-list li a {
  color: #000;
  font-size: 15px;
  transition: all 300ms ease-in-out;
}

.footer__contact-list li a:hover {
  color: #ff1f78;
}

.footer__contact-list li span {
  color: #000;
  font-size: 15px;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

.footer__contact-list li span:hover {
  color: #ff1f78;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer__copyright {
  color: #fff;
  font-size: 17px;
  margin-bottom: 0;
  background: #000;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 15px 0px;
  border-radius: 50px;
}

.footer__contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff1f78, #ff5f6d);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  border: none;
}

.footer__contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 31, 120, 0.35);
  color: #fff;
}

/* Footer Responsive */

@media (max-width: 991px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer__top {
    margin-bottom: 10px;
  }

  .footer__title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer__bottom {
  padding: 0;
  }

  .footer__copyright {
    font-size: 13px;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
    font-size: 11px;
  }

  .text-lg-end {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 20px 12px 20px;
  }

  .footer__logo-link img {
    width: 100px;
  }

  .footer__desc {
    font-size: 14px;
  }

  .footer__title {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .footer__list li a,
  .footer__contact-list li,
  .footer__contact-list li a {
    font-size: 14px;
  }
}

/* Footer CSS End */


.trusted-brands-section {
  background: #004aad24;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Left Pink Glow */


/* Right Cyan Glow */

/* Heading */

.slider_box .section_title {
  text-align: center;
  margin: 0 auto 45px;
}

.slider_box .section_title h3 {
  color: var(--c1);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 500;
  margin: 0;
  letter-spacing: -1px;
}

/* Slider */

.trusted_slider {
  margin: 0 -12px;
}

.trust_item {
  padding: 0 12px;
}

.trust_item img {
  width: auto;
  height: 230px;
  object-fit: contain;
  transition: .4s ease;
}

.trust_item:hover img {
  transform: translateY(-8px);
}

/* Slick Track Alignment */

.trusted_slider .slick-track {
  display: flex !important;
  align-items: center;
}

.trusted_slider .slick-slide {
  height: auto;
}

/* Dots */

.trusted_slider .slick-dots {
  bottom: -45px;
  display: flex;
  justify-content: center;
}

.trusted_slider .slick-dots li {
  margin: 0 2px;
}



/* Responsive */

@media(max-width:1200px) {

  .slider_box .section_title h3 {
    font-size: 48px;
  }

  .trust_item img {
    height: 170px;
  }
}

@media(max-width:991px) {

  .slider_box {
    padding: 0px 0px 20px;
  }

  .slider_box .section_title h3 {
    font-size: 38px;
  }

  .trust_item img {
    height: 180px;
  }
}

@media(max-width:767px) {

  .trusted-brands-section {
    padding: 40px 0;
  }

  .slider_box .section_title h3 {
    font-size: 32px;
    line-height: 1.2;
  }

  .trust_item img {
    height: 90px;
    padding: 0px;
    object-fit: contain;
  }
}





.pr-tag {
  background: linear-gradient(90deg, #ff4d79, #ff0066);
  padding: 10px 25px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.pr-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pr-title span {
  color: #ff2f7a;
}

.pr-text {
  color: #ddd;
  margin-bottom: 30px;
}

.feature-list {
  margin-bottom: 30px;
}

.feature-list div {
  margin-bottom: 15px;
}

.pr-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff4d79, #7b3ff2);
  color: #fff;
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
}

.logo-box {
  background: #fff;
  color: #000;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
}

ul.pr-list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 40px;
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

ul.pr-list li {
  position: relative;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 25px;
}

ul.pr-list li::before {
  content: "\ed31";
  font-family: 'boxicons';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  color: #fff;
  font-size: 20px;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  ul.pr-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.orm-content.alt h2 {
  font-size: 32px;
  color: #fff;
}

.slick-slide {
  float: right !important;
}

.logo_items {
  height: 95px;
  width: 195px !important;
}

.logo_items img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo_slider {
  transform: rotate(180deg);
  margin: 0 0 20px !important;
}

.logo_slider .logo_items {
  transform: rotate(180deg);
}

.logo_slider.alt {
  transform: rotate(0deg);
}

.logo_slider.alt .logo_items {
  transform: rotate(0deg);
}

.orm-content.alt p {
  font-size: 15px;
  color: #fff;
}




.wiki-services {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Pink Glow */

/* Blue Glow */


.wiki-services .container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.heading {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 60px;
}

.heading h2 {
  color: var(--c1);
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.heading p {
  color: #000;
  font-size: 14px;
  line-height: 1.4;
}

.services-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.wiki-card {
  width: 33.33%;
  background: #004aad3b;
  border: 2px solid var(--c1);
  border-radius: 18px;
  overflow: hidden;
  transition: .4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.wiki-card:hover {
  transform: translateY(-8px);
}

.wiki-img {
  padding: 18px 18px 0;
}

.wiki-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.wiki-content {
  padding: 25px 25px 0px;
  text-align: center;
}

.wiki-content h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
}

.wiki-content p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

/* Tablet */

@media(max-width:991px) {

  .services-row {
    flex-wrap: wrap;
  }

  .service-card {
    width: 48%;
  }

  .heading h2 {
    font-size: 42px;
  }

}

/* Mobile */

@media(max-width:767px) {

  .service-card {
    width: 100%;
  }

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

  .heading p {
  font-size: 14px;
  }

}

.protect {
  padding: 70px 0;
}

.orm-feature:before {
  content: "\ed31";
  font-family: 'boxicons';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--c1);
  font-size: 20px;
  transform: translateY(-50%);
}

.orm-content.alt .orm-badge {
  background: #fff;

}

.card_slider .slick-arrow {
  display: none;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li button {
  padding: 0 !important;
  width: 100%;
  height: 100%;
  background: #004aad3b;
  border-radius: 100%;
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li.slick-active button {
  background: var(--c1);
}

.custom-input::placeholder {
  color: #000;
}

textarea.form-control::placeholder {
  color: #000;
}

.innerMainFooter {
  background: #fff;
  padding: 40px 0;
  border-radius: 20px;
}

.counterNumb {
  font-size: 45px;
  color: var(--c1);
}

.counterCrd {
  text-align: center;
  border-right: 1px solid #000;
  padding: 10px 0;
}

.counterCrd p {
  font-size: 14px;
  text-transform: capitalize;
  color: #000;
  margin: 0;
}

.counterSec {
  padding: 20px 0;
  background: #c4d5ec;
}

.counterSec .col-md-3:nth-last-child(1) .counterCrd {
  border: none !important;
}

.banner {
  display: flex;
  align-items: center;
  background: #0d1117;
  height: 100%;
  width: 100%;
  position: relative;
  min-height: 85vh;
  z-index: 1;
}

.gridImg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bannerImg {
  position: absolute;
  width: 47%;
  right: 0;
  height: 100%;
}

.bannerContent h1 {
  font-size: 50px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
}

.bannerContent p {
  font-size: 14px;
  color: #fff;
  line-height: 23px;
  margin: 0;
}

.waveimg {
  width: 160px;
  margin: 0 0 20px;
  filter: hue-rotate(330deg);
}

.mainHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  width: 170px;
}

.navMenu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navMenu li a {
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navMenu li a i {
  font-size: 8px;
}

.header {
  padding: 10px 0;
}

.innerBanner {
  padding: 80px 0;
}

.innerBannerContent h1 {
  font-size: 55px;
  font-weight: 700;
  color: var(--c1);
  line-height: 1.2;
  margin-bottom: 25px;
}

.innerBannerContent p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.innerBannerContent .btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--c1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 74, 173, 0.3);
}

.innerBannerContent .btn:hover {
  background: var(--c2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

.innerBannerImg {
  width: 100%;
  height: 610px;
  border-radius: 30px;
  overflow: hidden;
}

.innerBannerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.submenu {
  position: absolute;
  background: #fff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 300ms all;
}

.submenu li a {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  background: #44444414;
}

.submenu li a:hover {
  background: var(--c1);
  color: #fff;
}

.navMenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.orm-feature b {
  display: block;
  font-weight: 400;
  font-family: 'Poppins';
}

.bannerForm {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  width: 68%;
  margin: 0 auto;
}

.bannerForm h4 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--c1);
  text-align: center;
}

.banFeild :is(input, textarea) {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #4444;
  font-size: 14px;
}

.banFeild textarea {
  height: 180px;
}

.banFeild {
  margin: 0 0 10px;
}

.banFeildBtn button {
  width: 100%;
  border: none;
}

.bannerBtns {
  gap: 10px;
}

ul.pr-list li span {
  display: block;
  width: 210px;
}

/* ===================================
Responsive Css Start
=================================== */

.menu_logo {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  box-shadow: 0 0 10px 0 #cfcfcf
}

.side_menu {
  width: 80%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all
}

.responsive_menu {
  display: none
}

.show {
  transform: translateX(0%)
}

.responsive_logo img {
  width: 80px;
}

.open_menu {
  font-size: 30px;
  color: var(--c2)
}

.side_menu li a {
  padding: 12px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500
}

.close_menu {
  width: 50px;
  text-align: end;
  padding: 8px 12px !important;
  float: inline-end;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center
}

.menu_sticky {
  position: fixed
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 200ms;
  left: -100%;
  top: 0;
  z-index: 9999
}

.responsive_overly.show {
  left: 0
}

.side_menu li.accordion-button {
  background: #fff0;
  padding: 0
}

.side_menu .accordion-item {
  background: #fff0;
  border: none
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ebc0";
  color: #000;
  font-size: 19px
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\eb8b";
  color: var(--c1)
}

.side_menu .accordion-button:not(.collapsed) {
  background: #fff0;
  box-shadow: none;
  outline: 0;
  border-color: #fff0
}

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1)
}

.close_menu i {
  font-size: 23px
}

.side_form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0 1px 0 0 #ebebeb;
  margin-bottom: 14px;
  margin-top: 0
}

.side_form input {
  background: #fff0;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%
}

.side_form button {
  background: #fff0;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between
}

.social a {
  font-size: 24px;
  color: var(--c2)
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  justify-content: space-between;
  padding-left: 14px
}

.link_colom {
  width: 100%
}

.sidenav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px
}

.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px
}

.custom-select img {
  width: 20px;
  height: 14px
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px
}

.custom-select.open .options {
  display: block
}

.side_menu ul {
  height: 84vh;
  overflow-y: auto
}

/* ===================================
Responsive Css End
=================================== */

.mobile_menu_toggle {
  display: none;
  width: 45px;
  height: 45px;
  background: rgba(30, 175, 240, 0.1);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--c1);
  font-size: 24px;
  transition: all 350ms ease;
}

.mobile_menu_toggle:hover {
  background: var(--c1);
  color: #fff;
}

/* Mobile Menu Styles */
.mobile_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  z-index: 1001;
  transition: right 400ms ease;
}

.mobile_menu.active {
  right: 0;
}

.mobile_menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease;
}

.mobile_menu_overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile_menu_content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  z-index: 9999;
}

.mobile_menu_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile_logo img {
  max-width: 120px;
  height: auto;
}

.mobile_menu_close {
  width: 40px;
  height: 40px;
  background: rgba(30, 175, 240, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c1);
  font-size: 24px;
  transition: all 350ms ease;
}

.mobile_menu_close:hover {
  background: var(--c1);
  color: #fff;
}

.mobile_nav {
  padding: 20px;
}

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

.mobile_nav ul li {
  margin-bottom: 5px;
}

.mobile_nav ul li a {
  display: block;
  padding: 11px 15px;
  color: var(--c2);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 350ms ease;
}

.mobile_nav ul li a:hover {
  background: rgba(30, 175, 240, 0.05);
  color: var(--c1);
}

.mobile_dropdown>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile_dropdown>a i {
  font-size: 14px;
  transition: transform 350ms ease;
}

.mobile_dropdown.active>a i {
  transform: rotate(180deg);
}

.mobile_dropdown_menu {
  display: none;
  padding-left: 20px;
  margin-top: 5px;
}

.mobile_dropdown.active .mobile_dropdown_menu {
  display: block;
}

.mobile_dropdown_menu li a {
  font-size: 14px;
  padding: 10px 15px;
}

.mobile_menu_contact {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
}

.mobile_menu_contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 350ms ease;
}

.mobile_menu_contact a:hover {
  background: rgba(30, 175, 240, 0.05);
  color: var(--c1);
}

.mobile_menu_contact a i {
  font-size: 18px;
  color: var(--c1);
}

/* Responsive Styles for Header */
@media (max-width: 1200px) {
  .nav_menu {
    gap: 25px;
  }

  .nav_menu li a {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .header_top_bar {
    display: none;
  }

  .header_nav {
    display: none;
  }

  .header_cta .header_btn {
    display: none;
  }

  .mobile_menu_toggle {
    display: flex;
  }

  .header_main {
    padding: 15px 0;
  }

  .header_logo img {
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  .header_main {
    padding: 12px 0;
  }

  .header_logo img {
    max-width: 110px;
  }

  .mobile_menu {
    width: 280px;
  }

  .mobile_menu_header {
    padding: 15px;
  }

  .mobile_nav {
    padding: 15px;
  }

  .mobile_menu_contact {
    padding: 15px;
  }
}


.navmenu {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
}

.navlogo {
    width: 140px;
    height: auto;
}

.navlogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}