*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "DM Sans", sans-serif;
    /* overflow-x: hidden; */
}

.page_wrapper{
    max-width: 1140px;
    margin: 0 auto;
}

/* header style start */

.navbar .nav-item{
    padding: 0 10px;
}

.main_logo{
    width: 140px;
    height: 60px;
}

.navbar .nav-item .nav-link{
    font-family: "DM Sans", sans-serif;  
    font-weight: 500;
    font-size: 16px;
    color: #1b1e2c;
}

/* header style end */

/* hero section style start */

.hero_section_container{
    position: relative;
    background-image: url('../images/hero_background_img.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.left_hero_content{
    padding: 70px 0; 
}

.hero_section_button{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 12px;
    color: #ff563b;
    background: linear-gradient(rgba(84, 94, 244, 0.06),rgba(84, 94, 244, 0.06));
    opacity: 0.6;
    border: transparent;
    border-radius: 24px;
    padding: 8px 20px;
    margin-bottom: 10px;
}

.hero_section_heading_h1{
    font-family: "DM Sans", sans-serif;  
    font-weight: 700;
    font-size: 60px;
    color: #000000;  
    margin-bottom: 10px;
}

.hero_section_heading_span{
    color: #ff563b; 
    margin-bottom: 10px;
}

.hero_section_pera_p{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 24px;
    color: #748795; 
    line-height: 38px;
    margin-bottom: 32px;
}

.hero_section_button_main{
    font-family: "Roboto", sans-serif; 
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    background-color: #ff563b;
    border: 1px solid #ff563b;
    border-radius: 24px;
    padding: 10px 24px;
}

.hero_section_button_main:hover{
    color: #000000;
    background-color: transparent;
    border: 1px solid #ff563b;
    transition: 0.5s;
}

.right_hero_content{
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 992px){

    .hero_section_container{
       margin-top: 50px;
    }

    .left_hero_content{
        padding: 20px; 
    }

    .hero_section_heading_h1{
        font-size: 24px;
    }

.hero_section_pera_p{
    font-size: 18px;
    line-height: 25px;
}
    

    .right_hero_content{
        margin-top: 20px;
    }
}

/* hero section style end */


/* Hero Section General Styles */
.hero_section_container {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff; /* Optional: Add background color */
  }
  
  .hero_section_container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .hero_section_heading_h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 700;
    color: #333;
  }
  
  .hero_section_heading_span {
    color: #ff563b; /* Highlight color */
  }
  
  .hero_section_pera_p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  .hero_section_button,
  .hero_section_button_main {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #ff563b;
    border: 1px solid #ff563b;
    border-radius: 24px;
    cursor: pointer;
    /* text-transform: uppercase; */
    margin-right: 10px;
  }

  .hero_section_button{
    background-color: rgb(223, 232, 254);
    color: #ff563b;
    border: 1px solid rgb(223, 232, 254);
  }
  
  .hero_section_button_main {
    background-color: #ff563b; /* Different color for main button */
  }
  
  .hero_section_button:hover,
  .hero_section_button_main:hover {
    opacity: 0.9;
  }
  
  /* Right Hero Content */
  .right_hero_content img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero_section_heading_h1 {
      font-size: 2.5rem; /* Reduce heading size for tablets */
    }
  
    .hero_section_pera_p {
      font-size: 0.9rem; /* Adjust paragraph font size */
    }
  
    .hero_section_button,
    .hero_section_button_main {
      font-size: 0.9rem; /* Reduce button size */
      padding: 8px 16px;
    }
  }
  
  @media (max-width: 768px) {
    .hero_section_heading_h1 {
      font-size: 2rem; /* Further reduce heading size for smaller devices */
    }
  
    .hero_section_pera_p {
      font-size: 0.8rem; /* Further adjust paragraph size */
    }
  
    .hero_section_button,
    .hero_section_button_main {
      font-size: 0.8rem;
      padding: 6px 12px;
    }
  }
  
  @media (max-width: 576px) {
    .hero_section_container {
      text-align: center; /* Center-align content for small screens */
    }
  
    .left_hero_content,
    .right_hero_content {
      margin-bottom: 20px;
    }
  
    .hero_section_heading_h1 {
      font-size: 1.8rem;
    }
  
    .hero_section_pera_p {
      font-size: 0.75rem;
    }
  
    .hero_section_button,
    .hero_section_button_main {
      display: block; /* Stack buttons on smaller screens */
      margin: 10px auto;
      width: auto;
    }
  }
  


/* how it works section style start */

.work_section{
    position: relative;
    margin-top: 100px;
}

.work_section_content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.how_it_work_heading_h2{
    position: relative;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #1e194d;
    z-index: 1;
}

.how_it_work_pera_p{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 24px;
    color: #9e9baa; 
    line-height: 38px;
    text-align: center;
    margin-bottom: 40px;
}

.doted_line{
    width: 772px;
    border-spacing: 3px;
    top: 52%;
    z-index: -1;
    position: absolute;
    height: 2px;
    border: 2px dotted #c2c0c8;
}

.box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.work_count_h3{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe3e5;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    border-radius: 50%;
    color: #1e194d;
    margin-bottom: 25px;
}

.work_count_title_h3{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1e194d;  
    margin-bottom: 16px;
}

.work_count_pera_p{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 16px;
    color: #9e9baa;  
    text-align: center; 
}

@media only screen and (max-width: 1024px){
    .doted_line{
        top: 48%;
    }
}

@media only screen and (max-width: 992px){

    .how_it_work_heading_h2{
        font-size: 35px;
    }

    .how_it_work_pera_p{
        font-size: 20px;
    }

    .booking_pera_p{
        font-size: 20px;
    }

    .doted_line{
        top: 50%;
     }
}

@media only screen and (max-width: 768px){

    .work_section{
        margin-top: 0;
    }

    .doted_line{
       display: none;
    }

    .how_it_work_heading_h2{
        font-size: 20px;
        line-height: 25px;
        margin-top: 30px;
    }

    .how_it_work_pera_p{
        font-size: 18px;
        line-height: 27px;
    }

}

@media only screen and (max-width: 540px){

    .how_it_work_pera_p{
        font-size: 15px;
        line-height: 22px;
    }

    .work_count_title_h3{
        font-size: 18px;
    }
}

/* how it works section style end */

/* Booking section style start */

.booking_section{
    position: relative;
    margin-top: 100px;
}

.left_booking_content{
    position: relative;
    background-color: #ff563b;
    border-radius: 2px 50% 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone_image{
    margin-top: 120px;
}

.Polygon_image_1{
   position: absolute; 
   top: -23px;
   left: 38px;
}

.Polygon_image_2{
    position: absolute; 
    top: -43px;
    left: 70px;
 }

 .booking_pera_p{
    text-align: left;
    line-height: 28px;
 }

 .right_booking_content{
    padding-left: 35px;
 }

 @media only screen and (max-width: 1024px){
    .right_booking_content{
        padding-left: 20px;
     }
 }

 @media only screen and (max-width: 768px){
    .booking_pera_p{
        font-size: 18px;
        line-height: 22px;
    }
 }

 @media only screen and (max-width: 540px){

    .right_booking_content{
        text-align: center;
    }

    .booking_pera_p{
        text-align: center;
    }
 }

/* Booking section style end */

/* payment section style start */

.payment_section{
    position: relative;
    margin-top: 100px;
}

.right_payment_content{
    position: relative;
    background-color: #FBAFB1;
    border-radius: 100% 100% 2px 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Polygon_3{
    position: absolute;
    right: 50px;
    top: 10px;
}

.Polygon_4{
    position: absolute;
    right: 125px;
    top: 25px;
}

.count_number_heading_h3{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #1e194d; 
}

.counting{
    margin-top: 70px;
}

.count{
    text-align: center;
}

.count_heading_pera_p{
    font-family: "DM Sans", sans-serif;  
    font-weight: 500;
    font-size: 20px;
    color: #9e9baa;   
}

@media only screen and (max-width: 992px){
    .count_number_heading_h3{
        font-size: 30px;
    }

    .count_heading_pera_p{
        font-size: 17px;
    }
}

@media only screen and (max-width: 768px){

    .payment_section{
        margin-top: 20px;
    }

    .left_payment_content{
        margin-top: 20px;
    }

    .right_payment_content{
        margin-top: 40px;
    }

    .count{
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 540px){
    .left_payment_content{
       text-align: center;
       margin-bottom: 30px;
    }

    .count_number_heading_h3 {
        font-size: 22px;
    }

    .count_heading_pera_p{
        font-size: 16px;
    }
}

/* payment section style end */

/* Features section style start */

.features_section{
    position: relative;
    margin-top: 100px;
}

.left_features_content{
    position: relative;
    margin-top: 120px;
    background-color: #FCB0F0;
    border-radius: 2px 50% 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Polygon_5{
    position: absolute;
    top: 0px;
    right: 5px;
}
.Polygon_6{
    position: absolute;
    top: -5px;
    right: 5px;
}

.icon_content{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.icon_title{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #1e194d;   
}

.icon_pera{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 16px;
    color: #9e9baa;    
}

.right_features_content{
    padding-left: 120px;
}

@media only screen and (max-width: 1024px){

    .right_features_content{
        padding-left: 20px;
    }
}

@media only screen and (max-width: 768px){
    .features_section{
        margin-top: 0px;
    }

    .icon_title{
        font-size: 18px;  
    }

    .icon_pera {
        font-size: 14px;
        line-height: 18px;
    }

    .left_features_content{
        margin-top: 20px;
    }

    .right_features_content{
        margin-top: 30px;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 540px){
    .icon_title{
        font-size: 14px;  
    } 
    
    .icon_pera {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Features section style end */


/* interface lock carousal section style start */

.interface_lock{
    position: relative;
    margin-top: 100px;
}

.interface_lock_content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title_content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.interface_title_heading_h2{
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 31.25px;
    color: #232233;
    line-height: 47.3px;
}

.interface_title_pera_p{
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6c6c72;
    line-height: 24px;  
    max-width: 600px;
}

.slider{
    margin-bottom: 20px;
    position: relative;
}

.slider .owl-item.active.center .item{
    transform: scale(1.15);
    opacity: 1;
    /* background-color: #ccc; */
}

.item{
    background-color: #ffffff;
    margin: 50px 15px 90px 15px;
    border-radius: 5px;
    /* box-shadow: 0 15px 45px -20px rgba(206, 191, 191, 0.493); */
    transform: scale(0.9);
    opacity: 0.5;
    transition: all 0.3s;
}

.item img{
    border-radius: 5px 5px 0px 0px;
}

.owl-carousel .owl-nav.disabled{
    display: block;
}

.owl-carousel .owl-nav.disabled .owl-prev{
    position: absolute;
    top: 40%;
    left:  -1%;
    height: 30px;
    width: 30px;
    border: 1px solid#ff563b;
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    color: #ff563b;
}

.owl-carousel .owl-nav.disabled .owl-prev:hover{
    background-color: #ff563b;
    transition: 0.5s;
    color:#ffffff;
}

.owl-carousel .owl-nav.disabled .owl-next{
    position: absolute;
    top: 40%;
    right: -1%;
    height: 30px;
    width: 30px;
    border: 1px solid#ff563b;
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    color: #ff563b;
}

.owl-carousel .owl-nav.disabled .owl-next:hover{
    background-color: #ff563b;
    transition: 0.5s;
    color:#ffffff;
}




/* .interface_lock .owl-theme .owl-dots .owl-dot.active span, .interface_lock .owl-theme .owl-dots .owl-dot:hover span{
    background-color: red !important;
} */

/* .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot.active{
    border: 1px solid #5956E9;
    opacity: 0.5s;
} */



@media only screen and (max-width: 992px){

    .interface_title_heading_h2 {
        font-size: 25.25px;
        line-height: 20.3px;
    }

    .interface_title_pera_p{
        font-size: 15px;
        line-height: 20px;
    }

    .owl-carousel{
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px){

    .interface_lock{
        margin-top: 55px;
    }

    .interface_title_heading_h2 {
        font-size: 22px;
        line-height: 21.3px;
    } 

    .interface_title_pera_p{
        font-size: 14px;
        line-height: 18px;
    }

    .owl-carousel{
        margin-top: 20px;
    }

    .item{
        margin: 15px;
    }

    .owl-carousel .owl-nav.disabled{
        display: none;
    }

    .owl-carousel .owl-dots.disabled{
        display: flex; 
        align-items: center;
        justify-content: center;
    }
    
    
    .interface_lock .owl-carousel .owl-nav button.owl-next, .interface_lock .owl-carousel .interface_lock .owl-nav button.owl-prev, .interface_lock .owl-carousel button.owl-dot{
        background-color: #ff563b;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        margin: 0 5px;
    }
    
    .interface_lock .owl-carousel .owl-nav button.owl-next, .interface_lock .owl-carousel .interface_lock .owl-nav button.owl-prev, .interface_lock .owl-carousel button.owl-dot.active{
      opacity: 0.7;
      border: 6px solid #ff563b !important;
    }
}

@media only screen and (max-width: 540px){

    .interface_lock{
        margin-top: 20px;
    }
/* 
    .interface_title_heading_h2 {
        font-size: 14px;
        line-height: 18.3px;
    }  */

    .interface_title_pera_p{
        font-size: 12px;
        line-height: 16px;
    }
}

/* interface lock carousal section style end */


/* vender section start */

 /* Section Styles */
 .service-section {
    padding: 40px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0px  auto 0;
}

/* Header Section */
.header {
    position: relative;
    display: flex;
    flex-direction: row;
   justify-content: space-between;
    margin-bottom: 30px;
}


/* .vender_for_bottom_border {
    position: absolute;
    border-radius: 4px;
    display: block;
    height: 3px;
    min-width: 205px;
    top: 26px;
    border-style: solid;
    border-color: orange;
    border-width: 0 0 9px 0;
    left: 65px;
} */

.header p {
    max-width: 600px;
}

.sports_images{
    border-radius: 15px;
}

.new_vender_pera {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6c6c72;
    line-height: 24px;
    max-width: 600px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
    gap: 40px 20px;
}

/* Individual Cards */
.service-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* width: 40px;
    height: 40px; */
    border-radius: 12px;
    color: #fff;
}

/* .service-card h3 {
   
} */

.vender_card_heading{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #1e194d;
    margin-bottom: 10px;
}

/* .service-card p {
    font-size: 0.9rem;
    color: #555;
} */

/* Icon Colors */
.task-icon { 
    background-color: #c9d2d469; 
    /* opacity: 0.5; */
}

.vender_icons{
    color: #c32faa;
}

.vender_icon_2{
    background-color: #3bdfab;
}

.vender_icon_3{
    background-color: #b8872c;
    border-radius: 50%;
}

.vender_icon_4{
    background-color: #bedd4e;
    border-radius: 50%;
}

.vender_icon_5{
    background-color: #7d0f0f;
    border-radius: 50%; 
}

.vender_icon_6{
    background-color: #0f657d;
    border-radius: 50%; 
}

/* .project-icon { background-color: #c9d2d469; }
.time-icon { background-color: #c9d2d469; }
.web-icon { background-color: #c9d2d469; }
.mobile-icon { background-color: #c9d2d469; }
.development-icon { background-color: #c9d2d469; } */

/* Responsive Adjustments */

@media (max-width: 1024px) {
    .header {
        display: flex;
        flex-direction: column;
        justify-content: center;
       text-align: center
    }


    .vender_for_bottom_border{
        display: none;
    }

    .header p {
        font-size: 0.9rem;
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .header h1 {
        font-size: 2rem;
        line-height: 30px;
    }

    .header p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-section {
        margin: 0px  auto 0;
    }
}

@media (max-width: 540px) {
    .service-section{
        padding: 20px;
        margin: 0px  auto 0;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .service-card .icon {
        /* width: 50px;
        height: 50px; */
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

/* vender section end */

/* vender slider section style start */

.vender_slider{
    position: relative;
    margin-top: 40px;
}

/* vender slider section style end */

/* platform section style start */

.platform_section{
    /* margin-top: 70px; */
    padding: 40px 20px 20px 20px;
    background-color: #FFEFEF;
}

.two_plateform_card{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 15px;
    /* flex-wrap: wrap; */
}

.one_card{
    border-radius: 4px;
    background-color: #ffffff;
    padding: 15px 10px;
}

.one_card_heading_h3{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 23px;
    color: #1e194d; 
}

.one_card_pera_p{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 16px;
    color: #9e9baa;   
}

.plateform_pera_p{
    text-align: left;
}

.right_platform_content{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 140px;
}


@media only screen and (max-width: 1024px){

    .right_platform_content{
        margin-top: 0px;
    } 
    
    .new_vender_pera{
        text-align: center;
        max-width: 100% !important;
    }

}

@media only screen and (max-width: 992px){

    .platform_section{
        margin-top: 40px;
    }

    .two_plateform_card{
        flex-wrap: wrap;
    } 

    .right_platform_content {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px){
    .platform_section{
        padding-top: 0;
        margin-top: 20px;
    }

    .right_platform_content {
        margin-top: -60px;
    }

    .platform_mobile_image{
        margin-top: 90px;
    }

}

/* platform section style end */


/* customer section start */

.customer_section{
    position: relative;
    margin-top: 70px;
}

.customer_heading{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1e194d;
    text-align: center;
    margin-bottom: 0;
}

.border_heading{
 margin: 0 auto;
   width: 70px;
   height: 5px;
   background-color: #1e194d;
   color: #1e194d;
}

.msg{
    border-radius: 26.5px;
    background-color: #ff563b;
}

.msg_heading{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;  
    border-radius: 26.5px; 
    background-color: #ff563b;
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left_customer_content{
    position: relative;
}
 .left_customer_content .profile_image{
    position: absolute;
    top: 100px;
    z-index: -1;
    right: 0;
    width: 200px !important;
    height: 200px;
}

.down_arrow{
    position: absolute;
    right: 70px;
    bottom: -18px;
    color: #ff563b;
}

.fa-angle-down{
    font-size: 40px;
}

.right_slider_customer{
    padding-left: 50px;
}

.owl-carousel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.right_customer_slider_pera{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #9e9baa;  
}

.customer_content .item {
    opacity: 1;
    /* margin: 0; */
    box-shadow: none;
}

.owl-theme .owl-dots, .owl-theme .owl-nav{
    display: none;
}

.owl-theme .owl-nav{
    display: block;
}

.owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    top: 40%;
    left: -1%;
    height: 30px;
    width: 30px;
    border: 1px solid#ff563b;
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    color: #ff563b;

}

.owl-carousel .owl-nav button.owl-prev:hover{
    background-color: #ff563b;
    transition: 0.5s;
    color: #ffffff;
}

.owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 40%;
    right: -1%;
    height: 30px;
    width: 30px;
    border: 1px solid#ff563b;
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    color: #ff563b;
}

.owl-carousel .owl-nav button.owl-next:hover{
    background-color: #ff563b;
    transition: 0.5s;
    color: #ffffff;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: #ff563b;
}

@media only screen and (max-width: 768px){
    .right_slider_customer{
        padding-left: 30px;
        margin-top: 200px;
    }

    .customer_heading{
        font-size: 22px;
    }


    .owl-theme .owl-dots, .owl-theme .owl-nav{
        display: block;
    }

    .owl-theme .owl-nav{
        display: none;
    }
}

/* @media only screen and (max-width: 540px){
    .right_slider_customer{
        margin-top: 195px;
    }
} */

/* customer section end */

/* downlode app now section start */

.downlode_app_now{
    position: relative;
    /* margin-top: 70px; */
}

.downlode_pera{
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #6c6c72;
}

.left_downlode_app{
    margin-top: 150px;
}

@media only screen and (max-width: 992px){
    .downlode_app_now{
        margin-top: 30px;
    }

    .left_downlode_app{
        margin-top: 80px;
    }

}

@media only screen and (max-width: 1024px){

    .owl-dots{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 25px;
    }

}

@media only screen and (max-width: 768px){

    .left_downlode_app{
        margin-top: 30px;
        margin-bottom: 40px;
    } 

}

/* downlode app now section end */

/* .footer section start */

.footer{
    /* margin-top: 70px; */
    position: relative;
    background-color: #08003b;
    padding: 60px 60px 0 60px;
}

.top_section_content{
    position: relative;
}

.all_devices{
    position: relative;
}

.footer_design_1{
    top: -50px;
    position: absolute;
    z-index: 1;
    left: -40px;
    max-height: 320px;
}

.child_devices{
    position: relative;
    z-index: 2;
}

.devices_heading_h2{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #ffffff; 
}

.devices_pera_p{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 16px;
    color: #9e9baa;   
}

.google_img{
    /* padding: 10px 16px; */
    border: 1px solid #ffffff;
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    background: transparent;
    border-radius: 24px;
    padding: 8px 20px;
    margin-bottom: 10px;
}

.google_img:hover{
    background-color: #ffffff;
    color: #08003b;
    transition: 0.5s;
}

.right_footert_img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.right_footert_img{
    position: relative;
}

.footer_design_2{
    position: absolute;
}

.footer_mobile_image{
    position: relative;
    z-index: 2;
    top: 40px;
}

.footer_design_3 {
    position: absolute;
    top: -58px;
    right: -73px;
}

.bootom_footer_content{
    margin-top: 80px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 30px;
    /* flex-wrap: wrap; */
}

.footer_bottom_heading{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #ffffff;  
}

.footer_bottom_pera_p{
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 16px;
    color: #9e9baa; 
}

.footer_links_heading{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;    
}

.footer_unorder_list{
    padding-left: 0;
}

.footer_unorder_list li{
    list-style: none;
}

.footer_unorder_list li .footer_ancers_links{
    text-decoration: none;
    font-family: "DM Sans", sans-serif;  
    font-weight: 400;
    font-size: 16px;
    color: #9e9baa; 
}

.footer_unorder_list li .footer_ancers_links:hover{
    color: #ffffff;
    transition: 0.5s;
}

@media only screen and (max-width: 1024px){
    .bootom_footer_content{
        flex-wrap: wrap;
    }  
}

@media only screen and (max-width: 768px){

    .footer{
        margin-top: 0px;
        padding: 50px 20px 20px 20px;
    }

    .devices_heading_h2{
        font-size: 22px;
    }

    .footer_bottom_heading{
        font-size: 22px;
    }

    .bootom_footer_content{
       flex-direction: row;
       justify-content: space-between;
    }
}


.hr_line{
    color: #ccc;
    margin: 15px 0;
}

/* copy right section start */

.copy_right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social_media_icons{
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_icon_ancer{
    text-decoration: none;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.social_icon_ancer:hover{
    background: transparent;
    border: 1px solid #ffffff;
    transition: 0.5s;
}

.social_icon_ancer i{
    color: #FBBC05;
}

.condition_text{
    display: flex;
    align-items: center;
    gap: 10px;
}

.condition_ancer{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #848487;   
}

.condition_ancer:hover{
    color: #ffffff;
    transition: 0.5s;
}

@media only screen and (max-width: 912px){
    .footer_design_3{
        top: -274px;
        right: -107px;
    }   
}

@media only screen and (max-width: 820px){
    .copy_right{
        flex-direction: column;
        gap: 15px;
    }

    .footer_design_3{
        top: -272px;
        right: -34px;
    }

}

@media only screen and (max-width: 768px){
    .copy_right{
        flex-direction: column;
        gap: 15px;
    }

    .footer_design_3{
        top: -193px;
        right: -34px;
    }

}

@media only screen and (max-width: 600px){
    .footer_design_3 {
        display: none;
    }
}

.form-control, .custom-select {
    height: 50px;
}
.form-control {
    border: none;
    background: #f3f3f3;
}
.btn.btn-primary {
    background: #ff563b;
    color: #fff;
    padding: 15px 20px;
    border: 1px solid #ff563b;
    border-radius: 24px !important;
    height: 50px;
}

.btn.btn-primary:hover{
    color: #000000;
    background-color: transparent;
    border: 1px solid #ff563b;
    transition: 0.5s;
}

.heading {
    font-family: "Poppins", sans-serif;
   color: #000000;
    font-size: 2.5rem;
    font-weight: 600;
}
.form-group {
    margin-bottom: 1rem;
}
html {
    scroll-padding-top: 70px; /* Adjust this value to match your navbar height */
  }

  .nav-link:hover,
  .nav-link.active {
    /* font-weight: bold !important; */
    color: #ff563b !important;
}
/* copy right section end */


/* .footer section end */

/* General container and slider styles */
#slider {
    width: 100%;
    overflow: hidden; /* Ensures no content spills out */
  }
  
  #slider .container {
    max-width: 1200px; /* Optional: Set max width for desktop */
    margin: 0 auto; /* Center the container */
    padding: 0 15px; /* Add padding for smaller devices */
  }
  
  #slider .owl-carousel {
    display: flex;
    flex-wrap: nowrap;
  }
  
  #slider .item {
    flex: 0 0 100%; /* Each item takes 100% width initially */
    max-width: 100%;
    text-align: center; /* Center content inside items */
  }
  
  #slider .item img {
    width: 100%; /* Image takes up full width of its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Removes unwanted gaps below images */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #slider .container {
      padding: 0 10px; /* Adjust padding for tablets and small devices */
    }

    .heading {
        font-size: 1.5rem;
        font-weight: 600;
    }
  }
  
  @media (max-width: 480px) {
    #slider .container {
      padding: 0 5px; /* Minimal padding for very small devices */
    }
  }
  
  
@media only screen and (max-width: 1024px){
    
    .new_vender_pera{
        text-align: center;
        max-width: 100% !important;
    }

}

.footer_copy_right {
    margin-top: auto;
    background-color: #08003b;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
}

.footer_copy_right_pera_p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.copyright_ancer {
    color: #ff563b;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    footer p {
        font-size: 0.8rem;
    }
}