*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    width: 100%;
}
a{
    text-decoration: none !important;
}
:root{
    --color1:#fff;
    --color2:#000;
    --color3:#ee4223;
    --color4:#ffece9;
    --colortext: #333;
}
p{
    color: var(--colortext);
}
p.light,span.light{
    color: var(--color1);
}
.section_title {
    font-size: 40px;
    color: var(--color2);
    margin-bottom: 32px;
}
.section_title span{
    color: var(--color3);
}
.section_title.light{
    font-size: 40px;
    color: var(--color1);
    margin-bottom: 42px;
}
/* ======= Header section start ======= */
section.header {
    position: absolute;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
}
section.header .logo_img {
    width: 194px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}
section.header .phone a {
    font-size: 20px;
    color: var(--color1);
}
section.header .phone i {
    font-size: 23px;
    color: var(--color3);
    margin-right: 20px;
}
/* ======= Header section end ======= */
/* ======= Hero section start ======= */
.hero_section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
}
.hero_section .hero_bgImage{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: -1;
}
.hero_section .hero_bgImage img{
    height: 100%;
    object-fit: cover;
}
.col-left {
    width: 53% !important;
}
.col-right {
    width: 35% !important;
}
.hero_title {
    font-size: 56px;
    line-height: 59px;
    color: var(--color1);
}
.hero_title span{
    color: var(--color3);
}
.hightlight_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.highlight-box {
    border: 1px solid #05236b;
    padding: 11px;
    border-radius: 6px;
    /* text-align: center; */
    background: linear-gradient(90deg, #07297d59 3%, #07297d59 100%);
    width: 48%;
}
.highlight-box .icon {
    color: white;
    font-size: 26px;
    margin-bottom: 10px;
    display: none;
}
.highlight-box span{
    font-size: 14px;
}
.form-area {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(90, 116, 148, 0.3);
    padding: 28px;
    border-radius: 6px;
}
.form_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10PX;
}
.form_row .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 19px;
    font-size: 1rem;
    line-height: 1.4;
    color: #475F7B;
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
button.submut_btn {
    width: 100%;
    padding: 8px;
    border: none;
    background: var(--color3);
    color: white;
    font-size: 20px;
    font-weight: 500;
    border-radius: 4px;
}

/* ======= Hero section end ======= */

/* ====== Logo section start ====== */
.logos {
    padding: 80px 0;
}
.logos .logo_img{
    margin: 0px 44px;
    padding: 0 27px;
}
/* ====== Logo section end ====== */

/* ====== about us section start ====== */
.about_us {
    padding-bottom: 60px;
}
.about_img {
    width: 500px;
    height: 500px;
    object-fit: cover;
}
/* ====== about us section end ====== */

/* ====== image Reveal section start ====== */
section.imgReveal_hover {
    padding: 40px 0;
    background: #020819;
    background-image: url('/images/lgorithm_bgimage.webp');
     background-position: center;
    background-size: contain;
    width: 95%;
    margin: auto;
    border-radius: 65px;
    position: relative;
}
/* section.imgReveal_hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url('/images/lgorithm_bgimage.webp');
    opacity: 0.05;
    background-position: center;
    background-size: contain;
} */
.reveal_content {
    /* border-top: 1px solid #593d3d; */
    border-bottom: 1px solid #593d3d;
    padding: 25px 20px;
    position: relative;
}
.reveal_content:last-child{
    border-bottom: none;
}
.revea_title {
    font-size: 24px;
    color: var(--color1);
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
}
h3.revea_title img{
    width: 70px;
}
ul.reveal_desc {
    padding: 0;
    list-style: none;
    color: #b5b5b5;
    margin:0;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    width: 55%;
}
ul.reveal_desc li{
display: flex;
margin-bottom: 13px;
}
ul.reveal_desc li:last-child{
    margin-bottom: 0;
}
ul.reveal_desc i{
    margin-right: 15px;
    height: 21px;
    width: 21px;
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.reveal_content:hover ul.reveal_desc{
    max-height: 200px;
    transition: 0.6s ease-in-out;
    margin-top: 20px;
    /* transition: height 0.6s ease-in-out; */
}
.reveal_img {
    width: 280px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    position: fixed;
    left: 50%;
    top: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    transform: translate(-50%, -50%);
}
.reveal_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo_img {
    width: 194px;
}
/* ====== image Reveal section end ====== */

/* ====== Telephony section start ====== */
.telephony {
    padding: 80px 0 20px;
}
.telphony-box {
    background: var(--color1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 16px 0 #e2e2e2bd;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.telphony-box:hover .telephony_img img{
    transform: scale(1.1);
}
/* .telphony-box.telphony-box-even{
    flex-direction: column-reverse;
} */
.telephony_img {
    height: 209px;
    border-radius: 15px;
    overflow: hidden;
}
.telphony-box .telephony_img img{
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.telophony_boxTitle {
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
}
.telephony_slider .splide__arrow{
    top: -50px;
    right: 4rem;
    height: 40px;
    width: 60px;
    border-radius: 5px;
    background: var(--color2);
    color: var(--color1);
    opacity: 1;
}
.telephony_slider .splide__arrow--prev{
    left: inherit;
    right: 8.5rem;
}
.telephony_slider .splide__arrow svg{
    fill: var(--color1);
}
.telephony_slider a{
    color: var(--color2);
}
.telephony_slider .content_box {
    display: flex;
    /* padding: 0 10px; */
    gap: 18px;
    position: relative;
}
.icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 9px;
    font-size: 26px;
}
/* ====== Telephony section end ====== */

/* ======= why choose start ====== */
.why_choose {
    padding: 80px 0;
    /* background: #f9fbff */
}
.whychoose-content h3 {
    color: var(--color2);
    font-size: 21px;
    font-weight: 600;
    margin: 13px 0px;
}
.reserve-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 59px;
}
.whychoose-feature {
    padding: 0 20px;
}
.feature-number {
    width: 51px;
    height: 51px;
}
.reserve-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
/* ======= why choose end ====== */

/* ======= Lgorithm Screenshorts start ====== */
.Lgorithm_Screenshorts {
    padding: 80px 0;
    background-image: linear-gradient(45deg, #c775ff17, #ee422312);
}
.screenshorts_grid {
    width: 89%;
    margin: auto;
    /* box-shadow: 0 0 31px 0 #e4eaf5c4; */
    border-radius: 30px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    background: white;
}
.screenshorts_menus_col {
    width: 34%;
    height: 457px;
    overflow-y: scroll;
    padding-left: 20px;
    direction: rtl;
}
.screenshorts_menus_col::-webkit-scrollbar{
    width: 6px;
    background: var(--color4);
    border-radius: 4px;
    padding: 1px;
}
.screenshorts_menus_col::-webkit-scrollbar-thumb {
    background: var(--color3); /* draggable thumb color */
    border-radius: 3.4px;
}
.screenshorts_menus_col .screenshorts_menu_item:last-child{
    margin: 0;
}
.screenshorts_menu_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    direction: ltr;
    padding: 10px 15px 10px 10px;
    border-radius: 9px;
}
.screenshorts_content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
}
.right_arrow {
    width: 12px;
}
.menu_icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 39px;
    height: 39px;
    padding: 10px;
    border-radius: 7px;
}
.screenshorts_menu_title {
    font-size: 16px;
    margin: 0;
}
.menu_icon_1{
    background: var(--color2);
}
.menu_icon_2{
    background: var(--color3);
}
.menu_icon_3{
    background: #ff5969;
}
.menu_icon_4{
    background: #9b3a99;
}
.menu_icon_5{
    background: #e27849;
}
.menu_icon_6{
    background: #1595df;
}
.menu_icon_7{
    background: #25c16f;
}
.menu_icon_8{
    background: #1a2350;
}
.menu_icon_9{
    background: #8225c1;
}
.menu_icon_10{
    background: #c12525;
}
.screenshorts_content_col {
    width: 70%;
    padding-left: 50px;
}
.screenshorts_content_title {
    font-size: 32px;
    margin-bottom: 30px;
}
.screenshorts_content_img {
    box-shadow: 0 0 20px 0 #e4eaf5c4;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 400px;
    padding: 20px;
}
.screenshorts_content_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.screenshorts_content_item { display: none; }
.screenshorts_content_item.active { display: block; }
.screenshorts_menu_item.active {
    background: #ffece980;
}
.screenshorts_menu_item:hover{
     background: #ffece980;
}

/* ======= Lgorithm Screenshorts end ====== */

/* ======= CTA start ====== */
.cta {
    margin-bottom: 40px;
    /* margin-top: 80px; */
}
.cta .container{
    background-image: url('../images/lgrithm-cta.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 80px;
    /* width: 90%; */
    /* margin: auto; */
    border-radius: 30px;
    overflow: hidden;
}
.cta_btn_box {
    display: flex;
    align-items: center;
    gap: 30px;
}
.call_btn i{
    margin-right: 10px;
}
.call_btn {
    font-size: 22px;
    color: var(--color1);
    font-weight: 500;
}
.theme_btn {
    background: black;
    padding: 19px 25px 19px 61px;
    border-radius: 30px;
    color: white;
    display: flex;
    width: fit-content;
    align-items: center;
    position: relative;
    transition: 0.3s ease;
}
.btn_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color3);
    border-radius: 50%;
    margin-left: 11px;
    position: absolute;
    left: 0;
    transition: 0.5s ease;
}
.theme_btn:hover{
    padding: 19px 61px 19px 25px;
}
.theme_btn:hover .btn_icon {
    right: 0;
    left: 77%;
    transition: 0.5s;
    margin: 0;
    transform: rotate(360deg);
}
/* ======= CTA end ====== */


/* ======= Footer start ====== */
section.footer .container {
    border-top: 1px solid var(--color3);
    /* margin-top: 40px; */
    padding: 20px 0;
}
/* ======= Footer end ====== */


/* -------------- Mobile Responsive Start ------------- */
@media (max-width:767px){
    .section_title,.section_title.light{
        font-size: 28px;
    }
    section.header .logo_img {
    width: 138px;
   }
   section.header .phone a {
    font-size: 16px;
   }
   .hero_mobile_row{
    flex-direction: column;
   }
    .col-left{
    width: 100% !important;
    text-align: center;
   }
   .col-right{
    width: 100% !important;
   }
   .hero_title {
    font-size: 40px;
    line-height: 48px;
   }
   .col-left p.mobile_para{
    margin: 20px 0 !important;
   }
   .hightlight_row{
    flex-wrap: wrap;
    margin-bottom: 20px;
   }
   .hightlight_row .highlight-box {
    height: 71px;
    width: 48%;
    /* margin-bottom: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
   }
   .form-area{
    padding: 20px;
   }
   .form_row{
    flex-wrap: wrap;
   }
   .form_row .form-control{
    width: 100%;
   }
   .logos{
    padding: 40px 0;
   }
   section.imgReveal_hover{
    width: 100%;
    border-radius: 30px;
    padding: 20px 0;
    margin-bottom: 40px;
   }
   ul.reveal_desc{
    width: 100%;
    flex-wrap: wrap;
   }
   .reveal_desc li span{
    width: 95%;
   }
   .revea_title{
    font-size: 20px;
   }
    h3.revea_title span{
     width: 65%;   
   }
   h3.revea_title img{
    width: 40px;
   }
   .reveal_img{
    display: none;
   }
   .cta .container{
    padding: 40px 20px;
    width: 90%;
   }
   .cta .container .section_title.light{
    text-align: center;
   }
   .cta_btn_box{
    flex-wrap: wrap;
    gap: 10px;
   }
   .cta_btn_box .theme_btn{
    margin: auto;
   }
   .cta-bottom-row{
    text-align: center !important;
   }
   .call_btn{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
   }
   .reserve-content{
    padding: 0 12px;
   }
   .reserve-features{
    grid-template-columns: repeat(1, 1fr);
   }
   .reserve-content .section_title{
    text-align: left !important;
   }
   .why_choose{
    padding: 40px 0;
   }
   .whychoose-feature{
    padding: 0;
   }
   .about_us{
    padding-bottom: 40px;
   }
   .about_us .col-rev{
    flex-direction: column-reverse;
   }
   .about_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 30px;
    }
    .thankyou_section .row{
        flex-direction: column;
    }
    .thankyou_section .col-left-img{
        width: 100% !important;
        height: 50vh !important;
    }
    .thankyou_section .col-rightt{
        width: 100% !important;
        height: 50vh !important;
    }
    .thankyou_section h1.section_title{
        font-size: 35px !important;
    }
    .Lgorithm_Screenshorts{
        padding: 40px 0;
    }
    .screenshorts_grid{
        width: 100%;
        flex-direction: column;
        padding: 15px;
        border-radius: 10px;
    }
    .screenshorts_menu_item{
        margin-bottom: 10px;
    }
    .screenshorts_menus_col{
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        height: auto;
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .screenshorts_content_col {
       width: 100%;
       padding-left: 0;
    }
    .screenshorts_content{
        width: 100%;
        gap: 12px;
    }
    .right_arrow{
        display: none;
    }
    .screenshorts_menu_title {
    font-size: 15px;
    margin: 0 14px 0 0;
   }
   .telephony{
    padding: 40px 0 0;
   }
   .telephony .section_title{
    width: 70%;
}
.screenshorts_menus_col::-webkit-scrollbar{
    /* width: 6px; */
       height: 4px;
       background: var(--color4);
       border-radius: 4px;
       padding: 1px;
   }
   .screenshorts_content_title {
       font-size: 22px;
       margin-bottom: 30px;
       margin-top: 30px;
    }
    .screenshorts_content_img {
       height: 164px;
    }
    .telophony_boxTitle {
        font-size: 16px;
    }
    .telephony_img {
        height: 180px;
    }
    .telephony_slider .splide__arrow--prev {
    right: 3.8rem !important;
    }
    
    .telephony_slider .splide__arrow {
        right: 1rem;
        width: 40px;
    }
}
/* -------------- Mobile Responsive End ------------- */

/* -------------- Tablet Responsive Start ------------- */
@media (min-width:768px) and (max-width:1000px){
    .section_title{
        font-size: 30px;
    }
    .hero_mobile_row .col-left{
        width: 100% !important;
    }
    .hero_mobile_row .col-right{
        width: 100% !important;
    }
    .form-area {
    width: 78%;
    margin: auto;
    margin-top: 40px;
    }
    .about_img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .reserve-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 59px;
    }
    .cta .container{
        padding: 50px;
    }
    .cta .cta-bottom-row{
        justify-content: left !important;
        margin-top: 30px;
    }
    .screenshorts_grid{
        width: 100%;
        padding: 27px;
    }
    .screenshorts_menus_col{
        width: 48%;
        height: 338px;
    }
    .screenshorts_content_img{
        height: 250px;
    }
    .screenshorts_content_title {
        font-size: 23px;
        margin-bottom: 27px;
    }
}

/* -------------- Tablet Responsive End ------------- */

/* -------------- Other Devices Responsive Start ------------- */

@media (min-width:1001px) and (max-width:1157px){
    .container{
        max-width: 910px !important;
    }
    .hero_mobile_row .col-left{
        width: 56% !important;
    }
    .hero_mobile_row .col-right{
        width: 40% !important;
    }
}
@media (min-width:1158px) and (max-width:1300px){
    .container{
        max-width: 1011px !important;
    }
    .hero_mobile_row .col-left{
        width: 60% !important;
    }
    .hero_mobile_row .col-right{
        width: 38% !important;
    }
}
/* -------------- Other Devices Responsive End ------------- */


/* -------------- Thank you page Start ------------- */
.thankyou_section{
    background-image: url('../images/lgrithm-cta.webp');
    height: 100vh;
}
.thankyou_section .row{
    align-items: center;
    width: 100%;
    margin: auto;
}
.thankyou_section .col-left-img, .thankyou_section .col-rightt {
    width: 50%;
    padding: 0;
}
.thankyou_section .col-left-img{
    height: 100vh;
    /* padding: 10px; */
}
.thankyou_section .col-left-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
}
.thankyou_section .col-rightt{
    text-align: center;
    padding: 50px;
}
.thankyou_section h1.section_title{
    font-size: 45px;
    margin-bottom: 13px;
    color: var(--color1);
}
.thankyou_section .theme_btn{
    margin: auto;
}
.thankyou_section .theme_btn:hover .btn_icon {
    right: 0px;
    left: 71%;
    transition: 0.5s;
    margin: 0;
    transform: rotate(360deg);
}
/* -------------- Thank you page End ------------- */