/* header css start */
header {
    background: var(--blue-color);
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}


/* Replace duplicate pulsate animations */
@-webkit-keyframes pulsate {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes pulsate {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

header .navbar-brand img {
    width: 100%;
    max-width: 250px;
}

header .navbar-nav .features_list .sub_menu {
    position: absolute;
    width: auto;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    overflow: hidden;
    z-index: 100;
    top: 54px;
    width: 250px;
}

header .navbar-nav .features_list:hover .sub_menu {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
    top: 66px;
}

header .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

header .navbar-nav .nav-item .nav-link:hover {
    color: var(--main-color);
}

header .navbar-light .navbar-nav .nav-link.active,
header .navbar-nav .features_list .sub_menu li a.active {
    color: var(--main-color);
}

header .navbar-nav .features_list .sub_menu li a {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

header .navbar-nav .features_list .sub_menu li:before {
    position: absolute;
    left: -3px;
    top: 7px;
    width: 0px;
    height: 65%;
    background: var(--main-color);
    border-radius: 0px 5px 5px 0;
    content: '';
    transition: 0.3s;
}

header .navbar-nav .features_list .sub_menu li:hover::before {
    width: 6px;
}

header .navbar-nav .features_list .sub_menu li:hover a {
    color: var(--main-color);
    padding-left: 5px;
}

header .navbar-nav .features_list .sub_menu li {
    position: relative;
    padding: 8px 15px;
    border-bottom: 1px solid #80808029;
}

header .navbar-nav .nav-item:last-child .nav-link img {
    width: 30px;
    margin-right: 10px;
}

header .navbar-nav .nav-item:last-child .nav-link:before {
    position: absolute;
    right: 67px;
    top: 0px;
    content: '';
    background: green;
    z-index: 100000;
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

header .navbar-nav .nav-item:last-child .nav-link {
    position: relative;
    display: flex;
    align-items: center;
}

header .navbar-nav .nav-item:last-child .nav-link:after {
    position: absolute;
    right: 60px;
    top: -7px;
    content: '';
    background: green;
    z-index: 100000;
    border: 0px solid #62bd19;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    height: 20px;
    width: 20px;
    animation: pulsate 1s ease-out infinite;
    -webkit-animation: pulsate 1s ease-out infinite;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

header .navbar-nav .nav-item:last-child .nav-link h6 {
    color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
}

/* header css end */


/* hero section start */
.hero_section {
    background-color: var(--blue-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 97vh;
    overflow: hidden;
    position: relative;
    margin-top: 70px;
    text-align: left;
    animation: slide-default 30s infinite;
}

.hero_content h1 span {
    color: var(--main-color);
}

.coll_btn .call_bg {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s all ease;
    cursor: pointer;
}

.coll_btn p {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    text-transform: uppercase;
    color: #fff;
}

.coll_btn a {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--main-color);
    text-decoration: none;
}

.hero_content h5 {
    font: normal normal 600 18px Inter;
    color: var(--main-color);
}

.hero_content {
    position: relative;
    z-index: 1;
}

.hero_img {
    height: 100%;
}

.hero_img img {
    width: 100%;
    position: relative;
    height: 95vh;
}

.wating_img img {
    position: absolute;
    left: -40px;
    top: 28%;
    animation: heroimg 2s infinite alternate ease-in-out;
}

@keyframes heroimg {
    0% {
        transform: translate(0px, 10px);
    }

    100% {
        transform: translate(0px, -50px);
    }
}

.main_hero_img {
    position: relative;
    height: 100vh;
}
/* hero section end */

/* services section start */
.services_box {
    padding: 10px 15px;
    position: relative;
    z-index: 1;
    background: #f805a7;
}

.services_box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 99.5%;
    width: 99.5%;
    content: '';
    background: #ffffff;
    z-index: -1;
    bottom: 0;
    margin: auto;
    right: 0;
    box-shadow: 0 6px 6px #f30186;
    color: #fff;
}

.services_box:after {
    width: 0%;
    height: 0%;
    background: var(--blue-color);
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: -1;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 0.5s;
}

.services_box:hover h5 {
    color: #fff;
}

.services_box:hover p {
    color: #fff;
    text-align: justify;
}

.services_box:hover::after {
    width: 100%;
    height: 100%;
}

.services_box h4 {
    transition: 0.5s;
}

.services_box .services_img {
    background: var(--main-color);
    width: 85px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    border-radius: 2px;
}

.services_box .services_img img {
    width: 75px;
}

.services_box .services_img:before {
    position: absolute;
    width: 95%;
    height: 96%;
    content: '';
    background: var(--blue-color);
    z-index: -1;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    left: 2px;
    border-radius: 2px;
}

.services_section {
    background-color: #FDFAF8;
}

.read_more {
    position: relative;
    width: fit-content;
}

.read_more .scrolldown-btn {
    right: -9px;
}

.read_more a {
    color: var(--main-color);
    font: normal normal 600 14px Inter;
    text-decoration: none;
}

/* services section end */

/* main form section start */
.form_section {
    background: var(--blue-color);
    position: relative;
}

.form_section::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* Custom Date Input Styling */
.custom-date-input {
    width: 100%;
    padding: 13px 15px;
    font: normal normal 600 14px Inter;
    outline: none;
    background: transparent;
    border: 0;
  }
  
  .custom-date-input:hover, .custom-date-input:focus {
    border-color: #ff4f98;
    box-shadow: 0 0 10px rgba(255, 17, 130, 0.5);
    outline: none;
  }
  

.main_form_box .banner__list label {
    font: normal normal 500 14px Inter;
    color: #fff;
    margin-bottom: 10px;
}

.main_form_box .banner__list .banner__inputlist select {
    width: 100%;
    padding: 13px 15px;
    font: normal normal 600 14px Inter;
    outline: none;
    background: transparent;
    border: 0;
}

.main_form_box .banner__list .banner__inputlist:before {
    width: 99%;
    height: 97%;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    z-index: -1;
    right: 0;
    margin: auto;
    bottom: 0;
}

.main_form_box .banner__list .banner__inputlist {
    position: relative;
    background: var(--main-color);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.main_form_box .banner__list label span {
    color: var(--main-color);
}

.form-control {
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:hover,
.form-control:focus {
    border-color: #ff1182;
    box-shadow: 0 0 5px #ff1182;
}

/* main form section end */

/* about section start */
.about_us_section {
    background-color: #f5eeee;
}

.about_content h3 span,
.about_content h2 span {
    color: var(--main-color);
    padding-left: 6px;
}

.about_work img {
    width: 25%;
}

.about_work p {
    font-size: 13px;
    text-align: justify;
}

/* about section end */

/* our happy customer section start */
.our_customer_section .acamic_img img,
.profile_tabs-main .acamic_img img,
.search-widget_post .widget-content .acamic_img .profile_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 1;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.online_status {
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 5px;
}

.online_status .active_user {
    display: inline-block;
    height: 8px;
    width: 8px;
    background-color: green;
    border-radius: 50%;
    position: relative;
    margin-right: 5px;
}

.online_status .active_user::before {
    position: absolute;
    right: -6px;
    content: '';
    background: green;
    z-index: 1000;
    border: 0px solid #ffffff;
    border-radius: 30px;
    height: 25px;
    width: 25px;
    animation: pulsate 1s ease-out infinite;
    bottom: -8px;
}

@keyframes pulsate {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.acamic_img {
    position: relative;
    z-index: 1;
}

.acamic_img:before {
    position: absolute;
    left: -5px;
    top: -4px;
    height: 102%;
    background: #adadada6;
    content: '';
    width: 103%;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.customer_details {
    position: absolute;
    bottom: 0px;
    z-index: 1000;
    padding: 0px 20px;
    width: 100%;
    clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.customer_details h4 {
    color: #fff;
    padding-top: 15px;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 17px;
}

.customer_details p {
    color: var(--white-color);
    padding-right: 5px;
}

.customer_details p i {
    color: var(--white-color);
    padding-right: 5px;
}

.customer_details:before {
    background: var(--main-color);
    position: absolute;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    z-index: -1;
    filter: blur(8px);
    -webkit-filter: blur(20px);
}

.customer_details:after {
    width: 100%;
    height: 2px;
    top: 0;
    position: absolute;
    left: 0;
    content: '';
    background: linear-gradient(to right, #ff1182, black, #ff1182);
}

.main_next_prev {
    position: absolute;
    top: 28px;
    width: 100%;
    right: 25px;
    font-size: 15px;
}

.main_next_prev .swiper-button-prev {
    width: 170%;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-prev .scrolldown-btn {
    left: 0px;
    transform: rotate(90deg);
}

.swiper-button-prev .main_btn a {
    left: 26px;
}

.swiper-button-prev .main_btnlink a {
    left: 26px;
}

.our_customer_section .main_heading {
    position: relative;
    top: 0;
    padding-top: 30px;
}

.our_customer_section {
    background-color: #f3edf0f3;
}

/* our happy customer section end */


/* features seciton start */

.features_section {
    background-color: #ffffff;
}

.features_box {
    background: #ffffff;
    box-shadow: rgba(26, 25, 25, 0.616) 5px 10px 5px 0px;
    padding: 20px 25px;
    border-radius: 5px;
    border-color: #f00b76;
    border: 1px double var(--main-color);

}

.features_img img {
    width: 55px;
    object-fit: cover;
}

.features_box_2 {
    background: var(--blue-color);
}

/* features seciton end */

/* review section start */
.review_section {
    height: 100%;
    width: 100%;
    background-size: cover;
}

.review_box {
    background: #fff;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 17px 17px;
    position: relative;
    border-radius: 10px;
}

.review_box::after {
    left: 45px !important;
}

.review_box::before,
.review_box::after {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 90px;
    margin: auto;
    width: 24px;
    content: '';
    height: 45px;
    background-size: cover;
}

.review_img {
    position: absolute;
    left: 0;
    top: -48px;
    right: 0;
    justify-content: center;
    display: flex;
    width: 90px;
    height: 90px;
    background: #fff;
    margin: auto;
    border-radius: 50%;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.review_img img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
}

.review_content {
    margin-top: 45px;
}

.review_content h6 {
    font: normal normal 500 14px Inter;
    color: var(--main-color);
}

.review_content p {
    font-size: 13px;
}

.rounder {
    height: 75px;
    width: 75px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    border: 3px solid var(--main-color);
    animation: slideDas 5s infinite linear;
}

@keyframes slideDas {
    100% {
        transform: rotate(360deg);
    }

}

.rounder:before,
.rounder:after {
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--main-color);
    content: '';
}

.rounder:before {
    left: 7px;
    top: 0;
}

.rounder:after {
    right: 0;
    bottom: 7px;
}

/* review section end */

/* area secion start */

.big_meet_img:before {
    width: 102%;
}

.area_section .acamic_img img {
    height: 500px;
    object-position: 100% 100%;
}

.customer_details a {
    font: normal normal 500 14px Inter;
    text-decoration: none;
    color: var(--white-color);
    padding-right: 15px;
    display: flex;
}

.area_section .acamic_img:hover:after {
    height: 100%;
    width: 100%;
    opacity: 1;
    transform: scaleY(1);
}

.area_section .acamic_img:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 0%;
    background: #0000004f;
    content: 'Book Sexy Girls Now';
    z-index: 1;
    transition: 0.5s;
    right: 0;
    margin: auto;
    bottom: 0;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0px 3px 0px #5b5b5b;
    opacity: 0;
    transform: scaleY(0);
}


.area_section .acamic_img img {
    transition: 0.5s;
    overflow: hidden;
}

.area_section .acamic_img img:hover {
    transform: scale(1.2);
}

/* area secion end */

hr {
    background-color: #fff;
    width: 70%;
    margin-top: 10px;
    height: 2px;
    color: #ee0566;
    opacity: 0.9;
    margin-left: 15%;
    margin-right: 15%;
    border-style: dashed;
    border-width: 1px;
}

/* footer section start */
footer {
    background-image: linear-gradient(var(--blue-color), #06070e);
    position: relative;
}

footer:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
}

.footer_box ul li a {
    background: #172940;
    color: #fff;
    border-radius: 0px 10px;
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 1;
}

.footer_box ul li a:hover {
    border-radius: 50%;
}

.footer_box ul li a i {
    position: relative;
    z-index: 100;
}

.footer_box ul li a:before {
    height: 0%;
    width: 0%;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-radius: 50%;
    transition: 0.5s;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.footer_box ul li a i {
    z-index: 100;
    position: relative;
}

.footer_box ul li a:hover:before {
    width: 100%;
    height: 100%;
}

.footer_box ul li {
    margin: 0px 10px;
}

.footer_box p {
    font: normal normal 300 14px/25px Inter;
    letter-spacing: 0px;
    color: #ffffff;
}

.footer_box img {
    width: 250px;
}

.footer_quick_links ul li a {
    font: normal 300 14px/ 36px Inter;
    color: #ffffff;
    transition: 0.5s;
}

.footer_quick_links h5,
.footer_contact h5 {
    font: normal 600 18px/ 20px Inter;
}

.copy_bottom {
    background: var(--blue-color);
    padding: 15px 0px;
}

.contact_info .icon {
    margin-right: 12px;
    background: #172940 0% 0% no-repeat padding-box;
    border-radius: 0px 7px;
    min-width: 35px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_quick_links ul li a:hover,
.contact_info .details p a:hover {
    color: var(--main-color);
    padding-left: 5px;
}

.contact_info .details p {
    font: normal normal 300 14px/22px Inter;
    color: #ffffff;
}

.contact_info .details p a {
    color: #ffffff;
    transition: 0.5s;
}

.copy_right_text p,
.copy_bottom a,
.copy_bottom p {
    font: normal 400 14px/ 20px Inter;
    color: #fff;
}

.footer_quick_links ul .main_features_member a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main_features_member .features_img img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.main_features_member .features_img .inactive_user,
.main_features_member .features_img .active_user {
    height: 12px;
    width: 12px;
    background: #444444;
    border-radius: 50%;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 4px;
    border: 2px solid #fff;
}

.main_features_member .features_img .active_user {
    background: green;
}


.main_features_member .features_img .active_user::before {
    position: absolute;
    right: -6px;
    content: '';
    background: green;
    z-index: 1000;
    border: 0px solid #ffffff;
    border-radius: 30px;
    height: 20px;
    width: 20px;
    animation: pulsate 1s ease-out infinite;
    bottom: -6px;
}

.features_img {
    position: relative;
}

.features_content h6 {
    font: normal normal 500 16px Inter;
    margin: 0;
    color: var(--main-color);
}

.features_content p {
    font: normal normal 400 13px Inter;
    color: #fff;
    margin-bottom: 0;
    margin-top: 2px;
    text-align: justify;
}

.copy_right_text p a {
    color: var(--main-color);
}

/* footer section end */


/******** breadcrumb section start *********/
.breadcrumb_section {
    background: linear-gradient(#00000000, #730037d4), url(../images/banner2.jpg);
    background-size: cover;
    padding: 120px 0px;
    margin-top: 66px;
    position: relative;
}



@media screen and (max-width: 575px) {
    .breadcrumb_section {
        background-size: cover;
        background-image: url('../images/banner3.jpg');
    }

    .breadcrumb_heading h2 {
    font-size: 35px!important;
    color: #fff;
    text-shadow: 0px 5px 0px #0e112040;
}
p{
    text-align: left!important;
}
}





.breadcrumb_heading h2 {
    font-size: 45px;
    color: #fff;
    text-shadow: 0px 5px 0px #0e112040;
}

.breadcrumb_list {
    background: #fff;
    width: fit-content;
    padding: 13px 20px;
    position: absolute;
    right: 19px;
    bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    transform: skewX(30deg);
}

.breadcrumb_list:before,
.breadcrumb_list:after {
    position: absolute;
    right: 0;
    background: #ff1182;
    height: 13%;
    width: 4%;
    content: '';
    bottom: 0;
    transition: 0.5s;
    z-index: -1;
}

.breadcrumb_list:after {
    left: 0;
    top: 0;
}

.breadcrumb_list:hover::before,
.breadcrumb_list:hover::after {
    width: 100%;
    height: 100%;
}


.breadcrumb_list ul {
    transform: skewX(-30deg);
}

.breadcrumb_list ul li,
.breadcrumb_list ul li a {
    font: normal normal 600 14px Inter;
    margin: 0px 5px;
    color: #000;
}


.breadcrumb_list ul li .scrolldown-btn {
    position: relative;
    text-align: start;
    margin: unset;
    left: -20px;
}

.start_date_section .features_img img {
    width: 90px;
}

.start_date_section .features_box {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    background: linear-gradient(45deg, #2ab2fe, #c954ff, #ff1182);
    z-index: 1;
    border-radius: 0;
}

.start_date_section .features_box:before {
    position: absolute;
    left: 1px;
    top: 0;
    width: 99%;
    height: 98%;
    content: '';
    background: #0e1120;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    z-index: -1;
    bottom: 0;
    margin: auto;
    right: 0;
}

.start_date_section .features_box:after {
    height: 0%;
    width: 0%;
    background: #ffffff05;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
    right: 0;
    bottom: 0;
    margin: auto;
}

.start_date_section .features_box:hover::after {
    width: 99%;
    height: 98%;
}

.start_date_section .features_box p {
    color: var(--main-color);
}

.start_date_section .features_box .coonter span,
.start_date_section .features_box .coonter h1 {
    font-size: 45px;
    font-weight: 700;
    padding-left: 5px;
}

/******** breadcrumb section end *********/

/* single member page start */

.profile_section {
    background: linear-gradient(160deg, #30091b, #0d1309cc, #070520, #30071a);
    width: 100%;
    height: 100%;
    background-size: cover;
    position: relative;
    margin-top: 65px;
}

.profile_section .profile_name {
    position: relative;
    top: 50px;
}

.user_message_links .icon {
    height: 40px;
    width: 40px;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
    color: #fff;
}


.user_message_links li {
    margin: 0px 13px;
}

.profile_content .user_name h3 {
    font-size: 30px;
}

.profile_content .user_name p i {
    color: #ffffff;
    padding-right: 5px;
}

.acitve_time {
    color: var(--main-color);
}

.profile_content {
    position: absolute;
    bottom: 5px;
}


.main_tab_list_header .nav-tabs .nav-link.active {
    background: transparent;
    border: 0;
    color: var(--main-color);
    position: relative;
}

.main_tab_list_header .nav-tabs .nav-link.active:before {
    position: absolute;
    left: 0;
    bottom: -38px;
    height: 20px;
    width: 20px;
    background: #f1f7fe;
    content: '';
    right: 0;
    margin: auto;
    transform: rotate(45deg) translateX(-50%);
}

.main_tab_list_header {
    margin-bottom: 15px;
}

.profile_content {
    position: absolute;
    bottom: 5px;
}

.main_tab_list_header .nav-tabs .nav-link {
    font: normal normal 500 15px Inter;
    color: #fff;
    border: 0;
}

.main_tab_list_header .nav-tabs .nav-link:hover {
    color: var(--main-color);
}

.main_tab_list_header .nav-tabs .nav-link:hover span,
.main_tab_list_header .nav-tabs .nav-link.active span {
    color: #fff;
}

.main_tab_list_header .nav-tabs .nav-link span {
    background: var(--main-color);
    padding: 2px 7px;
    font-size: 10px;
    margin-left: 7px;
    position: relative;
    border-radius: 2px;
}

.main_tab_list_header .nav-tabs .nav-link span:before {
    position: absolute;
    content: "";
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 8.7px 5px 0;
    border-color: transparent #ff1182 transparent transparent;
}

.profile_section .profile_name:before {
    background: linear-gradient(45deg, #2ab2fe, #8f00d1, #ff1182);
}

.main_tabs_section {
    background-color: #f1f7fe;
}


.create-post .thumb-img img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.border_rounder {
    height: 70px;
    width: 70px;
    position: absolute;
    border: 1px dashed var(--main-color);
    border-radius: 50%;
    left: -5px;
    right: 0;
    bottom: 0;
    margin: auto;
    top: 0;
    animation: roudder 3s infinite linear;
}

@keyframes roudder {
    100% {
        transform: rotate(360deg);
    }

}

.create-post .thumb-img {
    position: relative;
}

.border_rounder:before,
.border_rounder:after {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background: var(--main-color);
}

.border_rounder:before {
    left: 0;
    top: 9px;
}

.border_rounder:after {
    right: 0;
    bottom: 11px;
}

.create-post .thumb-content h5 {
    font: normal normal 700 17px Inter;
}

.create-post .thumb-content h6 {
    font: normal normal 600 15px Inter;
}

.create-post .thumb-content h6 i {
    padding-right: 5px;
    color: var(--main-color);
}

.create-post .thumb-content h6 p {
    font: normal normal 500 13px Inter;
    padding-left: 20px;
    position: relative;
}

.create-post .thumb-content h6 p:before {
    content: '|';
    left: 8px;
    position: absolute;
}

.create-post .lab-content .post-form input {
    font-size: 15px;
    padding: 40px 35px;
    width: 100%;
    outline: none;
    font-weight: 500;
}

.content-type .content-list li {
    position: relative;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 30px;
}

.content-type .content-list li input {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    cursor: pointer;
}

.create-post {
    background: #fff;
    padding: 30px 0px 0px 0px;
    box-shadow: #2c2b2c98 0px 1px 4px 2px;
}

.content-type {
    padding: 18px 35px;
    border-top: 1px solid #292727;
}

.content-type .content-list li i {
    padding-right: 7px;
    color: var(--main-color);
}

.content-type .content-list li a {
    color: #000;
}

.create-post .lab-inner {
    padding: 0px 35px;
}

.content-type .content-list .post-submit {
    background: var(--main-color) !important;
    position: relative !important;
    padding: 9px 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: auto;
}

.search-widget_post .search-title h5 {
    font-weight: 700;
}

.search-widget_post {
    border-radius: 0 45px;
    background: #fff;
    padding: 15px 15px;
    box-shadow: #cbc1c136 0px 2px 6px 0px, #2925262b 0px 2px 6px 2px;
}

.search-widget_post .search-title {
    padding: 10px 0px;
    position: relative;
    border-bottom: 1px solid #80808057;
    margin-bottom: 20px;
}

.search-widget_post .search-title:before {
    width: 100%;
    height: 1px;
    bottom: 0px;
    background: gray;
}

.search-widget_post .widget-content select {
    font: normal normal 500 14px Inter;
    border: 1px solid #80808054;
    padding: 14px 20px;
}

.search-widget_post .widget-content .form-select:focus {
    border-color: #ff1182;
    box-shadow: 0 0 0 0px #ff11822e;
}

.like-widget_post .widget-content .image-thumb a img {
    border-radius: 5px;
}

.like-widget_post .widget-content .image-thumb {
    border: 1px solid #0000001c;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}

.like-widget_post .widget-content .image-thumb:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 0;
    border-color: #ff1182 transparent transparent transparent;
    border-radius: 5px 0px 0px 0px;
}

.like-widget_post .widget-content .image-thumb::after {
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
}

.active-group .widget-content .group-item:first-child {
    border-bottom: 1px solid #ecf0f3;
}

.group-item .lab-inner .lab-content .img-stack li {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.3);
    color: #fff;
}

.group-item .lab-inner .lab-content .img-stack li:nth-child(7n+7) {
    transform: translateX(0px);
    background-color: var(--main-color);
}

.active-group .widget-content .group-item h6 {
    font: normal normal 600 15px Inter;
}

.profile_main .info-card-content li {
    display: flex;
    width: 100%;
    padding: 12px 20px;
}

.profile_main .info-card-content li .info-name {
    width: 22%;
    color: var(--blue-color);
}

.profile_main .info-card-content li p {
    margin: 0;
}

.profile_main .info-card-content li:nth-child(1),
.profile_main .info-card-content li:nth-child(3),
.profile_main .info-card-content li:nth-child(5),
.profile_main .info-card-content li:nth-child(7),
.profile_main .info-card-content li:nth-child(9),
.profile_main .info-card-content li:nth-child(11) {
    background: rgba(245, 7, 146, 0.178);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.profile_main .info-card-content li:nth-child(2),
.profile_main .info-card-content li:nth-child(4),
.profile_main .info-card-content li:nth-child(6),
.profile_main .info-card-content li:nth-child(8),
.profile_main .info-card-content li:nth-child(10),
.profile_main .info-card-content li:nth-child(12) {
    background: #c5c3c4d3;
    margin-top: 10px;
    margin-bottom: 10px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.profile_main .info-card-content li .info-details span {
    color: #000;
    padding-right: 20px;
    font-size: 15px;
}

.info-card-title {
    border-bottom: 1px solid #ff1182;
    padding: 18px 0px;
}

.info-card-title h6 {
    font: normal normal 700 17px Inter;
}

.search-widget_post .widget-content .acamic_img .profile_img img {
    height: 350px;
    object-position: 100% 20%;
}

.search-widget_post .widget-content .acamic_img:before {
    left: -3px;
    top: -3px;
    height: 102%;
    content: '';
    width: 102%;
}

.group_section {
    background-color: #f5ebf0;
    padding-top: 25px;
}

.group_section .search-widget_post {
    box-shadow: #37383a78 0px 4px 4px 0px, #3c40439e 2px 4px 4px 2px;
}

/* single member page end */

/* login page start */
.login_box .login-other {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.login_box .login-other-item {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid hsla(0, 0%, 100%, .12);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    text-transform: capitalize;
    color: #fff;
    transition: 0.5s;
}

.login_box .login-other-item:hover {
    background: var(--main-color);
}

.login_box {
    background: var(--blue-color);
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
}


.login_box label {
    font: normal normal 500 15px Inter;
    margin-bottom: 7px;
    color: #fff;
}

.login_box label span {
    color: var(--main-color);
}

.login_box input.form-control {
    padding: 17px 20px;
    font: normal normal 500 15px Inter;
    border-radius: 10px;
    border-color: #ffffff14;
    background: #ffffff14;
    color: #fff;
}

.login_box input.form-control:focus {
    border-color: #ff1182 !important;
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 0%);
}

.login_box .login_btn {
    padding: 15px 20px;
    border-radius: 11px;
    font: normal normal 600 15px Inter;
    background: var(--main-color);
    color: #fff;
}

.other {
    text-align: center;
    position: relative;
    color: #919191;
    font: normal normal 500 15px Inter;
    margin: 30px 0px;
}

.other:before,
.other:after {
    position: absolute;
    width: 40%;
    background: #212431;
    height: 1px;
    content: '';
    bottom: 0;
    margin: auto;
    top: 0;
}

.other:before {
    left: 0;
}

.other:after {
    right: 0;
}

.forgot_pass a {
    font: normal normal 500 15px Inter;
    color: #919191;
}

.no-account {
    color: #ffffff87;
    font-size: 14px;
}

.tf-color {
    color: var(--main-color) !important;
}

/* login page end */

/* pricing plan page start */
.pricing_plan {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 0px 0px 50px 0px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    background: #dbdbdb;
    z-index: 10;
}

.pricing_plan .price_plan {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    z-index: 100;
    padding: 30px 20px 15px 20px;
}

.pricing_plan .price_plan h4 {
    font: normal normal 700 18px Inter;
    color: #fff;
}

.pricing_plan .price_plan h6 {
    font: normal normal 600 14px Inter;
    color: #fff;
}

.pricing_plan .price_plan h1 {
    font: normal normal 600 40px Inter;
    color: #ffffff;
}

.plan_list li {
    font: normal normal 500 14px Inter;
    margin-top: 20px;
    color: #fff;
}

.plan_list li i {
    color: var(--main-color);
    font-size: 14px;
    padding-right: 5px;
}

.pricing_plan:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 98%;
    width: 98%;
    content: '';
    background: #0e1120;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    z-index: -1;
}

.pricing_plan .price_plan:before {
    position: absolute;
    left: 0;
    top: 6px;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 98%;
    width: 98%;
    content: '';
    background: var(--main-color);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    z-index: -1;
    filter: blur(8px);
    -webkit-filter: blur(30px);
}

.pricing_plan .price_plan:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80%;
    content: '';
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    right: 0;
    margin: auto;
    background: linear-gradient(to right, #93115500, #ffffff80, #ff118200);
}

.plan_list {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* pricing plan page end */

/* contact page start */
.contact_box .img_cont img {
    width: 50px;
}

.contact_box .contac_cont h5 {
    font-size: 17px;
    font-weight: 600;
}

.contact_box .contac_cont p,
.contact_box .contac_cont a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.contact_contect_main p {
    font: normal normal 400 15px / 25px Inter;
}

.contact_contect_main h6,
.contact_contect_main h2 span {
    color: var(--main-color);
}

.contact-section {
    background-color: #fff;
    box-shadow: 0px 2px 5px 0px rgb(0, 0, 0);
    border-radius: 15px;
    padding: 25px 25px 25px 25px;
}

.sec-title .sub-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--main-color);
    margin: 0 0 16px;
    display: block;
}

.sec-title .title {
    font-size: 35px;
    font-weight: 800;
    line-height: 45px;
    color: #101010;
}

.contact-section .from-control {
    padding: 20px 0px 10px 0px;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #757575;
    background-color: transparent;
    border-radius: unset;
    color: #454545;
    outline: none;
    width: 100%;
}

.btn-part .main_btn {
    background: var(--main-color);
    padding: 13px 25px;
    font: normal normal 600 15px Inter;
}

.btn-part .main_btnlink {
    background: var(--main-color);
    padding: 13px 25px;
    font: normal normal 600 15px Inter;
}

#navbar-wrapper {
    display: none;
}

/* contact page end */

.footer_box ul li a img {
    max-width: 16px;
}

/*=============  Profile Card CSS Start ===============*/

.button-group h4,
a {
    font: "Inter", sans-serif;
    color: #ff1182;
    text-align: center;
}

.group_section span {
    display: inline-block;
    position: relative;
    padding: 5px 5px;
    background: rgba(245, 7, 146, 0.178);
    color: #333;
    font-size: 12px;
    border-radius: 7px;
    margin-bottom: 15px;
    margin-inline-end: 8px;
    box-shadow: 0 1px 0 #ff7fb3, 0px 2px 2px rgba(0, 0, 0, 0.5);
}

.button-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 0;
    position: relative;
}

.button {
    flex: 1;
    max-width: 200px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 7px;
    border: ridge 4px #e0dbde57;
    text-align: center;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(-45deg, #ff5ba1, #ff1182);
    box-shadow:
        0px 6px 6px rgba(0, 0, 0, 0.2),
        0px 5px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 45px;
    position: relative;
    overflow: hidden;
}

.whatsapp-button {
    background: linear-gradient(145deg, #60d96d, #16ee85);
    box-shadow:
        0px 6px 6px rgba(0, 0, 0, 0.2),
        0px 5px 5px rgba(0, 0, 0, 0.5);
}

.button:hover {
    color: white;
    transform: translateY(6px);
    box-shadow: 0px 10px 15px rgba(226, 223, 223, 0.315);
}

.button img {
    height: 18px;
    width: 18px;
}

@media (max-width: 575px) {

    .button,
    .whatsapp-button {
        min-width: 40%;
        max-width: 40%;
    }
}

/*=============  Profile Card CSS End ===============*/

/*=============  Timer button for play video start ===============*/

.timer_button {
    position: fixed;
    top: 80px;
    left: 50%;
    background: linear-gradient(145deg, #ff1182, #ff61a6, #ff9f9f);
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 12px;
    border: 5px solid #ff61a6;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 35px 30px rgba(255, 17, 130, 0.5);
    cursor: pointer;
    z-index: 999;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
    transform: translateX(-50%) translateY(-8px);
    overflow: visible;
    animation: pop-in 0.5s ease;
}

.timer_button::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 17, 130, 0.8), rgba(255, 97, 166, 0.5));
    box-shadow: 0 0 60px rgba(255, 17, 130, 1),
        0 0 80px rgba(255, 17, 130, 0.8),
        0 0 150px rgba(255, 17, 130, 0.6);
    z-index: -1;
    animation: pulse 1s infinite;
}

.timer_button:hover {
    background: linear-gradient(145deg, #ff61a6, #ff1182, #ff9f9f);
    border-color: #ff9f9f;
}

.second_button {
    position: fixed;
    top: 150px;
    left: 50%;
    background: linear-gradient(145deg, #00f260, #0575e6);
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 12px;
    border: 5px solid #00f260;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 35px 30px rgba(0, 242, 96, 0.5);
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
    /* Adjusted transition */
    transform: translateX(-50%) translateY(-8px);
    display: none;
    animation: pop-in 0.5s ease;
}

.second_button::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(0, 242, 96, 0.8), rgba(5, 117, 230, 0.5));
    box-shadow: 0 0 60px rgba(0, 242, 96, 1),
        0 0 80px rgba(5, 117, 230, 0.8),
        0 0 150px rgba(5, 117, 230, 0.6);
    z-index: -1;
    animation: pulse 1s infinite;
}

.second_button:hover {
    background: linear-gradient(145deg, #0575e6, #00f260);
    border-color: #05b85c;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

@keyframes pop-in {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -8px);
    }
}

.video_container {
    display: none;
    position: relative;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    background: linear-gradient(145deg, #ffffff, #eaeaea);
    margin: 20px auto;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.video_wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 15px;
}

.video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/*=============  Timer button for play video start ===============*/


/*======= Profile call & whatsapp start ========*/

.sticky_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

.profile_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 8px 10px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    border-color: #FFFFFF;
    box-shadow: 0 6px 6px rgba(2, 2, 2, 0.562);
}

.profile_whatsapp_btn {
    background-color: #25D366;
}

.profile_whatsapp_btn:hover {
    background-color: #1EAE58;
    color: white;
}

.profile_call_btn {
    background-color: #ff1182;
}

.profile_call_btn:hover {
    background-color: #e40a70;
    color: white;
}

.fab, .fas {
    margin-right: 5px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .profile_button {
        width: 140px;
        height: 45px;
        font-size: 16px;
        margin: 8px 10px;
    }
}

/*======= Profile call & whatsapp end ========*/

/*============= FAQ CSS AREA STARTS ===============*/
.choose-section-area .accordian-tabs-area .accordion .accordion-item {
    background: #030303;
    border-radius: 16px;
    border: 2px solid #ff1182;
    margin-bottom: 15px;
    margin-top: 0px;
    box-shadow: #1a1717 0px 2px 4px 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.choose-section-area .accordian-tabs-area .accordion .accordion-item:hover{
    transform: translateY(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);

}

.choose-section-area .accordian-tabs-area .accordion .accordion-item h5 button {
    box-shadow: #361f1f5d 4px 2px 1px;
    background: #ffffff;
    transition: all 0.4s;
    border-radius: 12px;
    color: #ff1182;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.choose-section-area .accordian-tabs-area .accordion .accordion-item h5 button::after {
    font-family: "Inter", sans-serif;
    background-image: none;
    transform: none;
    height: 18px;
    width: 18px;
    font-size: 18px;
}

.choose-section-area .accordian-tabs-area .accordion .accordion-item h5 button:not(.collapsed) {
    background: linear-gradient(to bottom left, #ff1182, rgba(202, 28, 115, 0.925), #ff1182);
    transition: all 0.4s;
    margin: auto;
    color: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: justify;
}

.choose-section-area .accordian-tabs-area .accordion .accordion-item h5 button:not(.collapsed)::after {
    transform: rotate(-45deg);
}

.choose-section-area .accordian-tabs-area .accordion .accordion-item .accordion-body {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    margin: 0;
    font-style: normal;
    line-height: 26px;
    opacity: 0.9;
    text-align: justify;
    padding: 0%;
}

.choose-section-area .accordian-tabs-area .accordion .accordion-item .accordion-body.body2 {
    padding: 0 5px 25px 5px !important;
}

.city_section {
    background-color: var(--blue-color);
    position: relative;
    padding: 20px 0;
    border-color: #ff1182;
}

.city_section::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.section-heading {
    text-align: center;
    font-size: 28px;
    color: #ff1182;
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.section-title {
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.city_card {
    background: linear-gradient(135deg, #ff1182, #ff4f98);
    padding: 10px 5px;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.city_card:hover {
    transform: translateY(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.city_content {
    display: none;
    background-color: var(--blue-color);
    border-radius: 12px;
    margin-top: 10px;
    padding: 12px;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.city_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city_content li {
    padding: 5px;
    border-bottom: 1px solid #ff1182;
    transition: background-color 0.2s ease;
}

.city_content li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.city_content li:last-child {
    border-bottom: none;
}

.city_content a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 5px;
    transition: color 0.2s ease;
}

.city_content a:hover {
    color: #ff1182;
}

.toggle-button {
    background-color: #ff1182;
    color: #ffffff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 5px;
    padding: 8px 12px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
    box-shadow: #1b1a1a9f 0px 2px 6px 0px, #1a1819cb 0px 2px 6px 2px;
}

.city_content,
.accordian-tabs-area {
    flex: 1 1 auto;
    overflow: auto;
}

.subheading {
    font-size: 24px;
    color: #ff1182;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 768px) {
    .city_section .row {
        flex-direction: column;
    }

    .col-lg-6, .col-xl-6 {
        max-width: 100%;
        width: 100%;
        flex: none;
    }
}

/* Simple Multi-Colored Dotted Line Divider for Mobile Devices */
.divider-mobile {
    display: none;
    width: 80%;
    height: 5px;
    margin: 30px auto;
    background: linear-gradient(to right, #ff1182, #ff4f98, #ff1182, #4f98ff, #82ff4f, #ff1182);
    background-size: 20px 20px;
    border-radius: 10px;
    position: relative;
    overflow: visible; /* Ensure line is always visible */
}

/* Media Query to Show Divider on Mobile */
@media (max-width: 768px) {
    .divider-mobile {
        display: block;
    }
}


@media (max-width: 768px) {
    .divider-mobile {
        display: block;
    }
}

/*============= Agra SECTION CSS ENDS ===============*/
.customer_details .active_user {
    display: inline-block;
    height: 8px;
    width: 8px;
    background-color: green;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
}

.customer_details .active_user::before {
    position: absolute;
    right: -6px;
    content: '';
    background: green;
    z-index: 1000;
    border: 0px solid #ffffff;
    border-radius: 30px;
    height: 25px;
    width: 25px;
    animation: pulsate 1s ease-out infinite;
    bottom: -8px;
}

@keyframes pulsate {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.active_user {
    display: inline-block;
    height: 8px;
    width: 8px;
    background-color: green;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
}

.active_user::before {
    position: absolute;
    right: -6px;
    content: '';
    background: green;
    z-index: 1000;
    border: 0px solid #ffffff;
    border-radius: 30px;
    height: 25px;
    width: 25px;
    animation: pulsate 1s ease-out infinite;
    bottom: -8px;
}

@keyframes pulsate {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Add this CSS for the ribbon */
.ribbon {
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 2;
    overflow: hidden;
    width: 100px;
    height: 100px;
    text-align: right;
}

.ribbon span {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    line-height: 10px;
    transform: rotate(45deg);
    width: 140px;
    display: block;
    background: linear-gradient(145deg, #ff1182, #e45791, #f30765, #e2196d, #e4528a);
    position: absolute;
    top: 20px;
    right: -40px;
    border-radius: 4px;
    padding: 5px 0;
}

.ribbon::before, .ribbon::after {
    content: '';
    position: absolute;
    z-index: -1;
}

/* Section Styling */
.city-selection-section {
    background: #0e1120;
}

/* Button Styling */
.dropdown-btn {
    background: #fff;
    width: fit-content;
    padding: 5px 10px 10px 5px;
    border-radius: 7px;
    position: relative;
    border: 2px solid var(--main-color);
    box-shadow: rgba(13, 18, 27, 0.788) 5px 5px 2px 1px;
    margin: 0 auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Button Depth Animation (Only Up-Down & Shadow Effect) */
@keyframes pressEffect {
    0% {
        transform: translateY(0);
        box-shadow: rgba(13, 18, 27, 0.788) 8px 8px 2px 1px;
    }
    50% {
        transform: translateY(3px);
        box-shadow: rgba(13, 18, 27, 0.4) 2px 2px 1px 0px;
    }
    100% {
        transform: translateY(0);
        box-shadow: rgba(13, 18, 27, 0.788) 8px 8px 2px 1px;
    }
}

/* Inner Button (Main Button) */
.dropdown-btn-main {
    font-size: 16px;
    background: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    color: var(--white-color);
    padding: 10px 10px;
    cursor: pointer;
    border: none;
    position: relative;
    border-radius: 7px;
    animation: pressEffect 1s infinite ease-in-out;
}

/* Dropdown Container */
.dropdown-list {
    display: none;
    max-width: 300px;
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    top: 103%;
    left: 0;
    background-color: #ffffff;
    opacity: 0.5;
    width: 100%;
    border: solid 2px var(--main-color);
    border-radius: 7px;
    box-shadow: rgba(13, 18, 27, 0.788) 5px 5px 2px 3px;
    z-index: 1000;
    transform: translateY(-20px);
}

/* Dropdown Links */
.dropdown-list a {
    background-color: #ff1182;
    color: var(--white-color);
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    margin: 8px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 7px;
    transition: background-color 0.3s ease;
    box-shadow: rgba(13, 18, 27, 0.788) 4px 4px 2px 1px;
}

/* Hover effect for dropdown items */
.dropdown-list a:hover {
    background-color: #ce0965;
}

/* Show Dropdown on Hover */
.dropdown-btn:hover .dropdown-list {
    display: block;
    animation: slideDown 0.5s forwards;
}

/* Keyframe for slide-down animation */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Back to Top Button CSS */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #ff1182 url(../images/back-to-top.webp) no-repeat center center;
    background-size: 70%;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s ease-in-out;
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Back to Top Button CSS */

/* Info Card Styles */
.info-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: #37383a78 0px 4px 4px 0px, #3c40439e 2px 4px 4px 2px;
    margin-bottom: 20px;
  }
  
  .info-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 10px 0;
    border-radius: 7px 7px 0 0;
    border-bottom: 2px solid #ff1182;
    background: #0e1120;
    box-shadow: #37383a78 0px 4px 4px 0px, #3c40439e 2px 4px 4px 2px;
  }
  
  .info-card-content {
    padding: 15px 0;
  }
  
  /* Custom Group Section Styles */
  .custom-group-section {
    border-radius: 8px; /* Rounded corners */
  }
  
  /* Search Widget Post Styles */
  .custom-group-section .search-widget_post {
    position: relative;
    padding: 5px 10px;
    color: #333; /* Dark text color */
    font-size: 12px;
    border-radius: 7px; /* Rounded corners */
    margin: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    background: rgba(245, 7, 146, 0.178);
    margin-inline-end: 8px;
    box-shadow: 0 1px 0 #ff7fb3, 0px 2px 2px rgba(0, 0, 0, 0.5);
  }
  
  .custom-group-section .search-widget_post:hover {
    background: rgba(245, 7, 146, 0.3); /* Darker pink on hover */
  }

  .custom-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: #37383a78 0px 4px 4px 0px, #3c40439e 2px 4px 4px 2px;
    margin-bottom: 20px;
  }
  
  .share-section {
    text-align: center;
  }
  
  .share-section p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    padding-top: 15px;
  }
  
  .share-icons ul {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .share-icons ul li a {
    font-size: 24px;
    color: #ff1182;
    transition: color 0.3s ease;
  }
  
  .share-icons ul li a:hover {
    color: #d40f60;
  }
  
  .more-ads {
    text-align: center;
    font-size: 16px;
  }
  
  .more-ads a {
    color: #ff1182;
    font-weight: bold;
    text-decoration: none;
  }
  
  .more-ads a:hover {
    text-decoration: underline;
  }
  
  .safety-tips {
    background: #0e1120;
    color: #fff;
    padding: 10px;
    border-radius: 7px;
    text-align: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    height: auto; /* Automatically adjust height */
  }
  
  .safety-slider {
    display: flex;
    transition: transform 1s ease;
    white-space: nowrap;
  }
  
  .slide {
    min-width: 100%;
    display: inline-block;
    white-space: normal;
  }
  
  .safety-tips span {
    background: #ffc107;
    color: #000;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 5px;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 768px) {
    .safety-tips {
      font-size: 14px; /* Smaller text size for mobile */
      padding: 5px;
    }
  
    .safety-tips span {
      font-size: 10px;
      padding: 2px 6px;
    }
  }
  
  .report-abuse {
    border: 1px solid #ff1182;
    padding: 15px;
    border-radius: 7px;
    background: #fff;
  }
  
  .report-abuse .title {
    font-size: 18px;
    font-weight: bold;
    color: #ff1182;
    margin-bottom: 10px;
  }
  
  .report-abuse p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .report-abuse a {
    color: #ff1182;
    text-decoration: none;
    font-weight: bold;
  }
  
  .report-abuse a:hover {
    text-decoration: underline;
  }
  


  /* General Styling */
.vip-stories-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Story Container */
.vip-stories-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vip-stories-container::-webkit-scrollbar {
    display: none;
}

/* Individual Story */
.vip-story {
    flex: 0 0 auto;
    width: 100px;
    height: 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.vip-story:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Story Image */
.vip-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    object-position: top; /* Moves the face higher in the frame */
}

/* VIP Badge (Adjusted to Avoid Covering Face) */
.vip-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(45deg, #ff1182, #da096a);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    z-index: 2;
}

/* Story Title */
.vip-story p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 6px;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verified-tag {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #fff;
    color: #1877f2;
    font-size: 14px;
    font-weight: bold;
    padding: 0px 5px;
    border-radius: 5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.212);
    z-index: 999;
}

/* Enhanced Terms & Conditions Styling */
.terms-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* Headings */
.terms-container h2 {
    color: #222;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
    border-bottom: 2px solid #ff3366;
    padding-bottom: 5px;
}

/* Paragraphs & Lists */
.terms-container p, .terms-container ul {
    color: #444;
    font-size: 18px;
    line-height: 1.8;
}

/* List Styling */
.terms-container ul {
    padding-left: 25px;
}

.terms-container ul li {
    margin-bottom: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

/* Emoji Icons Spacing */
.terms-container ul li::before {
    content: "";
    margin-right: 10px;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
        max-width: 90%;
    }

    .terms-container h2 {
        font-size: 22px;
    }

    .terms-container p, .terms-container ul li {
        font-size: 16px;
    }
}

/* Enhanced Terms & Conditions Styling */

/*============= custom-btn-box CSS Start ===============*/

/* Custom Button Wrapper */
.custom-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Custom Button Box */
.custom-btn-box {
    padding: 5px 7px;
    border: none;
    border-radius: 7px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: #23232478 0px 4px 4px 0px, #0f0f0f9e 2px 4px 4px 2px;
    letter-spacing: normal;
    position: relative;
    overflow: hidden;
}

/* Border Effect */
.custom-btn-box::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px dotted #ffffff;
    border-radius: 5px;
    pointer-events: none;
}

/* Hover Effect */
.custom-btn-box:hover {
    opacity: 0.8;
}

/* Custom Button Colors */
.red { background-color: #ff1182; } 
.black { background-color: #0e1120; }
.blue { background-color: #0b4e16; }
.green { background-color: #094b35; }
.purple { background-color: #740b45; }



.list-unstyled {
    color: #000;
    padding-left: 0;
    margin-bottom: 0;
}