/* Banner Css Start */
.android-app-banner {
  position: relative;
  width: 100%;
  min-height: 745px;
  background-image: url("../img/android-app-development/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
}

.android-app-banner .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

.android-app-banner .hero-content h1 {
  font-size: 50px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 48px;
}

.android-app-banner .hero-content p {
  max-width: 805px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.android-app-banner .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 54px;
}

.android-app-banner .btn {
  min-width: 173px;
  height: 64px;
  padding: 0 28px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.android-app-banner .btn-primary {
  background: #e7283d;
  color: #ffffff;
  border: 2px solid #e7283d;
}

.android-app-banner .btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

.android-app-banner .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #e7283d;
}

.android-app-banner .btn-outline:hover {
  background: #e7283d;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .android-app-banner .hero-section {
    min-height: 680px;
    padding: 100px 24px;
  }

  .android-app-banner .hero-content h1 {
    font-size: 42px;
    margin-bottom: 36px;
  }

  .android-app-banner .hero-content p {
    font-size: 16px;
    max-width: 720px;
  }

  .android-app-banner .hero-buttons {
    margin-top: 42px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .android-app-banner {
    min-height: 620px;
    padding: 80px 18px;
    background-position: center;
  }

  .android-app-banner .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .android-app-banner .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .android-app-banner .hero-buttons {
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
  }

  .android-app-banner .btn {
    width: 100%;
    max-width: 230px;
    height: 58px;
    border-radius: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .android-app-banner {
    min-height: 600px;
    padding: 70px 16px;
  }

  .android-app-banner .hero-content h1 {
    font-size: 29px;
  }

  .android-app-banner .hero-content p {
    font-size: 14px;
  }
}

/* Banner Css End */

/* Android Services Section Start */
.android-services-section {
  width: 100%;
  padding: 150px 0px;
  background: #ffffff;
}

.android-services-section .section-heading {
  text-align: center;
  margin: 0 auto 40px;
}

.android-services-section .section-heading h2 {
  font-size: 31px;
  line-height: 1.45;
  font-weight: 400;
  color: #111111;
  margin: 0 0 24px;
}

.android-services-section .section-heading h2 span {
  color: #e8253d;
  font-weight: 700;
}

.android-services-section .section-heading p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 400;
  color: #6d6d6d;
}

.android-services-section .services-tabs-wrapper {
  display: grid;
  grid-template-columns: 470px 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 0 auto;
  width: 100%;
  max-width: 1170px;
}

.android-services-section .services-tab-list {
  background: #f5f5f5;
  border-radius: 15px;
}

.android-services-section .service-tab {
  width: 100%;
  min-height: 102px;
  padding: 0 20px;
  border: 0;
  border-bottom: 1px solid #e4e4e4;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s ease;
}

.android-services-section .service-tab:last-child {
  border-bottom: 0;
}

.android-services-section .service-tab.active {
  background: #e8253d;
  color: #ffffff;
  border-radius: 13px;
  border-bottom-color: transparent;
  margin: 25px 18px 0;
  width: 100%;
  padding: 0 18px;
}

.android-services-section .service-tab.active+.service-tab {
  margin-top: 18px;
}

.android-services-section .tab-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.android-services-section .tab-icon svg , 
.android-services-section .tab-icon img 
{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.android-services-section .services-tab-content {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 15px 15px 42px;
  min-height: 598px;
}

.android-services-section .service-content {
  display: none;
}

.android-services-section .service-content.active {
  display: block;
}

.android-services-section .mobile-accordion-title {
  display: none;
}

.android-services-section .accordion-body img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.android-services-section .accordion-body h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #000000;
  margin: 40px 0 20px;
}

.android-services-section .accordion-body p {
  max-width: 500px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #565656;
  margin: 0;
}

.android-services-section .btn-primary svg {
  margin-left: 10px;
}

/* Laptop */
@media (max-width: 1199px) {
  .android-services-section .services-tabs-wrapper {
    grid-template-columns: 340px 1fr;
    max-width: 920px;
  }

  .android-services-section .accordion-body img {
    height: 345px;
  }

  .android-services-section {
    padding: 75px;
  }

  .android-services-section .service-tab {
    font-size: 15px;
  }

  .android-services-section .service-tab {
    min-height: 80px;
  }

  .android-services-section .accordion-body h3 {
    font-size: 20px;
    line-height: 1.2;
    margin: 20px 0 10px;
  }

  .android-services-section .accordion-body p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .android-services-section {
    padding: 50px 0;
  }

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

  .android-services-section .services-tabs-wrapper {
    grid-template-columns: 300px 1fr;
    gap: 18px;
  }

  .android-services-section .service-tab {
    min-height: 78px;
    gap: 15px;
    padding: 0 16px;
    font-size: 14px;
  }

  .android-services-section .service-tab.active {
    margin: 18px 14px 0;
  }

  .android-services-section .services-tab-content {
    min-height: 520px;
  }

  .android-services-section .accordion-body img {
    height: 300px;
  }

  .android-services-section .accordion-body p {
    font-size: 13px;
  }
}

/* Mobile Accordion */
@media (max-width: 767px) {
  .android-services-section {
    padding: 45px 0;
  }

  .android-services-section .section-heading {
    margin-bottom: 30px;
  }

  .android-services-section .section-heading h2 {
    font-size: 25px;
    line-height: 1.35;
    margin-bottom: 18px;
  }

  .android-services-section .section-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .android-services-section .services-tabs-wrapper {
    display: block;
    max-width: 100%;
  }

  .android-services-section .services-tab-list {
    display: none;
  }

  .android-services-section .services-tab-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-height: auto;
  }

  .android-services-section .service-content {
    display: block;
    background: #f5f5f5;
    border-radius: 13px;
    margin-bottom: 13px;
    overflow: hidden;
  }

  .android-services-section .mobile-accordion-title {
    min-height: 64px;
    padding: 0 18px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
  }

  .android-services-section .mobile-accordion-title b {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #ffffff;
    color: #e8253d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
  }

  .android-services-section .service-content.active .mobile-accordion-title {
    background: #e8253d;
    color: #ffffff;
  }

  .android-services-section .service-content.active .mobile-accordion-title b {
    color: #e8253d;
  }

  .android-services-section .service-content.active .mobile-accordion-title b {
    font-size: 0;
  }

  .android-services-section .service-content.active .mobile-accordion-title b::before {
    content: "-";
    font-size: 24px;
    line-height: 1;
  }

  .android-services-section .accordion-body {
    display: none;
    padding: 15px 15px 25px;
  }

  .android-services-section .service-content.active .accordion-body {
    display: block;
  }

  .android-services-section .accordion-body img {
    height: auto;
    min-height: 230px;
    max-height: 330px;
    object-fit: cover;
    border-radius: 8px;
  }

  .android-services-section .accordion-body h3 {
    font-size: 16px;
    margin: 20px 0 12px;
  }

  .android-services-section .accordion-body p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .android-services-section .section-heading h2 {
    font-size: 22px;
  }

  .android-services-section .section-heading h2 br {
    display: none;
  }

  .android-services-section .mobile-accordion-title {
    font-size: 13px;
    padding: 0 15px;
  }

  .android-services-section .accordion-body {
    padding: 12px 12px 22px;
  }

  .android-services-section .accordion-body img {
    min-height: 200px;
  }

  .android-services-section .services-btn {
    width: 155px;
    height: 49px;
  }
}

/* Android Services Section End */

/* Android Process Exact Section Start */
.android-process-exact {
  width: 100%;
  min-height: 900px;
  background: #050505;
  padding: 119px 20px 86px;
  font-family: "Poppins", Arial, sans-serif;
  overflow: hidden;
}

.android-process-exact * {
  box-sizing: border-box;
}

.android-process-exact .process-exact-container {
  max-width: 1290px;
  margin: 0 auto;
}

/* Timeline */
.android-process-exact .process-exact-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1172px;
  margin: 0 auto;
  padding-top: 0;
}

/* Red bar */
.android-process-exact .process-exact-red-line {
  position: absolute;
  top: 52px;
  left: 98px;
  right: 98px;
  height: 96px;
  background: #B91124;
  z-index: 1;
}

/* Red bar dark cutouts */
.android-process-exact .process-exact-item:not(:first-of-type)::before {
  content: url('data:image/svg+xml,<svg width="21" height="96" viewBox="0 0 21 96" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 95.5H0.5C22.1 57.1 9.16667 15.8333 0 0H10C29.6 35.2 18.1667 78.3333 10 95.5Z" fill="black"/></svg>');
  position: absolute;
  right: -30px;
  bottom: 0;
  top: 52px;
}

/* Items */
.android-process-exact .process-exact-item {
  position: relative;
  z-index: 5;
  width: 210px;
  text-align: center;
}

/* Outer Circle */
.android-process-exact .process-exact-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 35px;
  border-radius: 50%;
  background: #DE253A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 27px 25px 32px rgba(0, 0, 0, 0.72);
}

/* Inner Circle */
.android-process-exact .process-exact-circle span {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #f6fbfd;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -2px;
  box-shadow:
    inset -7px -8px 11px rgba(0, 0, 0, 0.18),
    6px 8px 7px rgba(0, 0, 0, 0.25);
}

/* Text */
.android-process-exact .process-exact-content {
  width: 220px;
  margin-left: -5px;
}

.android-process-exact .process-exact-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.android-process-exact .process-exact-content p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

/* Exact desktop adjustment */
@media (min-width: 1200px) {
  .android-process-exact .process-exact-item:nth-of-type(2) {
    margin-left: 0;
  }

  .android-process-exact .process-exact-item:nth-of-type(3) {
    margin-left: 7px;
  }

  .android-process-exact .process-exact-item:nth-of-type(4) {
    margin-left: 8px;
  }

  .android-process-exact .process-exact-item:nth-of-type(5) {
    margin-left: 8px;
  }

  .android-process-exact .process-exact-item:nth-of-type(6) {
    margin-left: 8px;
  }
}

/* Laptop */
@media (max-width: 1199px) {

  .android-process-exact .process-exact-timeline {
    width: 100%;
    max-width: 980px;
  }

  .android-process-exact .process-exact-item {
    width: 180px;
  }

  .android-process-exact .process-exact-red-line {
    top: 45px;
    left: 80px;
    right: 80px;
    height: 78px;
  }

  .android-process-exact .process-exact-item:not(:first-of-type)::before {
    top: 45px;
    left: -42px;
    width: 55px;
    height: 78px;
  }

  .android-process-exact .process-exact-circle {
    width: 168px;
    height: 168px;
    margin-bottom: 30px;
  }

  .android-process-exact .process-exact-circle span {
    width: 126px;
    height: 126px;
    font-size: 50px;
  }

  .android-process-exact .process-exact-content {
    width: 180px;
    margin-left: 0;
  }

  .android-process-exact .process-exact-content p {
    font-size: 12.5px;
  }
}

/* Tablet / Mobile Vertical */
@media (max-width: 991px) {
  .android-process-exact {
    padding: 70px 18px;
  }

  .android-process-exact .process-exact-timeline {
    display: block;
    max-width: 650px;
    margin: 0 auto;
  }

  .android-process-exact .process-exact-red-line {
    top: 0;
    bottom: 0;
    left: 74px;
    right: auto;
    width: 22px;
    height: auto;
    border-radius: 30px;
  }

  .android-process-exact .process-exact-item {
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 24px;
    text-align: left;
    margin-bottom: 36px;
  }

  .android-process-exact .process-exact-item:last-child {
    margin-bottom: 0;
  }

  .android-process-exact .process-exact-item::before {
    display: none;
  }

  .android-process-exact .process-exact-circle {
    width: 150px;
    height: 150px;
    margin: 0;
  }

  .android-process-exact .process-exact-circle span {
    width: 112px;
    height: 112px;
    font-size: 46px;
  }

  .android-process-exact .process-exact-content {
    width: 100%;
    margin: 0;
  }

  .android-process-exact .process-exact-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .android-process-exact .process-exact-content p {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .android-process-exact {
    padding: 55px 15px;
  }

  .android-process-exact .process-exact-red-line {
    left: 45px;
    width: 14px;
  }

  .android-process-exact .process-exact-item {
    grid-template-columns: 100px 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .android-process-exact .process-exact-circle {
    width: 100px;
    height: 100px;
    box-shadow: 12px 14px 20px rgba(0, 0, 0, 0.55);
  }

  .android-process-exact .process-exact-circle span {
    width: 74px;
    height: 74px;
    font-size: 31px;
  }

  .android-process-exact .process-exact-content h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .android-process-exact .process-exact-content p {
    font-size: 12.5px;
    line-height: 1.42;
  }
}

/* Android Process Exact Section Start */





/* Legacy Upgrade Section Start */
.legacy-upgrade-section {
  width: 100%;
  background: #ffffff;
  padding: 64px 0;
}

.legacy-upgrade-section * {
  box-sizing: border-box;
}

.legacy-upgrade-section .legacy-container {
  margin: 0 auto;
}

/* Grid */
.legacy-upgrade-section .legacy-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 19px;
}

/* Flip Card */
.legacy-upgrade-section .legacy-flip-card {
  height: 300px;
  perspective: 1000px;
  border-radius: 20px;
  background: #f6f6f6;
}

.legacy-upgrade-section .legacy-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s ease;
  transform-style: preserve-3d;
}

.legacy-upgrade-section .legacy-flip-card:hover .legacy-card-inner {
  transform: rotateY(180deg);
}

.legacy-upgrade-section .legacy-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Front */
.legacy-upgrade-section .legacy-card-front {
  background: #f6f6f6;
  padding: 58px 24px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.legacy-upgrade-section .legacy-icon {
  width: 95px;
  height: 95px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.legacy-upgrade-section .legacy-icon img , 
.legacy-upgrade-section .legacy-icon svg 
{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.legacy-upgrade-section .legacy-card-front h3 {
  margin: 0;
  color: #000000;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

/* Back */
.legacy-upgrade-section .legacy-card-back {
  background: #e8243d;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}

.legacy-upgrade-section .legacy-card-back p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
}

.legacy-upgrade-section .btn-primary svg {
  margin-left: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .legacy-upgrade-section {
    padding: 58px 0px;
  }

  .legacy-upgrade-section .legacy-card-grid {
    gap: 20px;
  }

  .legacy-upgrade-section .legacy-card-front {
    padding: 48px 20px 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .legacy-upgrade-section {
    padding: 50px 0;
  }

  .legacy-upgrade-section .legacy-flip-card {
    height: 220px;
  }

  .legacy-upgrade-section .legacy-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .legacy-upgrade-section .legacy-card-front {
    padding: 42px 18px 22px;
    align-items: center;
    justify-content: center;
  }

  .legacy-upgrade-section .legacy-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }

  .legacy-upgrade-section .legacy-card-back {
    padding: 0 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .legacy-upgrade-section {
    padding: 45px 0;
  }

  .legacy-upgrade-section .legacy-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legacy-upgrade-section .legacy-card-front {
    padding: 36px 22px 22px;
  }

  .legacy-upgrade-section .legacy-card-back p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Legacy Upgrade Section End */



/* Android CTA Section Start */
.android-cta-section {
  width: 100%;
  background: #ffffff;
  padding: 54px 0;
}

.android-cta-section .android-cta-box {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  background-image: url("../img/android-app-development/cta-bg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.android-cta-section .android-cta-content {
  padding: 45px 0 28px 49px;
  position: relative;
  z-index: 2;
}

.android-cta-section .android-cta-content h2 {
  margin: 0 0 25px;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
  letter-spacing: 0.1px;
}

.android-cta-section .android-cta-content p {
  margin: 0 0 36px;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-transform: capitalize;
}

.android-cta-section .btn-primary {
  background: #000000;

}

.android-cta-section .btn-primary svg {
  margin-left: 10px;

}

/* Tablet */
@media (max-width: 991px) {
  .android-cta-section {
    padding: 50px 0;
  }

  .android-cta-section .android-cta-box {
    min-height: 270px;
  }

  .android-cta-section .android-cta-content {
    padding: 43px 0 28px 42px;
  }

  .android-cta-section .android-cta-content h2 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .android-cta-section .android-cta-content p {
    margin-bottom: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .android-cta-section {
    padding: 40px 0;
  }

  .android-cta-section .android-cta-box {
    min-height: auto;
    border-radius: 12px;
  }

  .android-cta-section .android-cta-content {
    padding: 42px 28px;
    text-align: center;
  }

  .android-cta-section .android-cta-content h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .android-cta-section .android-cta-content h2 br,
  .android-cta-section .android-cta-content p br {
    display: none;
  }

  .android-cta-section .android-cta-content p {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .android-cta-section {
    padding: 35px 0;
  }

  .android-cta-section .android-cta-box {
    background-position: center center;
  }

  .android-cta-section .android-cta-content {
    padding: 36px 20px;
  }

  .android-cta-section .android-cta-content h2 {
    font-size: 22px;
  }
}

/* Android CTA Section End */




/* Android Portfolio Section Start */
.android-portfolio-section {
  width: 100%;
  background: #ffffff;
  padding: 23px 0 43px;
  font-family: "Gilroy", "Poppins", Arial, sans-serif;
}

.android-portfolio-section * {
  box-sizing: border-box;
}

/* Slider */
.android-portfolio-section .android-portfolio-slider {
  width: 100%;
  max-width: 1164px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px 20px 0 0;
  padding: 0 0 48px;
}

.android-portfolio-section .android-portfolio-track {
  position: relative;
  width: 100%;
}

/* Cards */
.android-portfolio-section .portfolio-card {
  display: none;
  width: 100%;
  min-height: 576px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.android-portfolio-section .portfolio-card.active {
  display: block;
  animation: portfolioFade 0.35s ease;
}

@keyframes portfolioFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.android-portfolio-section .portfolio-card-content {
  min-height: 576px;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
  position: relative;
}

.android-portfolio-section .portfolio-text {
  position: relative;
  z-index: 3;
  padding: 108px 20px 48px 59px;
  color: #ffffff;
}

.android-portfolio-section .portfolio-text h3 {
  margin: 0 0 59px;
  color: #ffffff;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.android-portfolio-section .portfolio-text p {
  max-width: 508px;
  margin: 0 0 31px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}

/* Stats */
.android-portfolio-section .portfolio-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0 0 48px 37px;
}

.android-portfolio-section .stat-box {
  min-width: 120px;
  text-align: center;
  color: #ffffff;
}

.android-portfolio-section .stat-box strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 12px;
}

.android-portfolio-section .stat-box span {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: capitalize;
}

.android-portfolio-section .stat-divider {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
}

/* Image */
.android-portfolio-section .portfolio-image {
  position: relative;
  z-index: 2;
  min-height: 576px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}

.android-portfolio-section .portfolio-image img {
  width: 100%;
  max-width: 508px;
  height: auto;
  max-height: 583px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  margin-right: 27px;
  margin-bottom: 0;
}

/* Specific Card Backgrounds */
.android-portfolio-section .construction-connect-card {
  background: linear-gradient(180deg, #521282 0%, #2d1141 100%);
}

.android-portfolio-section .ahyon-card {
  background: linear-gradient(359.06deg, #093848 -4.97%, #147698 89.84%);
}

.android-portfolio-section .ahyon-card .portfolio-image {
  align-items: center;
}

.android-portfolio-section .super-flex-card {
  background: linear-gradient(176.28deg, #1e8cc4 11.53%, #103c52 102.91%);
}

.android-portfolio-section .maids-on-fly-card {
  background: linear-gradient(180.59deg, #74d5ff 0.49%, #216a8b 85.13%);
}

.android-portfolio-section .shifaam-card {
  background: linear-gradient(177.66deg, #668888 12.56%, #1a2222 111.59%);
}

/* Arrows */
.android-portfolio-section .portfolio-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
}

.android-portfolio-section .portfolio-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
  transition: all 0.3s ease;
  padding: 0;
}

.android-portfolio-section .portfolio-arrow span {
  display: block;
  transform: translateY(-2px);
}

.android-portfolio-section .portfolio-prev {
  background: #ffffff;
  color: #de253a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.android-portfolio-section .portfolio-next {
  background: #de253a;
  color: #ffffff;
  box-shadow: 0 12px 16px rgba(222, 37, 58, 0.35);
}

.android-portfolio-section .portfolio-arrow:hover {
  transform: translateY(-3px);
}

/* Laptop */
@media (max-width: 1199px) {
  .android-portfolio-section .android-portfolio-slider {
    max-width: 100%;
  }

  .android-portfolio-section .portfolio-card,
  .android-portfolio-section .portfolio-card-content {
    min-height: 520px;
  }

  .android-portfolio-section .portfolio-text {
    padding: 90px 20px 42px 44px;
  }

  .android-portfolio-section .portfolio-text h3 {
    font-size: 26px;
    margin-bottom: 44px;
  }

  .android-portfolio-section .portfolio-text p {
    max-width: 460px;
    font-size: 15px;
  }

  .android-portfolio-section .portfolio-stats {
    margin-left: 20px;
    gap: 38px;
  }

  .android-portfolio-section .portfolio-image img {
    max-width: 470px;
    margin-right: 10px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .android-portfolio-section {
    padding: 35px 0 45px;
  }

  .android-portfolio-section .android-portfolio-slider {
    padding-bottom: 42px;
  }

  .android-portfolio-section .portfolio-card,
  .android-portfolio-section .portfolio-card-content {
    min-height: 470px;
  }

  .android-portfolio-section .portfolio-card-content {
    grid-template-columns: 53% 47%;
  }

  .android-portfolio-section .portfolio-text {
    padding: 74px 18px 36px 34px;
  }

  .android-portfolio-section .portfolio-text h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 34px;
  }

  .android-portfolio-section .portfolio-text p {
    font-size: 14px;
    line-height: 1.28;
    margin-bottom: 26px;
  }

  .android-portfolio-section .portfolio-stats {
    gap: 28px;
    margin: 0 0 34px 0;
  }

  .android-portfolio-section .stat-box {
    min-width: 105px;
  }

  .android-portfolio-section .stat-box strong {
    font-size: 22px;
  }

  .android-portfolio-section .stat-box span {
    font-size: 13px;
  }

  .android-portfolio-section .portfolio-image {
    min-height: 470px;
  }

  .android-portfolio-section .portfolio-image img {
    max-width: 390px;
  }

  .android-portfolio-section .portfolio-arrow {
    width: 56px;
    height: 56px;
    font-size: 31px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .android-portfolio-section {
    padding: 45px 0px;
  }

  .android-portfolio-section .text-cont {
    margin-bottom: 34px;
  }

  .android-portfolio-section .android-portfolio-slider {
    border-radius: 20px;
    padding-bottom: 34px;
  }

  .android-portfolio-section .portfolio-card {
    min-height: auto;
  }

  .android-portfolio-section .portfolio-card-content {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .android-portfolio-section .portfolio-text {
    order: 1;
    padding: 38px 24px 26px;
    text-align: center;
  }

  .android-portfolio-section .portfolio-text h3 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .android-portfolio-section .portfolio-text p {
    max-width: 100%;
    line-height: 1.55;
    margin-bottom: 15px;
  }

  .android-portfolio-section .portfolio-stats {
    justify-content: center;
    gap: 24px;
    margin: 0 0 30px;
  }

  .android-portfolio-section .stat-box {
    min-width: auto;
    width: 120px;
  }

  .android-portfolio-section .stat-box strong {
    font-size: 22px;
    margin-bottom: 7px;
  }

  .android-portfolio-section .stat-divider {
    height: 44px;
  }

  .android-portfolio-section .portfolio-image {
    order: 2;
    min-height: 300px;
    padding: 0 18px;
    justify-content: center;
    align-items: flex-end;
  }

  .android-portfolio-section .portfolio-image img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    object-position: center bottom;
  }

  .android-portfolio-section .portfolio-arrows {
    margin-top: 28px;
    gap: 14px;
  }

  .android-portfolio-section .portfolio-arrow {
    width: 52px;
    height: 52px;
    font-size: 29px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .android-portfolio-section {
    padding: 40px 0px;
  }

  .android-portfolio-section .portfolio-text {
    padding: 32px 18px 24px;
  }

  .android-portfolio-section .portfolio-text h3 {
    font-size: 21px;
  }

  .android-portfolio-section .portfolio-stats {
    gap: 16px;
  }

  .android-portfolio-section .stat-box {
    width: 102px;
  }

  .android-portfolio-section .stat-box strong {
    font-size: 20px;
  }

  .android-portfolio-section .portfolio-image {
    min-height: 245px;
  }

  .android-portfolio-section .portfolio-arrow {
    width: 48px;
    height: 48px;
    font-size: 27px;
  }
}

/* Android Portfolio Section End */










/* UAE Compliance Section CSS Start */
.uae-compliance-section {
  background: #0A0A0A;
  padding: 100px 0;
  overflow: hidden;
}

.uae-compliance-section .uae-compliance-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.uae-compliance-section .uae-compliance-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  align-items: end;
}

.uae-compliance-section .uae-image-box {
  height: 280px;
  border-radius: 28px 0 28px 0;
  overflow: hidden;
}

.uae-compliance-section .uae-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.uae-compliance-section .uae-compliance-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}

.uae-compliance-section .uae-card {
  position: relative;
  min-height: 280px;
  background: #FFFFFF;
  color: #000000;
  overflow: hidden;
  cursor: pointer;
  border-radius: 30px 0 30px 0;
  transition: all 0.35s ease;
}

/* Default Card */
.uae-compliance-section .uae-card .uae-card-front {
  position: absolute;
  inset: 0;
  padding: 34px 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.35s ease;
}

.uae-compliance-section .uae-card .uae-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #DE253A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
  transition: all 0.35s ease;
}

.uae-compliance-section .uae-card h3 {
  margin: 0;
  color: #000000;
  font-size: 18px;
  line-height: 1.2;
}

/* Hover Text */
.uae-compliance-section .uae-card .uae-card-hover-text {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  color: #5C5C5C;
  padding: 70px 26px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 3;
}

/* Hover Effect */
.uae-compliance-section .uae-card:hover .uae-card-front,
.uae-compliance-section .uae-card.active .uae-card-front {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
}

.uae-compliance-section .uae-card:hover .uae-card-hover-text,
.uae-compliance-section .uae-card.active .uae-card-hover-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

/* 1199px */
@media (max-width: 1199px) {
  .uae-compliance-section {
    padding: 80px 20px;
  }

  .uae-compliance-section .uae-compliance-container {
    max-width: 960px;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
  }

  .uae-compliance-section .uae-compliance-left {
    display: unset;
  }

  .uae-compliance-section .uae-image-box {
    height: 260px;
  }

  .uae-compliance-section .uae-compliance-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .uae-compliance-section .uae-card {
    min-height: 220px;
  }

  .uae-compliance-section .uae-card .uae-card-front {
    padding: 45px 26px 32px;
  }

  .uae-compliance-section .uae-card .uae-card-hover-text {
    padding: 45px 26px;
    font-size: 15px;
  }

  .uae-compliance-section .uae-card .uae-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 22px;
  }

  .uae-compliance-section .uae-card h3 {
    font-size: 17px;
  }
}

/* 991px */
@media (max-width: 991px) {
  .uae-compliance-section {
    padding: 70px 18px;
  }

  .uae-compliance-section .text-cont {
    margin-bottom: 0;
  }

  .uae-compliance-section .uae-compliance-container {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .uae-compliance-section .uae-compliance-left {
    grid-template-rows: auto;
    gap: 26px;
  }

  .uae-compliance-section .uae-image-box {
    height: 320px;
    border-radius: 26px 0 26px 0;
  }

  .uae-compliance-section .uae-compliance-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .uae-compliance-section .uae-card {
    min-height: auto;
    cursor: default;
    background: #FFFFFF;
    border-radius: 26px 0 26px 0;
  }

  .uae-compliance-section .uae-card .uae-card-front {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 36px 24px 14px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
  }

  .uae-compliance-section .uae-card .uae-card-hover-text {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent;
    color: #5C5C5C;
    padding: 0 24px 36px;
    display: block;
    font-size: 15px;
    line-height: 1.55;
    z-index: 1;
  }

  .uae-compliance-section .uae-card:hover .uae-card-front,
  .uae-compliance-section .uae-card.active .uae-card-front {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .uae-compliance-section .uae-card:hover .uae-card-hover-text,
  .uae-compliance-section .uae-card.active .uae-card-hover-text {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .uae-compliance-section .uae-card .uae-number,
  .uae-compliance-section .uae-card:hover .uae-number,
  .uae-compliance-section .uae-card.active .uae-number {
    width: 54px;
    height: 54px;
    background: #DE253A;
    color: #FFFFFF;
    font-size: 23px;
    margin-bottom: 20px;
  }

  .uae-compliance-section .uae-card h3 {
    color: #000000;
    font-size: 17px;
  }

}

/* 767px */
@media (max-width: 767px) {
  .uae-compliance-section {
    padding: 55px 15px;
  }

  .uae-compliance-section .uae-compliance-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .uae-compliance-section .uae-compliance-left {
    display: grid;
    grid-template-rows: auto;
    gap: 22px;
  }

  .uae-compliance-section .uae-image-box {
    height: 240px;
    border-radius: 22px 0 22px 0;
  }

  .uae-compliance-section .uae-compliance-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .uae-compliance-section .uae-card {
    min-height: auto;
    border-radius: 22px 0 22px 0;
  }

  .uae-compliance-section .uae-card .uae-card-front {
    padding: 32px 22px 12px;
  }

  .uae-compliance-section .uae-card .uae-number,
  .uae-compliance-section .uae-card:hover .uae-number,
  .uae-compliance-section .uae-card.active .uae-number {
    width: 50px;
    height: 50px;
    font-size: 21px;
    margin-bottom: 16px;
  }

  .uae-compliance-section .uae-card h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .uae-compliance-section .uae-card .uae-card-hover-text {
    padding: 0 22px 32px;
    font-size: 14px;
    line-height: 1.55;
  }
}

/* UAE Compliance CSS End */








.industry-specific-android-apps {
  padding: 100px 0;
  background-color: #fff;
}

.industry-specific-android-apps .industry-specific-cards {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 30px;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.industry-specific-android-apps .industry-specific-cards .industry-specific-card {
  background-color: #F6F6F6;
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.35s ease;
}

.industry-specific-android-apps .industry-specific-cards .industry-specific-card .card-img {
  margin-bottom: 15px;
}

.industry-specific-android-apps .industry-specific-cards .industry-specific-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
}

.industry-specific-android-apps .industry-specific-cards .industry-specific-card:hover {
  background-color: #DE253A;
}

.industry-specific-android-apps .industry-specific-cards .industry-specific-card:hover h3 {
  color: #fff;
}

.industry-specific-android-apps .industry-specific-cards .industry-specific-card:hover img {
  filter: invert(1);
}

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

/* 1199px */
@media (max-width: 1199px) {
  .industry-specific-android-apps {
    padding: 80px 20px;
  }

  .industry-specific-android-apps .industry-specific-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card .card-img {
    margin-bottom: 12px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card .card-img img {
    width: 100%;
    max-width: 65px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card h3 {
    font-size: 20px;
    line-height: 1.15;
  }
}

/* 991px */
@media (max-width: 991px) {
  .industry-specific-android-apps {
    padding: 70px 18px;
  }

  .industry-specific-android-apps .industry-specific-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card {
    min-height: 190px;
    padding: 34px 24px;
    border-radius: 18px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card .card-img {
    margin-bottom: 14px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card .card-img img {
    max-width: 64px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}

/* 767px */
@media (max-width: 767px) {
  .industry-specific-android-apps {
    padding: 55px 15px;
  }

  .industry-specific-android-apps .industry-specific-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card {
    min-height: 140px;
    padding: 20px;
    border-radius: 16px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card .card-img {
    margin-bottom: 12px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card .card-img img {
    max-width: 50px;
  }

  .industry-specific-android-apps .industry-specific-cards .industry-specific-card h3 {
    font-size: 18px;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .industry-specific-android-apps .industry-specific-cards {
    grid-template-columns: 1fr;
  }
}





/* =============================== Premium Android App Section Start =============================== */
.premium-android-app {
  padding: 100px 0;
}

.premium-android-app .text-cont {
  margin-bottom: 0;
}

.premium-android-app .text-cont .section-title {
  font-weight: 400;
}

.premium-android-app .box-wrapper {
  padding: 70px;
  background-image: url("../img/web-app-uae/premium-android-app-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.premium-android-app .box-wrapper .years-of-exp-wrapper {
  width: 100%;
  max-width: 725px;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp {
  position: relative;
  width: stretch;
}

.premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  background-color: #BEBCBC;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp:last-child::after {
  display: none;
}

.premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp h3 {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}


@media (max-width: 1199px) {
  .premium-android-app .box-wrapper {
    padding: 50px;
  }

  .premium-android-app {
    padding: 75px 0;
  }
}

@media (max-width: 991px) {
  .premium-android-app {
    padding: 70px 0;
  }

  .premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp h3 {
    margin-bottom: 5px;
    font-size: 32px;
    line-height: 1.1;
  }

  .premium-android-app .box-wrapper .years-of-exp-wrapper {
    margin-top: 20px;
  }
}


@media (max-width: 767px) {
  .premium-android-app {
    padding: 55px 0;
  }

  .premium-android-app .box-wrapper {
    padding: 30px 20px;
  }

  .premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp::after {
    display: none;
  }

  .premium-android-app .box-wrapper .years-of-exp-wrapper {
    flex-wrap: wrap;
  }

  .premium-android-app .uae-btn {
    width: 100%;
    max-width: fit-content;
    height: 58px;
    padding: 0 22px;
    font-size: 12px;
    border-radius: 12px;
  }

  .premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp h3,
  .premium-android-app .box-wrapper .years-of-exp-wrapper .years-of-exp .section-content,
  .premium-android-app .text-cont .section-title,
  .premium-android-app .text-cont .section-content,
  .premium-android-app .uae-btn-wrap {
    text-align: center;
  }
}

/* =============================== Premium Android App Section End =============================== */





/* Dubai Cost Section Start */
.dubai-cost-section {
  padding: 0 0;
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

.dubai-cost-section .dubai-cost-container {
  max-width: 1180px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  align-items: end;
}

/* Main Cards */
.dubai-cost-section .dubai-cost-card {
  position: relative;
  min-height: 406px;
  background: #F6F6F6;
  border-radius: 28px;
  padding: 88px 32px 38px;
  transition: all 0.35s ease;
  height: 100%;
}

.dubai-cost-section .dubai-cost-card-title {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  min-height: 74px;
  background: #DE253A;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 9px solid #ffffff;
}

.dubai-cost-section .dubai-cost-card-title h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.35s ease;
}

.dubai-cost-section .dubai-cost-card-content {
  text-align: center;
}

.dubai-cost-section .dubai-cost-card-content h4 {
  margin: 0 0 34px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  color: #000000;
  transition: all 0.35s ease;
}

.dubai-cost-section .dubai-cost-card-content p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #565656;
  transition: all 0.35s ease;
}

/* Hover Effect For First 3 Cards */
.dubai-cost-section .dubai-cost-card:hover {
  background: #DE253A;
  transform: translateY(-8px);
}

.dubai-cost-section .dubai-cost-card:hover .dubai-cost-card-title {
  background: #DE253A;
  box-shadow: none;
}

.dubai-cost-section .dubai-cost-card:hover .dubai-cost-card-title h3,
.dubai-cost-section .dubai-cost-card:hover .dubai-cost-card-content h4,
.dubai-cost-section .dubai-cost-card:hover .dubai-cost-card-content p {
  color: #ffffff;
}

/* CTA Card */
.dubai-cost-section .dubai-cost-cta-card {
  min-height: 420px;
  background: linear-gradient(180deg, #676767 0%, #8E8A8A 100%);
  border-radius: 28px;
  padding: 25px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dubai-cost-section .dubai-cost-phone {
  width: 136px;
  height: 210px;
  margin-bottom: 15px;
}

.dubai-cost-section .dubai-cost-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dubai-cost-section .dubai-cost-cta-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: #ffffff;
  text-align: start;
}

/* ===============================
   RESPONSIVE CSS
================================ */
@media (max-width: 1399px) {
  .dubai-cost-section .dubai-cost-container {
    max-width: 1120px;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }

  .dubai-cost-section .dubai-cost-card {
    min-height: 390px;
    padding: 78px 22px 34px;
  }

  .dubai-cost-section .dubai-cost-card-content h4 {
    font-size: 22px;
    margin: 0 0 24px;
  }

  .dubai-cost-section .dubai-cost-card-content p {
    font-size: 15px;
    line-height: 22px;
  }

  .dubai-cost-section .dubai-cost-cta-card {
    min-height: 390px;
    grid-column: auto;
  }
}

@media (max-width: 1199px) {
  .dubai-cost-section .dubai-cost-container {
    margin: 65px auto 0;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .dubai-cost-section .dubai-cost-card {
    min-height: auto;
    padding: 76px 20px 32px;
    border-radius: 24px;
  }

  .dubai-cost-section .dubai-cost-card-title {
    top: -32px;
    width: calc(100% - 34px);
    min-height: 68px;
    padding: 15px;
    border-radius: 18px;
    border-width: 8px;
  }

  .dubai-cost-section .dubai-cost-card-title h3 {
    font-size: 16px;
  }

  .dubai-cost-section .dubai-cost-card-content h4 {
    font-size: 20px;
    margin: 0 0 20px;
  }

  .dubai-cost-section .dubai-cost-card-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .dubai-cost-section .dubai-cost-cta-card {
    grid-column: 2 / 3;
    min-height: auto;
    border-radius: 24px;
    padding: 30px 22px;
  }

  .dubai-cost-section .dubai-cost-phone {
    width: 125px;
    height: 190px;
  }
}

@media (max-width: 991px) {
  .dubai-cost-section .dubai-cost-container {
    max-width: 700px;
    margin: 60px auto 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 22px;
  }

  .dubai-cost-section .dubai-cost-card {
    padding: 74px 22px 30px;
  }

  .dubai-cost-section .dubai-cost-card-content h4 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .dubai-cost-section .dubai-cost-card-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .dubai-cost-section .dubai-cost-cta-card {
    padding: 28px 20px;
  }

  .dubai-cost-section .dubai-cost-cta-card p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .dubai-cost-section .dubai-cost-card:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  .dubai-cost-section .dubai-cost-container {
    width: 100%;
    max-width: 100%;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 45px;
  }

  .dubai-cost-section .dubai-cost-card,
  .dubai-cost-section .dubai-cost-cta-card {
    width: 100%;
    max-width: 100%;
    grid-column: auto;
  }

  .dubai-cost-section .dubai-cost-card {
    padding: 72px 20px 28px;
    border-radius: 22px;
  }

  .dubai-cost-section .dubai-cost-card-title {
    top: -30px;
    width: calc(100% - 30px);
    min-height: 64px;
    padding: 14px;
    border-radius: 16px;
    border-width: 7px;
  }

  .dubai-cost-section .dubai-cost-card-title h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .dubai-cost-section .dubai-cost-card-content h4 {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .dubai-cost-section .dubai-cost-card-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .dubai-cost-section .dubai-cost-cta-card {
    border-radius: 22px;
    padding: 30px 20px;
  }

  .dubai-cost-section .dubai-cost-phone {
    width: 115px;
    height: 175px;
    margin-bottom: 18px;
  }

  .dubai-cost-section .dubai-cost-cta-card p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .dubai-cost-section .dubai-cost-card {
    padding: 60px 18px 26px;
  }

  .dubai-cost-section .dubai-cost-card-title {
    width: calc(100% - 24px);
  }

  .dubai-cost-section .dubai-cost-card-content h4 {
    font-size: 18px;
  }

  .dubai-cost-section .dubai-cost-card-content p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Dubai Cost Section End */









.choose-us-for-app {
  background: #0A0A0A;
  padding: 80px 0;
  overflow: hidden;
}

.choose-us-for-app .choose-us-for-app-content {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-inline: auto;
}

.choose-us-for-app .choose-us-for-app-image-wrap {
  position: relative;
  max-width: 555px;
  margin-left: 0;
}

.choose-us-for-app .choose-us-for-app-image-bg {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 85%;
  height: calc(100% + 24px);
  background: #DE253A;
  border-radius: 20px;
  z-index: 1;
}

.choose-us-for-app .choose-us-for-app-image {
  position: relative;
  width: 100%;
  height: 641px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}

.choose-us-for-app .choose-us-for-app-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.choose-us-for-app .choose-us-for-app-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 47px;
}

.choose-us-for-app .choose-us-for-app-line {
  position: absolute;
  left: 36px;
  top: 36px;
  width: 1px;
  height: calc(100% - 120px);
  background: #D9D9D9;
  z-index: 1;
}

.choose-us-for-app .choose-us-for-app-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 30px;
  align-items: flex-start;
  z-index: 2;
}

.choose-us-for-app .choose-us-for-app-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #DE253A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.choose-us-for-app .choose-us-for-app-icon img,
.choose-us-for-app .choose-us-for-app-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.choose-us-for-app .choose-us-for-app-text {
  padding-top: 10px;
}

.choose-us-for-app .choose-us-for-app-text h3 {
  margin: 0 0 12px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
}

.choose-us-for-app .choose-us-for-app-text p {
  margin: 0;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  max-width: 470px;
}

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

@media (max-width: 1199px) {
  .choose-us-for-app {
    padding: 75px 0;
  }

  .choose-us-for-app .choose-us-for-app-content {
    gap: 35px;
  }

  .choose-us-for-app .choose-us-for-app-icon img,
  .choose-us-for-app .choose-us-for-app-icon svg {
    width: 35px;
    height: 35px;
  }

  .choose-us-for-app .choose-us-for-app-image {
    height: 560px;
  }

  .choose-us-for-app .choose-us-for-app-list {
    gap: 34px;
  }

  .choose-us-for-app .choose-us-for-app-item {
    grid-template-columns: 64px 1fr;
    gap: 22px;
  }

  .choose-us-for-app .choose-us-for-app-line {
    left: 32px;
    top: 32px;
    height: calc(100% - 140px);
  }

  .choose-us-for-app .choose-us-for-app-text h3 {
    font-size: 17px;
    line-height: 28px;
  }

  .choose-us-for-app .choose-us-for-app-text p {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 991px) {
  .choose-us-for-app {
    padding: 70px 0;
  }

  .choose-us-for-app .choose-us-for-app-icon {
    width: 55px;
    height: 55px;
  }

  .choose-us-for-app .choose-us-for-app-content {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 50px;
  }

  .choose-us-for-app .choose-us-for-app-image-wrap {
    max-width: 100%;
  }

  .choose-us-for-app .choose-us-for-app-image {
    height: 520px;
  }

  .choose-us-for-app .choose-us-for-app-list {
    max-width: 100%;
    gap: 20px;
  }

  .choose-us-for-app .choose-us-for-app-text p {
    max-width: 100%;
  }

  .choose-us-for-app .choose-us-for-app-line {
    display: none;
  }

  .choose-us-for-app .choose-us-for-app-text {
    padding-top: 0;
  }

  .choose-us-for-app .choose-us-for-app-text h3 {
    margin: 0 0 5px;
  }
}

@media (max-width: 767px) {
  .choose-us-for-app {
    padding: 55px 0;
  }

  .choose-us-for-app .choose-us-for-app-content {
    margin-top: 40px;
    gap: 42px;
  }

  .choose-us-for-app .choose-us-for-app-image-bg {
    left: -8px;
    top: -8px;
    width: 90%;
    height: calc(100% + 16px);
    border-radius: 16px;
  }

  .choose-us-for-app .choose-us-for-app-image {
    height: 360px;
    border-radius: 16px;
  }

  .choose-us-for-app .choose-us-for-app-item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .choose-us-for-app .choose-us-for-app-line {
    left: 28px;
    top: 28px;
    height: calc(100% - 56px);
  }

  .choose-us-for-app .choose-us-for-app-text h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .choose-us-for-app .choose-us-for-app-text p {
    font-size: 14px;
    line-height: 22px;
  }

  .choose-us-for-app .choose-us-for-app-icon img,
  .choose-us-for-app .choose-us-for-app-icon svg {
    width: 30px;
    height: 30px;
  }

}

@media (max-width: 480px) {
  .choose-us-for-app .choose-us-for-app-image {
    height: 300px;
  }

  .choose-us-for-app .choose-us-for-app-item {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .choose-us-for-app .choose-us-for-app-line {
    left: 25px;
    top: 25px;
    height: calc(100% - 50px);
  }

  .choose-us-for-app .choose-us-for-app-text p {
    font-size: 14px;
    line-height: 21px;
  }
}

/* end choose-us-for-app End */







/* Testimonials For Clients Section Start */
.testimonials-for-clients-section {
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-for-clients-section .testimonials-for-clients-wrap {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}

.testimonials-for-clients-section .testimonials-for-clients-slider {
  overflow: hidden;
  width: 100%;
}

.testimonials-for-clients-section .testimonials-for-clients-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonials-for-clients-section .testimonials-for-clients-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonials-for-clients-section .testimonials-for-clients-grid {
  display: grid;
  grid-template-columns: 570px 570px;
  gap: 30px;
  align-items: stretch;
}

.testimonials-for-clients-section .testimonials-for-clients-image {
  width: 100%;
  height: 552px;
  border-radius: 20px;
  overflow: hidden;
}

.testimonials-for-clients-section .testimonials-for-clients-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonials-for-clients-section .testimonials-for-clients-card {
  width: 100%;
  height: 552px;
  background: #F6F6F6;
  border-radius: 20px;
  padding: 68px 49px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonials-for-clients-section .testimonials-for-clients-stars {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.testimonials-for-clients-section .testimonials-for-clients-stars span {
  color: #FFCB00;
  font-size: 34px;
  line-height: 1;
  display: inline-block;
}

.testimonials-for-clients-section .testimonials-for-clients-card h3 {
  margin: 0 0 10px;
  color: #000000;
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
}

.testimonials-for-clients-section .testimonials-for-clients-card p {
  margin: 0;
  color: #565656;
  font-size: 19px;
  line-height: 28px;
  font-weight: 400;
  max-width: 437px;
}

.testimonials-for-clients-section .testimonials-for-clients-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  outline: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-for-clients-section .testimonials-for-clients-arrow span {
  font-size: 30px;
  line-height: 1;
  margin-top: -3px;
}

.testimonials-for-clients-section .testimonials-for-clients-arrow.prev {
  left: -93px;
  background: #FFFFFF;
  color: #DE253A;
  box-shadow: 0px 7px 6px 0px #00000014;
}

.testimonials-for-clients-section .testimonials-for-clients-arrow.next {
  right: -84px;
  background: #DE253A;
  color: #FFFFFF;
  box-shadow: 0 12px 18px rgba(222, 37, 58, 0.35);
}

.testimonials-for-clients-section .testimonials-for-clients-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

/* 1399px */
@media (max-width: 1399px) {
  .testimonials-for-clients-section .testimonials-for-clients-wrap {
    max-width: 1080px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow.prev {
    left: -70px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow.next {
    right: -70px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card {
    padding: 62px 42px 45px;
  }
}

/* 1199px */
@media (max-width: 1199px) {
  .testimonials-for-clients-section .testimonials-for-clients-wrap {
    max-width: 900px;
    padding: 0 70px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-image,
  .testimonials-for-clients-section .testimonials-for-clients-card {
    height: 500px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card {
    padding: 50px 34px 40px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-stars {
    gap: 18px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-stars span {
    font-size: 30px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card h3 {
    font-size: 20px;
    line-height: 34px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card p {
    font-size: 18px;
    line-height: 27px;
    max-width: 100%;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow {
    width: 56px;
    height: 56px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow.prev {
    left: 0;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow.next {
    right: 0;
  }
}

/* 991px */
@media (max-width: 991px) {
  .testimonials-for-clients-section {
    padding: 80px 0;
  }

  .testimonials-for-clients-section .testimonials-for-clients-wrap {
    max-width: 720px;
    padding: 0 60px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-image {
    height: 430px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card {
    height: auto;
    min-height: 360px;
    padding: 42px 34px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* 767px */
@media (max-width: 767px) {
  .testimonials-for-clients-section {
    padding: 55px 0;
  }

  .testimonials-for-clients-section .testimonials-for-clients-wrap {
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-slider {
    order: 1;
    flex: 0 0 100%;
    width: 100%;
  }

  .testimonials-for-clients-section .testimonials-for-clients-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-image {
    height: 360px;
    border-radius: 18px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card {
    height: auto;
    min-height: auto;
    border-radius: 18px;
    padding: 34px 24px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-stars {
    gap: 14px;
    margin-bottom: 8px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-stars span {
    font-size: 26px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card h3 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 5px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    order: 2;
    width: 52px;
    height: 52px;
    margin-top: 26px;
    display: inline-flex;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow:hover {
    transform: none;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow.prev,
  .testimonials-for-clients-section .testimonials-for-clients-arrow.next {
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

/* 575px */
@media (max-width: 575px) {
  .testimonials-for-clients-section .testimonials-for-clients-image {
    height: 320px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card {
    padding: 30px 22px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card p {
    font-size: 15px;
    line-height: 24px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .testimonials-for-clients-section .testimonials-for-clients-image {
    height: 240px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card {
    padding: 28px 20px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-stars span {
    font-size: 24px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-card h3 {
    font-size: 17px;
    line-height: 28px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow {
    width: 48px;
    height: 48px;
    margin-top: 15px;
  }

  .testimonials-for-clients-section .testimonials-for-clients-arrow span {
    font-size: 26px;
  }
}

/* Testimonials For Clients Section End */






/* Why Invest In Android Section Start */
.why-invest-in-android {
  padding: 100px 0;
  overflow: hidden;
}

.why-invest-in-android .why-invest-in-android-wrap {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}

.why-invest-in-android .why-invest-in-android-slider {
  overflow: hidden;
  width: 100%;
}

.why-invest-in-android .why-invest-in-android-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.why-invest-in-android .why-invest-in-android-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.why-invest-in-android .why-invest-in-android-grid {
  display: grid;
  grid-template-columns: 570px 570px;
  gap: 30px;
  align-items: stretch;
}

.why-invest-in-android .why-invest-in-android-image {
  width: 100%;
  height: 552px;
  border-radius: 20px;
  overflow: hidden;
}

.why-invest-in-android .why-invest-in-android-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.why-invest-in-android .why-invest-in-android-card {
  width: 100%;
  height: 552px;
  background: #F6F6F6;
  border-radius: 20px;
  padding: 122px 49px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-invest-in-android .why-invest-in-android-card h3 {
  margin: 0 0 28px;
  color: #000000;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.why-invest-in-android .why-invest-in-android-card p {
  margin: 0 0 44px;
  color: #565656;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
}

.why-invest-in-android .why-invest-in-android-card .btn-primary {
  margin-top: 0;
}

.why-invest-in-android .why-invest-in-android-card .btn-primary span {
  margin-left: 8px;
}

.why-invest-in-android .why-invest-in-android-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  outline: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-invest-in-android .why-invest-in-android-arrow span {
  font-size: 30px;
  line-height: 1;
  margin-top: -3px;
}

.why-invest-in-android .why-invest-in-android-arrow.prev {
  left: -93px;
  background: #FFFFFF;
  color: #DE253A;
  box-shadow: 0px 7px 6px 0px #00000014;
}

.why-invest-in-android .why-invest-in-android-arrow.next {
  right: -84px;
  background: #DE253A;
  color: #FFFFFF;
  box-shadow: 0 12px 18px rgba(222, 37, 58, 0.35);
}

.why-invest-in-android .why-invest-in-android-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

/* 1399px */
@media (max-width: 1399px) {
  .why-invest-in-android .why-invest-in-android-wrap {
    max-width: 1080px;
  }

  .why-invest-in-android .why-invest-in-android-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-invest-in-android .why-invest-in-android-arrow.prev {
    left: -70px;
  }

  .why-invest-in-android .why-invest-in-android-arrow.next {
    right: -70px;
  }

  .why-invest-in-android .why-invest-in-android-card {
    padding: 105px 42px 45px;
  }

  .why-invest-in-android .why-invest-in-android-card p {
    font-size: 20px;
    line-height: 29px;
  }
}

/* 1199px */
@media (max-width: 1199px) {
  .why-invest-in-android .why-invest-in-android-wrap {
    max-width: 900px;
    padding: 0 70px;
  }

  .why-invest-in-android .why-invest-in-android-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-invest-in-android .why-invest-in-android-image,
  .why-invest-in-android .why-invest-in-android-card {
    height: 500px;
  }

  .why-invest-in-android .why-invest-in-android-card {
    padding: 88px 34px 40px;
  }

  .why-invest-in-android .why-invest-in-android-card h3 {
    margin-bottom: 22px;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .why-invest-in-android .why-invest-in-android-card p {
    font-size: 18px;
    line-height: 27px;
    max-width: 100%;
    margin-bottom: 34px;
  }

  .why-invest-in-android .why-invest-in-android-arrow {
    width: 56px;
    height: 56px;
  }

  .why-invest-in-android .why-invest-in-android-arrow.prev {
    left: 0;
  }

  .why-invest-in-android .why-invest-in-android-arrow.next {
    right: 0;
  }
}

/* 991px */
@media (max-width: 991px) {
  .why-invest-in-android {
    padding: 80px 0;
  }

  .why-invest-in-android .why-invest-in-android-wrap {
    max-width: 720px;
    padding: 0 60px;
  }

  .why-invest-in-android .why-invest-in-android-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-invest-in-android .why-invest-in-android-image {
    height: 430px;
  }

  .why-invest-in-android .why-invest-in-android-card {
    height: auto;
    min-height: auto;
    padding: 30px 25px;
  }

  .why-invest-in-android .why-invest-in-android-card p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 15px;
  }
}

/* 767px */
@media (max-width: 767px) {
  .why-invest-in-android {
    padding: 60px 0;
  }

  .why-invest-in-android .why-invest-in-android-wrap {
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
  }

  .why-invest-in-android .why-invest-in-android-slider {
    order: 1;
    flex: 0 0 100%;
    width: 100%;
  }

  .why-invest-in-android .why-invest-in-android-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-invest-in-android .why-invest-in-android-image {
    height: 360px;
    border-radius: 18px;
  }

  .why-invest-in-android .why-invest-in-android-card {
    height: auto;
    min-height: auto;
    border-radius: 18px;
    padding: 34px 24px;
  }

  .why-invest-in-android .why-invest-in-android-card h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .why-invest-in-android .why-invest-in-android-card p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 26px;
  }

  .why-invest-in-android .why-invest-in-android-arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    order: 2;
    width: 52px;
    height: 52px;
    margin-top: 26px;
    display: inline-flex;
  }

  .why-invest-in-android .why-invest-in-android-arrow:hover {
    transform: none;
  }

  .why-invest-in-android .why-invest-in-android-arrow.prev,
  .why-invest-in-android .why-invest-in-android-arrow.next {
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

/* 575px */
@media (max-width: 575px) {
  .why-invest-in-android .why-invest-in-android-image {
    height: 320px;
  }

  .why-invest-in-android .why-invest-in-android-card {
    padding: 30px 22px;
  }

  .why-invest-in-android .why-invest-in-android-card p {
    font-size: 15px;
    line-height: 25px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .why-invest-in-android .why-invest-in-android-image {
    height: 280px;
  }

  .why-invest-in-android .why-invest-in-android-card {
    padding: 28px 20px;
  }

  .why-invest-in-android .why-invest-in-android-card h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .why-invest-in-android .why-invest-in-android-card p {
    font-size: 15px;
    line-height: 25px;
  }

  .why-invest-in-android .why-invest-in-android-arrow {
    width: 48px;
    height: 48px;
    margin-top: 15px;
  }

  .why-invest-in-android .why-invest-in-android-arrow span {
    font-size: 26px;
  }
}

/* Why Invest In Android Section End */





/* Competitors Capture CTA Section Start */
.competitors-capture-cta-section{
  background-image: url(../img/web-app-uae/competitors-cta-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.competitors-capture-cta-section .text-cont{
  margin-bottom: 0;
}

.competitors-capture-cta-section .btns-wrapper{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.competitors-capture-cta-section .btns-wrapper .call-btn{
  font-size: 14px;
  font-weight: 700;
  padding: 15px 20px;
  min-height: 56px;
  border-radius: 14px;
  background: transparent;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid #DE253A;
  text-decoration: none;
}

.competitors-capture-cta-section .btns-wrapper .call-btn:hover{
  background: #DE253A;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(222, 37, 58, 0.35);
}

.competitors-capture-cta-section .btns-wrapper .call-btn:hover svg{
  transform: rotate(-12deg) scale(1.08);
}

.competitors-capture-cta-section .btns-wrapper .call-btn svg{
  transition: all 0.3s ease;
}

.competitors-capture-cta-section .btns-wrapper .call-btn svg path{
  transition: all 0.3s ease;
}

.competitors-capture-cta-section .btns-wrapper .call-btn:hover svg path{
  fill: #ffffff;
}

.competitors-capture-cta-section .btns-wrapper .call-btn:focus-visible{
  outline: none;
  background: #DE253A;
  box-shadow: 0 0 0 4px rgba(222, 37, 58, 0.25);
}

@media (max-width: 1199px) {
  .competitors-capture-cta-section .btns-wrapper{
    margin-top: 30px;
  }

  .competitors-capture-cta-section{
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .competitors-capture-cta-section .btns-wrapper{
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .competitors-capture-cta-section .text-cont .section-title ,
  .competitors-capture-cta-section .text-cont .section-content
  {
    text-align: center;
  }

  .competitors-capture-cta-section .btns-wrapper{
    justify-content: center;
  }
}
/* Competitors Capture CTA Section End */






