* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

:root {
    --skyblue: #6EC1E4;
    --darkskyblue: #2197bd;
    /* --white: #ffffff; */
}



.container {
    width: 1240px;
    margin: auto;
}

.header {
    padding: 15px 5%;
    margin: auto;
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 10;
    right: 0;
    left: 0;
}

.logo_nav_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header .logo_div {
    width: 9%;
    padding-top: 10px;
}

.header .logo_div img {
    width: 85%;
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
}

.header .logo {
    width: 100%;
}

.header ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.header ul li {
    padding: 0 0px;
}

.header button {
    background-color: #FA5F00;
    border-radius: 21px 21px 21px 21px;
    padding: 12px 24px;
    border: none;
    color: #fff;
    font-size: 16px;
    min-width: 170px;
}


/* submenu */


.primary_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.primary_menu li {
    position: relative;
}

.primary_menu a {
    text-decoration: none;
    color: black;
    padding: 10px 15px;
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    color: #000;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    border-radius: 8px;
}

.submenu li a {
    padding: 7px 15px;
    white-space: nowrap;
    color: #000;
}

.has-submenu:hover .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    padding: 5px 0px;
}

/* .has-submenu > a::after {
    content: '  ▼';
    font-size: 0.7em;
} */


/* submenu */




.other_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;
}

.other_header .logo_div {
    width: 4%;
}

.other_header .logo {
    width: 100%;
}

.other_header ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
}

.other_header ul li {
    padding: 0 10px;
}

.other_header button {
    background-color: #FA5F00;
    border-radius: 21px 21px 21px 21px;
    padding: 10px 20px;
    border: none;
    color: #fff;
    font-size: 16px;
}

.primary_menu a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.primary_menu a:hover {
    color: #FA5F00;
}

.primary_menu a:active {
    color: #FA5F00 !important;
    position:relative;
}

.primary_menu a.is-active::after{
    content:"";
    position:absolute;
    left:12px; right:12px; bottom:6px;
    height:2px; background:#FA5F00; border-radius:2px;
  }

  /* Works on white header variant too */
.header-white .primary_menu a.is-active{ color:#FA5F00 !important; }


.header-white {
    background-color: white !important;
}

.header-white .primary_menu a {
    color: black;
}

.header-white .logo_div img {
    filter: none !important;
    /* removes the invert/greyscale effect */
}

.header-white button {
    color: white;
    background-color: #FA5F00;
}


.sy9_header a{color: #000;}


/* === CTA dropdown (scoped) === */
.cta-dd { display:inline-block; position:relative; }

/* panel */
.cta-dd .cta-menu{
  position:absolute;
  top:calc(100% + 0px);
  right:0;
  /* min-width:200px; */
  min-width:170px;
  padding:6px;
  margin:0;
  list-style:none;
  background:#fff;
  border-radius:10px;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  display:none;              /* hidden by default */
  z-index:100000;
  width: 50%;
}

/* show on hover/focus (desktop) */
.cta-dd:hover .cta-menu,
.cta-dd:focus-within .cta-menu{ display:block; }

/* items stacked one-per-line */
.cta-dd .cta-menu > li{ display:block; }
.cta-dd .cta-item{
  display:block;
  width:100%;
  text-align:center;
  padding:10px 12px;
  background:transparent;
  border:0;
  border-radius:8px;
  font:inherit;
  color:#111827;
  cursor:pointer;
  min-width: auto;
}
.cta-dd .cta-item:hover,
.cta-dd .cta-item:focus{
  background:#FFF3EC;
  color:#FA5F00;
  outline:0;
}



/* Hero Video Section */
/* .hero_video_section {
    position: sticky;
    top: 0;
    z-index: -1;
}

.hero_video_section video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
} */


.inner_page_header a {
    color: #000;
}

/* --------------------------- */

.hero_video_section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.video_wrapper {
    height: 100vh;
    width: 100%;
    /* position: relative; */
    /* z-index: 1; */
}

.hero_video_section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: block; */
}


section {
    /* position: relative; */
    /* Required to give z-index effect */
    /* z-index: 0; */
    /* Ensures other sections are below */
}

/* In case you want sections to appear on scroll, you can give them higher z-index */
section.scrolled {
    z-index: 2;
    /* Make sections visible on scroll if needed */
}


/* ---------------------- */

#horizontal .content {
    height: 100vh;
    width: 100vw;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    padding-top: 4%;
}

#horizontal {
    display: flex;
    overflow-x: hidden;
    background-color: #fff;
}

#horizontal2 .content {
    height: 100vh;
    /* width: auto; */
    width: 30%;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    padding-top: 10%;
}

#horizontal2 .content img {
    width: 100%;
}

#horizontal2 .features_product_heading {
    top: 1%;
}

#horizontal2 {
    display: flex;
    overflow-x: hidden;
    background-color: #e6e6e6;
    padding-left: 10%;
}

#horizontal3 .content {
    height: 100vh;
    width: 100vw;
    display: grid;
    flex-shrink: 0;
    place-items: center;
}

#horizontal3 {
    display: flex;
    overflow-x: hidden;
    background-color: #fff;
}


#horizontal4 .content {
    height: 100vh;
    width: 50vw;
    display: grid;
    flex-shrink: 0;
    place-items: center;
}

#horizontal4 {
    display: flex;
    overflow-x: hidden;
    background-color: #fff;
}

#horizontal5 .content {
    height: 100vh;
    width: 33vw;
    /* width: 100%; */
    display: grid;
    flex-shrink: 0;
    place-items: center;
    padding-top: 12%;
}

#horizontal5 {
    display: flex;
    overflow-x: hidden;
    background-color: #fff;
    align-items: baseline;
}

#horizontal6 .content {
    height: 100vh;
    width: 33vw;
    display: grid;
    flex-shrink: 0;
    place-items: center;
}

#horizontal6 {
    display: flex;
    overflow-x: hidden;
    background-color: #fff;
}

#horizontal7 .content {
    height: 100vh;
    width: 50vw;
    display: grid;
    flex-shrink: 0;
    place-items: center;
}

#horizontal7 {
    display: flex;
    overflow-x: hidden;
    background-color: #fff;
}

#horizontal7 .product_card .product_card_details p{text-transform: none;}
#horizontal7 .product_card .product_card_details h4{text-transform: none;}

.team_card {
    background: black;
    color: white;
    text-align: center;
    padding: 40px;
}

.team_card h2 {
    font-size: 24px;
}

.team_card p {
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0px;
}

.team_single_image_and_tear_card {
    display: flex;
    align-items: center;
    background-color: #000;
}

.team_single_image_and_tear_card img {
    width: 50%;
}

.divider {
    border: 2px solid #2197BD;
    width: 22%;
    margin: auto;
}

.team_social_icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.team_social_icons .fa {
    background-color: #2197BD;
    color: white;
    font-size: 16px;
    margin: 0px 5px;
    padding: 5px;
    border-radius: 3px;
}

.app_watch {
    background-image: url("https://bbros.aaloweb.in/wp-content/uploads/2025/03/Bg.png");
    background-color: #E8D1CA;
    padding: 160px 0px;
    height: 100vh;
}

.app_watch img {
    width: 56%;
}

.custom_container {
    width: 900px;
    margin: 0 auto;
}

.app_watch .side_img {
    width: 21%;
    margin: 0px 10px;
}

.app_watch_images {
    align-items: end;
}

.app_watch_images {
    display: flex;
    align-items: end;
}

.social_bar {
    position: fixed;
    z-index: 999;
    width: 100%;
    left: 3%;
    transform: translate(-48%, 0);
    top: -60px;
}

.bar_and_icons {
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
}

.social_bar .bar {
    width: 29%;
    border: 1.5px solid #2197BD;
    margin: 0 0px 0 50px;
}

.social_bar i {
    font-size: 16px;
    padding: 7px;
    background: #ff00e9;
    border-radius: 50%;
    color: white;
    margin: 0 5px;
}

.social_bar i:hover {
    cursor: pointer;
}

.social_bar .fa-facebook {
    background-color: #3b5998;
}

.social_bar .fa-x-twitter {
    background-color: #1da1f2;
}

.social_bar .fa-youtube {
    background-color: #cd201f;
}



/* media page css */
.media_card {
    padding-top: 20px;
    /* background-color: #DCF6FF; */
    background-color: #fff0f0;
    border-radius: 25px;
    /* margin: 0 12px; */
    min-height: 600px;
}

.publicity_and_digital {
    padding: 100px 9%;
    background-color: white;
}

.publicity_and_digital .left_pd {
    margin-left: 20px;
    width: 48% !important;
}

.publicity_and_digital .right_pd {
    margin-right: 20px;
    width: 48% !important;
}

.publicity_and_digital .heading {
    text-align: left;
    margin-bottom: 20px;
    color: #000;
    /* color: var(--skyblue); */
    font-weight: 400;
    padding-left: 20px;
}

.vertical_scroll {
    max-height: 530px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.publicity {
    border-radius: 12px;
    padding: 10px;
}

.publicity img {
    margin-bottom: 20px;
    transition: 0.6s;
    border: 1px solid #2197bd;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);

    background-color: white;
    transition: 0.6s;

    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.publicity img:hover {
    transform: scale(0.97);
}

.logo_and_heading {
    display: flex;
    align-items: center;
}

.logo_and_heading h2 {
    margin: 0;
    color: var(--skyblue);
    font-weight: 400;
    font-size: 16px;
    margin-left: 10px;
}

.logo_and_heading img {
    width: 32px;
}

.digital_card p {
    font-size: 16px;
    color: #030303;
    margin-top: 10px;
}

.digital_card h4 {
    font-size: 18px;
    color: #000;
    margin-top: 15px;

}

.digital_card button {
    color: white;
    background-color: #FA5F00;
    border-radius: 21px 21px 21px 21px;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
}

.digital_card .left_news_img {
    /* height: 197px; */
    width: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 15px 15px 15px 15px;
}

.digital_card {
    border: 1px solid #2197bd;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    margin: 10px 10px 15px;
    background-color: white;
    transition: 0.6s;
}

.digital_card .left_col_text {
    padding: 10px 0px 10px 10px;
}

.digital_card:hover {
    transform: scale(0.97);
}

/* contact us page css */
.top_small_heading {
    font-size: 26px;
    color: var(--darkskyblue);
    font-weight: 400;
}

.contact_heading {
    font-size: 22px;
    color: #000;
    font-weight: 400;
    /* padding-left: 20px; */
}

.contact_heading span {
    font-weight: 700;
    color: #2197BD;
}

.office_address {
    padding-top: 20px;
}

.office_address h2 {
    font-size: 30px;
    color: var(--darkskyblue);
    font-weight: 400;
}

.office_address .fa {
    background-color: var(--skyblue);
    color: white;
    border-radius: 10%;
    font-size: 24px;
    padding: 7px 10px;
    border-radius: 10%;
    margin-right: 12px;
}

.address_icon_text {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 20px;
}

.address_icon_text h3 {
    font-size: 18px;
    margin: 0;
}

.contact_card {
    /* background-color: #DCF6FF; */
    background-color: #fff0f0;
    border-radius: 25px;
    padding: 25px;
    height: 100%;
}

.contact_form input {
    padding: 10px 16px;
    border-radius: 11px;
    background-color: white;
    border: 1px solid var(--darkskyblue);
    display: block;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
}

.contact_form textarea {
    padding: 10px 16px;
    border-radius: 11px;
    background-color: white;
    border: 1px solid var(--darkskyblue);
    display: block;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
}

.contact_form input:focus {
    border: 1px dotted var(--darkskyblue);
}

.contact_form textarea:focus {
    border: 1px dotted var(--darkskyblue);
}

.contact_form button {
    background-color: var(--darkskyblue);
    color: white;
    border-radius: 25px;
    padding: 5px 20px;
    font-size: 22px;
    font-weight: 500;
    border: none;
    text-align: center;
}

.form_btn {
    text-align: center;
}

.career_icon_btn {
    padding-left: 20px;
    margin-bottom: 20px;
}

.career_icon_btn img {
    width: 70%;
}

.career_icon_btn button {
    padding: 9px 24px;
    font-size: 15px;
    background-color: var(--darkskyblue);
    color: white;
    border-radius: 25px;
    border: none;
    margin-left: -12px;
}

.contact_page {
    padding: 100px 9%;
}

.contact_page .right_pd {
    margin-right: 20px;
    width: 48% !important;
}

.contact_page .left_pd {
    margin-left: 20px;
    width: 48% !important;
}

.tabs {
    width: 250px;
    /* background-color: #333; */
    color: #fff;
    padding: 0px 20px 20px;
    display: flex;
    flex-direction: column;
}

.tab-button {
    text-align: center;
    background-color: var(--darkskyblue);
    border-radius: 25px;
    border: none;
    padding: 15px;
    color: #fff;
    margin: 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
    line-height: 18px;
}

.tab-button:hover {
    background-color: #555;
}

.career_content_box {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.tab-content {
    display: none;
}


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


.career_heading {
    text-align: center;
    background-color: #fff;
}

.career_heading h2 {
    font-size: 30px;
    color: var(--darkskyblue);
}

.career_heading p {
    color: #242424;
    font-size: 16px;
}

.job_heading_text {
    margin-bottom: 20px;
}

.job_heading_text h2 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.job_heading_text p {
    font-size: 16px;
    color: #000;
    margin: 0;
}

.uplaod_resume label {
    font-size: 22px;
    color: #222;
    font-weight: bold;
}

.uplaod_resume button {
    background-color: #61ce70;
    border: none;
    font-size: 15px;
    padding: 8px 24px;
    color: white;
    margin-top: 12px;
    border-radius: 3px;
}

.career_heading_inner h2 {
    margin-bottom: 20px;
    color: var(--darkskyblue);
}

.career_heading {
    padding: 70px 0px 30px;
}

.career_tab_and_details {
    padding-bottom: 70px;
}

.career_video video {
    width: 100%;
}

.career_video {
    position: sticky;
    top: 0;
    z-index: -1;
}

.career_tab_and_details {
    background-color: #fff;
}

.footer {
    background-color: #F0F6FF;
    padding: 50px 0px 20px;
}

.footer .footer_logo {
    text-align: center;
    padding-bottom: 20px;
}

.footer .footer_logo img {
    width: 30%;
}

.footer .footer_menu h2 {
    font-size: 25px;
    color: var(--darkskyblue);
    padding-bottom: 32px;
}

.footer .footer_menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    /* padding-left: 15px; */
}

.footer .footer_contact_data p {
    color: #000;
    font-weight: 500;
}

.copyright {
    background-color: #000;
    color: white;
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 16px;
    padding: 15px;
}

.footer_items {
    display: flex;
    align-items: top;
    justify-content: space-between;
}

.footer_items p {
    margin-bottom: 24px;
}




/* company page */
.journey_section {
    background-image: url("https://res.cloudinary.com/dpu5nb7fa/image/upload/v1745516833/Journey-Background-scaled_auiaud.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.journey_card .journey_title {
    font-size: 30px;
    color: #68B4FF;
    font-weight: 500;
}

.journey_card .journey_date {
    color: #494949;
    font-weight: 22px;
    font-weight: 400;
    padding: 60px 0px;
}

.journey_section .content {
    width: 25vw !important;
    padding-top: 5%;
}

/* company profile */
.company_team_profile .team_member_img {
    width: 53%;
    border: 2px solid #2197bd;
    background-color: #ffffff2b;
}

.company_team_profile .profile_data img {
    width: 5%;
    position: absolute;
    top: 14%;
    left: -52px;
}

.company_team_profile .profile_data {
    /* display: flex;
    align-items: start; */
    padding-top: 20px;
    position: relative;
}

.company_team_profile .profile_data .team_member_details {
    padding: 3px 250px 3px 0px;
}

.company_team_profile .profile_data .team_member_details h2 {
    font-size: 30px;
    color: #FA5F00;
    font-weight: 600;
}

.company_team_profile .profile_data .team_member_details h3 {
    font-size: 18px;
    color: #FA5F00;
    font-weight: 500;
    padding-top: 4px;
}

.company_team_profile .profile_data .team_member_details ul li {
    font-size: 15px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 8px;
}

.company_team_profile .profile_data .team_member_details ul {
    padding: 20px 0px 0px 15px;
}


#horizontal5 .team_group_cards {
    display: flex;
    align-items: start;
}

#horizontal5 {
    background-image: url("https://res.cloudinary.com/dpu5nb7fa/image/upload/v1745521451/Background-for-team-scaled_j2tzbq.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#horizontal6 {
    background-image: url("https://res.cloudinary.com/dpu5nb7fa/image/upload/v1745521451/Background-for-team-scaled_j2tzbq.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.journey_heading {
    position: absolute;
    top: 15%;
    left: 43%;
    font-size: 45px;
    color: #FA5F00;
    font-weight: 600;
}

.team_main_heading {
    text-align: center;
}

.team_main_heading h2 {
    color: #FA5F00;
    font-size: 52px;
}


/* guildline principle */
.guilding_section {
    background-color: white;
    height: 100vh;
    background: url("https://res.cloudinary.com/dpu5nb7fa/image/upload/v1745842220/Guiding_Principles_Background_1_1_tv9knc.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
}

.guilding_section .top_section {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 87%;
    margin: auto;
    left: 0;
    right: 0;
    top: 10px;
    transform: translate(0%, 0px);
}

.extra_top_space {
    padding-top: 12%;
}

.technology_innovation {
    position: absolute;
    right: 10%;
    top: -20px;
}

.mid_card {
    padding-top: 2%;
    position: absolute;
    left: 40%;
    right: 0;
    transform: translate(0%, 0);
}

.team_work {
    position: absolute;
    left: 9%;
    top: -20px;
}

.guiding_card {
    text-align: center;
    width: 19%;
}

.guiding_card img {
    width: 34%;
}

.guiding_card h3 {
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 12px;
}

.guiding_card h3:hover {
    cursor: pointer;
}

.guiding_card .guild_para {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    font-weight: 300;
    line-height: 22px;
}

.guiding_card h3:hover+.guild_para {
    opacity: 1;
}

.guilding_section .bottom_section {
    display: flex;
    justify-content: space-around;
    position: absolute;
    width: 76%;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 10%;
    transform: translate(0%, 0px);

}

/* product card homepage */

#horizontal2 .product_card {
    border: 1px solid #b8b8b8;
    text-align: center;
    /* box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.397); */
    border-radius: 15px;
    overflow: hidden;
    margin: 0px 20px;
    box-shadow:
        0px 0px 5px 5px rgba(255, 255, 255, 0.75) inset,
        /* Inset shadow */
        0px 0px 20px 0px rgba(0, 0, 0, 0.397);
    /* Normal shadow */
    -webkit-box-shadow:
        0px 0px 5px 2px rgba(255, 255, 255, 0.75) inset,
        0px 0px 20px 0px rgba(0, 0, 0, 0.397);
    -moz-box-shadow:
        0px 0px 5px 2px rgba(255, 255, 255, 0.75) inset,
        0px 0px 20px 0px rgba(0, 0, 0, 0.397);
}

#horizontal2 .product_card img {
    padding: 40px;
}

#horizontal2 .product_card .product_card_details {
    background-color: #D9D9D9;
    padding: 20px 0px;
    margin: 0 5px 5px;
    border-radius: 10px;
}

.product_card .product_card_details h4 {
    font-size: 18px;
    color: #222;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.product_card .product_card_details p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding-bottom: 5px;
    text-transform: uppercase;
}

#horizontal img {
    width: 90%;
}

#horizontal2 h2 {
    position: absolute;
    text-align: center;
    top: 4%;
    left: 0;
    right: 0;
    font-size: 45px;
    color: #FA5F00;
    font-weight: 600;
    transform: translate(0%, 0);
}

.features_product_heading {
    background-color: #e6e6e6;
    padding-top: 70px;
}

.features_product_heading h2 {
    text-align: center;
    font-size: 45px;
    color: #FA5F00;
}

#horizontal5 .team_main_heading {
    position: absolute;
    top: 15%;
    left: 40%;
    font-size: 45px;
    color: #FA5F00;
    font-weight: 600;
}



/* responsive header */

/* Default styles */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #FA5F00;
}

.sidebar_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 25%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    padding: 40px 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.sidebar_menu.active {
    right: 0;
}

.sidebar_menu .primary_menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar_menu .primary_menu a {
    color: black;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 0;
}

/* Close button */
.close_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Hide mobile-only item on desktop */
.mobile-only {
    display: none;
}






.footer {
    position: relative;
    overflow: hidden;
}

.footer_about {
    width: 30%;
    padding-right: 40px;
}

.menu1 {
    width: 25%;
}

.menu2 {
    width: 20%;
}

.footer_contact_data {
    width: 25%;
    padding-right: 60px;
}

/* Styling for the mute/unmute button */
.mute-btn {
    width: 7.2%;
    position: absolute;
    bottom: 20px;
    right: 5%;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #FA5F00;
    border: none;
    border-radius: 21px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    background-color: white;
}

.mute-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.mute-btn:focus {
    outline: none;
}

.connectivity {
    position: relative;
    background: url("https://res.cloudinary.com/dpu5nb7fa/image/upload/v1745906733/Section_4_with_text_1_zsjfiu.jpg");
    background-size: cover;
    background-position: center;
}

.address_icon_text .fa-location-dot {
    padding: 7px 12px;
}

.features_product_heading {
    position: relative;
}

.connect {
    background-image: url("https://res.cloudinary.com/dpu5nb7fa/image/upload/v1746720209/Home_Section_4_background_ldh8jt.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 9;
    height: 100vh;
    padding: 5% 0px;
}

.connect .connectivity_img {
    text-align: center;
}

.connect .connectivity_img img {
    width: auto;
}

.connect .connectivity_text {
    text-align: center;
}

.connect .connectivity_text h2 {
    color: var(--skyblue);
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 12px;
}

.connect .connectivity_text p {
    color: var(--skyblue);
    font-size: 24px;
    font-weight: 500;
}

.publicity_and_digital a {
    text-decoration: none;
}





/* product page */


/* Stage (where images render) */
.bike-config {
    position: relative;
    height: 100dvh;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #efeae7 0%, #fbfafa 60%, #ffffff 100%);
}

/* the stage fills the section — no margins */
.bike-config .stage {
    position: absolute;
    inset: 0;
    /* top/right/bottom/left: 0 */
    margin: 0;
    width: 100%;
    height: 100%;
    /* display: grid;            */
    place-items: center;
}

/* image scales to fit both width & height without distortion */
.bike-config .stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* keep entire scooter */
    object-position: center bottom;
    /* sit on the bottom, no gap */
    display: block;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .18));
    transform: scale(1.06);
}

/* controls float on top, right side */
.bike-config .control-panel {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-85%);
    text-align: center;
    /* background: rgba(255,255,255,.75); */
    /* backdrop-filter: blur(10px); */
    /* border-radius: 16px; */
    /* box-shadow: 0 8px 24px rgba(0,0,0,.08); */
    /* padding: 18px 20px; */
}

.control-panel .group+.group {
    margin-top: 18px;
}

.control-panel h3 {
    margin: 25px 0 22px;
    font-size: 28px;
    font-weight: 300;
    /* letter-spacing: 2px; */
}

.swatches {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    outline: none;
    /* box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); */
    transition: transform .15s ease;
}

.swatch:hover {
    transform: scale(1.07);
}

.swatch[aria-selected="true"] {
    border: 1px solid #000;
}

.views {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.view-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.6px solid #9aa;
    background: #c1c1c1;
    cursor: pointer;
    font-weight: 300;
    letter-spacing: .2px;
    transition: transform .15s ease;
    font-size: 18px;
}

.view-btn:hover {
    transform: translateY(-1px);
}

.view-btn[aria-selected="true"] {
    border-color: #000;
    box-shadow: 0 0 0 0px #000 inset;
}

.features_product {
    position: relative;
}


#horizontal7 .content {
    height: 100vh;
    /* width: auto; */
    width: 30%;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    padding-top: 10%;
}

#horizontal7 .content img {
    width: 100%;
}

#horizontal7 .features_product_heading {
    top: 1%;
    background-color: #fff;
}

#horizontal7 {
    display: flex;
    overflow-x: hidden;
    background-color: #fff;
    padding-left: 10%;
}

#horizontal7 .product_card {
    border: 1px solid #b8b8b8;
    text-align: center;
    /* box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.397); */
    border-radius: 15px;
    overflow: hidden;
    margin: 0px 20px;
    box-shadow:
        0px 0px 5px 5px rgba(255, 255, 255, 0.75) inset,
        /* Inset shadow */
        0px 0px 20px 0px rgba(0, 0, 0, 0.397);
    /* Normal shadow */
    -webkit-box-shadow:
        0px 0px 5px 2px rgba(255, 255, 255, 0.75) inset,
        0px 0px 20px 0px rgba(0, 0, 0, 0.397);
    -moz-box-shadow:
        0px 0px 5px 2px rgba(255, 255, 255, 0.75) inset,
        0px 0px 20px 0px rgba(0, 0, 0, 0.397);
}

#horizontal7 .product_card img {
    padding: 40px;
}

#horizontal7 .product_card .product_card_details {
    background-color: #D9D9D9;
    padding: 20px 0px;
    margin: 0 5px 5px;
    border-radius: 10px;
}

#horizontal7 h2 {
    position: absolute;
    text-align: center;
    top: 4%;
    left: 0;
    right: 0;
    font-size: 45px;
    color: #FA5F00;
    font-weight: 600;
    transform: translate(0%, 0);
}




/* header button fade */

/* Optional: smooth label fade on change */
/* Pure-CSS label rotation: 3 states, each visible for ~2s (total 6s loop) */
/* Button frame (keep yours) */
.cta-rotator{
    position:relative; display:inline-block;
    padding:12px 24px; border:0; border-radius:21px;
    background:#FA5F00; color:#fff; font-size:16px; cursor:pointer;
    overflow:hidden; line-height:1.2; height:44px; min-width:170px;
  }
  
  /* Make spans visible even if inline had display:none */
  .cta-rotator .cta-text{
    position:absolute; inset:0;
    display:flex !important;            /* <-- key fix */
    align-items:center; justify-content:center;
    opacity:0; transform:translateY(10px);
    animation:ctaFade 6s infinite;
    will-change:opacity,transform;
  }
  
  .cta-rotator .cta-text:nth-child(1){ animation-delay:0s; }
  .cta-rotator .cta-text:nth-child(2){ animation-delay:2s; }
  .cta-rotator .cta-text:nth-child(3){ animation-delay:4s; }
  
  @keyframes ctaFade{
    0%{opacity:0; transform:translateY(10px);}
    5%{opacity:1; transform:translateY(0);}
    30%{opacity:1; transform:translateY(0);}
    33%{opacity:0; transform:translateY(-10px);}
    100%{opacity:0; transform:translateY(-10px);}
  }
  



/* book testride popup  */

/* Modal visibility */
.testride-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000;
}

.testride-modal.open {
    display: block !important;
}

.tm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

/* Sheet layout (image | form) */
.tm-sheet {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 520px;
}

/* Close button */
.tm-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
    z-index: 2;
}

/* Left image panel */
.tm-left {
    background: #f3f5f7;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.tm-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .25s ease, transform .25s ease;
    transform: scale(1.5);
}

.tm-left img.is-swapping {
    opacity: .25;
}

/* Right panel / form */
.tm-right {
    padding: 50px 50px 0px;
    overflow: auto;
}

.tm-title {
    margin: 4px 0 25px;
    font: 400 24px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding: 0px 10px;
    line-height: 36px;
}

.tm-group {
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding: 0px 10px;
}

.tm-group label {
    display: block;
    font-weight: 400;
    margin: 0 0 6px;
    color: #7b7b7b;
    font-size: 14px;
}

.tm-group label span {
    color: #e11d48;
    margin-left: 4px;
}

.tm-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tm-input,
.tm-select {
    width: 100%;
    padding: 16px 14px;
    font-size: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    outline: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
    color: #7b7b7b;
    font-weight: 400;
}

.tm-input,
.tm-select::placeholder {
    color: #7b7b7b;
}

.tm-input:focus,
.tm-select:focus {
    border-color: #FA5F00;
    box-shadow: 0 0 0 3px rgba(250, 95, 0, .13);
}

.tm-note {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

.tm-phone {
    display: flex;
}

.tm-cc {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-right: 0;
    border-radius: 12px 0 0 12px;
}

.tm-phone .tm-input {
    border-radius: 0 12px 12px 0;
}

/* Colour swatches */
.tm-colors {
    display: flex;
    gap: 10px;
}

.tm-swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #d1d5db;
    background: var(--c);
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
}

.tm-swatch:hover {
    transform: scale(1.06);
}

.tm-swatch.is-active {
    box-shadow: 0 0 0 2px #FA5F00;
}

/* Footer */
.tm-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #eef1f4;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.tm-amount .tm-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    padding-bottom: 10px;
}

.tm-amount .tm-price {
    font-size: 26px;
    font-weight: 400;
}

.tm-cta {
    padding: 12px 20px;
    background: #FA5F00;
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    min-width: 140px;
}


/* make the two images overlap and fade */
.stage {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bike-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or 'cover' if you want full-bleed */
    object-position: center bottom;
    opacity: 0;
    will-change: opacity; backface-visibility: hidden;
}

.bike-img.show {
    opacity: 1;
}

.footer_des {
    padding: 10px;
    font-size: 12px;
    color: #7b7b7b;
}



/* Black overlay already handled by .tm-backdrop in your CSS; keeping it dark */
.tm-backdrop {
    background: rgba(0, 0, 0, .75);
}

/* Centered sheet holding the card */
.cb-sheet {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* The white dialog card */
.cb-card {
    width: min(92vw, 540px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .30);
    padding: 22px;
    position: relative;
}

.cb-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.cb-title {
    margin: 0 0 14px 0;
    font: 700 22px/1.25 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #1f2937;
    line-height: 30px;
}

.cb-form {
    margin-top: 8px;
}

.cb-field {
    margin: 10px 0;
}

.cb-input,
.cb-select {
    width: 100%;
    height: 52px;
    padding: 12px 14px;
    font-size: 15px;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
    outline: 0;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.cb-input::placeholder {
    color: #9ca3af;
}

.cb-input:focus,
.cb-select:focus {
    background: #fff;
    border-color: #FA5F00;
    box-shadow: 0 0 0 3px rgba(250, 95, 0, .15);
}

/* Chevron for select */
.cb-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2399a1a9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    padding-right: 40px;
}

.cb-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 16px 2px;
    color: #1f2937;
    font-size: 14px;
    user-select: none;
    cursor: pointer;
}

.cb-check input {
    width: 18px;
    height: 18px;
}

.cb-btn {
    width: 100%;
    height: 48px;
    background: #6b7280;
    /* grey look like screenshot */
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.cb-refer {
    text-align: center;
    font-size: 14px;
    color: #4b5563;
    margin: 14px 0 6px;
}

.cb-link {
    color: #16a34a;
    text-decoration: none;
}

.cb-link:hover {
    text-decoration: underline;
}

/* Make sure modal base classes exist (from your earlier CSS) */
.testride-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000;
}

.testride-modal.open {
    display: block !important;
}

.tm-color-readout { margin-top: 15px; font-size: 14px; color:#6b7280; }
.tm-color-readout strong { color:#111827; }

/* call back end */




/* custom dropdown */

/* === Simple custom select === */
:root { --cd-brand:#FA5F00; }

.cd-wrap{ position:relative; font:inherit; }
.cd-wrap > select.cd-native{ display:none; } /* keep in DOM for form submit */

.cd-trigger{
  width:100%; padding:16px 14px; border:1px solid #e5e7eb; border-radius:10px;
  background:#fff; color:#111827; font-size:15px; display:flex; align-items:center; justify-content:space-between;
  cursor:pointer;
}
.cd-trigger:hover{ border-color:#dadde2; }
.cd-wrap.is-open .cd-trigger{ border-color:var(--cd-brand); box-shadow:0 0 0 3px rgba(250,95,0,.12); }

.cd-label{ overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }
.cd-label.cd-placeholder{ color:#6b7280; }

.cd-caret{ width:12px; height:12px; transition:transform .15s; }
.cd-wrap.is-open .cd-caret{ transform:rotate(180deg); }

.cd-panel{
  position:absolute; left:0; right:0; top:calc(100% + 6px);
  background:#fff; border:1px solid #eef1f4; border-radius:12px;
  box-shadow:0 16px 34px rgba(0,0,0,.18); max-height:220px; overflow:auto;
  z-index:100000; display:none; padding:6px;
}
.cd-wrap.is-open .cd-panel{ display:block; }

.cd-option{
  width:100%; padding:10px 12px; border:0; background:transparent;
  display:flex; align-items:center; justify-content:space-between; border-radius:8px;
  font:inherit; color:#111827; cursor:pointer;
}
.cd-option:hover{ background:#FFF3EC; }
.cd-option[aria-selected="true"]{ background:#FFF3EC; color:var(--cd-brand); }

.cd-check{ display:none; width:16px; height:16px; margin-left:10px; }
.cd-option[aria-selected="true"] .cd-check{ display:inline-flex; }

/* custom dropdown end */



/* partner popup */

/* ===== Partner popup (bbp- namespaced) ===== */
.bbp-modal{position:fixed;inset:0;z-index:10000;display:none;}
.bbp-modal.open{display:block!important;}

.bbp-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.75);}

.bbp-sheet{
  position:relative;width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;padding:16px;
}

.bbp-card{
  width:min(92vw, 580px);background:#fff;border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.30);padding:22px;position:relative;z-index:1;
}

.bbp-close{
  position:absolute;right:14px;top:14px;width:34px;height:34px;border:0;border-radius:50%;
  background:#000;color:#fff;font-size:22px;cursor:pointer;
}

.bbp-title{margin:0 0 14px;font:700 22px/1.25 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#1f2937;}

.bbp-form{margin-top:8px;}
.bbp-field{margin:10px 0;}

.bbp-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
@media (max-width:640px){ .bbp-row{grid-template-columns:1fr;} }

.bbp-input,
.bbp-textarea{
  width:100%;padding:12px 14px;font-size:15px;color:#111827;
  border:1px solid #e5e7eb;border-radius:6px;background:#f9fafb;outline:0;
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.bbp-input::placeholder,.bbp-textarea::placeholder{color:#9ca3af;}
.bbp-input:focus,.bbp-textarea:focus{
  background:#fff;border-color:#FA5F00;box-shadow:0 0 0 3px rgba(250,95,0,.15);
}

.bbp-btn{
  width:100%;height:48px;background:#6b7280;color:#fff;border:0;border-radius:8px;
  font-size:16px;cursor:pointer;
}


/* partner popup end */





/* mobile color selector */

/* ===== MOBILE CONFIG (overlay) ===== */
#sy9-mobile-config{ padding:0; }
@media (min-width:769px){ #sy9-mobile-config{ display:none; } }

.mc-stage{
  position:relative; width:100%;
  /* tall look; tweak if you want more/less height */
  aspect-ratio: 3/4;
  /* subtle background like mock; no radius */
  background: radial-gradient(140% 80% at 50% 65%, #ffffff 0, #f4f6f8 58%, #eceff3 100%);
}

.mc-img{
  /* position:absolute;  */
  /* inset:0;  */
  width:100%; 
  /* height:100%;
  object-fit:contain; 
  object-position:center bottom; */
  opacity:0; transition:opacity .18s ease;
}
.mc-img.is-ready{ opacity:1; }

/* overlay container */
.mc-ol{
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:space-between;
  padding-top: calc(50px + env(safe-area-inset-top));
  padding-bottom: calc(55px + env(safe-area-inset-bottom));
}

/* title at top */
.mc-title{
  margin:0; text-align:center; font-weight:400;
  color:#2b2b2b; letter-spacing:.3px;
  line-height:1.35; font-size:22px;
  text-shadow:0 1px 10px rgba(255,255,255,.8);
}

/* bottom HUD over image */
.mc-hud{
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
  padding:0 18px 6px;
}
.mc-group{ display:grid; gap:10px; align-content:end;justify-content: start; }
.mc-label{ text-align:center; color:#222; font-size:16px; letter-spacing:.3px; text-shadow:0 1px 8px rgba(255,255,255,.85); }

/* view buttons */
.mc-views{ display:flex; gap:18px; justify-content:center; }
.mc-view{
  width:22px; height:22px; border-radius:50%;
  border:1px solid #cfd6de; background:#fff; color:#2b2b2b;
  font-weight:500; cursor:pointer;
  box-shadow:0 1px 10px rgba(0,0,0,.06);
}
.mc-view.is-active{ border-color:#FA5F00; box-shadow:0 0 0 3px rgba(250,95,0,.12); color:#FA5F00; }

/* color dots */
.mc-swatches{ display:flex; gap:12px; justify-content:center; }
.mc-swatch{
  width:20px; height:20px; border-radius:50%;
  background:var(--c); border:2px solid #fff; cursor:pointer;
  box-shadow:0 0 0 2px #d7dee6;
}
.mc-swatch.is-active{ box-shadow:0 0 0 2px #FA5F00; }


/* mobile color selector end */

/* mobile features card details on SY9 page */

.item_inner_content {
    background-color: #D9D9D9;
    padding: 20px 0px;
    margin: 0 5px 5px;
    border-radius: 10px;
    text-align: center;
}
.item_inner_content h4 {
    text-transform: none;
    margin-bottom: 10px;
    font-size: 18px;
}

.item_inner_content p {
    text-transform: none;
    padding-bottom: 5px;
}

.product_carousel .item {
    /* padding: 5px; */
    border: 1px solid #b8b8b8;
    text-align: center;
    /* box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.397); */
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 20px;
    box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.75) inset, 0px 0px 20px 0px rgba(0, 0, 0, 0.397);
    -webkit-box-shadow: 0px 0px 5px 2px rgba(255, 255, 255, 0.75) inset, 0px 0px 20px 0px rgba(0, 0, 0, 0.397);
    -moz-box-shadow: 0px 0px 5px 2px rgba(255, 255, 255, 0.75) inset, 0px 0px 20px 0px rgba(0, 0, 0, 0.397);
}
.product_carousel{padding: 40px 0px;}

.product_carousel .item img {
    padding: 40px;
}

/* mobile features card details on SY9 page end*/


/* mobile header */

.mobile_header img{
    width: 40%;
}
.mobile_header .logo_div{
    width: 30%;
}
.mobile_header{position: sticky;background-color: #fff;display: none;}

.main_img_mobile,.product_carousel{display: none;}

.contact_submenu{left: 12px;}

/* mobile header end */




/* Desktop shows the menu on hover; mobile is controlled by JS */
@media (hover:hover) and (pointer:fine){
    .cta-dd .cta-menu{ display:none; }
    .cta-dd:hover .cta-menu{ display:block; }
  }



/* Responsive */
@media (max-width:1024px) {
    .tm-sheet {
        grid-template-columns: 1fr 480px;
    }
}

@media (max-width:860px) {
    .tm-sheet {
        grid-template-columns: 1fr;
    }

    .tm-left {
        height: 42vh;
    }

    .tm-right {
        /* height: 58vh; */
    }
    .tm-right {
        padding: 25px 25px 0px;
        overflow: auto;
    }

    .tm-grid2 {
        grid-template-columns: 1fr;
    }
}

/* book testride popup ends here */

/* Mobile: put controls below stage */
@media (max-width: 980px) {
    .stage {
        width: 86vw;
        margin: 6rem auto 10rem;
    }

    .control-panel {
        position: static;
        transform: none;
        width: auto;
        margin: 0 auto 2rem;
    }
    .mobile_hide{display: none !important;}
.mobile_header{position: sticky;background-color: #fff;display: block;}
.tm-left{display: none;}
.main_img_mobile,.product_carousel{display: block;}
.footer_items{display: block;}
.footer{padding: 40px 20px 10px;}
.menu1{display: none;}
.owl-next{    position: absolute;
    top: 35%;
    right: 2%;
    font-size: 60px !important;
    color: #fa5f00 !important;
}
.owl-prev{
    position: absolute;
    top: 35%;
    left: 2%;
    font-size: 60px !important;
    color: #fa5f00 !important;
}
.product_carousel .item{    margin: 20px 40px;}
.owl-theme .owl-nav [class*=owl-]:hover{color: #fa5f00 !important;background: none;}
.owl-theme .owl-nav [class*=owl-]{background: none !important;}
.owl-dots{display: none !important;}
.product_carousel h2{font-size: 30px;color: #fa5f00;text-align: center;font-weight: 500;padding-bottom: 20px;}

}


/* Demo title (optional) */
.title {
    position: absolute;
    left: 12vw;
    top: 38vh;
    max-width: 36ch;
    color: #3c3c3c;
    font-size: 28px;
    line-height: 55px;
    font-weight: 300;
    z-index: 1;
    width: 18%;
    text-align: center;
    /* letter-spacing: 2px; */
    color: #000;
}

.subtitle {
    margin-top: 8px;
    font-size: 16px;
    opacity: .7;
}

/* ========== DESKTOP STYLES ========== */

/* For screens up to 1720px */
@media (max-width: 1720px) {
    #horizontal img {
        width: 80%;
    }

    #horizontal2 .content {
        width: 28%;
    }

    #horizontal2 .content img {
        width: 95%;
    }

    #horizontal2 .features_product_heading {
        top: 3%;
    }

    .connect {
        padding: 5% 0px;
    }

    .connect .connectivity_img img {
        width: 80%;
    }

    .company_team_profile .team_member_img {
        width: 42%;
    }

    .team_work {
        position: absolute;
        left: 9%;
        top: -35px;
    }

    .technology_innovation {
        position: absolute;
        right: 10%;
        top: -60px;
    }

    .social_bar .bar {
        width: 27%;
    }

    .social_bar {
        top: -100px;
    }


}

/* For screens up to 1520px */
@media (max-width: 1520px) {
    #horizontal img {
        width: 80%;
    }

    #horizontal2 .content {
        width: 30%;
    }

    #horizontal2 .content img {
        width: 100%;
    }

    #horizontal2 .features_product_heading {
        top: 3%;
    }

    .connect {
        padding: 5% 0px;
    }

    .connect .connectivity_img img {
        width: auto;
    }

    .company_team_profile .team_member_img {
        width: 52%;
    }

    .social_bar .bar {
        width: 29%;
    }

    .social_bar {
        top: -60px;
    }
    /* .bike-config .stage img{transform: scale(1.12);} */
    .tm-color-readout {
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
}
}

/* Hide hamburger and sidebar on desktop (min-width 1181px and up) */
@media (min-width: 1181px) {
    .sidebar_menu {
        display: none !important;
    }

    .hamburger {
        display: none;
    }

    .desktop_nav {
        display: block;
    }
    
}

/* Show sidebar and hamburger on mobile (max-width 1180px) */
@media (max-width: 1180px) {
    .hamburger {
        display: block;
    }

    .desktop_nav {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .book_btn {
        display: none;
    }
}