/*
Theme Name: Delivery App Development
Theme URI: https://deliveryappdevelopment.com/
Author: Your Name
Author URI: https://deliveryappdevelopment.com/
Description: Custom WordPress theme for Delivery App Development. Built with static header/footer templates.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deliveryappdevelopment
*/

/* homepage css start  */

:root {
  --gap_50: 50px;
  --gap_20: 20px;
  --gap_16: 16px;
  --gap_15: 15px;
  --gap_10: 10px;
}

.home_page_wrapper {
  --tagline_gradient: linear-gradient(
    90deg,
    rgba(254, 148, 42, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  --border_gradient: linear-gradient(180deg, #ffffff 0%, #fe942a 100%);
  --orange_card_gradient: linear-gradient(180deg, #f4871b 0%, #ffb265 100%);
  --comparison_card_gradient: linear-gradient(
    178.86deg,
    rgba(0, 0, 0, 0) 0.81%,
    #c06306 99.15%
  );
}

body .tagline {
  margin-bottom: 15px;
  display: inline-flex;
  padding: 8px 12px;
  min-width: 350px;
  border-radius: 5px 0 0 5px;font-size: 18px;
  background: var(--tagline_gradient);font-weight: 300;
}
body .mw_230.tagline {
  min-width: 230px;
}
body .mw_155.tagline {
  min-width: 155px;
}

.home_page_wrapper .trstd_dsng2.cmtrst_trusted_sc h2 span {
  color: var(--c_white);
  font-weight: 400;
}
.home_page_wrapper .trstd_dsng2.cmtrst_trusted_sc h2 {
  min-width: 85px;
}
.home_page_wrapper .trstd_dsng2 .cmtrst_trusted_slider {
  width: calc(100% - 100px);
}

.home_banner_sc {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;height: 100vh;
  display: flex;
}
.home_banner_sc .conta_iner{
    display: flex;
    flex-direction: column;
}

.banner_grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap_50);margin-block: auto;
}

.banner_grid .banner_left {
  width: calc(55% - (var(--gap_50) * 1 / 2));
}

.banner_grid .banner_right {
  width: calc(40% - (var(--gap_50) * 1 / 2));
}

.banner_grid .banner_left h1 {
  font-size: 50px;
}
.banner_grid .banner_btns {
  margin-block: 36px;
}

.banner_grid .banner_badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.banner_grid .banner_badges li {
  background: var(--c_primary);
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin: 0;font-weight: 300;
}

.banner_grid .banner_badges li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
}

/* Banner Form Card */
.banner_grid .banner_form_card {
  position: relative;
  background: #000a1680;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  z-index: 1;
}
.banner_right .form.v2 .iti__selected-flag{top: 6px;}

.banner_grid .banner_form_card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: var(--border_gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
/* ai engineering section css start */

.ai_engineering_sc .s_h h2 del {
  opacity: 0.4;text-decoration-thickness: 2px;
}

/* Process Timeline */
.process_timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap_16);
  position: relative;
}

.process_timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 70px;
  right: 70px;
  height: 1px;
  background: rgba(254, 148, 42, 0.4);
  z-index: 1;
}

.process_timeline .process_step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process_timeline .step_num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--c_primary);
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.process_timeline .step_title {
  font-size: 18px;
}

/* Comparison Cards */
.comparison_grid {
  display: flex;
  gap: var(--gap_20);
}

.comparison_grid .comparison_card {
  width: calc(50% - (var(--gap_20) * 1 / 2));
  border-radius: 20px;
  padding: 35px;
  background: var(--comparison_card_gradient);
}

.comparison_grid .comparison_card h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.comparison_grid .comparison_card h3::before {
  content: "";
  width: 125px;
  background: var(--c_primary);
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.comparison_grid .comparison_list li {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 19px;
}

.traditional_card .comparison_list li::before {
  content: "❌";
  font-size: 16px;
  line-height: 1;
}

.ai_augmented_card .comparison_list li::before {
  content: "✅";
  font-size: 16px;
  line-height: 1;
}

/* ai engineering section css end */

/* portfolio section css start */
.launch_cta_card {
  background: var(--orange_card_gradient);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.launch_cta_card .launch_cta_content {
  width: 100%;
}

.launch_cta_card .launch_cta_content :is(p, h3, *) {
  color: var(--c_black);
}

.launch_cta_card .launch_cta_list {
  margin: 16px 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.launch_cta_card .launch_cta_list li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.launch_cta_card .launch_cta_list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: var(--c_black);
}

.launch_cta_card .launch_cta_image {
  width: 100%;
  max-width: 605px;
  position: absolute;
  right: 10px;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.launch_cta_card .launch_cta_image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* portfolio section css end */

.business_impact_sc .stats_grid .stats_item.bg_primary {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #ffb265 100%);
}

/* Complete Delivery Ecosystem section css start */
.common_tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.common_tab {
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    color: #ffffff50;
    font-size: 18px;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.common_tab.active,
.common_tab:hover {
  background: var(--c_primary);
  color: var(--c_white);
}

.ecosystem_tabs_wrap .ecosystem_content_card {
  background: url("https://media.deliveryappdevelopment.com/wp-content/uploads/2026/08/13055153/eco_tab_bg.png")
    no-repeat left;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ecosystem_tabs_wrap .ecosystem_left {
  width: 45%;
  padding: 36px;
}

.ecosystem_tabs_wrap .ecosystem_left h3 {
  margin-bottom: 24px;
}

.ecosystem_tabs_wrap .ecosystem_feature_list li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ecosystem_tabs_wrap .ecosystem_feature_list li:not(:last-child) {
  margin-bottom: 10px;
}

.ecosystem_tabs_wrap .ecosystem_feature_list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: var(--c_white);
}

.ecosystem_tabs_wrap .ecosystem_right {
  width: 55%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ecosystem_tabs_wrap .ecosystem_right figure {
  max-width: 100%;
}

.ecosystem_tabs_wrap .ecosystem_mockup img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.ecosystem_tabs_wrap .ecosystem_panel:not(.active) {
  display: none;
}
/* Complete Delivery Ecosystem section css end */

/* Custom Features CTA section css start */
.custom_features_card {
  background-image: url("https://media.deliveryappdevelopment.com/wp-content/uploads/2026/08/13061654/looking_feature_img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.custom_features_card.v2 {
  background-image: url("https://media.deliveryappdevelopment.com/wp-content/uploads/2026/08/13070609/ai_powerd_platform_bg.webp");
}

.custom_features_content {
  max-width: 980px;
}
.custom_features_card.v2 :is(h2, p, small, *) {
  color: var(--c_black);
}

/* Custom Features CTA section css end */

/* Core Features section css start */
.core_features_grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap_20);
}

.core_features_grid .core_feature_card {
  width: calc(100% / 3 - (var(--gap_20) * 2 / 3));
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px;
  transition: var(--transition);
}

.core_feature_card:hover {
  border-color: rgba(254, 148, 42, 0.4);
}

.feature_card_header {
  display: flex;

  gap: 14px;
  margin-bottom: 12px;
}

.feature_icon {
  width: 30px;
  height: 30px;
  background: var(--c_primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 2px;

  flex-shrink: 0;
}

.feature_card_header h3 {
  margin-bottom: 10px;
}
.feature_card_header p {
  max-width: 275px;
}

.core_features_panel:not(.active) {
  display: none;
}

/* Core Features section css end */

/* AI Powered Engineering section css start */

.ai_features_grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap_20);
}

.ai_features_grid .ai_feature_card {
  width: calc(100% / 3 - (var(--gap_20) * 2 / 3));
  background: #ffffff10;
  border-radius: 10px;
  padding: 24px;
  transition: var(--transition);
}

.ai_features_grid .ai_feature_card.card_tint {
  background: #a7662330;
}

.ai_features_grid .ai_feature_card:hover {
  transform: translateY(-2px);
}

.ai_features_grid .ai_card_icon {
  width: 44px;
  height: 44px;
  background: var(--c_primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
}

.ai_features_grid .ai_feature_card h3 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 22px;
}
.ai_features_grid .ai_feature_card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 1px;
  background: var(--c_primary);
}

/* AI Powered Engineering section css end */

/* Delivery App Development Process section css start */
.dev_process_sc .tagline {
  min-width: 85px;
}

.dev_process_sc .process_steps_wrap {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: var(--gap_20);
}

.dev_process_sc .process_steps_wrap::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed #cc6e11;
  z-index: 1;
}

.dev_process_sc .process_step_item {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 200px;
  z-index: 2;
}

.dev_process_sc .process_num {
  width: 90px;
  height: 90px;
  border: 2px solid var(--c_primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: #291603;
  margin: 0 auto 18px;
}

.dev_process_sc .process_title {
  color: var(--c_primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Delivery App Development Process section css end */

@media (min-width:1200px) and (max-width:1400px) {
.home_page_wrapper{zoom: 0.9;}
.home_banner_sc {height: calc((100vh + 100px) / .9);}
}

/* media query 1234 */
@media (max-width: 1400px) {
  .banner_grid .banner_left h1 {
    font-size: 48px;
  }
  .stats_sc {
    padding-top: 40px;
}
.aidvplmnt_faq_ryt > li > ul > li h3{font-size: 22px;}
}

@media (max-width: 1200px) {
  .banner_grid .banner_left h1 {
    font-size: 42px;
  }
  .banner_grid .banner_left,
  .banner_grid .banner_right {
    width: 100%;
  }
  .common_tab {
      font-size: 16px;
      padding: 10px 10px;
      border-radius: 10px;
  }
  .launch_cta_card .launch_cta_content .mt_40 {
    margin-top: 20px;
  }
  .launch_cta_card .launch_cta_list{gap: 7px;}
  .launch_cta_card .launch_cta_list li {
      font-size: 14px;
      gap: 6px;
  }
  .ecosystem_tabs_wrap .ecosystem_feature_list li {
    font-size: 14px;
    line-height: normal;
  }

  .ecosystem_tabs_wrap .ecosystem_feature_list li::before,.launch_cta_card .launch_cta_list li::before{font-size: 12px;}
  .comparison_grid .comparison_list li{font-size: 16px;}
  .core_features_grid{gap: 10px;}
  .home_banner_sc{height: auto;}
  .banner_grid .banner_right{padding-bottom: 20px;}
  .banner_grid {
    flex-wrap: wrap;
  }
  .banner_grid .banner_form_card {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
  .process_timeline {
    display: none;
  }
  .comparison_grid .comparison_card {
    padding: 30px;
  }
  .launch_cta_card .launch_cta_image {
    display: none;
  }
  .business_impact_sc .s_h p .br {
    display: inline;
  }
}

@media (max-width: 992px) {
  .banner_grid .banner_left h1 {
    font-size: 36px;
  }
  .comparison_grid .comparison_card {
    width: 100%;
  }
  .comparison_grid,
  .ecosystem_tabs_wrap .ecosystem_content_card,
  .dev_process_sc .process_steps_wrap {
    flex-wrap: wrap;
  }
  .ecosystem_tabs_wrap .ecosystem_content_card {
    background: none;
  }
  .ecosystem_tabs_wrap .ecosystem_left,
  .ecosystem_tabs_wrap .ecosystem_right {
    width: 100%;
    padding: 0;
  }
  .core_features_grid .core_feature_card,
  .ai_features_grid .ai_feature_card {
    width: calc(100% / 2 - (var(--gap_20) * 1 / 2));
  }
  .dev_process_sc .process_steps_wrap::before {
    display: none;
  }
  .dev_process_sc .process_num {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .dev_process_sc .process_step_item {
    width: calc(100% / 2 - (var(--gap_20) * 1 / 2));
    flex: unset;
    max-width: initial;
    background: #ffffff10;
    padding: 10px;
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .banner_grid .banner_left h1 {
    font-size: 30px;
  }
  .banner_grid .banner_badges li {
    font-size: 14px;padding: 8px;gap: 5px;
    min-height: 35px;
  }
  .banner_grid .banner_badges{gap: 8px;}
.banner_grid .banner_badges li::before{font-size: 12px;}
  .custom_features_card {
    padding: 30px 20px;
  }
  .ai_features_grid .ai_feature_card {
    padding: 20px 10px;
  }
  .ai_features_grid .ai_feature_card h3 {
    margin-bottom: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }
  .dev_process_sc .process_num {
    font-size: 16px;
    border-width: 1px;
  }
  .banner_grid .banner_btns {
    margin-block: 25px;
  }
}

@media (max-width: 575px) {
  .banner_grid .banner_left h1 {
    font-size: 26px;line-height: 1.2;
  }
  .banner_grid .banner_left p{line-height: 1.4;}
  .banner_grid .banner_btns {
    margin-block: 20px;
  }
  .banner_grid .banner_form_card {
    border-radius: 10px;
    padding: 24px 16px;
  }
  .comparison_grid .comparison_card {
    padding: 24px 16px;
  }
  .comparison_grid .comparison_list li {
    font-size: 14px;
  }
  .traditional_card .comparison_list li::before {

    font-size: 12px;
}
.launch_cta_card {
    border-radius: 10px;
    padding: 24px 16px;

}
.core_features_grid .core_feature_card{
  width: 100%;
          padding: 14px 10px;

}
.ai_features_grid .ai_feature_card,.dev_process_sc .process_step_item{
  width: 100%;
}
.feature_card_header h3{
  font-size: 18px;
  margin-bottom: 5px;
}
.dev_process_sc .process_num {
        font-size: 14px;
   
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }
}

/* homepage css End  */
