﻿.bg-blue-light {
  background-color: #f0f7fd !important;
}

.bg-red-light {
  background-color: #FEF4F1 !important;
}

.text-white {
  color: #FFF;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.services-new {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #FEF4F1;
  position: relative;
}

.services-new .gdlr-core-column-lg-20 {
  border: 1px solid #dfdfdf;
  border-top: 0;
  border-left: 0;
  border-bottom: 0px;
}

.services-new .gdlr-core-column-lg-20:nth-child(4) {
  border-right: 0;
}

.services-new .gdlr-core-column-lg-20:nth-child(7) {
  border-right: 0;
  border-bottom: 0;
}

.services-new .gdlr-core-column-lg-20:nth-child(6),
.services-new .gdlr-core-column-20:nth-child(5) {
  border-bottom: 0;
}

.services-new .gdlr-core-button {
  font-weight: 400;
}

.same-height-column .gdlr-core-pbf-wrapper-container.gdlr-core-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* sabhi columns ki height barabar */
}

.same-height-column .gdlr-core-pbf-wrapper-container.gdlr-core-container .gdlr-core-pbf-column {
  display: flex;
  flex-direction: column;
}

.same-height-column .gdlr-core-pbf-wrapper-container.gdlr-core-container .gdlr-core-pbf-column-content-margin {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.same-height-column.make-us .gdlr-core-pbf-column-content {
  height: 100%;
  min-height: unset;
}

.same-height-column.make-us .gdlr-core-pbf-column-content-margin {
  height: 100%;
  padding: 15px;
}

.gdlr-core-column-service-item .gdlr-core-column-service-title {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  text-transform: capitalize;
  color: #363636;
}

.services-new .gdlr-core-button {
  padding: 8px 25px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.gdlr-core-counter-item .gdlr-core-counter-item-number {
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0px;
}

.make-us {
  background-color: #FEF4F1;
  /* position: relative; */
}

.client_brand {
  background-image: url(/upload/client-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.card-box {
  background: #fff;
  border-radius: 0px;
  padding: 20px 0px 20px 20px;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, .13);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .13);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 32%;
  /* icon ka size */
  display: flex;
  height: 100%;
}


.card-content {
  width: 70%;
  /* text ke liye space */
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #363636;
  line-height: 1.6;
}

.project .gdlr-core-pbf-column-content-margin {
  padding: 15px;
}

.gdlr-core-portfolio-box {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  padding: 25px;
  min-height: 280px;
  display: flex;
  align-items: end;
}

.portfolio-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  /* faint background */
  pointer-events: none;
}

.gdlr-core-portfolio-box:hover .portfolio-bg {
  opacity: 0.5;
}

.portfolio-content {
  position: relative;
  z-index: 2;
  width: 90%;
}

.portfolio-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #FFF !important;
}

.portfolio-text {
  font-size: 14px;
  margin: 0;
  color: #FFF;
  line-height: 1.5;
}

.portfolio-icon {
  display: none;
}

/* .gdlr-core-portfolio-box:hover .portfolio-icon {

} */
.portfolio-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: auto;
  z-index: 3;
}

/* client portfolio */
.client_thumb {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.client_thumb span {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 10px 5px;
  margin: 5px;
  cursor: pointer;
  width: 15.5%;
  box-shadow: 0 0 1px 0 #ccc;
  position: relative;
}

.client_thumb span:before {
  content: "";
  position: absolute;
  background: #fff;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  transform: scale(.8);
  transition: ease-in-out .3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.client_thumb img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  position: relative;
  filter: grayscale(1);
  opacity: .5;
  z-index: 11;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.client_thumb span:hover:before {
  transform: scale(1);
  box-shadow: 0 3px 22px rgb(0 0 0 / 12%);
  opacity: 1;
  visibility: visible;
}

.client_thumb span:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.project-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px;
}

.item-card {
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
  border-radius: 3px;
  margin-bottom: 3px;
  height: 250px;
  background-color: #000;
  opacity: 0.8;
  border: 3px solid #FFF;
  text-align: center;
}

.item-card .portfolio-front {
  height: 100%;
}

.item-card .portfolio-front a {
  position: relative;
  cursor: pointer;
  display: block;
  height: 100%;
}

.item-card:hover {
  cursor: pointer;
}

.item-card * {
  transition: all 0.35s ease-in-out;
}

.item-card img {
  width: 100%;
  height: 100%;
}

.item-card:hover img {
  opacity: 0.4;
}

.item-card .text {
  width: 100%;
  height: 90%;
  position: absolute;
  top: -100px;
  left: 0%;
}

.item-card .text h5 {
  color: rgb(255, 255, 255);
}

.item-card .text p {
  color: rgb(255, 255, 255);
}

.item-card:hover .text {
  top: 50px;
}

.item-card:hover .button {
  bottom: 20%;
}

.item-card .button {
  position: absolute;
  bottom: -100px;
  left: 25%;
  width: 50%;
  font-size: 14px;
  border: 1px solid #00bfff;
  color: #FFF;
  background-color: #00bfff !important;
  text-align: center;
  padding: 8px 10px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.faq-section {
  max-width: 800px;
  margin: 0px auto;
  padding: 20px;
}

.faq-title {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  border-radius: 10px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background-color: #FFF;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: 400;
  font-size: 1.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 10px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* enough for content */
  padding: 10px 10px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}

.gdlr-core-blog-thumbnail {
  border-radius: 10px;
  margin: 0px !important;

}

.gdlr-core-blog-thumbnail img {
  margin: 0px;
  width: 100%;
  object-fit: cover;
}

/* form CSS */
.gdlr-core-input-wrap.gdlr-core-large input:not([type="button"]):not([type="submit"]):not([type="file"]) {
  font-size: 15px;
  padding: 10px 22px;
}

.gdlr-core-input-wrap.gdlr-core-full-width input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="file"]):not([type="checkbox"]):not([type="radio"]),
.gdlr-core-input-wrap.gdlr-core-full-width textarea {
  margin-bottom: 10px;
}

/* services pages */

.services-card-1 {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* process card */
.process {
  width: 100%;
  text-align: center;
}

.process__item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  position: relative;
  padding: 15px 35px;
  transition: 0.4s ease-in-out;
}

.process__item:hover {
  background: #f2f2f2;
}

.process__item:hover .process__number {
  transform: translateY(5px);
  color: #ff7300;
}

.process__number {
  font-size: 90px;
  -webkit-text-stroke: 1px #ff7300;
  display: block;
  color: transparent;
  font-weight: 700;
  transition: 0.4s ease-in-out;
  line-height: 1;
}

.process__title {
  display: block;
  font-weight: 500;
  letter-spacing: 1.2px;
  font-size: 18px;
  color: #363636;
}

.process__subtitle {
  display: block;
  font-size: 16px;
  color: #363636;
  margin-top: 10px;
  line-height: 1.5;
}

/* Card hover effect */
.gdlr-core-pbf-column:hover .services-card-1.gdlr-core-pbf-background-wrap {
  border-color: #00bfff;
  /* Theme color */
  box-shadow: 0 6px 18px rgba(234, 69, 23, 0.15);
}

.square-bullet {
  list-style-type: none;
  display: block;
  padding: 0;
  margin: 0 0 20px;
  padding-left: 35px;
}

.square-bullet.tech {
  columns: 3;
}

.square-bullet li {
  position: relative;
  padding-left: 0;
  text-indent: -25px;
  margin-bottom: 10px;
}

.square-bullet.bullet-red li::before {
  background: #00bfff;
}

.square-bullet li::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #00bfff;
  display: inline-block;
  margin: -4px 10px 0 0;
  vertical-align: middle;
}

/* custom card for process */

.custom-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 100px;
  row-gap: 20px;
}

.custom-process-box {
  margin: 0 0 20px 0;
  border-top: 2px solid #14151b;
}

.custom-process-box h4 {
  flex: 0 0 140px;
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}

.partner_contentBox .subtext .content h2 {
  margin-bottom: 6px;
  font-size: 45px;
  color: #fff;
  line-height: 65px;
  font-family: 'Helvetica Neue';
  font-weight: 500;
}

.web-vertical-tab.gdlr-core-tab-item .gdlr-core-tab-item-title {
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: unset;
  font-weight: 500;
  color: #363636;
  padding: 12px 50px 12px 12px;
  border-bottom: 1px solid #ebebeb;
}

.web-vertical-tab .gdlr-core-tab-item-title.gdlr-core-active {
  color: #FFF !important;
  background-color: #00bfff;
}

.web-vertical-tab .gdlr-core-tab-item-title-wrap {
  background-color: #FFF;
  border-right-width: 0 !important;
  margin-right: 20px !important;
}

.web-vertical-tab .gdlr-core-tab-item-content-wrap {
  background-color: #FFF;
  border-left-width: 0 !important;
}

.web-horizontal-tab.gdlr-core-tab-item .gdlr-core-tab-item-title {
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: #363636;
  padding: 12px 18px;
}

.web-horizontal-tab .gdlr-core-tab-item-content-wrap {
  border: 1px solid #ebebeb;
  padding: 20px;
}

.web-horizontal-tab .gdlr-core-tab-item-title-wrap {
  border-bottom-width: 0px !important;
}

.gdlr-core-tab-style1-horizontal.web-horizontal-tab .gdlr-core-tab-item-title.gdlr-core-active {
  background-color: #00bfff;
  color: #FFF !important;
}

.regular-card-img img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(91%) saturate(1268%) hue-rotate(330deg) brightness(99%) contrast(95%);
}

.seocrawler-body input,
.seocrawler-body textarea {
  background-color: #ffffff;
  border: 1px solid #ebebeb !important;
}

.card-hover .gdlr-core-pbf-column:hover {
  box-shadow: 0 0 15px -7px rgb(51 51 51 / .6);
}

.card-hover.text-change .gdlr-core-pbf-column:hover h3 {
  color: #00bfff;
}

.card-hover.text-change .gdlr-core-pbf-column:hover img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(100%) saturate(1258%) hue-rotate(349deg) brightness(92%) contrast(99%);
}

.leading-service-provide .landing-img {
  height: 100%;
}

.leading-service-provide .landing-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 400ms;
  transition-delay: 0ms;
}

.hire-developer .leading-text {
  height: 100%;
}

.leading-service-provide .leading-text {
  padding: 39px 42px;
  background: #253a58;
}

/* footer CSS */
.footer-right-column-border {
  border-right: 1px solid #5a5a5a;
}


/* Sidebar Social Icon */
.sidebar-icon {
  height: auto;
  width: 0px;
  position: fixed;
  text-align: center;
  bottom: 5vh;
  padding: 10px;
  z-index: 99;
}

.sidebar-icon a {
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  line-height: 3;
}

.sidebar-icon p {
  color: white;
  margin: 0px;
}

.sidebar-icon p i {
  left: 30px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  font-size: 24px;
}

.sidebar-icon .social {
  margin-left: -200px;
  width: 240px;
  padding: 10px 15px;
  display: inline-table;
  height: 0px;
  background-color: rgba(128, 128, 128, 0.73);
  transition-delay: 0.2s;
  transition-property: margin-left;
  -moz-transition-property: margin-left;
  -moz-transition-duration: 0.4s;
  -moz-transition-delay: 0.2s;
  -ms-transition-property: margin-left;
  -ms-transition-duration: 0.4s;
  -ms-transition-delay: 0.2s;
  -o-transition-property: margin-left;
  -o-transition-duration: 042s;
  -o-transition-delay: 0.2s;
  -webkit-transition-property: margin-left;
  -webkit-transition-duration: 0.4s;
  -webkit-transition-delay: 0.2s;
  box-shadow: 0px 0px 6px 0px #3E3D3D;
  cursor: pointer;
}

.sidebar-icon .social:hover {
  margin-left: -30px;
  width: 230px;
}

.sidebar-icon .facebook {
  background-color: #3b5998;
}

.sidebar-icon .linkedin {
  background-color: #4099FF;
}

.sidebar-icon .instagram {
  background: #00bfff;
}

.sidebar-icon .whatsapp {
  background-color: #4FCE5D;
}

.sidebar-icon .linkedin p i {
  left: 25px;
}

.sidebar-icon .instagram p i {
  left: 15px;
}

.sidebar-icon .whatsapp p i {
  left: 20px;
}

.sidebar-icon .facebook p i {
  left: 25px;
}

.sidebar-icon .youtube:hover {
  background-color: #E52D27;
}

.sidebar-icon .linkedin:hover {
  background-color: #0976B4;
}

/* free anayalis form */

.form-container {
  max-width: 1120px;
  margin: 0px auto;
}

.form-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ebebeb;
  border-radius: 0px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid #00bfff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.radio-group label {
  flex: 1 1 200px;
  border: 1px solid #00bfff;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group input[type="radio"]:checked+label {
  background-color: #00bfff;
  color: #FFF;
  font-weight: 400;
}

.submit-btn {
  display: block;
  /* width: 100%; */
  padding: 15px;
  background-color: #00bfff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .radio-group {
    flex-direction: column;
  }
}

ul.square-tick li {
  display: flex;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  padding-bottom: 8px;
}

ul.square-tick li img {
  max-width: 20px;
  max-height: 20px;
  margin-top: 8px;
  margin-right: 1.2rem;
}

.tech-card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #FFFFFF;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.t-img {
  max-height: 50px !important;
  max-width: 150px !important;
}

.t-title h5 {
  font-weight: 800;
}

.t-title p {
  font-size: 14px;
}

.post-meta-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.post-arrow {
  padding: 5px 5px 0px 5px;
  border-radius: 45%;
}

.post-date {
  font-size: 12px;
}

.blog-category {
  background-color: #ffb3b3;
  border-radius: 10px;
  padding: 0px 5px 0px 5px;
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00bfff;
  /* Primary Red */
  color: #ffffff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-call-btn:hover {
  background-color: #d62e00;
  /* Darker Red */
  transform: scale(1.1);
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .floating-call-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

/* =========================================
   Image-Based Footer (Priya Digital)
   ========================================= */
.pd-footer {
  background: #09081e;
  /* Theme Dark Blue */
  color: #fff;
  padding: 60px 0 30px;
  font-family: inherit;
  font-size: 14px;
}

.pd-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.pd-footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.pd-footer-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.pd-col-about {
  flex: 0 0 30%;
  max-width: 30%;
}

.pd-col-services {
  flex: 0 0 35%;
  max-width: 35%;
}

.pd-col-connect {
  flex: 0 0 35%;
  max-width: 35%;
}

.pd-footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.pd-footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #00bfff 0%, #ff9f4d 100%);
  border-radius: 2px;
}

.pd-footer-desc {
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Social Icons */
.pd-social-links {
  display: flex;
  gap: 15px;
}

.pd-social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #1a1a1a !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.pd-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(238, 58, 58, 0.4);
}

/* Services List */
.pd-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.pd-service-link {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.3s;
  font-weight: 400;
}

.pd-service-link:hover {
  color: #00bfff !important;
}

/* Connect List */
.pd-connect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-connect-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pd-connect-icon {
  color: #00bfff;
  font-size: 18px;
  min-width: 25px;
  margin-right: 15px;
  margin-top: 3px;
}

.pd-connect-content {
  line-height: 1.6;
}

.pd-connect-content strong {
  color: #ff9f4d;
  font-weight: 600;
}

.pd-phone-box {
  background: #00bfff;
  /* Theme Red */
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: bold;
}

/* Footer Bottom Bar */
.pd-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050414;
  padding: 20px 0;
  text-align: center;
}

.pd-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 991px) {

  .pd-col-about,
  .pd-col-services,
  .pd-col-connect {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .pd-social-links,
  .pd-services-grid {
    justify-content: center;
  }

  .pd-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .pd-connect-item {
    justify-content: center;
    text-align: left;
  }
}