

:root {
  --black: #0a0a0a;
  --primary: #FF9A0D;
  --white: #fff;
  --grey40: #D6D6D6;
  --grey: #F0EFEB;
  --Neutral-40: #D6D6D6;
  --Neutral-50: #C2C2C2;
  --Neutral-60: #878787;
  --Neutral-70: #606060;
  --Neutral-80: #383838;
  --lightblue: #F2F3FF;
  --lightblue40: #E6E7FF;
  --shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}

@font-face {
    font-family: 'DINRoundPro-Medi';
    src: url('../fonts/DINRoundPro-Medi.woff2') format('woff2'),
        url('../fonts/DINRoundPro-Medi.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro-Bold.woff2') format('woff2'),
        url('../fonts/DINRoundPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro-Black.woff2') format('woff2'),
        url('../fonts/DINRoundPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro-Light.woff2') format('woff2'),
        url('../fonts/DINRoundPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro.woff2') format('woff2'),
        url('../fonts/DINRoundPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





body {
 font-family: 'DINRoundPro-Medi';
    font-weight: 500;
    font-style: normal;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}


/* header css start */


.btn_blue {
    border-radius: 50px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
    gap: 10px;
    white-space: nowrap;
    font-weight: 400;
    margin-right: 10px;
    border-radius: 15px;
    background: #FF9A0D;
    box-shadow: 0px 4px 0px -2px #BFBFBF;
    color: #fff;
}

.btn_blue2 {
    border-radius: 50px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
    min-width: 250px;
    margin-top: 24px;
    gap: 10px;
    white-space: nowrap;
    font-weight: 400;
    border-radius: 15px;
    background: #FF9A0D;
    box-shadow: 0px 4px 0px -2px #BFBFBF;
    color: #fff;
}

.outline_btn {
  white-space: nowrap;
  border-radius: 50px;
  border: 1px solid var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: var(--white);
  background-color: transparent;

}

.header_sec.sticky .logo_img img {
  max-height: 55px; /* Adjust as needed */
}

.header_sec {
  position: relative;
  z-index: 9;
  transition: all 0.3s ease-in-out;
  padding-bottom: 2px; /* increase this value as needed */
}

.header_sec {
  transition: opacity 0.3s ease;
}





.header_sec.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header_sec.sticky .main_navbar {
  padding: 5px 0;
}

.header_sec .main_navbar .logo_img img {
  height: auto;
  width: auto;
  max-height: 48px;
}


.header_sec .main_navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_sec .main_navbar {
  padding: 10px 0;
  transition: 0.5s;
  padding: 15px 0px;
  border-radius: 20px;
}

.header_sec .main_navbar .nabvar_link_box ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  gap: 44px;
}

.header_sec .nabvar_link_box ul li {
  list-style: none;
  position: relative;
}



.header_sec .nabvar_link_box ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  /* Change color as needed */
  transition: width 0.3s ease, left 0.3s ease;
}

.header_sec .nabvar_link_box ul li:hover::after {
  width: 100%;
  left: 0;
}


.banner_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_sec .nabvar_link_box ul li a {
  white-space: nowrap;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
}

.header_sec .nabvar_link_box ul li:hover a {
  color: var(--primary);
}

/* 
.bg_image {
    background-image: url('/public/img/banner_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
}  */

.bg_image::after {
  content: '';
  background: rgba(19, 16, 16, 0.66);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


}

/* .bottom_header {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.20) 50%, rgba(255, 255, 255, 0.00) 100%);
  padding: 13px 0;

}

.bottom_header .bottom_header_inner {
  display: flex;

  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.bottom_header .bottom_header_inner .bottom_header_link ul {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.bottom_header .bottom_header_inner h3 {
  color: #FFF;
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}

.bottom_header .bottom_header_inner .bottom_header_link ul li {
  list-style: none;

}

.bottom_header .bottom_header_inner .bottom_header_link ul li a {
  text-decoration: none;
  color: #FFF;
  font-size: 25px;
  font-weight: 400;
}

.bottom_header_inner img {
  max-width: 100%;
}

.toggle {
  display: none;
}

.toggle .toggle_btn {
  background: transparent;
  border: none;

}

.toggle .toggle_btn span {
  background-color: #ffffff;
  border-radius: 20px;
  width: 40px;
  height: 3px;
  margin-bottom: 3px;
  transition: all .2s;
  display: block;
}

.logo_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.toggle_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  text-align: center;
  /* flex: 0 0 65%; */

/* .logo_img.logo_box2 {
    flex: 0 0 calc(33% - 30px);
} */

.job_box_inner .blue_btn {
  position: absolute;
  right: 15px;
  width: auto;
  padding: 5px 20px;
}

.job_list_sec .job_box {
  height: 100%;
}

.language_box {
  border: 1px solid #a8a8a8;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 2px;
}

.language_box a {
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 400;
  color: #494949;
}

.language_box a.active {
  color: #fff;
  background-color: #ED5F00;
}

@media screen and (max-width: 1700px) {
  .header_sec .main_navbar .nabvar_link_box ul {
    gap: 30px;

  }

  .header_sec .nabvar_link_box ul li a {
    font-size: 20px;

  }

}



@media screen and (max-width: 1300px) {

  .roles_sec .roles_inner .roles_white_box {

    padding: 18px;

  }

  .header_sec .nabvar_link_box ul li a {
    font-size: 17px;
  }

  .header_sec .main_navbar .nabvar_link_box ul {
    gap: 20px;
  }

  .header_sec .btn_orange {

    font-size: 16px;

  }

  .header_sec .btn_black {
    font-size: 16px;
  }
}

@media screen and (max-width: 1100px) {
  .header_sec .nabvar_link_box ul li a {
    font-size: 16px;
  }

  .header_sec .main_navbar {

    gap: 20px;
  }

  .header_sec .btn_orange {

    font-size: 16px;
    padding: 10px 18px;

  }

  .header_sec .btn_black {
    padding: 10px 18px;
  }
}


@media screen and (max-width: 992px) {


.main_title h2 {
    font-size: 35px !important;
    line-height: 46px !important;
}
.banner_title {
    padding-top: 20px;
}

  .toggle {
    display: block;
  }



  .toggle_box {
    background-color: #000;
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: all .5s;
    position: fixed;
    top: -407px;
    left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
    max-width: 693px;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open .toggle_box {
    top: 76px;
  }

  .menu-open .toggle .toggle_btn span:nth-child(2) {
    display: none;
  }

  .menu-open .toggle .toggle_btn span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-open .toggle .toggle_btn span:nth-child(3) {
    position: relative;
    top: -5px;
    transform: rotate(-45deg);
  }

.header_sec .main_navbar {
    padding: 14px 0px 40px;
    border-radius: 18px;
}


  .logo_box {
    display: flex;
  }

  .toggle_box {
    flex-direction: column;
    align-items: start;
    padding: 30px 51px;
    justify-content: start;
  }

  .header_sec .main_navbar .nabvar_link_box ul {
    flex-direction: column;
    align-items: start;
  }

  .bottom_header .bottom_header_inner {
    flex-direction: column;
    align-items: start;
  }

  .bottom_header_inner img {
    display: none;
  }

  .bottom_header .bottom_header_inner .bottom_header_link ul {
    flex-direction: column;
    align-items: start;
  }

  .bottom_header {
    background: unset;
  }

  .bottom_header .bottom_header_inner .bottom_header_link ul li a {
    font-size: 28px;
  }

  .bottom_header .bottom_header_inner h3 {
    padding-bottom: 20px;
  }

  .bottom_header .bottom_header_inner h3 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .toggle_box {

    max-width: 523px;

  }
}




@media screen and (max-width: 992px) {

  .banner_btn .outline_btn {
    color: var(--primary);
  }

  .header_sec .nabvar_link_box ul li a {
    color: var(--white);
  }

  .toggle .toggle_btn {
    top: 6px;
    position: relative;
  }

  .img_testimonial img {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .toggle_box {

    max-width: 480px;

  }
}


/* .main_title h2 {
  color: #000;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 25px;
}

.main_title span {
  color: var(--primary);
}

.main_title p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
} */

/* header css end */


.banner_btn01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.banner_btn01 .outline_btn {
  color: var(--primary);
}
.gro-text h1 {
  color: #000;

    font-size: 54px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: -0.54px;
}

.gro-text span{
  color: var(--primary);
}
/* span.Language-big{
color: #FF9A0D;

font-size: 54px;
font-style: normal;
font-weight: 900;
line-height: 130%;
letter-spacing: -0.54px;
} */

.gro-text {
text-align: left;
}
.gro-text p{
color: #000;

font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 145%; 
letter-spacing: -0.8px;
}
.pdng-cntnr {
    padding: 0px 40px 40px;
}
.hero-section {
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    padding: 0 0 50px;
    position: relative;
    z-index: 1;
}


.banner_btn01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.speak-big {
    text-align: left;
    margin-top: 50px;
}

.gro-text h1 {
  color: #000;

    font-size: 54px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: -0.54px;
}
/* span.Language-big{
color: #FF9A0D;

font-size: 54px;
font-style: normal;
font-weight: 900;
line-height: 130%; 
letter-spacing: -0.54px;
} */

.gro-text {
    text-align: left;
}
.gro-text p{
color: #000;


font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 145%; /* 29px */
letter-spacing: -0.8px;
}
.pdng-cntnr {
    padding: 40px 40px 39px;
}


section.about-eocmers {
  padding: 100px 0px;
  text-align: center;
background: #ffffff;

}
.abt-dt2 h2 {
    color: var(--font-color-dark-800, #151515);
    text-align: center;
 
    font-size: 38px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.abt-dt2 p{
color: #2B2B2B;
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 30px; 
letter-spacing: -0.6px;
}

.faq_question-text,
.faq_question-text h3,
.answer,
.answer p {
  text-align: left !important;
}


.faq_question-text h3 {
  text-align: left;
}


/* span.Languag-for{
  color: #FF9A0D;

font-size: 45px;
font-style: normal;
font-weight: 900;
line-height: normal;
} */
.provider_tools_box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
}

section.ui-vertical {
  background: linear-gradient(180deg, #000000 0%, #343434 100%);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 55px 0;
  position: relative;
  z-index: 0;
  text-align: center;
}


.provider_tools_box {
display: flex;
align-items: center;
gap: 20px;
text-align: left;
}
.provider_tools_text h6{
 color: #FF9A0D;

font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 24px; 
letter-spacing: -0.6px; 

}
.provider_tools_text p{
color: #000;

font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px;
letter-spacing: -0.48px;
}

.improve h2 {
    color: #fff;
    text-align: center;
    
    font-size: 45px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
     margin-bottom: 40px;
}
.improve h2 span{
  color: var(--primary);
}

.banner_itm .banner_text .app_img img {
    max-width: 100%;
}
.app_img {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

section.aI-powered{
    background-image: url(../img/why-back.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    position: relative;
    z-index: 1;
    text-align: center;  
}
section.aI-powered {
    padding: 65px 0px;
}
section.journey-big{
  padding: 65px 0px;
}
section.journey-big{
    background-image: url(../img/159_06.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    position: relative;
    z-index: 1;
    text-align: center;  
}

.main_title h2{
  font-size: 45px;
font-style: normal;
font-weight: 900;
line-height: normal;
color: var(--black);
}

.main_title h2 span{
  color: var(--primary)
}

.abt-dt2.warp h2 {
    text-align: left;
}


.abt-dt2.warp p {
    text-align: left;
}

.abt-dt2.warp.my{
  color: #2B2B2B;

font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 29px; /* 181.25% */
letter-spacing: -0.48px;
}
.img-boxx img {
  max-width: 100%;
}
section.testimonial{
  padding: 65px 0px;
}

.testimonial img{
  max-width: 100%;
}

h5.fw-bold{
  color: #999999;

font-size: 27px;
font-style: normal;
font-weight: 500;
line-height: normal;
}



p.text-muted{
color: #c3c3c3;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 200% */
}
p.px-md-5{
  color: #a4a4a4;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 26px; /* 162.5% */
letter-spacing: -0.48px;
}
.edtech {
    position: relative;
    text-align: center;
    margin-top: -120px;
}
a.standard{
  color: #FF9A0D !important;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 186.667% */
}

.abt-dt2.testimonial {
 position: relative;
}
.abt-dt2.testimonial img {
    max-width: 100%;
}
.testimonialSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

/* .swiper-button-prev-custom, .swiper-button-next-custom {
    width: 79px;
    height: 48px;
    font-size: 22px;
    line-height: -6;

    border-radius: 23px !important;
    color: #fff;
    background-color: #FF9A0D;
    border: 0 !important;
} */
/* button.btn.btn-warning.rounded-circle.swiper-button-prev-custom:hover{
    color: #fff;
    background-color: #FF9A0D;
    border: 0 !important;
}
button.btn.btn-warning.rounded-circle.swiper-button-next-custom{
    color: #fff;
    background-color: #FF9A0D;
    border: 0 !important;  
} */

.btn_trans{
  background: transparent;
  border: none;
  padding: 0;
}
.btn_trans:focus{
  outline: none;
}

  @media (min-width: 768px) {
    .testimonialSwiper .swiper-slide p {
      max-width: 600px;
    }
  }

  section.faq-big {
   background: #ffffff;
   padding: 65px 0px;
   margin-top: 120px;
   margin-bottom: 120px;
}

.light_blue{
    background: #ffffff;
}


/* >>> FAQ STYLES <<< */
.faq_container {
    /* border: 1px solid var(--Neutral-80); */
    border-radius: 20px;
    border-radius: 20px;
    background: #FFF9F2;
    box-shadow: 0px 0px 6px 4px rgba(191, 191, 191, 0.25);
}
.faq_main_container {
width: 100%;
margin: 0 auto;
padding: 35px 0px 0px 0px;
}
.faq_question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 14px;
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 20px;
    background: #FFF;
}

.faq_question.active{
  background: transparent;
}

.answercont {
max-height: 0;
overflow: hidden;
transition: 0.3s;
}
.answer {
padding: 0 10px 20px;
line-height: 1.5rem;
margin-left: 50px;
margin-right: 55px;
text-align: justify;
}
.fqa_headline_container h2 span { font-weight: 700; }
.faq_question-text h3 {
    font-weight: 300;
    color: #6a6a6a;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.icon.active {
background: transparent;
border: 2px solid #fff;
}
.icon:hover { cursor: pointer; }
.icon-shape { 
position: relative;
    width: 30px;
    height: 30px;
    background-color: #fff9f2;
    border-radius: 50px;
    border: 1 xp solid;
    border: 1px solid var(--Neutral-80);
   }
.icon .icon-shape::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 4px;
    background: #151515;
    border-radius: 3px;
    transition: all 0.5s ease;
}
.icon .icon-shape::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 18px;
    background: #151515;
    border-radius: 3px;
    transition: all 0.5s ease;
}
.icon .icon-shape.active::before {
transform: translate(-50%, -50%) rotate(180deg);
transition: all 0.5s ease;
}
.icon .icon-shape.active::after {
transform: translate(-50%, -50%) rotate(90deg);
transition: all 0.5s ease;
}
.faq_main_container h2 {
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  line-height: 60px; /* was 96px */
}

/*dashboard css start..*/
.main_box {
background-color: var(--lightblue10);
position: relative;
}
.main_box .main_box_inner {
display: flex;
}
.content_box {
position: relative;
max-width: 100%;
flex: 0 0 85%;
height: 100vh;
}

span.really {
    font-size: 29px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.faq_question-text {
    display: flex;
    gap: 20px;
    align-items: center;
}








/*f0oter css start... */
 
input:focus-visible,textarea {
outline: -webkit-focus-ring-color auto 0px;
}
 
 
.footer {
    background-color: #ffffff;
    padding: 20px 0;
}
.bg_black2{
    background: #000;
    color: #fff;
    position: relative;
    padding: 48px 0px 48px;
    margin: 0px 15px;
    border-radius: 30px;
}
 
/* .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
  */

.footer-left,
.footer-right {
  flex: 1;
  min-width: 280px;
}
 
.footer-left h2 {
    margin-bottom: 10px;
    color: var(--font-color-white, #FFF);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 116.865%;
    letter-spacing: -1.2px;
}
 
.footer-left p,
.footer-right p {
color: #BFBFBF;
font-family: inherit;
font-size: 15px;
font-style: normal;
font-weight: 100;
line-height: 125%; /* 20px */
letter-spacing: -0.48px;
}
 
.subscribe-form {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
 
.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 116.865%; */
    letter-spacing: -0.48px;
}
 
.subscribe-form button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8.833px;
    border-radius: 35.333px;
    background: #FF9A0D;
    border: 0;
    color: #fff;
    padding: 16px 21px;
}
 
.subscribe-form button:hover {
  background: #ffa726;
}
 
.footer-right small {
    color: #aaa;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 116.865%;
    letter-spacing: -0.36px;
}
 
.footer-right a {
  color: #ffff;
  text-decoration: underline;
  text-decoration: none;
}
 
hr {
  border: 0;
  border-top: 1px solid #333;
  margin: 30px 0;
}
 
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
 
.footer-bottom p {
  font-size: 12px;
  color: #aaa;
}
 
.social-icons a {
  margin: 0 5px;
  display: inline-block;
}
 
.social-icons img {
    width: 45px;
    height: 45px;
}
hr {
    border: 0;
    border-top: 2px solid #fdfbff;
    margin: 30px 0;
}
 
.design-big {
    text-align: center;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .img-boxx img {
    max-width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .gro-text, .abt-dt2.warp {
    padding: 0 20px;
    text-align: center;
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .hero-section .img-boxx img {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .who_AccentAbility_sec .img-boxx img,
  .aI-powered .img-boxx img,
  .journey-big .img-boxx img {
    width: 70% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
}


.banner_img {
  margin-top: 80px; /* increase to push hero content down */
}

/* Universal content wrapper for cleaner layout */
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* Tighten up inner content for large screens */
@media (min-width: 992px) {
  .container {
    width: 70%;
  }
}

.who-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.footer-left,
.footer-right {
  text-align: left !important;
}

.hero-section .img-boxx {
  padding: 0 5px;
  text-align: center;
}


.who-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}


.who-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.who-image {
  flex: 1;
  text-align: center;
}

.who-content {
  flex: 1;
  text-align: left;
}

.who-content h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 15px;
}

.who-sub {
  font-size: 18px;
  margin-bottom: 25px;
  color: #757575;
}

.who-sub2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #757575;
}

.who-box {
  margin-bottom: 20px;
}

.who-box h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.who-box p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.highlight {
  color: var(--primary);
}

@media screen and (max-width: 768px) {
  .who-inner {
    flex-direction: column;
    text-align: center;
  }

  .who-content {
    text-align: center;
    padding: 0 6px;
  }

  .who-image img {
    max-width: 70%;
    margin: 0 auto 20px;
  }
}

.hero-section .who-sub {
  font-size: 20px;
  font-weight: 400;
  color: #757575;
}

@media (min-width: 992px) {
  .gro-text {
    padding-left: 40px;
    padding-right: 40px;
  }
}


@media (max-width: 767px) {
  .aI-powered .main_title,
  .journey-big .main_title {
    text-align: center !important;
  }

  .aI-powered .who-sub,
  .aI-powered .who-sub2,
  .journey-big .who-sub,
  .journey-big .who-sub2 {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.ui-vertical h2,
.journey-big h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 15px;
}

/* Ensure .who-sub is always the same size, regardless of section */
.who-sub {
  font-size: 18px !important; /* or your preferred size */
}

section.journey-big p.text-muted,
section.journey-big .text-muted {
  color: #e0e0e0 !important;
}

.download-cta {
  background: linear-gradient(360deg, #d97625 0%, #f5a623 100%);
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.download-cta h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.download-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons img {
  max-width: 180px;
  height: auto;
  transition: transform 0.2s ease;
}

.cta-buttons img:hover {
  transform: scale(1.05);
}

/* Main navbar transition fix */
.main_navbar {
  transition: 
    opacity 0.3s ease,
    border-bottom 0.3s ease,
    box-shadow 0.3s ease;
  opacity: 1;
  pointer-events: auto;
  border-bottom: none;
  box-shadow: none;
}

/* Scrolled state: show border and shadow */
.main_navbar.scrolled {
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.main_navbar {
  transition: opacity 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease, padding 0.3s ease;
  padding: 15px 0; /* default height */
}

.main_navbar.scrolled {
  padding: 10px 0; /* optional smaller padding when scrolled */
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.main_navbar {
  padding: 15px 0 !important; /* default height */
  z-index: 1000;
  transition: none !important; /* disable transitions for now */
}

/* Navbar scroll-aware reduction + transparency effect */
.header_sec.sticky {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.header_sec.sticky .main_navbar {
  padding: 8px 0;
}

.header_sec.sticky .logo_img img {
  max-height: 55px;
}


/* Mobile-specific adjustments */
@media screen and (max-width: 992px) {
  .header_sec .main_navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 16px; /* reduce bottom padding */
  }

  .banner_img {
    margin-top: 120px; /* ensure hero isn't hidden */
  }

  .header_sec .logo_img img {
    height: auto;
    width: auto;
    max-height: 60px;
  }
}

/* Base logo behavior */
.logo_img img {
  height: auto;
  width: auto;
  max-height: 60px;
}

/* STICKY HEADER logo size */
.header_sec.sticky .logo_img img {
  max-height: 55px;
}

/* Desktop: slightly larger */
@media (min-width: 993px) {
  .logo_img img {
    max-height: 70px;
  }
}

/* Mobile: ensure alignment and size */
@media (max-width: 992px) {
  .header_sec .main_navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo_img {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .logo_img img {
    max-height: 60px;
    width: auto;
  }
}

/* ✅ Normalize all logo sizing */
.logo_img img {
  height: auto !important;
  width: auto !important;
  max-height: 70px !important;
  display: block;
}

/* ✅ Mobile Adjustments */
@media (max-width: 992px) {
  .header_sec .main_navbar {
    padding: 14px 20px !important; /* clean edge padding */
  }

  .logo_img {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    flex: 1; /* pushes nav links away */
  }

  .logo_img img {
    max-height: 60px !important;
  }
}

/* ✅ Sticky Header Logo Size */
.header_sec.sticky .logo_img img {
  max-height: 55px !important;
}

@media (max-width: 992px) {
  .header_sec .main_navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    padding: 14px 20px !important;
  }

  .logo_img {
    flex: 0 0 auto !important;
    margin-right: auto !important;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
  }

  .logo_img img {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
  }

  .banner_btn, .toggle {
    margin-left: auto !important;
  }
}

@media (max-width: 992px) {
  .header_sec .main_navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 14px 20px !important;
  }

  .logo_img.logo_box2 {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 1 1 auto !important;
    margin-right: auto !important;
  }

  .logo_img.logo_box2 img {
    max-height: 60px !important;
    height: auto !important;
    width: auto !important;
    display: block !important;
  }

  .toggle,
  .banner_btn {
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 992px) {
  .header_sec .main_navbar {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 20px !important;
  }

  .logo_img.logo_box2 {
    display: flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-right: auto !important;
    padding: 0 !important;
  }

  .logo_img.logo_box2 img {
    display: block !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .banner_btn, .toggle {
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* 🔒 Lock navbar visibility at all times */
.header_sec,
.header_sec.sticky,
.main_navbar,
.header_sec .main_navbar {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: flex !important;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.main_navbar[style*="opacity: 0"] {
  opacity: 1 !important;
  animation: none !important;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.modal-scroll {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 10px;
}
.modal-content h2, .modal-content h3 {
  color: var(--primary);
}
.modal-content p, .modal-content li {
  font-size: 15px;
  line-height: 1.6;
}
.modal-content ul, .modal-content ol {
  margin-left: 20px;
}

/* Sticky Navbar with Persistent Visibility and Grey Bottom Border */
.header_sec {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}

.header_sec .main_navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  transition: padding 0.3s ease;
}

.logo_img img {
  max-height: 70px;
  width: auto;
  transition: max-height 0.3s ease;
}

.header_sec.sticky .logo_img img {
  max-height: 60px;
}

/* Button styles from main website */
.banner_btn .btn_blue {
  font-family: 'DINRoundPro-Medi', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 25px;
  border-radius: 15px;
  background-color: #FF9A0D;
  box-shadow: 0px 4px 0px -2px #BFBFBF;
  color: #fff;
  white-space: nowrap;
}

/* Responsive padding */
@media (max-width: 992px) {
  .header_sec .main_navbar {
    padding: 10px 20px;
  }

  .logo_img img {
    max-height: 60px;
  }

  .banner_btn {
    margin-left: auto;
  }
}

body.scroll_off .header_sec {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* 🔧 Force navbar visibility and stacking */
.header_sec {
  position: sticky !important;
  top: 0 !important;
  display: flex !important;
  opacity: 1 !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.header_sec .main_navbar {
  opacity: 1 !important;
  pointer-events: all !important;
}


body.scroll_off .header_sec {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: all !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: rgba(255,255,255,0.97) !important;
}

/* 🛠 Ensure header is always on top of all sections */
.header_sec {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  transition: all 0.3s ease;
}

/* Only show border when sticky class is applied */
.header_sec.sticky {
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.aI-powered,
.who-section,
section {
  position: relative;
  z-index: 1;
}

/* 🔧 Force navbar visibility and stacking */
.header_sec {
  position: sticky !important;
  top: 0 !important;
  display: flex !important;
  opacity: 1 !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: none !important; /* ❌ Remove always-on shadow */
  border-bottom: none !important; /* ❌ Remove always-on border */
  transition: all 0.3s ease;
}

.header_sec.sticky {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
  border-bottom: 1px solid #e0e0e0 !important;
}

.header_sec .main_navbar {
  opacity: 1 !important;
  pointer-events: all !important;
}

.feature-tabs {
  padding: 4rem 1rem;
  background: #fff;
}

.feature-tab-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-tab-list li {
  padding: 0.9rem 1rem;
  margin-bottom: 0.5rem;
  background: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.feature-tab-list li.active,
.feature-tab-list li:hover {
  background: #FF9A0D;
  color: #fff;
}

.feature-tab-content .tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.feature-tab-content .tab-panel.active {
  display: block;
}

.feature-tab-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.feature-tab-content h3 {
  color: #111;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-tab-content p {
  font-size: 1rem;
  color: #555;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.feature-tabs {
  padding: 4rem 1rem;
}

.feature-tab-list ul {
  list-style: none;
  padding: 0;
}

.feature-tab-list li {
  background: #f0f0f0;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-tab-list li.active {
  background: #FF9A0D;
  color: #fff;
}

.feature-tab-content .tab-panel {
  display: none;
}

.feature-tab-content .tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.feature-tab-content img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.feature-switcher {
  padding: 60px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 15px 20px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.feature-list li:hover,
.feature-list li.active {
  background-color: var(--primary);
  color: #fff;
}

.feature-display {
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 15px;
  min-height: 300px;
}

/* Feature Section Theming */
.feature-list {
  list-style: none;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, #ffba52, #ffa51f);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.2);
}

.feature-list li {
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  background: #fff;
  color: #333;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.feature-list li.active {
  background-color: #FF9A0D;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.4);
}

.card-accent {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  min-height: 380px;
}

.card-accent img {
  max-height: 260px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Feature List Styles */
.feature-list {
  list-style: none;
  padding: 1.5rem;
  background: #FFEBE0;
  border-radius: 20px;
}
.feature-list li {
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  font-family: 'DINRoundPro-Bold', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}
.feature-list li.active {
  background: #FF9A0D;
  color: #fff;
}
.feature-list li:not(.active):hover {
  background: #FFD2AC;
}

/* Image & Explainer styling */
.feature-display {
  padding: 1rem;
}
.feature-display img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}
.explainer-box {
  padding: 1.5rem;
  background: #FFF3E0;
  border-radius: 15px;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.explainer-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Mobile carousel & hide desktop content on mobile */
.mobile-feature-carousel {
  display: none;
}
@media(max-width: 992px) {
  .feature-display, .feature-list { display: none; }
  .mobile-feature-carousel { display: block; }
  .carousel-slide {
    text-align: center;
    padding-bottom: 1.5rem;
  }
  .carousel-slide img {
    width: 95%;
    border-radius: 20px;
  }
}
.feature-switcher {
  padding: 4rem 1rem;
}

/* 🟧 LEFT LIST */

.feature-list li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  font-family: 'DINRoundPro-Bold', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.25s ease;
}
.feature-list li.active {
  background-color: #FF9A0D;
  color: #fff;
  box-shadow: 0 3px 8px rgba(255, 138, 0, 0.4);
}
.feature-list li:hover:not(.active) {
  background: #aeaeae;
}

/* 🔶 RIGHT EXPLAINER */
.feature-display img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}
.explainer-box {
  background: #FFF3E0;
  border-radius: 15px;
  padding: 1.5rem;
  width: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.explainer-box p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

/* ❌ Remove default bullets */
.no-bullets {
  list-style-type: none !important;
  padding-left: 0;
}

/* 📱 Mobile Carousel */
.mobile-feature-carousel {
  display: none;
}
@media (max-width: 991px) {
  .feature-display,
  .feature-list {
    display: none;
  }

  .mobile-feature-carousel {
    display: block;
    text-align: center;
  }

  .carousel-slide {
    margin-bottom: 2rem;
  }

  .carousel-slide img {
    max-width: 100%;
    border-radius: 20px;
  }

  .carousel-slide .explainer-box {
    margin-top: 1rem;
  }
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li {
  padding: 12px 18px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.feature-list li.active {
  background: #FF9A0D;
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 140, 0, 0.3);
}

.feature-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image-box img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.feature-description-box {
  background: #FFF3E0;
  padding: 1.5rem;
  border-radius: 15px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.feature-description-box p {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .feature-list-wrapper,
  .feature-display {
    display: none;
  }
  .feature-carousel-slide {
    text-align: center;
    margin-top: 2rem;
  }
  .feature-carousel-slide img {
    border-radius: 20px;
    margin-bottom: 1rem;
  }
  .feature-description-box {
    padding: 1.25rem;
  }
}
.feature-list-wrapper {
  background-color: #fff4e6;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  font-family: 'DINRoundPro-Medi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 12px;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.feature-item:hover,
.feature-item.active {
  background-color: #FF9A0D;
  color: #fff;
  box-shadow: 0px 4px 8px rgba(255, 154, 13, 0.3);
}

.feature-display {
  background-color: #fff7ec;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-description-box {
  margin-top: 20px;
}

.feature-description-box p {
  font-size: 16px;
  color: #333;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  font-family: 'DINRoundPro-Medi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 18px;
  background-color: #fff;
  border-radius: 12px;
  color: #333;
  transition: all 0.25s ease;
  cursor: pointer;
}

.feature-item.active {
  background-color: #FF9A0D;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.3);
}

.feature-item:hover:not(.active) {
  background-color: #ff9c1b;
}



.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.feature-item {
  padding: 10px 18px;
  font-size: 15px;
  font-family: 'DINRoundPro-Medi', sans-serif;
  font-weight: 500;
  background: #fff;
  color: #333;
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.feature-item.active {
  background-color: #FF9A0D;
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 150, 50, 0.3);
}

.feature-description-box {
  background-color: #34DAB1;
  border-radius: 18px;
  padding: 1.5rem;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  margin-top: 0.5rem;
}

.feature-description-box p {
  margin: 0;
  color: #333;
}

.phone-preview img {
  max-height: 480px;
  border-radius: 25px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}


/* Container collapse */
.feature-switcher .row {
  align-items: center;
  gap: 0;
  margin-left: 0;
  margin-right: 0;
}

.feature-switcher .col-lg-3,
.feature-switcher .col-lg-5,
.feature-switcher .col-lg-4 {
  padding-left: 10px;
  padding-right: 10px;
}

/* Tighter alignment for list, image, and box */
.feature-list-wrapper,
.feature-description-box {
  margin: 0 auto;
}

.phone-preview img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Optional: center the whole 3-part section on huge screens */
@media (min-width: 1400px) {
  .feature-switcher .container {
    max-width: 1200px;
  }
}

.feature-list-wrapper {
  background-color: #ffffff; /* solid brand orange */
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(255, 160, 60, 0.15);
}

.feature-switcher .col-lg-5 {
  padding-right: 0;
}

.feature-switcher .col-lg-4 {
  padding-left: 0;
}

.feature-description-box {
  margin-left: -10px; /* collapse into image */
  margin-top: 0;
  background-color: #FFF5E7;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.feature-display {
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.feature-image-box {
  flex: 0 0 60%;
}

.feature-description-box {
  flex: 1;
  margin-left: 0;
}


.feature-bg-box {
  background: #e0e0e0;
  padding: 60px 0;
  width: 100%
}

.feature-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.feature-tab-menu {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}

.feature-tab {
  background-color: transparent;
  color: #575757;
  font-weight: 500;
  padding: 15px 25px;
  border-radius: 10px;
  transition: background 0.3s;
  cursor: pointer;
  font-size: 18px;
}

.feature-tab.active {
  background-color: #8e8e8e;
  color: #fff;
  font-weight: 500;
}

.feature-description {
  background-color: #8e8e8e;
  padding: 30px;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
  text-align: left;
  height: 50%;             /* Take up 50% height of phone image container */
  align-self: center;
  max-height: none;        /* Remove fixed max height */
}

#featureText {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-content {
  display: flex;
  align-items: stretch; /* ensures equal height */
  gap: 32px; /* 👈 this adds space between tab and phone */
}





.phone-preview img {
  max-height: none;
  max-width: 100%;
  display: block;
  height: auto;
  width: auto;
}




.feature-preview-group {
  display: flex;
  align-items: center; /* This vertically centers the description box */
}


.phone-preview {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.phone-preview img {
  height: 720px;             /* Scale up image */
  width: auto;
  max-width: 100%;
  display: block;
}

.feature-description {
  background-color: #8e8e8e;
  padding: 100px 30px;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
  text-align: left;
  max-height: 50%;         /* Optional: caps height but not required */
  align-self: center;
  max-width: 300px;    /* Aligns top with phone image */
}



/* Background Section */
.feature-bg-box {
  background: #ffffff;
  padding: 60px 0;
  width: 100%;
}

/* Grid Container */
.feature-grid-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tab Menu */
.feature-tab-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 10px;
}
.feature-tab {
  background-color: transparent;
  color: #575757;
  font-weight: 500;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  text-align: left;
}
.feature-tab.active {
  background-color: #afafaf;
  color: #fff;
}

/* Phone Preview Centered */
.phone-preview {
  display: flex;
  justify-content: center;
}
.phone-preview img {
  max-height: 750px;
  width: auto;
  height: auto;
  display: block;
}

/* Description Box */
.feature-description {
  background-color: #8c8c8c;
  color: #ffffff;
  padding: 30px 25px;
  font-size: 18px;
  border-radius: 0 20px 20px 0; /* 👈 No rounding on the left side */
  max-width: 320px;
  line-height: 1.6;
  text-align: left;
  display: flex;
  align-items: center;
  margin-left: -5px; /* 👈 pulls it closer to phone image */
}


/* Responsive Grid */
@media (max-width: 992px) {
  .feature-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .feature-tab-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature-tab {
    padding: 10px 15px;
    font-size: 16px;
  }
  .feature-description {
    border-radius: 20px;
    max-width: 100%;
    justify-content: center;
  }
}


.feature-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0; /* remove the gap that separates phone and description */
  flex-wrap: wrap;
}
.phone-preview {
  margin: 0;
  padding: 0;
}
.feature-description {
  margin-left: -2px; /* nudges description to touch the phone */
  border-radius: 20px;
}



.pricing-carousel {
  position: relative;
  background-color: #dbdbdb;
  border-radius: 12px;
  padding: 24px;
  max-width: 300px;
  min-height: 420px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pricing-slide-wrapper {
  display: flex;
  
}

.pricing-item {
  min-width: 100%;
  padding: 10px;
  text-align: center;
}

.pricing-card-title {
  font-size: 23px;
  font-weight: 600;
  color: #000;
}

.pricing-card-subtitle {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

.pricing-card-price {
  font-size: 32px;
  font-weight: bold;
  color: #ff8800;
  margin: 12px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  align-items: center;
}


.pricing-features li {
  padding: 4px 0;
  font-size: 15px;
  color: #656565;
 
}

.pricing-arrow {
  position: absolute;
  top: 11%;
  transform: translateY(-50%);
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  font-size: 18px;
  z-index: 2;
  color: #333;
}

.left-arrow {
  left: 35px;
}

.right-arrow {
  right: 35px;
}

.carousel-dots {
  text-align: center;
  margin-top: 12px;
}

.carousel-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  
}

.carousel-dots .dot.active {
  background-color: #ff8800;
}

@media (max-width: 768px) {
  .pricing-carousel {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
  }


  .pricing-item {
    padding: 10px;
    min-width: 100%;
    box-sizing: border-box;
  }

  .left-arrow, .right-arrow {
    top: 27%;              /* Vertically center relative to the price box */
    bottom: auto;          /* Cancel out any conflicting bottom positioning */
    transform: translateY(-50%); /* Correct offset to center perfectly */
  }

  .left-arrow {
    left: 25%;
  }

  .right-arrow {
    right: 25%;
  }
}

.download-cta--below-trial {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.download-cta--below-trial .container {
  padding-top: 32px;
}

.who-section.free-trial {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.who-section.free-trial .who-inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.who-section.free-trial .who-image {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.subscribe-form {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}


