body {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  color: #000000;
}

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

.title {
  font-size: 40px;
  color: #000;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
}

a,
img {
  outline: none;
}

img {
  max-width: 100%;
}

/* ================= NAVBAR ================= */

header {
  position: fixed;
  width: 100%;
  top: 10px;
  left: 0;
  z-index: 999;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  /*
    background:rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
	*/
}

/* ================= CTA BUTTON ================= */

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d41f1f;
  overflow: hidden;
  cursor: pointer;
  border-radius: 100px;
  border: 0px;
  padding: 13px 25px;
  display: inline-flex;
}

.button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #ffd401;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  border: 0px;
}

.button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.button span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  color: #fff;
  font-weight: 500;
  z-index: 20;
  transition: all 0.3s ease-in-out;
  display: block;
}

.button:hover span {
  color: #183153;
  animation: scaleUp 0.3s ease-in-out;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 100px;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* ================= HERO SECTION ================= */

.hero {
  height: 100vh;
  position: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 14, 32, 0.7);
  z-index: -1;
}

.hero-content {
  margin-top: 100px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.hero-content p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
}

/* ================= MOBILE MENU ================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ================= SECTION ================= */

/* ================= About Intro Section ================= */

.intro-section {
  padding: 30px 0px 50px 0%;
  background: #ffffff;
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

/* LEFT IMAGE */

.intro-image img {
  max-width: 100%;
  border-radius: 20px;
  display: block;
}

/* RIGHT CONTENT */

.intro-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #111;
}

.intro-content p {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* FEATURES LIST */

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #ff2e2e;
  color: #fff;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 14px;
}

.services {
  padding: 40px 0%;
  text-align: center;
  background: #00112b;
}

.services h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.services p {
  color: #c7d3e0;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #b61818;
}

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

.service-content {
  padding: 25px;
  color: #111;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}

.service-content h3 a {
  display: block;
  color: #000;
  font-weight: 700;
}

.service-card:hover a {
  color: #fff;
}

/* =================== SECOND SECTION =================== */

.build-section {
  margin-top: 0px;
  padding: 40px 0%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #00112b;
}

.build-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.build-left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #fff;
}

.btn {
  display: inline-block;
  background: #ff2e2e;
  padding: 14px 30px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  border: 0;
}

/* Stats Grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 25px;
}

.stat-box {
  background: #fff;
  color: #111;
  padding: 35px 20px;
  text-align: center;
  border-radius: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.stat-box h3 {
  font-size: 32px;
  color: #ff2e2e;
  font-weight: 800;
}

.stat-box p {
  font-size: 14px;
  margin-top: 8px;
  color: #000;
}

.stat-box:hover {
  background: #ff2e2e;
}
.stat-box:hover h3 {
  color: #fff;
}
.stat-box:hover p {
  color: #fff;
}

/* Partners css starts */

.partners {
  padding: 50px 0px;
}

.partners h2 {
  text-align: center;
  margin-bottom: 40px;
}

ul.focused {
  margin: 0px;
  padding: 0px;
  list-style: none;
  overflow: hidden;
  text-align: center;
}
ul.focused li {
  border: 1px solid #bbbbbb;
  padding: 10px;
  border-radius: 10px;
  color: #000;
  margin: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}
ul.focused li img {
  margin-right: 10px;
}
ul.focused li:hover {
  background: #d41f1f;
  color: #fff;
  border-color: #fff;
  transform: translateY(-5px) rotate(0deg);
}

/* Partners css end starts */

.contact-section {
  background: #00112b;
  display: flex;
}

.contact-section .title {
  color: #fff;
  padding-top: 20px;
}

.contact-section .left {
  padding: 4rem 4rem 2rem 4rem;
}

.contact-section .left p {
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
}

.contact-section .left .whatsup span {
  display: inline-block;
  margin: 15px 30px 30px 50px;
}

.contact-section .left .whatsup span a {
  display: block;
  color: #25d366;
  font-size: 23px;
  display: flex;
}

.contact-section .left .whatsup span .fa {
  font-size: 35px;
  padding-right: 5px;
}

.float-left {
  float: left;
}

.contact-section-imageholder {
  background-image: url(../images/contact-man.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}

.success-section {
  padding: 40px 0px;
  text-align: center;
}

.success-section .title span {
  font-size: 14px;
  font-weight: 400;
  color: #484141;
  display: block;
  padding-top: 15px;
}

.success-section .key-point {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.success-section .key-point img {
  width: 100%;
  border-radius: 10px;
}

.success-section .key-point::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  border-radius: 10px;
  transition: background-color 0.5s ease-out, width 0.5s ease-out;
}

.success-section .image-title {
  position: absolute;
  /* Positions the title relative to the container */
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  text-align: center;
  z-index: 2;
  /* Ensures the title is above the gradient overlay */
}

.success-section .image-title h2 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-align: left;
  line-height: 30px;
  transition: 0.3s;
}

.success-section .image-title p {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  display: none;
}

.success-section .number {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 50px;
  color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
}

.success-section .key-point:hover::before {
  background: #ff2e2e;
}

.success-section .key-point:hover p {
  display: block;
}

.success-section .key-point:hover h2 {
  font-size: 25px;
}
.bg-gray {
  background: #f2f2f2;
}
.bg-white {
  background: #fff;
}

.seo-strategies {
  padding: 0;
}
.seo-strategies p span {
  font-weight: 700;
  font-size: 20px;
  display: block;
  color: #faebd7;
}

/* ================= Our Work Section Css Start Here ================= */

.our-work {
  background-color: #00112b;
  padding: 50px 0px;
  position: relative;
}

.our-work .title {
  color: #fff;
}

.our-work .title span {
  font-size: 15px;
  color: #fff;
  letter-spacing: 30%;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 10px;
}

.image-box {
  position: relative;
}

.our-work img {
  max-width: 100%;
}

.box-content {
  opacity: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  transition: all 0.5s;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  display: flex;
  justify-content: center;
  /* Horizontal */
  align-items: center;
  /* Vertical */
}

.box-content h3 {
  color: #fff;
  font-size: 16px;
}

.box-content span {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: red;
  text-align: center;
  color: #fff;
  font-size: 30px;
  justify-content: center;
  /* Horizontal */
  align-items: center;
  display: flex;
  /* Vertical */
}

.box-content span a {
  color: #fff;
}

.image-box:hover img {
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

.image-box:hover .box-content {
  opacity: 1;
  z-index: 1;
}

.our-work .work-title {
  font-size: 16px;
  font-weight: 500;
  padding: 30px 0 0px 0;
  text-align: center;
  color: #fff;
}

.our-work .viewall {
  position: absolute;
  right: 5%;
  top: 10%;
}

.tabs {
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 60px;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  margin-bottom: 50px;
}

.tab-buttons button {
  flex: 1;
  padding: 12px 5px;
  border: none;
  background: #fafafa;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  border-radius: 50px;
  font-weight: 500;
  margin-right: 10px;
}

.tab-buttons button:hover {
  background: #ed1819;
  color: #fff;
}

.tab-buttons button.active {
  background: #ed1819;

  color: #fff;
}

.tab-buttons button span {
  background: #000;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  padding-top: 5px;
  margin-right: 10px;
}

/* Tab Content */
.tab-content {
  padding: 20px;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

ul.work-internal {
  margin: 0px;
}

ul.work-internal {
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .tab-buttons {
    flex-direction: column;
  }

  .tab-buttons button {
    border-bottom: 1px solid #eee;
    margin-top: 10px;
  }

  .tab-buttons button.active {
    border-bottom: none;
    border-left: 4px solid #007bff;
  }
  .contact-section .left .whatsup span a{ font-size: 20px;}
  .clutch-review{ padding-top: 20px;}
}

.tech {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  margin-top: 20px;
  text-align: center;
}

.tech span {
  font-weight: 600;
}

/* ================= Our Work Section Css End Here ================= */

.technology_section {
  margin: 0px;
  padding: 40px 0 0 0px;
  text-align: center;
}

.technology_section .owl-carousel .owl-item img {
  width: auto;
}

.title span {
  font-size: 14px;
  font-weight: 400;
  color: #484141;
  display: block;
  padding-top: 15px;
}

.tech-logo-container {
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.card img {
  max-height: 80px;
}

.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.testimonials_section {
  padding: 0px;
  background: #00112b;
  min-height: 500px;
}

.testimonials_section .left_holder {
  position: relative;
  /*background-image: url("../images/testimonials-left.png");*/
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials_section .left_holder .video_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.testimonials_section .right-holder {
  padding: 30px 30px 30px 30px;
}

.white-title {
  color: #fff!important;
}

.white-title span {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 30%;
  display: block;
  padding-bottom: 10px;
}

.right-holder .test-content {
  padding: 30px 0 0 0px;
}

.right-holder .test-content p {
  font-size: 14px;
  font-style: italic;
  color: #fff;
  line-height: 28px;
}

.right-holder .test-content .name {
  margin: 30px 0 0 0px;
  display: flex;
}

.right-holder .test-content .name .clnt-img-holder {
  width: 60px;
  height: 60px;
  background: red;
  border-radius: 50%;
}

.right-holder .test-content .name .clnt-img-holder img {
  width: 100%;
}

.right-holder .test-content .name .name-clnt {
  color: #e8aa00;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0 0 10px;
}

.right-holder .test-content .name .name-clnt span {
  display: block;
  font-weight: 400;
}

.testimonials_section .owl-nav {
  text-align: right;
}

.testimonials_section .owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.testimonials_section .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 30px;
  margin-right: 5px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.testimonials_section .owl-carousel .owl-nav button.owl-next:hover {
  background: #da2725;
}

.testimonials_section .owl-carousel .owl-nav button.owl-prev:hover {
  background: #da2725;
}

.work_process {
  padding: 40px 0;
}

.work_process h2 {
  text-align: center;
  margin-bottom: 40px;
}

.work_process .number {
  background: #0f172a;
  padding: 20px 40px;
  text-align: left;
  height: 230px;
}

.work_process .number .title2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: #fff;
  padding: 20px 0;
}

.work_process .number span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.work_process .number p {
  font-size: 14px;
  color: #fff;
}

.work_process .red {
  background: #da2725;
}

.work_process img {
  width: 100%;
  height: 460px;
}

.number:hover span {
  background: #fff;
  color: #000;
}

.faq-section {
  padding: 40px 0px;
}

.faq-section p {
  font-size: 14px;
  color: #000000;
  line-height: 1.8;
  padding: 10px 0px;
}

.faq-section .faq-img {
  margin-top: 50px;
  transition: all 0.3s ease;
}
.faq-section .faq-img img {
  transition: all 0.3s ease;
}

.faq-section:hover img {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.acc-main {
  padding: 40px 0px 80px;
  color: #000;
}

.faq-section:hover {
  background: #e4f7ff;
}

.pockets-main h1 {
  font-size: 60px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #111;
  margin: 0 0px 35px;
}

.intro-cont h3 {
  font-size: 35px;
  font-weight: 600;
  color: #111;
  margin: 50px 0;
}

.kind h2 {
  text-align: center;
  font-size: 45px;
  font-weight: 600;
  color: #111;
  margin: 50px 0 30px;
}

/*accordion*/
.accordion-main {
  margin-bottom: 36px;
}

.accordion-main:last-child .accordion_body {
  padding-bottom: 0;
}

.accordion_head {
  /*background-color: #111;*/
  color: #000;
  cursor: pointer;
  font-size: 16px;
  padding: 12px 10px;
  font-weight: 600;
}

.accordion_body {
  background: transparent;
  font-size: 15px;
}

.accordion_body img {
  width: 100%;
  max-width: 230px;
  margin-bottom: 30px;
}

.accordion_body p {
  margin: 0px;
  color: #000000;
}

.accordion_body h3,
.div-bott h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 15px 0;
  color: #1e352e;
}

.div-bott h3 {
  font-size: 35px;
}

.div-bott {
  text-align: center;
}

.div-bott p {
  font-size: 24px;
}

.plusminus {
  float: right;
  font-size: 25px;
  margin-top: -8px;
}

.coll-back {
  background-color: #fff;
  color: #111;
  border: 1px solid #000000;
}

.hr-clc {
  height: 4px !important;
  background: #000000;
  margin-top: 18px;
  width: 17px;
  padding: 0;
  border: 0;
  margin-left: -20px;
}

/*media queries*/
@media (min-width: 992px) and (max-width: 1100px) {
  .pockets-main p {
    font-size: 22px;
    width: 684px;
    margin: 0 auto;
    margin-bottom: 20px !important;
  }

  .accordion_body {
    padding: 35px 40px 5px;
  }

  .accordion_body img {
    max-width: 205px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pockets-main {
    padding: 30px 15px;
  }

  .pockets-main h1 {
    font-size: 45px;
    margin: 0 0px 20px;
  }

  .pockets-main p {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    width: 600px;
    margin: 0 auto;
  }

  .intro-cont h3,
  .div-bott h3 {
    font-size: 30px;
    margin: 35px 0;
  }

  .kind h2 {
    font-size: 30px;
    margin: 35px 0 30px;
  }

  .accordion_head {
    font-size: 20px;
    padding: 11px 18px;
  }

  .plusminus {
    font-size: 27px;
    margin-top: -5px;
  }

  .accordion-main {
    margin-bottom: 24px;
  }

  .hr-clc {
    margin-top: 16px;
    width: 15px;
    margin-left: -15px;
  }

  .accordion_body {
    font-size: 18px;
    padding: 30px 40px 5px;
  }

  .accordion_body img {
    width: 100%;
    max-width: 185px;
    margin-bottom: 20px;
  }

  .accordion_body h3 {
    font-size: 24px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .pockets-main {
    padding: 35px 15px;
  }

  .pockets-main h1 {
    font-size: 40px;
    margin: 0 0px 30px;
  }

  .pockets-main p {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    width: 400px;
    margin: 0 auto;
  }

  .intro-cont h3,
  .div-bott h3 {
    font-size: 26px;
    width: 400px;
    margin: 30px auto;
    line-height: 1.2 !important;
  }

  .div-bott h3 {
    width: unset;
  }

  .kind h2 {
    font-size: 26px;
    margin: 30px 0 30px;
  }

  .accordion_head {
    font-size: 20px;
    padding: 10px 15px;
  }

  .accordion-main {
    margin-bottom: 25px;
  }

  .plusminus {
    font-size: 30px;
    margin-top: -5px;
  }

  .accordion_body {
    padding: 30px 25px 5px;
  }

  .accordion_body img {
    max-width: 170px;
    margin-bottom: 20px;
  }

  .hr-clc {
    margin-top: 17px;
    width: 16px;
  }

  .accordion_body h3 {
    font-size: 22px;
    margin: 15px 0;
  }
}

@media (max-width: 575px) {
  .pockets-main {
    padding: 15px 0px;
  }

  .pockets-main h1 {
    font-size: 30px;
    margin: 0 0px 15px;
  }

  .pockets-main p {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  .intro-cont h3,
  .kind h2,
  .div-bott h3 {
    margin: 30px 0px;
    line-height: normal !important;
    font-size: 24px;
  }

  .accordion_head {
    font-size: 16px;
    padding: 8px 12px;
  }

  .plusminus {
    font-size: 27px;
    margin-top: -32px;
  }

  .accordion-main {
    margin-bottom: 12px;
  }

  .accordion_body {
    font-size: 18px;
    padding: 10px 0px 5px;
    text-align: left;
  }

  .accordion_body img {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .accordion_body h3 {
    font-size: 18px;
    margin: 10px 0;
    line-height: normal;
  }

  .hr-clc {
    height: 2px;
    margin-top: 16px;
    width: 15px;
    margin-left: -15px;
  }
}

.reach-out-section {
  background: #0f172a;
  padding: 80px 0 30px 0px;
  position: relative;
}

.reach-out-section p {
  color: #fff;
  font-size: 14px;
  padding-top: 10px;
}

.email-box {
  background: #232c40;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  display: inline-block;
  margin: 20px 20px 0 0;
}

.email-box .heading {
  font-size: 18px;
  color: #609fff;
  font-weight: 700;
}

.email-box .heading i {
  margin-right: 10px;
  font-size: 25px;
}

.email-box span {
  font-size: 16px;
  color: #fff;
  display: block;
  padding-top: 10px;
}

.email-box span a {
  color: #fff;
  text-decoration: none;
}

.email-box span a:hover {
  color: #da2725;
}

.reach-out-section .arror-or {
  margin: 30px 0 30px 0;
}

.rocket {
  position: absolute;
  left: 40%;
  bottom: -2px;
  transition: all 0.3s ease;
}
.reach-out-section:hover .rocket {
  transition: all 0.3s ease;
  margin-left: 40px;
}

.email-box:hover {
  background: #000;
}

/*
 .reach-out-section .form-section::before{ background: #DDDDDD; position: absolute; right: 0px; top: 10%; content: ""; width: 80% ; height: 80%
  ; border-radius: 20px; z-index: 0;}
  */

.reach-out-section .form-section {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  z-index: 100;
}

.reach-out-section .form-section p {
  font-size: 16px;
  color: #000;
  text-align: center;
}

.field {
  margin-top: 20px;
}

.field label {
  font-size: 14px;
  color: #000;
  padding: 0px 10px;
}

.input-text {
  border: 1px solid #c5c5c5;
  height: 55px;
  line-height: 55px;
  font-size: 14px;
  color: #484141;
  border-radius: 50px;
  width: 100%;
  padding-left: 20px;
}

.messagebox {
  border: 1px solid #c5c5c5;
  font-size: 14px;
  color: #484141;
  border-radius: 50px;
  width: 100%;
  height: 100px;
  padding: 20px 0px 0px 20px;
  resize: none;
}

.clientlist-section {
  padding: 40px 0px;
  text-align: center;
}

.clientlist-section ul {
  list-style: none;
  overflow: hidden;
  padding: 0px;
}

.clientlist-section ul li {
  border: 1px solid #c5c5c5;
  padding: 10px 10px;
  border-radius: 10px;
  margin: 0px 10px;
  width: 18%;
  height: 120px;
  justify-content: center;
  align-items: center;
  display: flex;
  float: left;
  margin: 1%;
}

.clientlist-section ul li span {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  display: block;
  padding-top: 5px;
}
.dm ul li {
  display: block;
}

.clientlist-section ul li:hover {
  border-color: #d41f1f;
}

.clientlist-section ul li img {
  transition: 0.3s;
  max-width: 100%;
}
.clientlist-section ul li:hover img {
  transform: scale(1.1);
}

.get-started {
  background: #da2725;
  padding: 40px 20px;
  position: relative;
}

.get-started .title {
  font-weight: 300;
  color: #fff;
  line-height: 40px;
}

.get-started .btns {
  margin: 0;
  position: absolute;
  right: 30%;
  top: 40%;
}

.get-started .title span {
  display: block;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
}

.get-started .button {
  background: #fff;
  color: #000;
}

.get-started .button span {
  color: #000;
}

.get-started .button2 {
  background: #000000;
}

.get-started .button2 span {
  color: #25d366;
}

.get-started .button2 span i {
  font-size: 20px;
}

.get-started .cont-grl {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.footer-section {
  background: #000;
  padding: 40px 40px 0 40px;
}

.footer-section .footer-about {
  margin: 0px;
}

.footer-section .footer-about p {
  color: #999999;
  font-size: 14px;
  padding-top: 10px;
}

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

ul.footer-link li {
  color: #999999;
  font-size: 14px;
  padding: 20px 0 0 0;
  transition: transform 0.3s ease;
}

ul.footer-link li a {
  color: #999999;
  transition: all 0.3s ease;
}

ul.footer-link li a:hover {
  color: #da2725;
  padding-left: 5px;
}

.footer-section .footer-heading {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.footer-section .footer-payment {
  margin: 30px 0 0 0;
}

.footer-section .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  text-align: center;
  color: #000;
  padding-top: 8px;
  transition: all 0.3s ease;
}

.footer-section .social-link:hover {
  background: #da2725;
  color: #fff;
  transform: translateY(-5px) rotate(360deg);
}

.footer-section .social-link:hover svg path {
    fill: #fff;
}

.location-box {
  background: #0c0b0b;
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
  transition: all 0.3s ease;
}

.location-title {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  padding: 20px 0px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.location-box:hover {
  background: #790b09;
}

.location-box img {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.location-box:hover img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.contact-item span {
  padding-left: 10px;
}

.contact-item i {
  padding: 5px 0 0 0;
}

.contact-item a {
  color: #fff;
}

.contact-item a:hover {
  color: #da2725;
}

.copy {
  color: #505050;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid #060606;
  margin-top: 50px;
  padding: 20px 0 20px 0;
}

.intro-content {
  padding: 0px 30px 0px 30px;
}

/* =================== Website-Designing-Development css start here =================== */

.inner-hero {
  padding: 0px;
  text-align: center;
  position: relative;
}

.inner-hero .strip {
  position: absolute;
  right: 0;
  bottom: 50px;
}
.inner-hero .content {
  padding: 100px 10px 50px 10px;
}
.inner-hero .content h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  padding-top: 50px;
}
.inner-hero .content p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  color: #fff;
}

ul.breadcrumb {
  margin-top: 50px;
  border: 1px solid #242f43;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  display: inline-flex;
}
ul.breadcrumb li {
  font-size: 14px;
  color: #fff;
  padding: 0px 5px;
}
ul.breadcrumb li a {
  color: #da2725;
}

.development-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  margin-top: 20px;
  min-height: 310px;
  transition: all 0.3s ease;
}
.development-card .iconset {
  display: flex;
}
.development-card .icon {
  background: #0d162a;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}
.development-card:hover .icon {
  background: #d41f1f;
  transform: translateY(-5px) rotate(360deg);
}

.development-card .tittle-heading {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  padding-left: 15px;
}
.development-card .tittle-heading span {
  display: block;
}
.development-card p {
  font-size: 16px;
  padding: 20px 0;
  color: #000;
  margin: 0px;
}
.edge-technology {
  padding: 40px 0px;
  text-align: center;
}
ul.tech {
  margin: 0;
  text-align: center;
  display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}
ul.tech li {
  padding: 20px;
  display: inline;
}

ul.tech li img {
 
  height: 80px;
}
ul.tech li span{ color: #5e5e5e; display: block; padding-top: 10px;}


.development-card .tabs {
  border: 1px solid red;
}
.development-card .tab-buttons {
  border: 1px solid #000;
}

.perposal-section {
  padding: 60px 0px;
  text-align: center;
  background-image: url(../images/proposal-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}

.perposal-section .request-form {
  display: flex;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
}
.form-field {
  margin: 40px 0 0 10px;
}
.input-field {
  width: 400px;
  height: 50px;
  border-radius: 100px;
  border: 0px;
  padding: 0 15px;
  font-size: 14px;
}

.best-choise {
  padding: 40px 0;
  text-align: center;
}
.best-choise p {
  padding-top: 20px;
}
.best-choise .development-card {
  border: 1px solid #6d6d6d;
}
.best-choise .development-card .tittle-heading {
  color: #da2725;
}
.best-choise .development-card {
  min-height: inherit;
}
.best-choise .development-card:hover {
  background: #000;
}
.best-choise .development-card:hover p {
  color: #fff;
}
.best-choise .development-card:hover img {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.best-choise .development-card:hover img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.work {
  padding: 60px 0px;
  background: #0f172a;
  text-align: center;
}
.work p {
  color: #fff;
  padding-top: 10px;
  font-size: 15px;
}
.work p span {
  display: block;
}
.work-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.work-box .heading {
  font-size: 20px;
  color: #000;
  padding: 20px 0px;
  font-weight: 600;
}
.work-box .heading a {
  text-decoration: none;
  color: #000;
}
.work-box .heading a:hover {
  color: #d41f1f;
}
.work-box .technology {
  border-radius: 10px;
  padding: 10px;
  color: #484141;
  text-align: center;
}

.tab-buttons {
  margin-bottom: 0px;
}

.work-box .technology span.title3 {
  background: #dcdbdb;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
}

ul.tech2 {
  margin: 20px 0 0 0px;
  padding: 0px;
}
ul.tech2 li {
  margin-bottom: 9px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  box-shadow: rgb(0 0 0 / 18%) 0px 5px 15px;
  padding: 9px 12px;
  border-radius: 30px;
  list-style: none;
  margin-top: 10px;
}

ul.tech2 li img {
  width: 26px;
  height: auto;
  margin-right: 5px;
}

.work-btn {
  margin-top: 20px;
}
.work-btn a {
  margin-top: 10px;
}

.work-box .technology span {
  font-weight: 600;
}
.work-box img {
  max-width: 100%;
}
/*
.work-box img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
  */

.engagement-models {
  padding: 50px 0;
  text-align: center;
}

.engagement-card {
  background: #000;
  padding: 60px 20px 20px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.engagement-card .heading {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding: 10px;
}
.engagement-card p {
  font-size: 14px;
  color: #fff;
  line-height: 25px;
}
.engagement-card .number {
  font-size: 30px;
  color: #2472e8;
  font-weight: 700;
  position: absolute;
  left: 20px;
  top: 20px;
  transition: transform 0.3s ease;
}
.engagement-card:hover {
  background: #da2725;
}
.engagement-card:hover .number {
  color: #fff;
  transform: scale(1.2);
}

.build {
  background: #0f172a;
  padding: 50px 0;
  text-align: center;
}
.build p {
  color: #fff;
}
.build .buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.white-btn {
  background: #fff;
}
.white-btn span {
  color: #000;
}
.build span {
  margin: 0px 5px;
}

.min-height{ min-height: inherit;}

/* =================== Website-Designing-Development css end here =================== */

/* =================== E-commerce  Development css start here =================== */

.experienced-team {
  padding: 50px 0px;
  position: relative;
  z-index: 99;
}
.experienced-team .left-side {
  padding: 0px;
}
.experienced-team .left-side p {
  font-size: 20px;
  color: #000;
  line-height: 40px;
  padding-top: 20px;
}
.experienced-team .left-side p span {
  font-weight: 600;
}
.experienced-team .right-side {
  padding: 0px;
}
.experienced-team .right-side img {
  width: 100%;
}

.have-ques {
  background: #da2725;
  padding: 50px;
  position: relative;
  margin-top: -120px;
}
.have-ques .button {
  background: #fff;
  color: #000;
  margin-top: 20px;
}
.have-ques .button span {
  color: #000;
}

.whyneed-ecom {
  padding: 50px 0px;
}
.first-section {
  padding: 0px;
}
.first-section img {
  width: 100%;
}
.first-section p {
  padding-top: 20px;
  font-size: 16px;
  color: #000;
}
ul.list {
  margin: 40px 0 0 0;
  list-style: none;
    padding: 0px;
    transition: box-shadow .3s;
}
ul.list li {
  position: relative;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-top: 20px;
  padding-left: 25px;
}





ul.list li::before {
  content: "";
  position: absolute; /* Positions the icon in the space created by padding */
  left: 0;
  top: 12px;
  background-image: url("../images/listing-icon.png");
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.main {
  position: relative;
  margin: 50px;
}

.main .inner {
  position: relative;
  display: flex;
  margin: 0 -5px;
}

.main .card {
  position: relative;
  flex-grow: 1;
  background: var(--events-image) no-repeat center / cover;
  height: 400px;
  border-radius: 0.5rem;
  margin: 0 5px;
  transition: 0.5s;
  
}

.main .card:hover {
  /* flex-grow: 1.7; */
}

.main .card .text {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, black, transparent);
  padding: 15px;
  /*height: 40vh;*/
  width: 100%;
  
}

.main .card .text h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.main .card .text p {
  font-size: 12px;
  color: #fff;
  line-height: 20px;
}

/* =================== E-commerce  Development css end here =================== */

.megento-card {
  margin: 0px;
}
.megento-card .development-card {
  min-height: 300px;
}
.megento-card .development-card .iconset {
  align-items: center;
}
.award-magento {
  margin: 0px;
}
.award-magento p {
  font-size: 16px !important;
  line-height: 26px !important;
}
.megento-tab {
  padding: 60px 20px 20px 20px;
  background: #ffffff;
}
.megento-tab .tabs {
  margin-top: 0px;
}
.megento-tab .tab-buttons {
  margin-bottom: 20px;
}
.megento-tab .tab-buttons button {
  border: 1px solid #555555;
}

.megento-tab .tab-buttons button span {
  color: #fff;
  line-height: 24px;
}
.megento-tab h3 {
  padding-bottom: 20px;
}

.why-choose {
  background: #0f172a;
}
.why-choose .left {
  padding: 10%;
}
.why-choose .right {
  padding: 0 0 0 0;
}
.why-choose .right img {
  width: 100%;
}
.why-choose ul li {
  color: #fff;
  font-weight: 400;
}
.power {
  text-align: center;
}

.why-choose-imageholder {
  background-image: url("../images/why-choose.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}

.center {
  text-align: center;
}

.misson-outer {
  padding: 0px;
}
.misson-outer .left {
  padding: 0px 0 0 40px;
  background: #0f172a;
}
.misson-outer .left .heading {
  font-size: 30px;
  color: #fff;
  padding-top: 0px;
}
.misson-outer .left p {
  color: #fff;
  padding: 20px 50px 50px 0;
  font-size: 14px;
}
.mission-icon {
  padding: 40px 0;
}
.misson-outer .left .imageholder {
  background-image: url("../images/vision.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}

.misson-outer .right {
  padding: 0px;
  background: #da2725;
}
.misson-outer .right .heading {
  font-size: 30px;
  color: #fff;
  padding: 0 0 0 40px;
}
.misson-outer .right p {
  color: #fff;
  padding: 20px 50px 50px 40px;
  font-size: 14px;

}
.misson-outer .right .mission-icon {
  padding: 40px;
}
.misson-outer .right .imageholder {
  background-image: url("../images/misson.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}

.numbers {
  padding: 50px 0 0 0;
  text-align: center;
}
ul.number-box {
  list-style: none;
  display: flex;
}
ul.number-box li {
  border: 1px solid #bababa;
  border-radius: 10px;
  padding: 10px;
  margin: 20px;
  width: 250px;

  background-image: linear-gradient(#ed1819, #ed1819);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s;
}
ul.number-box li .title {
  font-size: 38px;
  color: #ed1819;
  padding: 10px 20px;
}
ul.number-box li p {
  color: #000;
}

ul.number-box li:hover {
  background-size: 100% 100%;
}
ul.number-box li:hover .title {
  color: #fff;
}
ul.number-box li:hover p {
  color: #fff;
}

.hallmark {
  padding: 50px 0;
  text-align: center;
}
.hallmark p {
  color: #000;
  padding-top: 20px;
}

.why-better {
  padding: 50px 0;
}
.why-better img {
  max-width: 100%;
}
.why-better .content-area {
  padding: 10px;
}

.why-better .content-area p {
  color: #000;
  font-size: 16px;
  padding-top: 10px;
}
.why-better .content-area ul {
  margin: 0px;
  padding: 10px 0 0 0px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.why-better .content-area ul li {
  background: #000000;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  margin: 4px;
  display: block;
  width: 180px;
}
.why-better img {
  max-width: 100%;
  display: block;
  margin: 5px;
}

.hover-4 {
  border: 6px solid;
  border-image: repeating-linear-gradient(
      135deg,
      #7e6b15 0 10px,
      #e97f02 0 20px,
      #da2725 0 30px
    )
    6;
  -webkit-mask: conic-gradient(
        from 180deg at top 8px right 8px,
        #0000 90deg,
        #000 0
      )
      var(--_i, 200%) 0 /200% var(--_i, 8px) border-box no-repeat,
    conic-gradient(at bottom 8px left 8px, #0000 90deg, #000 0) 0
      var(--_i, 200%) / var(--_i, 8px) 200% border-box no-repeat,
    linear-gradient(#000 0 0) padding-box no-repeat;
  transition: 0.3s, -webkit-mask-position 0.3s 0.3s;
}
.hover-4:hover {
  --_i: 100%;
  color: #da2725;
  transition: 0.3s, -webkit-mask-size 0.3s 0.3s;
}

.leadeship {
  padding: 50px;
  background-image: url("../images/leader-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}
.leadeship .content-area {
  padding: 50px 100px 0 0;
}
.leadeship .content-area p {
  color: #fff;
  padding-top: 20px;
}
.leadeship .content-area .name {
  font-size: 24px;
  color: #da2725;
  margin-top: 50px;
  border-left: 5px solid #da2725;
  padding-left: 10px;
}
.leadeship .content-area .name span {
  display: block;
  color: #9a9a9a;
  font-size: 15px;
}

.life-df {
  padding: 50px 0 0 0;
  text-align: center;
}
.life-df img {
  width: 100%;
}
.life-df .image-holder {
  margin: 0;
}
.life-df p {
  padding-top: 10px;
  color: #000;
}

.life-df .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.life-df .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 0.8s ease-in-out;
  margin-top: 20px;
}

.life-df .image-wrapper img:hover {
  -webkit-transform: scale(1.05);
}

.job-title {
  text-align: center;
  padding: 50px 0 0 0;
  font-weight: 700;
  -webkit-text-stroke: 1px #d41f1f;
  color: white;
  font-size: 50px;
  background: linear-gradient(#d41f1f, #d41f1f) left no-repeat, #ffffff;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s ease-in-out;
  line-height: 60px;
}

.job-title:hover {
  background-size: 100% 100%;
}
.process {
  margin: 0px;
}
.process .left p {
  font-size: 16px;
}

/* =================== Career page css start here =================== */
.skill {
  padding: 10px;
}
.skill .title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  padding: 10px 0;
}
.skill p {
  font-size: 14px;
}
.opening-job {
  padding: 50px 0 50px 0px;
  text-align: center;
}
.post-box {
  border: 1px solid #cecece;
  border-radius: 10px;
  padding: 20px 20px 10px 20px;
  text-align: left;
  margin-top: 50px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  transition: all 0.3s ease;
}
.post-box:hover {
  background: #e2ebff;
  transform: translateY(-5px) rotate(0deg);
}
.post-box .title {
  font-size: 16px;
}
.post-box .profile {
  display: flex;
}
.post-box .profile span {
  margin: 10px 10px 10px 0px;
}
.post-box .profile span i {
  color: #d41f1f;
}
.post-box p {
  color: #000;
}
.process2 {
  background: #0f172a;
  padding: 50px 0 200px 0px;
  text-align: center;
}
.process2 .engagement-card {
  margin-top: 40px;
  text-align: left;
}
.process2 .engagement-card .heading {
  padding: 10px 0 10px 0;
}
.process2 .engagement-card .icon {
  margin: 10px 0px;
}
.process2 .engagement-card .number {
  color: #fff;
  left: auto;
  right: 20px;
  top: 20px;
}
.career-image {
  position: relative;
  margin: -100px 0 100px 0;
  text-align: center;
}
.benefits {
  background: #0f172a;
  padding: 50px 0px;
  text-align: center;
}
.benefits-holder {
  text-align: left;
  padding: 10px;
  margin-top: 30px;
  border: 1px solid #2d4680;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}
.benefits-holder .title {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 20px 0;
  text-transform: capitalize;
}
.benefits-holder p {
  color: #fff;
  font-size: 14px;
}
.benefits-holder img {
  width: 100%;
  transition: all 0.3s ease;
}
.benefits-holder:hover img {
  border-radius: 20px;
}
.benefits-holder:hover {
  background: #d41f1f;
}

.post-box2 {
  margin: 0px;
  padding: 40px;
}
.post-box2 .title {
  font-size: 20px;
  padding-top: 30px;
}
.post-box2 .title:first-child {
  padding-top: 0px;
}
.post-box2 .profile {
  display: block;
  padding-top: 20px;
}
.post-box2 .profile span {
  font-weight: 600;
}
.post-box2 ul.list {
  margin-top: 20px;
}
.post-box2 ul.list li {
  font-weight: 500;
}
.post-box2 .applay {
  margin-top: 40px;
}

.Carrre-form {
  padding: 40px;
  background: #000;
  border-radius: 10px;
}
.Carrre-form .title {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 20px;
}
.form-holder {
  padding: 0px;
  margin: 10px 0 0 0px;
}
.form-holder label {
  font-size: 15px;
  color: #fff;
  display: block;
  padding: 10px 0px;
}
.form-fields {
  border-radius: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  width: 100%;
  background: #fff;
}

/* =================== Career page css end here =================== */

/* =================== Team page css start here =================== */

.team {
  padding: 50px 0;
  text-align: center;
}
.team-box-content {
  padding: 20px;
  position: relative;
  margin-top: -100px;
  background: antiquewhite;
  width: 80%;
  margin: -56px auto 30px auto;
  border-radius: 10px;
}

.team img {
  border: 4px solid #d41f1f;
  border-style: outset;
  border-radius: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team img:hover {
  transform: translateY(-20px);
}

.team-box-content .title {
  font-size: 20px;
  color: #000;
}
.team-box-content p {
  font-size: 14px;
  color: #000;
  padding-top: 10px;
}
ul.social-link {
  padding: 0px;
  margin: 0;
  display: flex;
  list-style: none;
  justify-content: center; /* Centers content horizontally along the main axis */
  align-items: center;
  z-index: 2;
  transition: all 0.4s ease;
}
ul.social-link li {
  font-size: 15px;
  color: #000;
}
ul.social-link li a {
  color: #000;
  padding: 0px 5px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 60px;
  text-align: center;
  display: block;
  margin: 0 4px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
ul.social-link li a:hover {
  background: #d41f1f;
  color: #fff;
  transform: translateY(-5px) rotate(360deg);
}

/* =================== Team page css start here =================== */
.testimonials {
  padding: 50px 0;
  text-align: center;
}
.video-box {
  padding: 16px;
  border: 1px solid #bebebe;
  border-radius: 10px;
  margin-bottom: 25px;
}
.video-box p {
  font-size: 15px;
  text-align: left;
  padding: 10px;
  margin: 0px;
  color: #000;
}
/* =================== Team page css end here =================== */

/* =================== Portfolio page css start here =================== */
.portfolio {
  padding: 50px 0px;
  text-align: center;
  color: #000;
}
.portfolio .title {
  color: #000;
}
.portfolio .title span {
  color: #000;
}
.portfolio .tab-buttons button {
  border: 1px solid #000;
}
.portfolio .work-title {
  color: #000;
}
.portfolio .tech {
  border: 1px solid #000;
  color: #000;
}
.development-card .icon img {
  filter: brightness(0) invert(1);
  width: 40px;
}

/* =================== Portfolio page css end here =================== */

.solve {
  padding: 50px 0;
  text-align: center;
  background: #135799;
}
.solve .tick-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.solve .tick-list-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  font-size: 18px;
  color: #000;
  font-weight: 600;
  border-left: 4px solid #d41f1f;
}

.solve .tick-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.solve .tick-list-column {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.solve .tick-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background: #d41f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.choose-title2 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}
.need {
  padding: 20px;
}
.need .engagement-card {
  padding: 20px;
}
.need .heading {
  padding: 20px 0px;
  font-size: 18px;
}
.bd {
  border: 1px solid #000;
}
.angularjs-tech .service-card:hover h3 {
  font-size: 28px;
  color: #ffffff;
}
.angularjs-tech .service-card:hover p {
  color: #fff;
}

.hire {
  padding: 0px;
}
.hire .development-card {
  min-height: auto;
}
.hire .development-card .tittle-heading {
  padding: 0;
}

.packages {
  margin: 0px;
}
.packages .development-card p {
  padding: 15px 0 0px 0px;
}
.packages .development-card .tittle-heading {
  padding: 10px 20px;
  font-size: 20px;
  background: #ffc107fa;
  margin-top: 20px;
  border-radius: 10px;
}
.packages .development-card img {
  border-radius: 10px;
  transition: 1.7s;
  -webkit-transition: 1.7s;
  -moz-transition: 1.7s;
  -ms-transition: 1.7s;
  -o-transition: 1.7s;
}

.packages .development-card:hover img {
  transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transform-origin: center;
  -moz-transform-origin: center;
  -webkit-transform-origin: center;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive .table thead th {
  background-color: #d41f1f;
  color: #fff;
  font-size: 18px;
  padding: 12px;
  font-weight: 600;
  
}
.table-responsive .table tbody tr td {
  text-align: center;
  color: #000;
  padding: 10px;
  border:1px solid #9e9e9e;
}
.table-responsive .table tr td {
  width: 20%;
}

.plan-section {
  margin: 20px 0px;
}
.plan-section .accordion-main {
  margin-bottom: 10px;
  text-align: left;
  padding: 0px 0px;
}
.plan-section .acc-main {
  padding: 0px;
}
.plan-section .accordion_head {
  background: #ff00001c;
  padding: 20px;
}
.plan-section .coll-back {
  border-color: #d41f1f38;
}
.price .tab-buttons {
  background: #00000024;
  padding: 20px;
  border-radius: 100px;
}
.price .tab-buttons button {
  font-size: 18px;
}
.contact-section-main {
  padding: 50px 0;
}
.contact-container {
  background: #ff00001a;
  border-radius: 20px;
  padding: 50px;
}
.terms {
  margin: 0px;
}
.terms h4 {
  font-size: 20px;
  margin-top: 10px;
}
.terms ul.list {
  padding-bottom: 20px;
}

.faq {
  padding: 40px;
  background: #f0f8ff;
}
.faq .acc-main {
  padding-bottom: 0px;
}
.faq .accordion_body p {
  padding-top: 10px;
}

#button {
  display: inline-block;
  background-color: #d41f1f;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content box */
.df-popup .modal-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 900px;
    /* width: 95%; */
    background: #fff;
    border-radius: 6px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
  
}

/* Close button */
.close {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 25px;
  cursor: pointer;
  color: #d41f1f;
}

.modal-form {
  background: #fff;
  padding: 30px 20px 30px 20px;
  border-radius: 20px;
  text-align: left;
}
.modal-form .modal-title {
  font-size: 20px;
}
.modal-form p {
  font-size: 14px;
  padding-top: 10px;
  margin: 0px;
}
.modal-form .field {
  margin-top: 10px;
}
.modal-form .input-text {
  height: 46px;
  line-height: 46px;
}
.modal-form .messagebox {
  height: 80px;
}
.outer-form {
  padding: 0;
}
.form-image-holder {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}

.sf-select {
  appearance: none; /* Disable the default arrow */
  -webkit-appearance: none; /* For WebKit-based browsers */
  -moz-appearance: none; /* For Firefox */
  width: 100%;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}

/* =================== BLOG PAGE CSS START HERE =================== */

.blog-section {
  padding: 40px 0px;
  text-align: center;
}
.blog-box-outer {
  padding: 12px 0px;
}
.blog-box {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 10px;
  border: 1px solid #cecece;
  border-radius: 4px;
  box-shadow: 0px 5px 15px #ddd;
  box-shadow: 0px 0px 0px 0px rgb(0, 0, 0);
  transition: all 100ms ease-in;
  background-color: inherit;
}

.blog-box:hover {
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
}

.blog-box .blogname {
  font-size: 20px;
  color: #0c0f33;
  line-height: 30px;
  padding: 15px 15px 0 15px;
  font-weight: 600;
}

.blog-box .blogname a {
  color: #000;
}
.blog-box .blogname a:hover {
  color: #da2725;
}
.user {
  width: 100%;
  padding: 15px 15px;
  border: none;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.user img {
  border-radius: 100%;
  width: 30px;
  height: 30px;
}

.blog-box p {
  padding: 0px 15px 0px 15px;
}

.blog-section .tab-buttons button {
  border: 1px solid #000;
  margin-bottam: 10px;
}
.blog-section .tab-buttons {
  margin: 20px;
}

.blog-detail-left {
  padding: 0px;
  text-align: left;
}
.blog-section p {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  padding-top: 15px;
  margin: 0px;
}

.blog-detail-left .title {
  font-size: 30px;
  padding-top: 20px;
}
.blog-detail-left h3 {
  font-size: 24px;
  padding-top: 20px;
}

.blog-sidebar {
  padding: 30px 20px;
  border: 1px solid #e5e5e5;
  text-align: left;
  border-radius: 20px;
  background: #f9f9f9;
  margin-bottom: 20px;
}

.blog-sidebar .title {
  font-size: 20px;
  color: #000;
}
.leave-comment {
  background: #f0f0f0;
  padding: 20px 40px;
  border-radius: 20px;
  margin-top: 20px;
}
ul.blog-popular {
  margin: 15px 0 0 0px;
  padding: 0px;
}
ul.blog-popular li {
  border-bottom: 1px solid #cac6c6;
  padding: 15px 0px;
  list-style: none;
  display: flex;
}
ul.blog-popular li:nth-last-child(1) {
  border: 0px;
}
ul.blog-popular li .left-imageholder {
  width: 150px;
}
ul.blog-popular .right-content {
  padding-left: 10px;
}
ul.blog-popular .right-content p {
  line-height: 15px;
  font-size: 14px;
  padding: 0px;
  font-weight: 500;
}
ul.blog-popular .right-content p a {
  color: #000;
}
ul.blog-popular .right-content p a:hover {
  color: #da2725;
}

ul.blog-popular li img {
  height: auto;
  max-width: 100%;
}
ul.blog-popular li .wpp-list li .wpp-post-title {
  display: table-cell;
  width: 72%;
  height: auto;
  padding-left: 15px;
}
.related-post-section {
  text-align: left;
  padding: 50px 0px;
}
.author {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0px;
}
.image-holder {
  width: 150px;
}
.image-holder img {
  border-radius: 100%;
  width: 100px;
  height: 100px;
}
.author-content {
  padding: 0px;
}
.author-social {
  margin-top: 10px;
}
.author-social a {
  font-size: 20px;
  margin-right: 10px;
  color: #000;
  border: 1px solid #cccc;
  padding: 5px 10px;
  border-radius: 5px;
}
.author h3 {
  font-size: 16px;
}

/* =================== BLOG PAGE CSS END HERE =================== */

/* =================== PAYMENT PAGE CSS START HERE =================== */

.payment {
  padding: 50px 0px;
}
.payment-outer {
  background: #c1d4fc;
  border-radius: 30px;
  padding: 30px;
}
.option-1 {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
}
.option-1 .payment-title {
  font-size: 20px;
}

.option-2 {
  background: #a9c2f7;
  border-radius: 20px;
  padding: 50px;
}
.option-2 .payment-title {
  font-size: 20px;
}
.bank-information {
  background: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  margin-top: 10px;
}
.bank-information span {
  font-weight: 600;
}


.sitemap ul.list{ padding: 20px; border:1px solid #ccc; border-radius: 10px;}
.sitemap ul.list li a{ color: #4a4a4a; transition: all 0.3s ease;}
.sitemap ul.list li a:hover{ color: #da2725; padding-left:5px;}
.sitemap ul.list:hover {
  box-shadow: 0 0 11px rgba(33,33,33,.2); 
}



/* =================== PAYMENT PAGE CSS END HERE =================== */


.indus-content{ padding: 0px; position: relative; margin-bottom: 20px;  border-radius: 10px; transition: all 0.3s ease;  }
.indus-content .title{ font-size: 18px; font-weight: 300; position: absolute; left: 10px; bottom:10px; color: #fff; z-index: 999; transition: all 0.3s ease;}
.industry-overlay {
border-radius: 20px;
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .60) 100%);}
.indus-content:hover .industry-overlay{ 
background: linear-gradient(180deg, transparent 0, rgba(148, 3, 3, 0.6) 100%);}
.indus-content:hover .title{
transition: all 0.3s ease;  
left: 20px;
font-weight: 600;
letter-spacing: 3px;
}  
.indus-content img{ min-height: 180px; border-radius: 20px;}
.bg-black{ background: #000;}
.sitemap-title{
     background: #000;
    padding:10px 20px;
    font-size: 18px;
    color: #fff;
    border-radius: 5px; 
    font-weight: 600;
}


.case{ padding: 50px; text-align: center;}

.case-box{
border: 1px solid #cecece;
border-radius: 10px;
margin-top: 25px;
box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
transition: all 0.3s ease;
padding:30px 20px;
}

.left-0{ padding-left: 0px;}

.case-box .heading{ font-size: 20px; padding-top: 20px;}
.case-box img{ width: 150px;}
.case-box p{ font-size: 16px; color: #000; padding: 15px 0px;}
.solution{ padding: 50px; background: #ffe5e5;}
.white-pera{ background: #fff; padding: 30px; text-align: center; border-radius: 10px;}
.white-pera p{ padding-top: 20px;}
.white-pera .image-holder2{ margin:30px 20px 20px 20px;}
.Presence{ padding:20px 0 20px 0;}
.Presence img{ margin-top: 20px;}


.clutch-review{ text-align: center; padding: 50px 0 0 0px;}
.clutch-review img{ width: 150px;}
.clutch-review a{  margin-left: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
         
  }


.mobile-footer{ display: block;}
.technology_section .owl-nav{ display: none;}


.thankyou-box{ width: 60%; border:1px solid #ccc; border-radius: 20px; padding: 30px; text-align: center; margin: 0 auto;}
.thankyou-box h3{ font-size: 30px; color: #000; padding: 20px;}
.check{ padding: 0px;}
.check img{ width: 100px; border:0px}


/* =================== CUSTOM RESPONSIVE HOME =================== */

@media (max-width: 1024px) {
  .clientlist-section ul li img {
    width: 100%;
  }

  .container-fluid {
    padding-right: var(--bs-gutter-x, 1rem) !important;
    padding-left: var(--bs-gutter-x, 1rem) !important;
  }

  .main_menu ul li a {
    font-size: 12px;
    padding: 10px 4px;
  }

  .intro-image img {
    width: 100%;
  }

  .contact-section img {
    width: 100%;
  }

  header {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .intro-content h2,
  .services h2,
  .build-left h2,
  .title {
    font-size: 30px;
  }

  .contact-section .left p {
    font-size: 15px;
  }

  .footer-about img {
    width: 100%;
  }

  ul.footer-link li {
    font-size: 13px;
  }

  .footer-section .social-link {
    width: 34px;
    height: 34px;
    padding-top: 4px;
  }

  .contact-item {
    font-size: 12px;
  }

  .get-started .title {
    line-height: 25px;
  }

  .get-started .title span {
    font-size: 30px;
  }

  .accordion_head {
    font-size: 15px;
    text-align: left;
  }

  .experienced-team .left-side p {
    font-size: 15px;
  }
  .main .card .text h5 {
    font-size: 16px;
  }
  .hallmark img,
  .leadeship img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  header {
    display: block;
    background: #000;
    top: 0px;
  }
  .main_menu ul {
    padding: 0px;
    margin-top: 20px;
  }
  .mobile_btn {
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .mobile_btn i {
    color: #fff;
    font-size: 30px;
  }
  .btn-top {
    margin-top: 20px !important;
  }
  .mega_menu_item img {
    display: none;
  }
  .mega_menu_item {
    padding: 12px !important;
  }
  .main_menu ul li.btn-top a {
    text-align: center;
  }

  padding-right: var(--bs-gutter-x, 1rem) !important;
  padding-left: var(--bs-gutter-x, 1rem) !important;

  .service-content {
    padding: 10px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    gap: 6px;
  }

  .intro-image img {
    max-width: 100%;
  }

  .tab-buttons button {
    padding: 12px 10px;
    margin-bottom: 10px;
  }

  .our-work .viewall {
    top: 2%;
  }

  .testimonials_section .left_holder {
    height: 400px;
  }

  .footer-about img {
    width: 80%;
  }


  .footer-section .footer-heading {
    margin-top: 20px;
  }

  .contact-section .left {
    padding: 2rem;
  }

  .tab-buttons {
    display: block;
  }

  .tabs {
    margin: 20px 0 0px 0;
    text-align: center;
  }

  .get-started .btns {
    position: inherit;
    margin-top: 30px;
  }

  .tech {
    margin-bottom: 20px;
    display: inline-block;
  }

  .email-box {
    width: 46%;
  }

  .contact-section .left .whatsup span {
    margin: 20px 10px;
  }

  .perposal-section .request-form {
    display: block;
  }

  .have-ques {
    margin-top: 0px;
  }
  .first-section {
    padding-top: 20px;
  }
  .main .inner {
    display: block;
  }
  .main .card {
    margin-top: 10px;
  }
  ul.list {
    margin-top: 0px;
  }
}

@media (max-width: 600px) {
  .df-popup .modal-content {
    width: 90% !important;
  }
  .form-image-holder {
    display: none;
  }
  .modal-form {
    text-align: center;
  }
  .container-fluid {
    padding-right: var(--bs-gutter-x, 1rem) !important;
    padding-left: var(--bs-gutter-x, 1rem) !important;
  }

  header {
    display: block;
  }
  header ul {
    padding-left: 0px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .intro-content h2 {
    font-size: 30px;
  }

  .intro-container {
    display: block;
  }

  .intro-content {
    padding-top: 20px;
  }

  .build-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  img {
    max-width: 100%;
  }

  .contact-section {
    display: block;
  }

  .contact-section .left {
    padding: 2em;
  }

  .contact-section .left .whatsup span {
    margin: 15px 0 0 20px;
  }

  .title {
    font-size: 30px;
  }

  .our-work {
    padding: 20px 0;
    text-align: center;
  }

  .our-work .viewall {
    position: inherit;
    margin-top: 20px;
  }

  .tabs {
    margin-top: 30px;
  }

  .our-work .col-lg-4 {
    margin-bottom: 20px;
  }

  .technology_section,
  .faq-section,
  .reach-out-section,
  .work_process {
    padding: 30px 0;
  }

  .tech-logo-container {
    margin: 20px 0 0 0px;
  }

  .acc-main {
    padding: 10px;
  }

  .email-box {
    width: 100%;
    text-align: center;
  }

  .reach-out-section .arror-or {
    margin: 10 auto;
    text-align: center;
  }

  .reach-out-section,
  .testimonials_section,
  .contact-section,
  .intro-content,
  .faq-section {
    text-align: center;
  }

  .work_process .number {
    height: auto;
    padding: 0px 20px 20px 20px;
  }

  .get-started {
    text-align: center;
  }

  .get-started .btns,
  .get-started .cont-grl {
    position: inherit;
  }

  .get-started .btns {
    margin: 30px 0 20px 0;
  }

  .get-started {
    padding-bottom: 0px;
  }

  .footer-section {
    padding: 40px 20px 20px 20px;
    text-align: center;
  }

  .contact-item{
  display: block;
  }

  ul.footer-link li {
    padding-top: 10px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .location-box {
    margin-top: 0px;
    padding: 10px;
  }

   .location-box img{ display: none;}

  .footer-section .footer-payment {
    margin-bottom: 40px;
  }

  .reach-out-section .form-section {
    padding: 20px;
  }

  .clientlist-section ul li {
    width: 48%;
  }

  .footer-section .footer-about {
    margin-bottom: 20px;
  }

  .tech-logo-container {
    gap: 10px;
  }

  .work_process .number span {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .intro-image img {
    width: 100%;
  }

  .feature {
    text-align: left;
  }

  .copy {
    margin-top: 10px;
  }

  .main_menu {
    background: #000;
    padding: 10px;
    border-radius: 10px;
  }
  .btn-top {
    text-align: center;
    margin-top: 20px !important;
  }
  .mega_menu_item img {
    display: none;
  }

  .perposal-section .request-form {
    display: block;
  }
  .inner-hero .content h1 {
    font-size: 40px;
  }
  ul.focused li {
    width: 96%;
  }
  .engagement-models {
    padding: 30px;
  }
  .engagement-card {
    margin-bottom: 10px;
  }
  .build .buttons-wrapper {
    display: block;
  }
  .build span {
    display: block;
  }
  .build span a {
    margin-bottom: 10px;
  }
  .edge-technology {
    padding: 20px 0px;
  }
  .inner-hero .strip {
    display: none;
  }

  .have-ques {
    margin-top: 0px;
  }
  .first-section {
    padding-top: 20px;
  }
  .main .inner {
    display: block;
  }
  .main .card {
    margin-top: 10px;
  }
  ul.list {
    margin-top: 0px;
  }

  ul.number-box {
    display: block;
  }
  .numbers {
    padding: 20px 0;
  }
  ul.number-box {
    padding: 0px;
  }
  ul.number-box li {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 0px;
    text-align: center;
  }
  .why-better .content-area ul li {
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
  }
  .why-better .content-area {
    text-align: center;
  }
  .leadeship .content-area {
    padding: 0px;
  }
  .leadeship {
    padding: 30px 10px;
  }
  .intro-section,
  .hallmark {
    padding: 20px 0;
  }
  .res {
    text-align: center !important;
    padding-top: 20px;
  }
  .leadeship img {
    width: 100%;
  }

  .job-title {
    font-size: 40px;
    line-height: 40px;
    padding: 20px 10px;
  }
  .why-better img {
    display: inline;
  }

  .process2 .engagement-card {
    margin-top: 20px;
  }
  .process2 {
    padding: 20px 0;
  }
  .career-image {
    margin: 0px;
  }
  .social-links {
    margin-top: 20px;
  }
  .solve .tick-icon {
    margin: 0 auto;
  }
  .solve {
    padding: 20px 0;
  }
  .get-started .button2 {
    margin-bottom: 10px;
    width: 100%;
  }
  .get-started .button {
    width: 100%;
  }

  .contact-container {
    padding: 20px;
    text-align: center;
  }

 .case,.solution{ padding:20px 10px;}
.clutch-review{ padding-top: 20px;}
.clutch-review a{ margin-top: 10px;}

.mobile-footer{ display: none;}
.thankyou-box{ width: 100%;}
.check img{ width:70px;}

.input-field{ width:90%;}
.table-outer{ overflow-x: auto;} 
}





/* Popup form css start here */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 15px;
}

/* Popup */
.popup {
  background: white;
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  animation: popupFade 0.3s ease;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
  border: none;
  background: none;
}

/* Responsive Content */

/* Animation */
@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-image {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}

.quote {
  margin: 0;
}
.quote .input-text {
  height: 45px;
}
.quote .field {
  margin-top: 10px;
}
.smo .icon img {
  width: auto;
}
/* Popup form css End here */

/* =================== CUSTOM RESPONSIVE CSS END HERE =================== */

/* =================== RESPONSIVE =================== */

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

@media (max-width: 992px) {
  .build-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services h2,
  .build-left h2 {
    font-size: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* normal menu css */

.main_menu {
  padding-top: 10px;
}
.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #353535;
  text-transform: uppercase;
}

/* normal menu css */

.main_menu > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 -2px;
}
.main_menu ul li {
  position: relative;
}

.main_menu ul li a {
  font-size: 15px;
  color: #fff;
  padding: 10px 14px;
  display: block;
  font-weight: 500;
}

.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: #d41f1f;
  font-weight: 500;
}
/* Normal Dropdown menu */
.main_menu ul li ul {
  width: 200px;
  background: #fff;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(32, 32, 32, 0.75);
  list-style: none;
  border-radius: 10px;
  padding: 10px;
}

.main_menu ul li ul li a {
  padding: 8px 0px;
  font-size: 15px;
  color: #000;
}

.main_menu ul li ul li a i {
  float: right;
}

.main_menu ul li ul li ul {
  left: 100%;
  top: 0;
}

/* mega menu css */
.mega_menu_dropdown {
  position: static !important;
  
}
.mega_menu {
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  /* transition: 0.5s;*/
  border-radius: 10px;
  padding-top: 10px;
  width: 96%;
  margin: 0 auto;
   box-shadow: 0px 5px 15px 0px rgba(100, 100, 100, 0.75);
  
 
}
.mega_menu_item {
  width: 20%;
  padding: 30px 20px;
}
.main_menu ul li .mega_menu_item a {
  padding: 6px 0;
  color: #000;
  font-size: 13px;
}

.main_menu ul li .mega_menu_item a:hover {
  color: #da2725;
  font-weight: 500;
}
.mega_menu_item h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.mega_menu_item h3 a{ font-size: 16px!important; font-weight: 700!important; }

.mega_menu_item img {
  width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
}

.mobile_btn {
  display: none;
}

.main_menu ul li.btn-top a {
  font-size: 16px;
  color: #fff;
  padding: 10px 15px;
  font-weight: 500;
  background: #d41f1f;
  border-radius: 30px;
  margin-left: 10px;
}
.main_menu ul li.btn-top a:hover {
  background: #ffd401;
  color: #000;
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 940px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
  .main_menu ul li a {
    font-size: 12px;
    padding: 10px 8px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 720px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 700px;
  }
  .main_menu ul li a {
    font-size: 13px;
    padding: 10px 10px;
  }
  .main_menu ul li ul {
    width: 150px;
  }

  .logo img {
    width: 30%;
  }
  .main_menu ul {
    margin-top: 0px;
  }

  }


@media (min-width: 768px) {
  .main_menu ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 99;
    padding-left: 20px;
  }
  .main_menu ul li:hover > .mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 99;
  }
 
 
}

@media (max-width: 767.98px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }

  nav {
    padding: 0px;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    color: #fff;
    font-size: 28px;
  }

  .main_menu {
    display: none;
    width: 100%;
  }

  .main_menu ul li {
    display: block;
  }
  .main_menu ul li a i {
    float: right;
  }
  .main_menu ul li a {
    border-bottom: 1px solid #1d1c1c;
  }
  .main_menu ul li ul {
    width: 100%;
  }
  .main_menu ul li ul li ul {
    left: 0;
    top: auto;
  }

  .mega_menu .mega_menu_item {
    width: 50%;
  }
  .main_menu ul li ul {
    display: none;
    transition: none;
  }
  .main_menu ul li .mega_menu {
    display: none;
    transition: none;
    height: 400px;
    overflow: scroll;
  }

  .mega_menu_demo_2 .mega_menu {
    transform: translateX(0);
  }
  
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
}

.mega_menu_item {
  padding: 15px;
}

.gotop {
  background: #d41f1f;
  width: 50px;
  height: 50px;
  border: 0px;
}
.gotop .fa {
  color: #fff;
}
.blink_me {
  animation: blinker 3s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.testimonila-iframe {
  width: 100%;
  height: 480px;
}



