:root {
    --link-color: #0196FF;
    --text-color: #616161;
    --bg-color: #DEF1FF;
    --primary-color: #242424;
    --white-color: #ffffff;
    --gradiant-color: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
}

body .text-primary{
    color: var(--link-color) !important;
}

a:focus, a:focus-visible{
    outline: 0;
    border: 0;
}

.home{
    overflow-x: hidden;
}

.home main.wp-block-group{
    margin: 0 !important;
    padding: 0 !important;
}
.home main div.wp-block-group{
    padding: 0 !important;
    margin: 0 !important;
}
/* .home main h1.wp-block-post-title{
    display: none;
} */
.home main div.wp-block-group .entry-content{
    padding: 0 !important;
    margin: 0 !important;
}
main.wp-block-group, div.wp-block-group.alignfull{
    padding: 0 !important;
    margin: 0 !important;
}
div.entry-content.alignfull {
    padding: 0 !important;
    margin: 0 !important;
}

/* header start */
header nav ul .wp-block-navigation-item .wp-block-navigation-item__content{
    transition: all .3s ease-in;
}
header nav ul .wp-block-navigation-item .wp-block-navigation-item__content:hover{
    text-decoration: none;
    color: var(--link-color);
}
header nav ul.wp-block-navigation-submenu{
    border-radius: 10px;
    background-color: var(--bg-color) !important;
    box-shadow: 1px 3px 4px 3px rgba(0,0,0,0.06);
    padding: 10px 0;
    margin-top: 5px;
}
header nav ul.wp-block-navigation-submenu .wp-block-navigation-item.wp-block-navigation-link:not(:last-child){
    border-bottom: 1px solid #ddd;
}
header nav ul.wp-block-navigation-submenu .wp-block-navigation-item.wp-block-navigation-link{
    transition: all .3s ease-in;
    margin-bottom: 0 !important;
}
/* header nav ul.wp-block-navigation-submenu .wp-block-navigation-item.wp-block-navigation-link:hover{
    background-color: #ddd;
} */

.custom-header{
    background-color: var(--bg-color);
    padding: 0 20px;
    box-shadow: 2px 4px 4px 0 rgba(0,0,0,0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9999;
}
.custom-header .navbar{
    max-width: 1340px;
    margin: 0 auto;
    padding: 0;
}
.custom-header .navbar .logo .logo-link{
    display: block;
}
.custom-header .navbar .logo img{
    height: 40px;
}
.custom-header .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 0px;
    padding: 0;
    margin: 0;
}
.custom-header .navbar .nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 30px 15px;
    display: inline-block;
    transition: all .3s ease-in;
}
.custom-header .navbar .nav-links a:hover{
    color: var(--link-color);
}
.custom-header .navbar .nav-item:last-child .links{
    padding-right: 0;
}
.custom-header .navbar .nav-item.dropdown .dropdown-menu{
    position: absolute;
    top: 80%;
    left: 0;
    background: #fff;
    list-style: none;
    display: none;
    min-width: 225px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.custom-header .navbar .nav-item.dropdown .dropdown-menu .nav-item + .nav-item{
    border-top: 1px solid #e8e8e8;
}
.custom-header .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
.custom-header .navbar .nav-item.dropdown .dropdown-menu a.links{
    padding: 12px 18px;
    width: 100%;
    transition: all .3s ease-in;
}
.custom-header .navbar .nav-item.dropdown .dropdown-menu a.links:hover{
    background-color: var(--bg-color);
    color: var(--link-color);
}
.custom-header .navbar .nav-item.dropdown a.links span{
    margin-right: 5px;
}
  
/* Mobile styles */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 20px;
}
.mobile-menu.open {
    left: 0;
}
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-header img {
    height: 40px;
}
#close-menu {
    font-size: 28px;
    cursor: pointer;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.mobile-nav-links li {
    margin-bottom: 0;
}
.mobile-nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    padding: 10px 12px;
    display: block;
    font-weight: 500;
}
.mobile-dropdown .mobile-toggle {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-color);
    padding: 10px 12px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.mobile-dropdown .mobile-submenu {
    display: none;
    padding: 0;
    margin: 0 0 0 20px;
    list-style-type: none;
    background-color: var(--white-color);
    border-radius: 12px;
    max-height: 200px;
    overflow: auto;
}
.mobile-submenu .mobile-nav-item + .mobile-nav-item{
    border-top: 1px solid #e8e8e8;
}
  
  /* Responsive */
  @media (max-width: 768px) {
    .custom-header .navbar{
        padding: 22px 0;
    }
    .custom-header .navbar .nav-links {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
  }
/* header end */

footer.wp-block-template-part {
    overflow-x: hidden;
}
.footer_wrapper .uagb-heading-text{
    display: inline-block;
    border-bottom: 2px solid var(--link-color);
    padding-bottom: 10px;
    font-weight: 600;
}
.footer_wrapper p.is-style-text-display{
    font-weight: 500;
    line-height: 1.5;
}
.footer_wrapper nav ul li{
    width: 100%;
}
.footer_wrapper nav ul li a{
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease-in;
    font-size: 16px !important;
}
.footer_wrapper nav ul li a span{
    transition: all .3s ease-in;
    font-size: 16px !important;
}
.footer_wrapper nav ul li a:hover{
    color: var(--link-color);
    text-decoration: none;
}
.footer_wrapper nav ul li a span:hover{
    color: var(--link-color);
}
.footer_wrapper .uagb-icon-list__wrap .wp-block-uagb-icon-list-child{
    transition: all .3s ease-in;
}
.footer_wrapper .uagb-icon-list__wrap .wp-block-uagb-icon-list-child:hover a, .footer_wrapper .uagb-icon-list__wrap .wp-block-uagb-icon-list-child:hover span.uagb-icon-list__label{
    color: var(--link-color);
}
.footer_wrapper .wp-block-columns{
    margin-bottom: 0;
    padding: 20px 0 20px 0;
}
.footer_wrapper .wp-block-columns p.has-custom-heading-color{
    font-weight: 500;
    font-size: 16px !important;
}
.footer_wrapper .wp-block-columns.copyright_text{
    padding-bottom: 0;
    position: relative;
}
.footer_wrapper .wp-block-columns.copyright_text::before {
    content: '';
    position: absolute;
    background-color: var(--text-color);
    width: 350vw;
    height: 1px;
    top: 0;
    left: -700px;
    right: auto;
}
/* .footer_wrapper .wp-block-columns.copyright_text a{
    text-decoration: none;
} */

/* main css start */
section{
    margin-block-start: 50px !important;
    margin-top: 50px !important;
}
/* main css end */

/* first section home page start */
.drag_drop_image_section{
    margin-block-start: 30px !important;
    margin-top: 30px !important;
}
.drag_drop_image_section .drag_drop_right_panel{
    align-self: stretch;
}
.drag_drop_image_section .drag_drop_right_panel .wp-block-uagb-container{
    height: 90%;
}
.drag_drop_image_section .drag_drop_right_panel .is-style-default{
    font-size: 0.875rem;
    margin-bottom: 0;
}
/* .drag_drop_image_section .drag_drop_right_panel .wp-block-uagb-container{
    height: 100%;
} */
.cta_btn_wrapper .uagb-button__wrapper .wp-block-button__link{
    border-radius: 50px;
    text-align: center;
}
/* first section home page end */

/* second section home page start */
.face_shape_recognition_wrapper{
    overflow-x: hidden;
}
.face_shape_recognition_wrapper .recognition_left_panel p.is-style-default{
    font-weight: 500;
    line-height: 1.6;
}
.face_shape_recognition_wrapper .recognition_left_panel .cta_btn_wrapper .uagb-buttons__wrap{
    justify-content: flex-start;
}
.face_shape_recognition_wrapper .cta_btn_wrapper{
    position: relative;
}
.face_shape_recognition_wrapper .cta_btn_wrapper::before {
    content: '';
    position: absolute;
    background-color: var(--link-color);
    height: 3px;
    width: 48%;
    top: 50%;
    transform: translateY(-50%);
    left: 450px;
}
/* second section home page end */

/* third section home page start */
.face_types_showcase .face_type_box_wrapper .face_type_inner_box{
    border: 2px solid var(--link-color);
    padding-bottom: 20px;
    border-radius: 10px;
    justify-content: stretch;
}
.face_types_showcase .face_type_box_wrapper .face_type_inner_box .wp-block-uagb-image {
    background-color: var(--bg-color);
    padding: 10px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.face_types_showcase .face_type_box_wrapper .face_type_inner_box .wp-block-uagb-advanced-heading{
    padding: 0 10px;
}
.face_types_showcase .face_type_box_wrapper .face_type_inner_box p{
    margin-bottom: 0;
    font-weight: 500;
    text-align: start;
    line-height: 1.6;
    padding: 0 10px;
}
/* third section home page end */

/* fourth section home page start */
.face_analyzer_wrapper{
    overflow-x: hidden;
}
.face_analyzer_wrapper .face_analyzer_left_panel{
    z-index: 2;
}
.face_analyzer_wrapper .face_analyzer_right_panel p{
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
}
.face_analyzer_wrapper .face_analyzer_right_panel .cta_btn_wrapper {
    position: relative;
}
.face_analyzer_wrapper .face_analyzer_right_panel .cta_btn_wrapper::before {
    content: '';
    position: absolute;
    background-color: var(--link-color);
    height: 3px;
    width: 58%;
    top: 50%;
    transform: translateY(-50%);
    right: 450px;
    z-index: -1;
}
/* fourth section home page end */

/* fifth section home page start */
.detector_title_wrapper{
    gap: 0;
    margin-bottom: 0;
}
.detector_title_wrapper p{
    font-weight: 500;
}
.detector_title_wrapper .detector_works_numbering{
    width: fit-content;
    max-width: fit-content;
    flex: unset;
    margin-right: 12px !important;
}
.detector_title_wrapper .detector_works_number_title {
    flex-basis: auto !important;
    flex: 1;
}
.detector_work_cards .detector_cards_text{
    padding-left: 36px;
    margin-bottom: 0;
    line-height: 1.5;
}
.detector_works_boxes .detector_work_cards .wp-block-heading{
    font-weight: 500;
}
/* fifth section home page end */
/* masonry section start */
.accurate_results_box .heading_number_block .uagb-heading-text{
    padding: 5px;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--bg-color);
}
.accurate_results_box:nth-child(1) .heading_number_block .uagb-heading-text{
    background: var(--bg-color);
}
.accurate_results_box:nth-child(2) .heading_number_block .uagb-heading-text{
    background: #EEEDF8;
}
.accurate_results_box:nth-child(3) .heading_number_block .uagb-heading-text{
    background: #F8E8E6;
}
.accurate_results_box:nth-child(4) .heading_number_block .uagb-heading-text{
    background: #FFEAFD;
}
.accurate_results_box:nth-child(5) .heading_number_block .uagb-heading-text{
    background: #EAFFF3;
}
.accurate_results_box p{
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 16px !important;
}
/* masonary section end */
/* blog start */
.blog_card_wrapper .card .card-body .blog_details{
    color: var(--link-color) !important;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.blog_card_wrapper .card .card-body .blog_details a{
    color: var(--link-color) !important;
    font-family: 'Poppins', sans-serif;
     font-size: 18px;
    font-weight: 500;
    transition: all .3s ease-in;
}
.blog_card_wrapper .card .card-body .blog_details a:hover{
    color: var(--primary-color) !important;
}
.blog_card_wrapper .card .card-body .card-title a{
    color: var(--primary-color) !important;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    transition: all .3s ease-in;
}
.blog_card_wrapper .card .card-body .card-title a:hover{
    color: var(--link-color) !important;
}
.blog_card_wrapper .card .card-body .card-title a img{
    height: 35px;
    padding-left: 6px;
}
.blog_card_wrapper .card .card-body .card-text{
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
.blog_card_wrapper .card .card-body .category_details .btn {
    background-color: var(--bg-color);
    color: var(--link-color);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.blog_card_wrapper .card .card-body .category_details .read_time{
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.blog_card_wrapper .card .card-body .category_details .read_time::before{
    content: '';
    position: absolute;
    background-color: var(--link-color);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.blog_grid_wrapper .btn_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}
body .cta_btn_primary{
    font-family: inherit;
    font-weight: 600;
    font-size: 22px;
    border-radius: 50px !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.2s ease;
    width: fit-content;
    background: var(--gradiant-color);
    padding: 16px 30px !important;
    line-height: 1.3;
    box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.149);
    color: var(--white-color);
    border: 0;
}
body .cta_btn_primary:hover{
    border: 0;
}
.blog_grid_section .uagb-post__inner-wrap{
    background-color: #fff !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible;
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post__image{
    order: 1;
    margin: 0 !important;
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post-grid-byline{
    order: 2;
    font-size: 16px;
    font-weight: 500;
    color: var(--link-color);
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post__text a{
    font-weight: 500;
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post__title{
    order: 3;
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post__text {
    display: inline-block;
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post__excerpt{
    order: 4;
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post__cta{
    order: 5;
    display: block;
}
.blog_grid_section .uagb-post__inner-wrap .uagb-post__cta .wp-block-button__link{
    border-radius: 50px;
    display: block;
    width: fit-content;
}
/* blog end */
/* faq section start */
.faq_question:focus, .faq_question:focus-visible{
    outline-color: var(--link-color);
}
.faq_question.uagb-faq-item-active{
    outline-color: var(--link-color);
    outline-width: 1px;
    outline-style: solid;
}
.faq_question .uagb-faq-icon-wrap svg{
    display: none;
}
.faq_question .uagb-faq-icon-wrap{
    position: relative;
    width: 35px !important;
    height: 35px !important;
}
.faq_question .uagb-faq-icon-wrap::after{
    content: '';
    position: absolute;
    background-image: url(https://faceshaperecognition.com/wp-content/uploads/2025/04/minus_icon-1.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
}
.faq_question.uagb-faq-item-active .uagb-faq-icon-wrap::after{
    background-image: url(https://faceshaperecognition.com/wp-content/uploads/2025/04/plus_icon-1.svg);
}
.faq_box_section .faq_question .uagb-faq-content p{
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.6;
    max-width: 1010px;
    text-align: start;
    margin-left: 0;
    margin-right: auto;
}
.faq_box_section .faq_question .uagb-faq-content p strong{
    color: var(--link-color);
}
/* faq section end */

/* slider section start */
.slider_slides_wrapper  .slides_inner_boxes{
    max-width: 80% !important;
    width: 100%;
    margin: 0 auto;
}
.slides_inner_boxes .slide_left_box{
    z-index: 2;
    margin-top: 150px;
}
.slides_inner_boxes .slide_left_box .slide_box_text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}
.slides_inner_boxes .slide_left_box .slide_cta_btn .wp-block-button__link{
    border-radius: 50px;
    color: var(--link-color);
    background: unset;
    min-width: 339px;
    z-index: 1;
    position: relative;
}
.slides_inner_boxes .slide_left_box .slide_cta_btn .wp-block-button__link::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
    z-index: -1;
    -webkit-mask: linear-gradient(#FFFFFF 0 0) content-box, linear-gradient(#FFFFFF 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border: 2px solid transparent;
  }
.slides_inner_boxes .slide_right_box .wp-block-uagb-image{
    margin-left: 0px;
    width: 160% !important;
    height: 100%;
}
.slides_inner_boxes .slide_right_box .wp-block-uagb-image figure img{
    max-width: 80%;
}
.slider_slides_wrapper .swiper-button-prev{
    color: #fff !important;
    background: var(--link-color);
}
.slider_slides_wrapper .swiper-button-next{
    color: #fff !important;
    background: var(--link-color);
}
.slider_slides_wrapper .swiper-pagination-bullets{
    display: none;
}
/* slider section end */

.card-title {
    font-weight: 600;
}
.btn-face-shape {
    background-color: #e6f0ff;
    color: var(--link-color);
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
}
.btn-face-shape:hover {
    background-color: #d0e6ff;
}

/* use face shape start */
.face_shapes_wrapper .face_shapes_left_panel .face_shapes_title{
    position: relative;
}
.face_shapes_wrapper .face_shapes_left_panel .face_shapes_title::before{
    content: '';
    position: absolute;
    background-color: var(--link-color);
    height: 3px;
    width: 48%;
    top: 50%;
    transform: translateY(-50%);
    left: 660px;
}
.use_face_shape_wrapper .use_face_shape_right_panel{
    align-items: start;
}
.use_face_shape_wrapper .use_face_shape_right_panel p{
    font-weight: 500;
    line-height: 1.4;
    font-size: 20px;
}
.use_face_shape_wrapper .use_face_shape_right_panel p:not(:last-child){
    margin-bottom: 0;
}
.use_face_shape_wrapper .use_face_shape_right_panel .cta_btn_wrapper{
    margin-top: 10px;
}
.use_face_shape_wrapper .use_face_shape_right_panel .cta_btn_wrapper .uagb-buttons__wrap{
    justify-content: flex-start;
}
/* use face shape end */

/* two ways section start */
.two_ways_face_side_boxes .two_ways_face_left_box .manual_method_title .uagb-heading-text{
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 30px;
    position: relative;
}
.two_ways_face_side_boxes .two_ways_face_left_box .manual_method_title .uagb-heading-text::before{
    content: '';
    position: absolute;
    background-color: var(--link-color);
    height: 3px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.two_ways_face_side_boxes .two_ways_face_left_box .two_ways_inner_box {
    padding-left: 35px;
}
.two_ways_face_side_boxes .two_ways_face_left_box .two_ways_inner_box .wp-block-uagb-advanced-heading{
    position: relative;
}
.two_ways_face_side_boxes .two_ways_face_left_box .two_ways_inner_box .wp-block-uagb-advanced-heading::before{
    content: '';
    position: absolute;
    background: var(--gradiant-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -16px;
}
.two_ways_face_side_boxes .two_ways_face_left_box .two_ways_inner_box p{
    margin-bottom: 0;
}
.two_ways_face_side_boxes .two_ways_face_right_box .ai_method_title .uagb-heading-text{
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 30px;
    position: relative;
}
.two_ways_face_side_boxes .two_ways_face_right_box .ai_method_title .uagb-heading-text::before{
    content: '';
    position: absolute;
    background-color: var(--white-color);
    height: 3px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.two_ways_face_side_boxes .two_ways_face_right_box .wp-block-uagb-advanced-heading{
    max-width: 550px;
}
.two_ways_face_side_boxes .two_ways_face_right_box .cta_btn_wrapper .wp-block-button__link{
    background-color: var(--white-color);
    background: var(--white-color);
    color: var(--link-color);
    min-width: 339px;
}
/* two ways section end */
/* why choose section start */
.why_choose_inner_section .why_choose_left_panel .uagb-icon-list__wrap .wp-block-uagb-icon-list-child:last-child{
    margin-bottom: 0;
}
/* why choose section end */

/* types slider section start */
.types_face_title_wrapper p{
    max-width: 850px;
    font-weight: 500;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 0;
}
.face-shape-slider {
    width: 100%;
    padding: 30px 0;
}
.face-shape-slider .swiper-button-next, .face-shape-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
}
.face-shape-slider .swiper-button-next:focus, .face-shape-slider .swiper-button-prev:focus{
    outline: 0;
}
.face-shape-slider .swiper-button-next::after, .face-shape-slider .swiper-button-prev::after{
    font-size: 18px;
    padding: 5px;
    background-color: var(--link-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-color);
    width: 50px;
    height: 50px;
}
.swiper-slide.face-shape-card {
    background: #fff;
    border-radius: 24px;
    text-align: center;
    align-self: stretch;
    height: auto;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
}
.swiper-slide.face-shape-card .face-shape-box{
    height: 100%;
}
.swiper-slide.face-shape-card .face-shape-card-content{
    padding: 20px 20px;
}
.swiper-slide.face-shape-card .face-shape-card-content .face-shape-card-title{
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}
.swiper-slide.face-shape-card .face-shape-card-content .face-shape-card-text{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0;
}
.swiper-slide.face-shape-card .face-img {
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
}
.face-shape-slider .swiper-button-next.swiper-button-disabled, .face-shape-slider .swiper-button-prev.swiper-button-disabled {
    cursor: not-allowed;
    pointer-events: unset;
}
.types_face_wrapper .types_face_try_now_block .cta_btn_wrapper .wp-block-button__link{
    min-width: 298px;
}
/* types slider section end */

/* thumbnail slider start */
.different_face_shape_men .different_shapes_men_title p{
    max-width: 850px;
    font-weight: 500;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 0;
}
.different_face_shape_men .cta_btn_wrapper .wp-block-button__link {
    min-width: 298px;
}

/*  */
/* .face-shape-swiper .swiper-wrapper{
    margin: 0 -12px;
}
.face-shape-swiper  .swiper-slide{
    margin: 0 12px;
} */
.face-thumb-swiper {
  margin-bottom: 20px;
  overflow: hidden;
}
.face-shape-thumbnails{
    display: flex;
}
.face-shape-thumbnails .shape-thumb .shape_image{
    display: block;
}
.face-shape-thumbnails .shape-thumb .shape_image_active{
    display: none;
}
.face-shape-thumbnails .shape-thumb.active .shape_image_active{
    display: block;
}
.face-shape-thumbnails .shape-thumb.active .shape_image{
    display: none;
}
.different_face_shape_men .shape-thumb img {
    height: 107px;
    display: block;
    margin: 0 auto 20px;
}
.different_face_shape_men .shape-thumb span{
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.different_face_shape_men .face-shape-box {
    border: 1px solid #0196FF;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 63%;
    width: 100%;
    margin-top: 150px;
    border-top-left-radius: 70px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    row-gap: 20px;
    column-gap: 20px;
    background-color: #fff;
    z-index: 3;
    margin-right: -100px;
}
.face_shape_container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.face_shape_container .face_shape_image_div {
    max-width: 43%;
    width: 100%;
    box-shadow: 0px 0px #00000070;
    row-gap: 20px;
    column-gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.face_shape_container .face_shape_image_div img.face_image {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}
.face-shape-swiper{
    /* max-width: 1048px; */
    max-width: 80% !important;
    margin: 0 auto;
}
.face_shape_container .face_shape_title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.face_shape_container .face_shape_text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}
.different_face_shape_men .try-now {
    font-size: 18px;
    font-weight: 500;
    border: 0;
    padding: 10px 24px;
    border-radius: 50px;
    color: #007aff;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 339px;
    position: relative;
    margin: 16px auto 0px;
}
.different_face_shape_men .swiper-button-next, .different_face_shape_men .swiper-button-prev {
    color: #fff !important;
    background: var(--link-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
}
.different_face_shape_men .swiper-button-prev, .different_face_shape_men .swiper-button-next{
    width: 50px !important;
    position: absolute !important;
    top: 75%;
    transform: translateY(-50%);
}
.different_face_shape_men .swiper-button-next:after, .different_face_shape_men .swiper-button-prev:after{
    font-size: 16px;
}
/*  */

.different_face_shape_men .face-shape-thumbnails {
    display: flex;
    /* gap: 16px; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    margin-bottom: 20px;
}
.different_face_shape_men .shape-thumb {
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
/* .different_face_shape_men .shape-thumb.active {
    border-color: #007aff;
    background: #e6f0ff;
    border-radius: 8px;
} */

.different_face_shape_men swiper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.different_face_shape_men .face-shape-box .face-img {
    border-radius: 16px;
    max-width: 260px;
    width: 100%;
}

.different_face_shape_men .try-now::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
    z-index: -1;
    -webkit-mask: linear-gradient(#FFFFFF 0 0) content-box, linear-gradient(#FFFFFF 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border: 2px solid transparent;
}
/* thumbnail slider end */

/* oval face shape page start */
.oval_face_shape_images_block_left .wp-block-uagb-image figure{
    width: 100%;
}
.oval_face_shape_images_block_left .wp-block-uagb-image figure img{
    width: 100%;
    object-fit: cover;
}
.oval_face_shape_images_block_right .wp-block-uagb-image figure{
    width: 100%;
}
.oval_face_shape_images_block_right .wp-block-uagb-image figure img{
    width: 100%;
    object-fit: cover;
}
.oval_shape_scroll_section {
    position: relative;
}
.oval_shape_scroll_section .scroll_down_box {
    position: absolute;
    display: inline-block;
    width: auto !important;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
}
.oval_shape_page_heading .oval_face_page_text {
    font-size: 20px !important;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 850px;
}

.oval_shape_page_desc_section .uagb-container-inner-blocks-wrap p{
    max-width: 990px;
    font-weight: 500;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 0;
}
.identify_info_block p{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}
.identify_info_block .cta_btn_wrapper .uagb-buttons__wrap{
    justify-content: flex-start;
}
.identify_info_block .cta_btn_wrapper a.wp-block-button__link{
    min-width: 298px;
}
.oval_face_men_women_two_blocks .oval_face_men_women_left_panel .wp-block-uagb-image__figure{
    width: 100%;
}
.oval_face_men_women_two_blocks .oval_face_men_women_left_panel .wp-block-uagb-image__figure img{
    width: 100%;
    object-fit: cover;
}
.oval_face_men_women_two_blocks .oval_face_men_women_right_panel .wp-block-uagb-image__figure{
    width: 100%;
}
.oval_face_men_women_two_blocks .oval_face_men_women_right_panel .wp-block-uagb-image__figure img{
    width: 100%;
    object-fit: cover;
}
.oval_face_men_women_two_blocks .oval_face_men_women_left_inner_box p, .oval_face_men_women_two_blocks .oval_face_men_women_right_inner_box p{
    font-size: 18px !important;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 500;
}
.women_hairstyle_section .women_hairstyle_title_section p{
    font-size: 20px !important;
    max-width: 850px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
}
.women_hairstyle_section .women_hairstyle_details .women_hairstyle_details_inner_box{
    border: 1px solid var(--link-color);
    overflow: hidden;
}
.women_hairstyle_section .women_hairstyle_details_inner_box .women_hairstyle_inner_box_desc p{
    font-size: 18px !important;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
}
.women_hairstyle_section .women_hairstyle_inner_box_image .wp-block-uagb-image{
    width: 100%;
    height: 100%;
}
.women_hairstyle_section .women_hairstyle_inner_box_image .wp-block-uagb-image figure{
    width: 100%;
}
.women_hairstyle_section .women_hairstyle_inner_box_image .wp-block-uagb-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.women_hairstyle_section .women_hairstyle_cta_section .cta_btn_wrapper .wp-block-button__link{
    min-width: 298px;
}
.women_hairstyle_section .women_hairstyle_cta_section .uagb-heading-text{
    max-width: 880px;
    line-height: 1.5;
    margin: 0 auto;
}
.dress_for_oval_face_section .dress_for_oval_face_image_block figure{
    width: 100%;
}
.dress_for_oval_face_section .dress_for_oval_face_image_block figure img{
    width: 100% !important;
    object-fit: cover;
    border-radius: 50px 0 0 0;
}
.dress_for_oval_face_section .dress_for_oval_face_info_block p{
    font-size: 20px !important;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
}
.oval_shape_beard_boxes .oval_shape_beard_inner_box figure{
    width: 100%;
   
}
.oval_shape_beard_boxes .oval_shape_beard_inner_box figure img{
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.oval_shape_beard_boxes .oval_shape_beard_inner_box_info p{
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0 !important;
}
.oval_shape_beard_boxes .oval_shape_beard_inner_box_info{
    height: 100%;
}
.oval_shape_beard_section .oval_shape_beard_title p{
    font-size: 20px !important;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 810px;
}
.oval_shape_beard_section .oval_shape_beard_try_now_block .wp-block-uagb-advanced-heading{
    max-width: 1030px;
}
.oval_shape_beard_section .oval_shape_beard_try_now_block .wp-block-uagb-advanced-heading h4{
    line-height: 1.5;
}
.oval_shape_beard_section .oval_shape_beard_try_now_block .cta_btn_wrapper .wp-block-button__link{
    min-width: 298px;
}
.two_ways_face_side_boxes .two_ways_face_left_box {
    position: relative;
    padding-top: 70px;
}
body .dos_dont_section .two_ways_face_side_boxes .two_ways_face_left_box p.dos_text_pill {
    border-radius: 50px;
    background-color: var(--bg-color);
    color: var(--primary-color);
    margin-bottom: 0;
    min-width: 154px !important;
    width: 154px !important;
    position: absolute !important;
    z-index: 2;
    padding: 5px 15px;
    top: -20px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font-size: 16px !important;
    font-weight: 600;
}
body .dos_dont_section .two_ways_face_side_boxes .two_ways_face_left_box p.dos_text_pill.dont_text_pill{
    background: var(--gradiant-color);
    color: var(--white-color) !important;
}
.dos_dont_section .dos_and_dont_text {
    font-size: 20px !important;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 880px;
}
.dos_dont_section .two_ways_face_side_boxes .two_ways_face_left_box{
    margin-top: 30px;
}

.fashion_tips_women_heading p{
    font-size: 20px !important;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 870px;
}
.fashion_tips_blocks_section  .card-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fashion_tips_blocks_section .hover-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  max-width: calc(33.33% - 20px);
  flex: 0 0 calc(33.33% - 20px);
  transition: transform 0.3s ease;
}

.fashion_tips_blocks_section .hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

.fashion_tips_blocks_section .card-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 10px;
}

.fashion_tips_blocks_section .card-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.fashion_tips_blocks_section .hover-card .overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  color: #000;
  padding: 20px;
  text-align: center;
  transition: top 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.fashion_tips_blocks_section .hover-card:hover .card-title{
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.fashion_tips_blocks_section .hover-card:hover .overlay {
  top: 0;
}

.fashion_tips_blocks_section .hover-card:hover img {
  opacity: 0.2;
}

.fashion_tips_blocks_section .hover-card .overlay h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.fashion_tips_blocks_section .hover-card .overlay p {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* best oval shape face start */
/* Swiper wrapper styling */
/* Slide card style */
.best_oval_face_section_title p{
    font-size: 20px !important;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 850px;
}
.best_oval_face_try_block .uagb-heading-text{
    max-width: 880px;
    line-height: 1.5;
    margin: 0 auto;
}
.best_oval_face_try_block .cta_btn_wrapper .wp-block-button__link{
    min-width: 298px;
}
.best_oval_face_slider .card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 0;
}

/* Image */
.best_oval_face_slider .card img {
  width: 100%;
  object-fit: cover;
}

/* Text content */
.best_oval_face_slider .card-body {
  padding: 20px;
  flex: 1;
}

.best_oval_face_slider .card-body h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.5;
    color: var(--primary-color);
}

.best_oval_face_slider .card-body p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: 500;
}
/* best oval shape face end */
/* oval face shape page end */

/* upload image start */
#upload-box {
    border: 4px dashed #005786;
    border-radius: 10px;
    box-shadow: 0px 0px rgba(0, 0, 0, 0.439);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    height: 90%;
}
#upload-box .upload_inner_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 26px;
    column-gap: 20px;
}
#upload-box .upload_icon img{
    height: 45px;
}
#upload-box .drag_text p{
    margin-bottom: 0;
    font-family: inherit;
    font-weight: 500;
    font-size: 22px;
    color: var(--primary-color);
}
#upload-box .items_left p{
    margin-bottom: 0;
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
}
#upload-box .items_left p span{
    color: var(--link-color);
    padding: 5px;
}
/* #dropArea {
  border: 2px dashed var(--primary-color);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  position: relative;
  min-height: 150px;
  background-color: #f9f9f9;
} */
/* Overlay using body::before */
body.show-crop-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99991;
  backdrop-filter: blur(5px);
   transition: background-color 0.3s ease;
}

/* Container for modal */
.crop-overlay {
  display: none;
  z-index: 9999;
}

.crop-overlay.show {
  display: block;
}

/* Modal Styling */
#cropModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  min-height: 90dvh;
  min-width: 70vw;
  max-width: 90vw;
  max-height: 90dvh;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
  margin: 20px 0;
  animation: fadeInScale 0.3s ease-out;
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -45%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* For Webkit browsers (Chrome, Safari) */
#cropModal::-webkit-scrollbar {
  width: 8px;
}

#cropModal::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

#cropModal::-webkit-scrollbar-thumb {
  background-color: var(--primary-color); /* use your brand color */
  border-radius: 10px;
  border: 2px solid white;
}
#cropModal .crop-header {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}
#cropModal .crop-header h3{
    margin-bottom: 0;
    flex: 1;
    font-size: 30px;
    font-weight: 600;
    font-family: inherit;
}
#cropModal .crop-header .close-btn{
    cursor: pointer;
}
#cropModal .crop-body {
    text-align: center;
}
#cropModal .cropper-container{
    margin-bottom: 20px;
}
#cropModal .crop-body p {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    font-family: inherit;
    color: var(--primary-color);
}
#cropModal .rotate-wrap{
    display: inline-block;
}
#cropModal button#rotateBtn{
    border: 0;
    outline: 0;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
}
#cropModal button#rotateBtn span{
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
    font-family: inherit;
}
#cropModal .crop-footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 60px;
}
#cropModal .crop-footer button{
    min-width: 223px;
    margin-top: 12px;
}
#cropModal .continue_btn{
    border: 1px solid transparent;
}
#cropModal .cta_btn_secondary{
    position: relative;
    background-color: transparent;
    background: transparent;
    color: var(--link-color);
    z-index: 1;
}
#cropModal .cta_btn_secondary::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
    z-index: -1;
    -webkit-mask: linear-gradient(#FFFFFF 0 0) content-box, linear-gradient(#FFFFFF 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border: 2px solid transparent;
}
#cropModal .crop-body img#cropImage {
    /* max-width: 100%; */
    /* max-height: 60vh;
    display: block;
    margin: 0 auto; */
     max-width: 100%;
    max-height: 50vh;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}
.cropper-container .cropper-drag-box {
  pointer-events: none !important;
}
.body-no-scroll {
  overflow: hidden;
}

.scanner-modal {
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    height: auto;
    width: auto;
    /* min-height: 90dvh; */
    /* min-width: 70vw;
    max-width: 90vw; */
    /* max-height: 90dvh; */
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    margin: 20px 0;
    animation: fadeInScale 0.3s ease-out;
}

.scanner-content {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
}
.scanner-content #scannerMessage{
    margin-bottom: 20px;
    font-weight: 600;
}
.scanner-content p{
    margin-top: 20px;
}
.scanner-preview {
  display: inline-block;
    position: relative;
    margin: 10px 0;
}

#scannerPreviewImage {
  max-width: 150px;
  max-height: 150px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  display: none;
}
.scanner-preview .scanning_loader{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 150px;
    max-height: 150px;
}
/* uplaod image end */
/* result page */
.face-shape-result {
  max-width: 780px;
    margin: 30px auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.face-shape-result h1{
    font-weight: 700;
    margin-bottom: 24px;
    text-align: start;
}

.result-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 16px 0 26px;
    flex-direction: column;
}
.result-actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.shape-name {
    flex: 1;
    text-align: left;
    font-weight: bold;
    margin-bottom: 15px;
}

.bar-container {
    background: #e0f0ff;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: -webkit-fill-available;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
  width: 0%;
  border-radius: 10px;
  transition: width 1.5s ease-out;
}

.percent-label {
  flex: 0;
  font-weight: bold;
  min-width: 40px;
    text-align: end;
    position: absolute;
    right: 0;
}

.result-actions {
  margin-top: 40px;
}

.try-again-btn {
  background: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 22px;
}
.social-icons .share-text {
    font-size: 20px;
    margin: 10px 0 0 0;
    font-weight: 600;
    color: var(--primary-color);
}
ul.social_icons_list {
    list-style-type: none;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
ul.social_icons_list li + li{
    margin-left: 10px;
}
ul.social_icons_list li a{
    text-decoration: none;
    display: inline-block;
}

/*  */
.copy-link-container {
    margin-top: 70px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#copy-link-button {
  padding: 8px 16px;
    background: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

/* privacy policy start */
.privacy_policy_wrapper{
    margin-top: 50px;
}
.privacy_policy_wrapper .privacy_policy_title{
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    word-wrap: break-word;
}
.privacy_policy_wrapper .privacy_policy_title span{
    color: var(--link-color);
}
.privacy_policy_block .privacy_policy_inner_block{
    margin-bottom: 26px;
}
.privacy_policy_block .privacy_policy_inner_block .inner_box_title{
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.privacy_policy_block .privacy_policy_inner_block .inner_box_text{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0;
}
.privacy_policy_inner_block .sub_policy_block{
    margin-top: 20px;
}
.privacy_policy_inner_block .sub_policy_block .sub_policy_text{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block{
    border: 1px solid #ededed;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 24px 0;
    padding: 10px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_title{
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_text{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 12px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block{
    margin-top: 20px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .info_title{
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--link-color);
    margin-bottom: 14px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .info_text{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 12px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .policy_list{
    list-style-type: none;
    padding-left: 15px;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .policy_list .list_items{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}
.privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .policy_list .list_items::before{
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgb(1, 150, 255) 0%, rgb(0, 87, 134) 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.251);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.privacy_policy_inner_block .inner_box_text_link{
    font-weight: 500;
    text-decoration: none;
    color: var(--link-color);
    font-size: 20px;
    line-height: 1.5;
}
/* privacy policy end */

/* blog listing start */
.hero-section{
    margin-top: 40px;
}
.hero-section .card{
    background-color: transparent;
    border: 0;
    border-radius: 12px;
    position: relative;
}
.hero-section .card .hero-blog-bg img{
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.hero-caption {
    background-color: var(--white-color);
    max-width: 430px;
    box-shadow: 0 0px 6px 3px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 24px;
    position: absolute;
    bottom: -30px;
    left: 30px;
}
.hero-caption .hero_category_link {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.2s ease;
    width: fit-content;
    background: var(--gradiant-color);
    padding: 10px 20px !important;
    line-height: 1.3;
    box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.149);
    color: var(--white-color);
    border: 0;
    margin-bottom: 8px;
}
.hero-caption .hero_heading_title{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.hero-caption .hero_heading_title .hero_title_link{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all .3s ease-in;
}
.hero-caption .hero_heading_title .hero_title_link:hover{
    color: var(--link-color);
}
.hero-caption .hero_text {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.4;
    color: var(--primary-color);
}
.hero-caption .hero_author_block {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.hero-caption .author-meta {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
}
.hero-caption .author-meta .author-meta-title{
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1;
    transition: all .3s ease-in;
}
.hero-caption .author-meta .author-meta-title:hover{
    color: var(--link-color);
}
.hero-caption .author-meta-time{
    color: var(--link-color);
}
.blog_post_wrapper {
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.blog_post_wrapper h1.blog_post_title {
    margin-bottom: 10px;
    font-family: inherit;
    font-size: 26px;
    font-weight: 600;
}
.blog_post_wrapper .search_container {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex: 1;
    margin-left: 200px;
}
.blog_post_wrapper .search_wrapper {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.blog_post_wrapper .search_wrapper input:focus, .blog_post_wrapper .search_wrapper input:focus-visible, .blog_post_wrapper .filter_wrapper select:focus, .blog_post_wrapper .filter_wrapper select:focus-visible{
    box-shadow: none;
    outline: 0;
}
.blog_post_wrapper .search_wrapper input{
    padding-left: 40px;
    height: 42px;
    border-color: #d9d9d9;
    border-radius: 8px;
    text-align: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.blog_post_wrapper .filter_wrapper {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.blog_post_wrapper .filter_wrapper select{
    padding-left: 40px;
    height: 42px;
    border-color: #d9d9d9;
    border-radius: 8px;
    text-align: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.blog_post_wrapper .search_wrapper::before, .blog_post_wrapper .filter_wrapper::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}
.blog_post_wrapper .search_wrapper::before{
    background-image: url(https://faceshaperecognition.com/wp-content/uploads/2025/06/search_icon.svg);
}
.blog_post_wrapper .filter_wrapper::before{
    background-image: url(https://faceshaperecognition.com/wp-content/uploads/2025/06/filter_icon.svg);
}
.blog_post_wrapper .filter_wrapper select{
    background-image: none;
}
.newsletter-section {
    border: 1px solid #ddd;
    border-radius: 22px;
    background: var(--gradiant-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
}
.newsletter-wrapper{
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
}
.newsletter-section .newsletter-heading {
    margin-bottom: 40px;
}
.newsletter-section .newsletter-title {
    font-family: inherit;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.5;
    color: var(--white-color);
}
.newsletter-section form.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 18px;
}
.newsletter-section form.newsletter-form .input-group{
    position: relative;
    margin-bottom: 10px;
}
.newsletter-section form.newsletter-form .input-group::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    background-image: url(https://faceshaperecognition.com/wp-content/uploads/2025/06/mail_icon.svg);
    z-index: 1;
}
.newsletter-section form.newsletter-form .input-group input{
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    height: 52px;
    color: var(--text-color);
    padding-left: 40px;
    border-radius: 8px;
}
.newsletter-section .newsletter_btn{
    background: var(--white-color);
    background-color: var(--white-color);
    padding: 7px 15px;
    min-width: 204px;
    height: 52px;
    color: var(--link-color);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}
/* blog listing end */
/* overwrite css */
.input-group>.form-control:focus, .input-group>.form-floating:focus-within, .input-group>.form-select:focus {
    z-index: 0;
}



@media (max-width: 1400px){
    .slides_inner_boxes .slide_left_box{
        margin-top: 120px;
    }
    .slides_inner_boxes .slide_right_box .wp-block-uagb-image{
        margin-bottom: 60px;
    }
    .different_face_shape_men .face-shape-box{
        margin-top: 120px;
    }
    .face_shape_container .face_shape_image_div{
        margin-bottom: 60px;
    }
    .face_shape_container .face_shape_text{
        font-size: 20px;
    }
}
@media (max-width: 1200px){
    .slides_inner_boxes .slide_left_box{
        margin-top: 80px;
    }
    .slides_inner_boxes .slide_left_box .slide_box_text{
        font-size: 18px !important;
    }
    .slides_inner_boxes .slide_right_box .wp-block-uagb-image{
        margin-bottom: 130px;
    }
    .slides_inner_boxes .slide_left_box .slide_cta_btn .wp-block-button__link{
        min-width: 270px;
        padding: 12px 20px;
        font-size: 18px;
    }
    .different_face_shape_men .face-shape-box{
        margin-top: 80px;
        margin-right: -80px;
    }
    .face_shape_container .face_shape_image_div{
        margin-bottom: 130px;
    }
    .face_shape_container .face_shape_text{
        font-size: 18px;
    }
    .different_face_shape_men .try-now{
        min-width: 270px;
        padding: 12px 20px;
        font-size: 18px;
        height: auto;
        margin-top: 0;
    }
    .privacy_policy_wrapper .privacy_policy_title{
        font-size: 40px;
    }
}
@media (max-width: 1023px){
    .drag_drop_image_section .drag_drop_right_panel .wp-block-uagb-container{
        height: auto;
    }
    .face_shapes_wrapper .face_shapes_left_panel .face_shapes_title h1{
        font-size: 40px;
    }
    .face_shapes_wrapper .face_shapes_left_panel .face_shapes_title::before{
        width: 35%;
        left: 510px;
    }
    #upload-box{
        height: auto;
    }
    .blog_post_wrapper .search_container{
        margin-left: 100px;
    }
}
@media (max-width: 991px){
    .cta_btn_wrapper .wp-block-button__link{
        font-size: 16px !important;
        padding: 13px 20px !important;
    }
    p.is-style-default{
        font-size: 18px !important;
    }
    .drag_drop_image_section .drag_drop_right_panel .is-style-default{
        font-size: 0.875rem !important;
    }
    .face_types_showcase .face_type_box_wrapper .face_type_inner_box p{
        font-size: 18px;
    }
    .face_analyzer_wrapper .face_analyzer_right_panel .cta_btn_wrapper::before{
       display: none;
    }
    .face_shape_recognition_wrapper .cta_btn_wrapper::before {
        display: none;
    }
    .face_analyzer_wrapper .face_analyzer_right_panel .cta_btn_wrapper .uagb-buttons__wrap{
        justify-content: start;
    }
    .detector_title_wrapper p {
        font-size: 16px !important;
    }
    .detector_work_cards .detector_cards_text {
        padding-left: 34px;
        font-size: 16px !important;
    }
    .slides_inner_boxes .slide_left_box .slide_box_text {
        font-size: 18px;
    }
    body .cta_btn_primary{
        font-weight: 600;
        padding: 13px 20px;
        font-size: 16px;
    }
    .face_shapes_wrapper .face_shapes_left_panel .face_shapes_title h1{
        font-size: 30px;
    }
    .face_shapes_wrapper .face_shapes_left_panel .face_shapes_title::before{
        width: 45%;
        left: 420px;
    }
    .use_face_shape_wrapper .use_face_shape_right_panel p{
        font-size: 18px;
    }
    .different_face_shape_men .face-shape-box{
        margin-right: -60px;
    }
    .hover-card {
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
    .fashion_tips_blocks_section .hover-card{
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
    .privacy_policy_wrapper .privacy_policy_title{
        font-size: 36px;
    }
    .privacy_policy_block .privacy_policy_inner_block .inner_box_title{
        font-size: 24px;
    }
    .privacy_policy_block .privacy_policy_inner_block .inner_box_text{
        font-size: 18px;
    }
    .privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_title{
        font-size: 20px;
    }
    .privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_text{
        font-size: 18px;
    }
    .privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .info_title{
        font-size: 20px;
    }
    .privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .info_text{
        font-size: 18px;
    }
    .privacy_policy_inner_block .sub_policy_block .sub_inner_block .sub_info_block .policy_list .list_items{
        font-size: 18px;
    }
    .privacy_policy_inner_block .inner_box_text_link{
        font-size: 18px;
    }
    .blog_post_wrapper .search_container{
        margin-left: 40px;
    }
    .newsletter-section form.newsletter-form{
        flex-wrap: wrap;
    }
}
@media (max-width: 800px){
    .slides_inner_boxes .slide_right_box .wp-block-uagb-image {
        margin-bottom: 220px;
    }
    .face_shape_container .face_shape_image_div{
        margin-bottom: 220px;
    }
}
@media (max-width: 767px){
    .detector_works_boxes .detector_work_cards .wp-block-heading{
        font-size: 16px !important;
    }
    .detectore_works_wrapper {
        padding: 20px;
    }
    .slider_slides_wrapper .slides_inner_boxes{
        max-width: 100% !important;
    }
    .slides_inner_boxes .slide_left_box {
        margin-top: 0;
    }
    .slides_inner_boxes .slide_right_box{
        display: none;
    }
    .slides_inner_boxes .slide_right_box .wp-block-uagb-image{
        width: auto !important;
        margin-bottom: 0;
    }
    .slides_inner_boxes .slide_right_box .wp-block-uagb-image figure img {
        max-width: 100%;
    }
    .slides_inner_boxes .slide_left_box .slide_cta_btn .wp-block-button__link{
        min-width: auto;
    }
    .face_shapes_wrapper .face_shapes_left_panel .face_shapes_title::before{
        display: none;
    }
    /* .face_shapes_wrapper .face_shapes_right_panel .wp-block-uagb-image figure img{
        width: 60%;
    } */
    .two_ways_face_side_boxes .two_ways_face_right_box .cta_btn_wrapper .wp-block-button__link{
        min-width: 210px;
    }
    .two_ways_face_side_boxes .two_ways_face_left_box .manual_method_title .uagb-heading-text, 
    .two_ways_face_side_boxes .two_ways_face_right_box .ai_method_title .uagb-heading-text{
        margin-bottom: 16px;
    }
    .types_face_title_wrapper p{
        font-size: 18px;
    }
    .types_face_wrapper .types_face_try_now_block .cta_btn_wrapper .wp-block-button__link{
        min-width: 210px;
    }
    .different_face_shape_men .face-shape-box{
        margin: 0;
        max-width: 100%;
    }
    .face_shape_container .face_shape_image_div{
        display: none;
    }
    .different_face_shape_men .try-now{
        min-width: auto;
    }
    .blog_card_wrapper .card .card-body .card-title a{
        font-size: 20px;
    }
    .blog_card_wrapper .card .card-body .card-text{
        font-size: 16px;
    }
    .blog_card_wrapper .card .card-body .category_details .btn{
        font-size: 16px;
    }
    .blog_card_wrapper .card .card-body .category_details .read_time{
        font-size: 16px;
    }
    .uagb-block-447459bd .uagb-faq-questions-button .uagb-question{
        font-size: 18px !important;
    }
    /* .face-shape-swiper .swiper-wrapper{
        column-gap: 10px;
    } */
     
    /* oval face shape page start */
    .oval_shape_page_heading .oval_face_page_text {
        font-size: 18px !important;
    }
    .oval_shape_page_desc_section .uagb-container-inner-blocks-wrap p{
        font-size: 18px !important;
    }

    .identify_info_block p{
        font-size: 18px !important;
    }
    .identify_info_block .cta_btn_wrapper a.wp-block-button__link{
        min-width: 210px;
    }
    .women_hairstyle_section .women_hairstyle_title_section p{
        font-size: 18px !important;
    }
    .women_hairstyle_section .women_hairstyle_cta_section .cta_btn_wrapper .wp-block-button__link{
        min-width: 210px;
    }
    .dress_for_oval_face_section .dress_for_oval_face_info_block p{
        font-size: 18px !important;
    }
    .oval_shape_beard_boxes .oval_shape_beard_inner_box_info p{
        font-size: 16px !important;
    }
    .oval_shape_beard_boxes .oval_shape_beard_inner_box{
        flex-wrap: nowrap;
    }
    .oval_shape_beard_section .oval_shape_beard_title p{
        font-size: 18px !important;
    }
    .oval_shape_beard_section .oval_shape_beard_try_now_block .cta_btn_wrapper .wp-block-button__link{
        min-width: 210px;
    }
    .dos_dont_section .dos_and_dont_text {
        font-size: 18px !important;
    }
    .card-title h3 {
        font-size: 22px;
    }
    .hover-card .overlay h3 {
        font-size: 22px;
    }
    .hover-card .overlay p {
        font-size: 16px;
    }
    .hover-card {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .best_oval_face_section_title p{
        font-size: 18px !important;
    }
    .best_oval_face_try_block .cta_btn_wrapper .wp-block-button__link{
        min-width: 210px;
    }
    .fashion_tips_blocks_section .hover-card{
        max-width: 100%;
        flex: 0 0 100%;
    }
    #cropModal {
        /* top: 50px;
        left: 41%;
        transform: translate(-50%, 0); */
        min-width: 90vw;
        max-width: 90vw;
    }
    #cropModal .crop-header h3{
        font-size: 24px;
    }
    #cropModal .crop-body p {
        font-size: 20px;
    }
    #cropModal button#rotateBtn span{
        font-size: 18px;
    }
    .privacy_policy_wrapper .privacy_policy_title{
        font-size: 30px;
    }
    .privacy_policy_block .privacy_policy_inner_block .inner_box_title {
        font-size: 22px;
    }
    .blog_post_wrapper{
        flex-direction: column;
        align-items: start;
    }
    .blog_post_wrapper .search_container{
        margin-left: 0;
        width: 100%;
        flex-wrap: wrap;
    }   
    .hero-section .card{
        background-color: var(--white-color);
        box-shadow: 0 0px 6px 3px rgba(0, 0, 0, 0.1);
    }
    .hero-caption{
        position: relative;
        top: unset;
        left: unset;
        bottom: unset;
        max-width: 100%;
        border-radius: 0;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
        box-shadow: unset;
    }
}

/* @media (max-width: 576px){
    .different_face_shape_men .swiper-button-prev, .different_face_shape_men .swiper-button-next{
        top: 84%;
    }
}
@media (max-width: 400px){
    .different_face_shape_men .swiper-button-prev, .different_face_shape_men .swiper-button-next{
        top: 87%;
    }
} */