body {
    background-color: #f5f5f5;
    font-family: "Nunito", sans-serif;
}

.pageLayout {
    display: flex;
}

.card-hover-effect:hover {
    box-shadow: 0 0 4px 1px rgb(8 9 8 / 36%);
}

.custom_input {
    border: 1px solid #fff;
    background: #000;
    padding: 3px 17px;
    border-radius: 27px;
    display: flex;
}

.custom_input input {
    flex: 1;
    color: #fff;
    padding: 0px;
    background-color: transparent;
    border: none;
}

.custom_input button {
    border-radius: 50%;
    position: relative;
    width: 30px;
    height: 30px;
}

.custom_input button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom_input input:focus {
    border: none;
    box-shadow: none;
}

.form-control:focus {
    background-color: transparent;
    color: #fff;
}

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

/* .header_section:before {
  position: absolute;
  content: "";
  top: -25px;
  left: -32px;
  width: 257px;
  height: 190px;
  background-image: url("./img/head2.png");
  background-repeat: no-repeat;
} */
.header_section:before {
    position: absolute;
    content: "";
    transform: rotateY(180deg); /* Use the standard property */
    top: 0;
    left: 0;
    width: 550px;
    height: 100vh;
    background-image: url("./img/head2.png");
    background-repeat: no-repeat;
    background-position: right left;
}

.header_section:after {
    position: absolute;
    content: "";
    top: 0px;
    right: 0px;
    width: 550px;
    height: 100vh;
    background-image: url("./img/head2.png");
    background-position: top right;
    background-repeat: no-repeat;
}

.search_bar {
    z-index: 1;
    position: relative;
    margin: 0 100px;
}

.top_blogs {
    position: relative;
    z-index: 5;
}

.top_blogs h3 {
    font-family: "Righteous", cursive;
    color: #fff;
    font-weight: 400;
    font-size: 24px;
}

.blog_card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.owl-carousel .item .blog_card {
    height: 315px;
}

.owl-carousel .item .blog_card .blog_card_img {
    height: 215px;
    overflow: hidden;
}

.recent-profiles .blog_card {
    height: 315px;
}

.recent-profiles .blog_card .blog_card_img {
    height: 215px;
    overflow: hidden;
}

.blog_card_menu {
    cursor: pointer;
    position: relative;
}

.blog_card_menu:hover .Card_menu {
    display: block;
}

/* .blog_card_menu:hover{
  transform: scale(1.1);
} */
.blog_card_menu .Card_menu {
    position: absolute;
    background-color: #fff;
    top: 20px;
    right: 5px;
    border-radius: 3px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    transition: all 0.2;
    animation: cardMenu 0.2s linear 1;
}

@keyframes cardMenu {
    from {
        transform: translateY(-10px);
    }

    to {
        transform: translateY(0px);
    }
}

.blog_card_menu .Card_menu ul {
    list-style: none;
    padding: 0px;
    margin-bottom: 0px;
}

.blog_card_menu .Card_menu ul li {
    padding: 4px 12px 4px 12px;
    border-bottom: 1px solid #b3b2b2;
}

.blog_card_menu .Card_menu ul li:hover {
    background-color: rgb(243, 243, 243);
}

.blog_card_menu .Card_menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
}

.blog_card hr {
    margin: 5px 0px;
    background-color: #cfcfcf;
}

.recent_blog_section .blog_card:hover {
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

.blog_card_head img {
    width: 25px !important;
    height: 25px;
    border-radius: 35px;
}

.blog_card_head svg {
    font-size: 16px;
    cursor: pointer;
}

.blog_card_head p {
    font-size: 14px;
    color: #076266;
}

.blog_card_body .cat_link {
    /* background: rgba(141, 27, 61, 0.1); */
    border-radius: 38px;
    /* padding: 0px 3px; */
    font-weight: 700;
    font-size: 14px;
    font-family: sans-serif;
    margin-bottom: 0px;
}

.blog_card_body a {
    text-decoration: none;
    color: #000000;
}

.blog_card_body a:hover {
    color: #0d0774;
}

.blog_card_body a p {
    margin-top: 0px;
    font-size: 10px;
    color: #263238;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 16px;
    margin-bottom: 0px;
    font-weight: 500;
}

.blog_card_footer button {
    border: none;
    background: rgba(38, 50, 56, 0.1);
    border-radius: 38px;
    padding: 2px 25px;
    font-size: 14px;
    font-weight: 700;
}

.blog_card_footer svg {
    background-color: red;
    color: red;
    cursor: pointer;
}

.owl-nav {
    position: absolute;
    top: -50px;
    right: 0px;
    z-index: 2;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    border: 1px solid rgb(209, 207, 207) !important;
    width: 20px;
    height: 20px;
    color: #fff !important;
    transition: 0.3s;
    position: relative;
    border-radius: 10px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff;
    color: #000 !important;
    transform: scale(1.2);
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    position: absolute;
    top: -1px;
    left: 7px;
    font-size: 42px;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 30px;
    height: 30px;
}

.header_menu {
    background-color: #fff !important;
    border-radius: 5px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.header_menu:before {
    width: 100px;
    height: 100px;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url("./img/menu1bg.png");
    background-size: 170px;
}

.header_menu:after {
    width: 100px;
    height: 100px;
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    background-image: url("./img/menu2bg.png");
    background-size: 130px;
}

.nav-link .item_img {
    width: 45px;
    height: 45px;
    background-color: red;
    border-radius: 30px;
    position: relative;
}

.nav-link .item_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item_img img {
    width: 25px;
}

.nav-link p {
    font-size: 12px;
    color: #076266;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: center;
    margin-top: 5px;
}

.nav-link {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
}

.nav-link:hover {
    transform: scale(0.9);
}

.nav-item.ative {
    position: relative;
}

.nav-item.ative::after {
    position: absolute;
    bottom: -4px;
    left: 0px;
    content: "";
    background: linear-gradient(90deg, #c04848 3.76%, #480048 100%);
    width: 100%;
    height: 8px;
    border-radius: 5px;
}

.login_logo img {
    width: 177px;
}

.login_modal_head {
    background: linear-gradient(90deg, #c04848 3.76%, #480048 100%);
}

.login_modal_head img {
    width: 160px;
}

.modal-content .nav-link.active {
    border-color: #fff !important;
}

.modal-content .nav-tabs {
    border-bottom: 0px;
}

.center_line {
    width: 1px;
    height: 40px;
    background-color: #000;
}

.login_tabs .nav-link {
    color: #757575;
}

.nav-tabs .nav-link.active {
    font-weight: 700;
    color: #480048;
}

.tab-content {
    min-height: 300px;
}

.tab-content .form-control {
    color: #000;
    border: 1px solid #480048;
}

.login_btn {
    border: none;
    color: #fff;
    background: linear-gradient(180deg, #c04848 3.76%, #480048 100%);
    font-size: 20px;
    border-radius: 4px;
}

.work-force-main-section {
    margin-left: 51px;
    background: white;
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 920px;
    }
}

@media screen and (max-width: 768px) {
    .search_bar {
        margin: 0 40px;
    }

    .work-force-main-section {
        margin-left: 0px;
    }

    .header_section::after {
        display: none;
    }

    .header_section::before {
        display: none;
    }

    .sideBar_div {
        display: none;
    }

    .top_blogs h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 425px) {
    .work-force-main-section {
        margin-left: 0px;
    }

    .search_bar {
        margin: 0 10px;
    }

    .side_logo {
        width: 177px;
    }

    .blog_card_head p {
        font-size: 10px;
    }

    .blog_card_body a p {
        font-size: 12px;
    }

    .blog_card_body .cat_link {
        font-size: 10px;
    }

    .blog_card_footer button {
        font-size: 12px;
    }
}
.profile-card {
    width: auto;
    border: none;
    border-radius: 15px;
    padding: 8px;
    background-color: #fff;
    position: relative;
    height: 370px;
}

.profile-card .user-upper-image {
    height: 100px;
}

.profile-card .user-upper-image img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.user-profile-images {
    position: relative;
}

.user-profile-images .profile img {
    height: 80px;
    width: 80px;
    margin-top: 2px;
}

.user-profile-images .profile {
    position: absolute;
    top: -50px;
    left: 38%;
    height: 90px;
    width: 90px;
    border: 3px solid #fff;

    border-radius: 50%;
}

.follow-button .follow {
    border-radius: 15px;
    padding-left: 20px;
    padding-right: 20px;
    height: 35px;
}

.follow-button .stats span {
    font-size: 29px;
    font-family: "Nunito", sans-serif;
}

.follow-button .stats h4 {
    font-family: "Nunito", sans-serif;
}

.follow-button span {
    font-family: "Nunito", sans-serif;
}

.follow-button h4 {
    font-family: "Nunito", sans-serif;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
               newslatter section
   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  */
.newsletter {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #00492e;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* justify-content: center; */
    padding: 30px 11px 0;
    position: relative;
}

@media only screen and (min-width: 1024px) {
    .newsletter {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 85px;
    }
    .newsletter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background-color: #00492e;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        /* -ms-flex-direction: column; */
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /* justify-content: center; */
        padding: 36px 19px 0;
        position: relative;
    }
}

.newsletter:before {
    content: " ";
    left: 0;
    top: 0;
    background: url(https://static.wikia.nocookie.net/643f0817-5bc1-414f-ac2a-936539ae3b20);
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.newsletter__info {
    max-width: 490px;
}

@media only screen and (min-width: 1024px) {
    .newsletter__heading {
        margin: 10px 22px 36px 0;
    }
}

.newsletter__heading {
    color: #ffc500;
    font-size: 36px;
    font-weight: 900;
    line-height: 45px;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.newsletter__small-heading {
    margin-bottom: 12px;
}

.newsletter__email {
    background-color: transparent;
    border: 1px solid #fff;
    border-width: 0 0 1px;
    color: #fff;
    margin-bottom: 16px;
    outline: none;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .newsletter__email {
        width: 255px;
    }
}

.newsletter__submit {
    background-color: #ffc500 !important;
    border-color: #ffc500 !important;
    color: #08252c;
    cursor: pointer;
}

.wds-button:not(.wds-is-text) {
    border-color: #00cdd0;
}

.wds-button:not(.wds-is-text):not(.wds-is-secondary) {
    background-color: #00cdd0;
}

.newsletter__submit {
    background-color: #ffc500 !important;
    border-color: #ffc500 !important;
    color: #08252c;
    cursor: pointer;
}

.wds-button {
    color: #0e191a;
    background: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: default;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 0.15px;
    line-height: 16px;
    margin: 0;
    min-height: 18px;
    outline: none;
    padding: 7px 18px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background-color, border-color, color;
    -o-transition-property: background-color, border-color, color;
    transition-property: background-color, border-color, color;
    vertical-align: top;
    appearance: none;
}

.newsletter__graphic {
    line-height: 0;
}

@media only screen and (min-width: 1024px) {
    .newsletter__graphic img {
        width: 501px;
    }
}

.newsletter__graphic img {
    width: 100%;
}

.card-icone-with-background-color {
    background-color: #f2f5f8;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-icone-with-background-color-1 {
    background-color: #f2f5f8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icone-with-background-color a:hover {
    color: rgb(38, 13, 181);
}
.card-icone-with-background-color-1 a:hover {
    color: rgb(38, 13, 181);
}

.profile-card-3-social-icone {
    background-color: #f2f5f8;
    border-radius: 7%;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card-3-social-icone a {
    color: #000000;
}

.card-icone-with-background-color a {
    color: #000000;
}
.card-icone-with-background-color-1 a {
    color: #000000;
    font-size: 20px;
}

.card-icone-with-background-color svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.card-icone-with-background-color-1 svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.work-force-categories {
    margin-top: 10px;
    margin-bottom: 40px;
}

.work-force-categories p {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.work-force-categories a p {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.work-force-categories a {
    text-decoration: none;
    color: black;
}

.work-force-categories a:hover {
    color: rgb(7, 8, 114);
}

.work-force-categories .work-force-image {
    display: flex;
    justify-content: center;
    /* margin-top: 28%; */
    font-size: 17px;
    margin-bottom: 5px;
    background-color: #f5f5f585;
    border-radius: 50%;
    padding: 12px;
    margin: 15px;
}

.work-force-cetegories-card {
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    border: 1px solid #eae9e999;
}

.work-force-cetegories-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 6px 0px;
}

.work-force-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-force-image img {
    width: 30px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-radius: 0;
}

.nav-tabs .nav-link.active {
    border-color: #007bff #007bff #fff;
}

.tab-content {
    border: 1px solid #007bff;
    padding: 15px;
    border-top: none;
}

.work-force-main-title {
    margin-top: 20px;
    margin-bottom: 0px;
}

.work-force-main-title .work-foce-title {
    font-size: 3rem;
    color: white;
    font-weight: 600;
    font-family: sans-serif;
    line-height: normal;
}

.work-force-main-title p {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    font-family: sans-serif;
    line-height: normal;
}

.papulor-categories-section .papulor-categories-card {
    border-radius: 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    padding: 15px;
    height: 100%;
}

.user-services-section .papulor-categories-card {
    border-radius: 5px;
    /* box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); */
    padding: 5px;
    height: 100%;
}

.user-services-section .papulor-categories-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.papulor-categories-section .papulor-categories-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.papulor-categories-section .papulor-categories-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-services-section .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0px;
}

.papulor-categories-section .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0px;
}

.papulor-categories-section a .card-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.user-services-section a .card-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.user-services-section a {
    color: #000000;
    text-decoration: none;
}

.papulor-categories-section a {
    color: #000000;
    text-decoration: none;
}

.user-services-section a {
    color: #000000;
    text-decoration: none;
}

.papulor-categories-section a:hover {
    color: #120357;
    text-decoration: none;
}

.user-services-section a:hover {
    color: #120357;
    text-decoration: none;
}

.user-services-section .places-count {
    font-size: 0.8rem;
    color: gray;
    margin-bottom: 0px;
}

.papulor-categories-section .places-count {
    font-size: 0.8rem;
    color: gray;
    margin-bottom: 0px;
}

.user-services-section .places-count {
    font-size: 0.8rem;
    color: gray;
    margin-bottom: 0px;
}

.papulor-categories-section .arrow-icon {
    font-size: 0.7rem;
    color: gray;
}

.user-services-section .arrow-icon {
    font-size: 0.7rem;
    color: gray;
}

/* ########################## User Profile card 3 css start here ################################# */
.papulor-categories-section {
    background: white;
    /* padding: 1px; */
    margin: 24px 0px;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.user-services-section .icon-container {
    /* background-color: rgb(199, 197, 197); */
    border-radius: 5px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 50px;
}

.user-services-section .icon-container img {
    width: 50px;
    height: 50px;
}

.user-profile-card-3 .image img {
    max-width: 150px;
    max-height: 150px;
    min-height: auto;
}

.user-profile-card-3 h4 {
    font-size: 14px;
    font-family: sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
}

.user-profile-card-3 span {
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 300;
}

.user-profile-card-3 .stats .number1 .number2 .number3 {
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 300;
}

.profile-card-3 .user-profile-card-3 {
    width: auto;
    border: none;
    /* border-radius: 10px; */
    border-radius: 5px;

    background-color: #fff;
}

.user-profile-card-3 .stats {
    margin-top: 10px;
    background: #f2f5f8 !important;
    color: #000 !important;
    display: flex;
    justify-content: space-between;
    color: white;
    border-radius: 8px;
    margin-bottom: 10px;
}

.user-profile-card-3 .articles {
    font-size: 10px;
    color: #a1aab9;
}

.user-profile-card-3 .number1 {
    font-weight: 500;
}

.user-profile-card-3 .followers {
    font-size: 10px;
    color: #a1aab9;
}

.user-profile-card-3 .number2 {
    font-weight: 500;
}

.user-profile-card-3 .rating {
    font-size: 10px;
    color: #a1aab9;
}

.user-profile-card-3 .number3 {
    font-weight: 500;
}

.s1-profile-card a h6 {
    font-size: 14px;
    font-family: sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
    text-decoration: none;
}

.s1-profile-card {
    /* box-shadow: rgba(30, 17, 3, 0.2) -1px 2px 2px 1px; */
    border: 1px solid #f3f3f3;
}

.s1-profile-card a {
    text-decoration: none;
    color: black;
}

.s1-profile-card a:hover {
    color: #120357;
}

.s1-profile-card p {
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 300;
    margin-bottom: 5px;
}

.s1-stats {
    margin: 0px;
    padding: 7px 0px;
    border-radius: 5px;
    background-color: #f2f5f8;
}

.s1-stats h5 {
    font-size: 12px;
    font-family: sans-serif;
    margin-bottom: 3px;
    font-weight: 300;
}

.s1-stats p {
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 800;
    margin-bottom: 0px;
}

/* @@@@@@@@@@@@@@@@@@@@@@ Story of Day Section css start here  @@@@@@@@@@@@@@@ */
.story-serial {
    border-radius: 3px;
    padding: 12px 14px;
    background-color: #f5f5f5;
    font-weight: bold;
    margin-right: 10px;
    color: #7d7d7d;
}

.accordion-button:not(.collapsed) {
    color: #3b3b3b;
    line-height: 1.5;
    font-size: 0.9rem;
    background-color: #ffffff;
    box-shadow: inset 0 0px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    display: none;
}

.accordion-header {
    border: 2px solid #f5f4f4;
    margin-top: 2px;
}

.accordion-button.collapsed::after {
    transform: rotate(0deg) !important;
    /* Ensure downward pointing arrow in collapsed state */
}

.accordion-button.collapsed::after {
    transform: rotate(0deg);
    /* Arrow will point downward in collapsed state */
}

/* story of the day css start here */
.story-of-the-day {
    background-color: white;
    padding: 1px;
    margin-bottom: 20px;
}

/* .story-of-the-day .story-points{
  border-right: 2px solid #c3c3c366 ;
} */
.story-of-the-day .accordion-item {
    border-bottom: 2px solid #c3c3c366;
}

.story-of-the-image img {
    height: 380px;
    width: auto;
    border-radius: 5px;
}

/* @@@@@@@@@@@@@ Side bar sub menu   @@@@@@@@@@@@@@@  */

.sideBar_div .nav-links li .sub-menu {
    padding: 10px;
    margin-top: -10px;
    background: #fff;
    display: none;
}

.sideBar_div .nav-links li.showMenu .sub-menu {
    display: block;
}

.sideBar_div .nav-links li .sub-menu a {
    color: #1d1b31;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sideBar_div .nav-links li .sub-menu a:hover {
    opacity: 1;
}

.sideBar_div .close .nav-links li .sub-menu {
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
}

.sideBar_div .close .nav-links li:hover .sub-menu {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
}

.sideBar_div .nav-links li .sub-menu .link_name {
    display: none;
}

.sideBar_div .close .nav-links li .sub-menu .link_name {
    font-size: 18px;
    opacity: 1;
    display: block;
}

.sideBar_div .nav-links li .sub-menu.blank {
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
}

.sideBar_div .nav-links li:hover .sub-menu.blank {
    top: 50%;
    transform: translateY(-50%);
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    z-index: 100;
    transition: all 0.5s ease;
    background-color: #f8f9fa;
}

.sidebar .logo-details {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
}

.sidebar .logo-details i {
    font-size: 30px;
    color: #11101d;
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
}

.sidebar .logo-details .logo_name {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    transition-delay: 0.1s;
}

.sidebar.close .logo-details .logo_name {
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
}

.sidebar .nav-links {
    height: 100%;
    padding: 30px 0 150px 0;
    overflow: auto;
}

.sidebar.close .nav-links {
    overflow: visible;
}

.sidebar .nav-links::-webkit-scrollbar {
    display: none;
}

.sidebar .nav-links li {
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
}

/* .sidebar .nav-links > li.active:before,
.sidebar .nav-links > li:before{
  position:absolute;
  left:0;
  top:0;
  content:'';
  width:4px;
  height:100%;
  background:#93181a;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  border-top-right-radius:5px;
  border-top-right-radius:5px;
} */
.sidebar .nav-links li.active:before,
.sidebar .nav-links li:hover:before {
    opacity: 1;
}

.sidebar .nav-links li .iocn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar.close .nav-links li .iocn-link {
    display: block;
}

.sidebar .nav-links li i {
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
    color: #11101d;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar .nav-links li.active i,
.sidebar .nav-links li:hover i {
    color: #93181a;
}

.sidebar .nav-links li.showMenu i.arrow {
    transform: rotate(-180deg);
}

.sidebar.close .nav-links i.arrow {
    display: none;
}

/* .sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
} */
/* .sidebar .nav-links li a .link_name{
  font-size: 16px;
  font-weight: 400;
  color: #11101d;
  transition: all 0.4s ease;
} */
.sidebar .nav-links li.active a .link_name,
.sidebar .nav-links li:hover a .link_name {
    color: #93181a;
}

/* .sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
} */
.sidebar .nav-links li .sub-menu {
    /* padding: 6px 6px 14px 80px; */
    margin-top: -10px;
    background: #fff;
    display: none;
}

.sidebar .nav-links li.showMenu .sub-menu {
    display: block;
}

.sidebar .nav-links li .sub-menu a {
    color: #1d1b31;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 2;
    transition: all 0.3s ease;
}

.sidebar.close .nav-links li .sub-menu {
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 3px;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
    border: 1.2px solid rgb(205, 205, 205);
}

.sidebar.close .nav-links li:hover .sub-menu {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    padding: 25px;
}

.sidebar .nav-links li .sub-menu .link_name {
    display: none;
}

.sidebar.close .nav-links li .sub-menu .link_name {
    font-size: 18px;
    opacity: 1;
    display: block;
}

.sidebar .nav-links li .sub-menu.blank {
    opacity: 1;
    pointer-events: auto;
    /* padding: 3px 20px 6px 16px; */
    opacity: 0;
    pointer-events: none;
}

.sidebar .nav-links li:hover .sub-menu.blank {
    top: 50%;
    transform: translateY(-50%);
}

.sidebar .profile-details {
    position: fixed;
    bottom: 0;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1d1b31;
    padding: 12px 0;
    transition: all 0.5s ease;
}

.sidebar.close .profile-details {
    background: none;
}

.sidebar.close .profile-details {
    width: 78px;
}

.sidebar .profile-details .profile-content {
    display: flex;
    align-items: center;
}

.sidebar .profile-details img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 14px 0 12px;
    background: #1d1b31;
    transition: all 0.5s ease;
}

.sidebar.close .profile-details img {
    padding: 10px;
}

.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.sidebar .profile-details .job {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.5;
    white-space: nowrap;
}

.sidebar .profile-details i.bx {
    min-width: 50px;
}

.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job {
    display: none;
}

.sidebar .profile-details .job {
    font-size: 12px;
}

.home-section {
    position: relative;
    background: #e4e9f7;
    height: 100vh;
    left: 260px;
    width: calc(100% - 260px);
    transition: all 0.5s ease;
}

.sidebar.close ~ .home-section {
    left: 78px;
    width: calc(100% - 78px);
}

.home-section .home-content {
    height: 60px;
    display: flex;
    align-items: center;
}

.home-section .home-content .bx-menu,
.home-section .home-content .text {
    color: #11101d;
    font-size: 35px;
}

.home-section .home-content .bx-menu {
    margin: 0 15px;
    cursor: pointer;
}

.home-section .home-content .text {
    font-size: 26px;
    font-weight: 600;
}

@media (max-width: 420px) {
    .sidebar.close .nav-links li .sub-menu {
        display: none;
    }
}

.sub-menu .sub-menu-title h5 {
    font-size: 14px;
    display: flex;
    justify-content: left;
    font-weight: 700;
    font-family: sans-serif;
    padding-left: 0px;
    color: #08252c;
}

.sub-menu .sub-menu-card {
    border-radius: 2px;
    /* box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.125); */
    border: 2px solid #f5f5f5;
    margin: 2px;
}

.sub-menu .sub-menu-card img {
    width: auto;
    /* height: auto; */
    border-bottom: 2px solid red;
}

.menuitem .sub-menu {
    width: 400px;
}

.sub-menu-card {
    width: 100%;
}

.sub-menu-card img {
    width: 100%;
    height: 110px;
    object-fit: fill;
}

.sub-menu-card p {
    margin-top: 5px;
    font-size: 14px;
    display: flex;
    justify-content: left;
    font-family: sans-serif;
    padding: 0px 5px;
    text-transform: capitalize;
    color: #08252c;
    font-weight: 900;
}

.sub-menu-card .sub-menu-title2 {
    margin-top: 4px;
    font-size: 10px;
    display: flex;
    justify-content: left;
    font-family: sans-serif;
    padding: 2px 7px;
    text-transform: capitalize;
    color: #08252c;
    font-weight: 600;
}

/* sidebar with sub manu  css end here  */

#user-profile-detail-1 {
    background: linear-gradient(90deg, #c04848 3.76%, #480048 100%);
}

.user-profile-detail-1 .user-profile-detail-1-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    background-color: #a9233b;
    border: 5px solid white;
}

.user-profile-detail-1 .main-title {
    color: white;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: normal;
    margin-bottom: 2px;
}

.user-profile-detail-1 .user-dec {
    color: white;
    font-family: sans-serif;
    font-weight: 500;
}

.user-profile-detail-1 .main-title-prf {
    font-size: 23px;
    color: white;
    font-family: sans-serif;
    font-weight: 600;
    line-height: normal;
}

.user-profile-detail-navbar {
    background-color: #000;
}

.user-profile-detail-navbar li a {
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.user-profile-detail-navbar li a:hover {
    border-bottom: 2px solid #ffffff;
    color: white;
}

.user-social-icone1 span {
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 3px;
    margin-top: 5px;
}

.user-social-icone1 a {
    color: white;
    text-decoration: none;
    line-height: normal;
}

.user-social-icone1 a p {
    font-size: 15px;
    font-family: sans-serif;
    justify-content: center;
    /* margin-top: 5px; */
    margin-left: 10px;
}

/* ####################### user portfolio gallery section ##################### */
.portfolio-menu {
    text-align: center;
}

.portfolio-menu ul li {
    display: inline-block;
    margin: 0;
    list-style: none;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.portfolio-item .selfie img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.user-services-section .icon-bg {
    background-color: #2ddc12;
    /* Light red background */
    border-radius: 5px;
    /* Rounded corners */
    padding: 5px;
    color: #044f10;
    /* Icon color */
}

.user-services-section ul li a {
    text-decoration: none;
    color: black;
}

/* user review section  */
.review-box {
    /* border: 1px solid #ddd; */
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 20px;
    padding-bottom: 0px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    border: 1px solid #ececec75;
}

.review-box1 {
    /* border: 1px solid #ddd; */
    padding: 15px;
    border-radius: 5px;
    background-color: #fafafa;
    margin-bottom: 10px;
    padding-bottom: 0px;
}

.rating-box {
    background-color: #fafafa;
    color: #030303;
    padding: 10px;
    border-radius: 5px;
    font-size: 24px;
}

.rating-box span {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.rating-box p {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.rating-stars .fa-star {
    color: orange;
    /* Color for filled stars */
    cursor: pointer;
    font-size: 40px;
}

.rating-stars .fa-star-o {
    color: lightgray;
    cursor: pointer;
    font-size: 40px;
}

.rating-stars .fa-star:hover,
.rating-stars .fa-star:hover ~ .fa-star {
    color: orange;
    /* Color for hovered stars */
    cursor: pointer;
    font-size: 40px;
}

.badge-custom {
    background-color: #e0f7fa;
    color: #00796b;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 5px;
}

.review-content {
    margin-top: 15px;
}

.review-tags {
    margin-top: 10px;
}

.icon-actions {
    font-weight: bold;
}

.icon-actions a {
    color: #333;
    text-decoration: none;
    margin-right: 30px;
}

.icon-actions a i {
    margin-right: 5px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-date {
    color: #999;
    font-size: 14px;
}

.three-dots {
    font-size: 18px;
    color: #999;
    margin-left: 10px;
}

.review-section {
    background-color: white;
    /* Light background for reviews */
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    /* border: 2px solid rgba(210, 210, 210, 0.344); */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    border: 1px solid #ececec75;
}

.user-review-section .strt-rev {
    color: #08252c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

#exampleFormControlTextarea1 {
    background-color: #fafafa !important;
    background-clip: padding-box;
    border: 1px solid #f7f7f7 !important;
}

.user-social-icone1 .user-custom-button {
    border: 2px solid rgba(255, 255, 255, 0.832) !important;
    color: rgb(0, 0, 0) !important;
    background-color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.user-social-icone1 .user-custom-button:hover {
    background-color: transparent !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.user-social-icone-2 .user-ctm-btn-2 {
    border: 1px solid rgb(212, 211, 211);
    background-color: transparent;
    color: rgb(255, 255, 255) !important;
    font-weight: 600;
}

.user-social-icone-2 .user-ctm-btn-2:hover {
    border: 1px solid rgb(212, 211, 211);
    background-color: white;
    color: rgb(0, 0, 0) !important;
    font-weight: 600;
}

/* @@@@@@@@@@ Profile Social Buttons @@@@@@@@@@@@@@@ */
/* .user-social-icone1 a {
  border: 1px solid rgb(209, 209, 209);
  background-color: rgb(255, 255, 255);
  color:black !important;
 font-weight: 600;

} */

:root {
    --fandom-theme-main-color: #460084;
    --fandom-theme-text-color: #fff;
    --fandom-theme-accent-color: #dfec24;
    --fandom-theme-card-tint-color: transparent;
    --fandom-theme-card-tint-blend-mode: multiply;
    --fandom-theme-card-gradient-direction: to bottom;
    --fandom-theme-card-gradient-start-color: rgba(70, 0, 132, 0);
    --fandom-theme-card-gradient-stop-color: #460084;
    --fandom-theme-card-gradient-stop-value: 100%;
    --fandom-theme-card-title-color: #fff;
    --fandom-theme-card-title-hover-color: #dfec24;
    --fandom-theme-card-title-background: transparent;
    --fandom-theme-card-title-hover-background: transparent;
    --fandom-theme-card-title-underline-color: #dfec24;
    --fandom-theme-card-title-underline-hover-color: #fff;
}

.fandom-theme-4 {
    --fandom-theme-main-color: #002a32;
    --fandom-theme-text-color: #fff;
    --fandom-theme-accent-color: #00d6d6;
    --fandom-theme-card-tint-color: #ff6a64;
    --fandom-theme-card-tint-blend-mode: multiply;
    --fandom-theme-card-gradient-direction: to bottom;
    --fandom-theme-card-gradient-start-color: rgba(0, 42, 50, 0);
    --fandom-theme-card-gradient-stop-color: #002a32;
    --fandom-theme-card-gradient-stop-value: 100%;
    --fandom-theme-card-title-color: #fff;
    --fandom-theme-card-title-hover-color: #00d6d6;
    --fandom-theme-card-title-background: transparent;
    --fandom-theme-card-title-hover-background: transparent;
    --fandom-theme-card-title-underline-color: #00d6d6;
    --fandom-theme-card-title-underline-hover-color: #fff;
}

body {
    font-family: Rubik, Helvetica, Arial, sans-serif;
    color: #39424d;
    font-size: 16px;
    line-height: 1.5em;
}

.feed-layout {
    background-color: white;
    overflow: hidden;
    position: relative;
    margin-left: 45px;
}

.dotted-background__wrapper {
    position: relative;
}

.dotted-background {
    height: 180px;
    left: 0;
    overflow: visible;
    position: absolute;
    right: 0;
    top: -10vw;
    -webkit-transform: skewY(-8deg);
    -ms-transform: skewY(0deg);
    transform: skewY(0deg);
}

@media only screen and (min-width: 768px) {
    .dotted-background {
        height: 556px;
    }
}

.dotted-background__dots {
    bottom: -175px;
    height: 325px;
    -webkit-mask-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(-10%, hsla(0, 0%, 100%, 0)),
        color-stop(80%, #fff),
        to(hsla(0, 0%, 100%, 0))
    );
    -webkit-mask-image: -webkit-linear-gradient(
        bottom,
        hsla(0, 0%, 100%, 0) -10%,
        #fff 80%,
        hsla(0, 0%, 100%, 0)
    );
    mask-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(-10%, hsla(0, 0%, 100%, 0)),
        color-stop(80%, #fff),
        to(hsla(0, 0%, 100%, 0))
    );
    mask-image: linear-gradient(
        0deg,
        hsla(0, 0%, 100%, 0) -10%,
        #fff 80%,
        hsla(0, 0%, 100%, 0)
    );
    position: absolute;
    -webkit-transform: skewY(3deg);
    -ms-transform: skewY(3deg);
    transform: skewY(0deg);
    width: 100vw;
}

@media only screen and (min-width: 768px) {
    .dotted-background__dots {
        bottom: -210px;
    }
}

.feed-layout__wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    .feed-layout__wrapper {
        margin: 0 auto;
    }
}

/* @media only screen and (min-width: 1280px) {
  .feed-layout__wrapper {
      width: 1244px;
  }
} */

.feed-layout__container {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: "main main main main main main main main main main main main";
}

@media only screen and (min-width: 1280px) {
    .feed-layout__container {
        grid-template-areas: "left left main main main main main main main right right right";
    }
}

/* @@@@@@@@@@@@@@@@@@@@ button css login @@@@@@@@@@@@@@@@@@@@@  */
.global-registration-buttons.topics-buttons {
    top: 30px;
    right: 0;
    --wds-primary-button-background-color: #00492e;
    --wds-primary-button-background-color--hover: #b80099;
    --wds-primary-button-label-color: #fff;
    --wds-secondary-button-label-color: #0e191a;
    --wds-secondary-button-label-color--hover: #20393b;
}

.global-registration-buttons {
    position: absolute;
    top: 12px;
    right: 47px;
    z-index: 200;
    --wds-primary-button-background-color: #ffc500;
    --wds-primary-button-background-color--hover: #ffd64d;
    --wds-primary-button-label-color: #0e191a;
    --wds-secondary-button-label-color: #f5f3f5;
    --wds-secondary-button-label-color--hover: #ded7de;
}

.global-registration-buttons
    .wds-button:not(.wds-is-text):not(.wds-is-primary) {
    color: var(--wds-secondary-button-label-color);
    border-color: var(--wds-secondary-button-label-color);
    margin-right: 5px;
}

.wds-button.wds-is-secondary {
    border-color: #5f7a7b;
    color: #5f7a7b;
}

.wds-button:not(.wds-is-text) {
    border-color: #00cdd0;
}

a.wds-button,
button.wds-button {
    cursor: pointer;
}

.wds-button {
    color: #0e191a;
    background: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: default;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 0.15px;
    line-height: 16px;
    margin: 0;
    min-height: 18px;
    outline: none;
    padding: 7px 18px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background-color, border-color, color;
    -o-transition-property: background-color, border-color, color;
    transition-property: background-color, border-color, color;
    vertical-align: top;
    appearance: none;
}

.wds-button {
    color: #0e191a;
    background: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: default;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 0.15px;
    line-height: 16px;
    margin: 0;
    min-height: 18px;
    outline: none;
    padding: 7px 18px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background-color, border-color, color;
    -o-transition-property: background-color, border-color, color;
    transition-property: background-color, border-color, color;
    vertical-align: top;
    appearance: none;
}

.global-registration-buttons
    .wds-button:not(.wds-is-text):not(.wds-is-secondary) {
    background-color: var(--wds-primary-button-background-color);
    border-color: var(--wds-primary-button-background-color);
    color: var(--wds-primary-button-label-color);
}

.global-registration-buttons.topics-buttons {
    top: 30px;
    right: 0;
    --wds-primary-button-background-color: #00492e;
    --wds-primary-button-background-color--hover: #b80099;
    --wds-primary-button-label-color: #fff;
    --wds-secondary-button-label-color: #0e191a;
    --wds-secondary-button-label-color--hover: #20393b;
}

.global-registration-buttons {
    position: absolute;
    top: 12px;
    right: 47px;
    z-index: 200;
    --wds-primary-button-background-color: #ffc500;
    --wds-primary-button-background-color--hover: #ffd64d;
    --wds-primary-button-label-color: #0e191a;
    --wds-secondary-button-label-color: #f5f3f5;
    --wds-secondary-button-label-color--hover: #ded7de;
}

.wds-button .wds-icon:not(:only-child):first-child {
    margin-right: 6px;
}

.wds-button .wds-icon {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    pointer-events: none;
}

svg:not(:root) {
    overflow: hidden;
}

.wds-icon-small {
    height: 18px;
    min-width: 18px;
    width: 18px;
}

.wds-icon {
    fill: currentColor;
    height: 24px;
    min-width: 24px;
    width: 24px;
}

.global-registration-buttons
    .wds-button:not(.wds-is-text):not(.wds-is-secondary) {
    background-color: var(--wds-primary-button-background-color);
    border-color: var(--wds-primary-button-background-color);
    color: var(--wds-primary-button-label-color);
}

.global-registration-buttons
    .wds-button:not(.wds-is-text):not(.wds-is-secondary) {
    background-color: var(--wds-primary-button-background-color);
    border-color: var(--wds-primary-button-background-color);
    color: var(--wds-primary-button-label-color);
}

.wds-button {
    color: #0e191a;
    background: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: default;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 0.15px;
    line-height: 16px;
    margin: 0;
    min-height: 18px;
    outline: none;
    padding: 7px 18px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background-color, border-color, color;
    -o-transition-property: background-color, border-color, color;
    transition-property: background-color, border-color, color;
    vertical-align: top;
    appearance: none;
}

.recent_blog_section {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.feed-layout__container {
    display: grid; /* or -ms-grid if you need IE support */
    grid-gap: 10px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: "main main main main main main main main main main main main";
}

@media only screen and (min-width: 1280px) {
    /* .feed-layout__container {
      grid-template-areas: "left left main main main main main main main right right right";
  } */
}

.cate-banner-profile-image img {
    border-radius: 50%;
    width: 150px;
    height: auto;
}

.cate-banner-title h1 {
    font-size: 4rem;
    font-weight: 900;
    /* margin-top: 3rem; */
    /* display: flex; */
    justify-content: center;
    color: white;
    font-family: "Libre Baskerville", serif;
}

.cate-banner-title h5 {
    font-size: 1.2rem;
    font-weight: 400;
    /* margin-top: 3rem; */
    /* display: flex; */
    justify-content: center;
    color: white;
    font-family: "Libre Baskerville", serif;
}

.cate-banner-title {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.cate-banner-profile-image {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.advertisement-card img {
    width: 230px;
}

.advertisement-card {
    text-align: center;
}

.advertisement-card img {
    max-width: 100%;
    height: auto;
}

.advertisement-text {
    color: #5f7a7b;
    font-size: 10px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 5px;

    /* Space between image and text */
}

@media only screen and (min-width: 768px) {
    .advertisement-text {
        font-size: 12px;
        /* Adjust font size for larger screens */
    }
}

.detail-page-banner img {
    width: 100%;
}

@media only screen and (min-width: 768px) and (min-width: 1280px) {
    .article-header__title.is-video {
        margin-left: 104px;
        margin-right: 104px;
    }
}

@media only screen and (min-width: 768px) {
    .article-header__title.is-video {
        margin: 36px 0 0;
    }
}

@media only screen and (min-width: 1280px) {
    .article-header__title.is-video {
        margin-left: 104px;
        margin-right: 104px;
    }
}

.article-header__title.is-video {
    margin: 24px 0 0;
}

@media only screen and (min-width: 1024px) {
    .article-header__title {
        margin-left: 0 !important;
        padding: 0px 21px;
    }
}

@media only screen and (min-width: 768px) and (min-width: 1280px) {
    .article-header__title {
        margin-left: 104px;
        margin-right: 104px;
    }
}

@media only screen and (min-width: 768px) {
    .article-header__title {
        margin: -78px 0 0;
    }
}

@media only screen and (min-width: 1280px) {
    .article-header__title {
        margin-left: 104px;
        margin-right: 104px;
    }
}

.article-header__title {
    margin: -60px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: calc(100% - 18px);
}

@media only screen and (min-width: 1280px) {
    .article-header__title > h1 {
        font-size: 42px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 768px) {
    .article-header__title > h1 {
        font-size: 36px;
        line-height: 42px;
    }
}

.article-header__title > h1 {
    background-color: #dfec24;
    background-color: var(--fandom-theme-accent-color);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    color: #0e191a;
    display: inline;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
    padding: 0 6px;
}

@media only screen and (min-width: 1024px) {
    .article-header__attribution {
        margin-left: 22px;
    }
}

.article-header__attribution {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.article-header__author,
.article-header__timeago {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    height: 34px;
    line-height: 1;
    padding: 0 12px;
}

.article-header__author {
    color: #dfec24;
    color: var(--fandom-theme-accent-color);
    font-weight: 500;
    padding-right: 0;
    position: relative;
    text-decoration: none;
}

.article-header__author {
    color: #dfec24;
    color: var(--fandom-theme-accent-color);
    font-weight: 500;
    padding-right: 0;
    position: relative;
}

.article-header__author,
.article-header__timeago {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    height: 34px;
    line-height: 1;
    padding: 0 12px;
}

.article-header__author,
.article-header__timeago {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    height: 34px;
    line-height: 1;
    padding: 0 12px;
}

.article-header__timeago {
    color: #fff;
}

@media only screen and (min-width: 1024px) {
    .article-sponsor {
        margin-left: 48px;
    }
}

@media only screen and (min-width: 768px) {
    .article-sponsor {
        margin-bottom: 24px;
    }
}

.article-sponsor {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-left: 20px;
    text-transform: uppercase;
    margin-top: 16px;
}

.article-sponsor__logo {
    margin-left: 12px;
    max-height: 45px;
    max-width: 200px;
}

.article-sponsor__logo img {
    border-style: none;
}

.article-content {
    font-family: Rubik, Helvetica, Arial, sans-serif;
    color: #002a32;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
}

@media only screen and (min-width: 1280px) {
    .article-content hr,
    .article-content p {
        margin-left: 104px;
        margin-right: 104px;
    }
}

.article-content hr,
.article-content p {
    margin: 0 0 30px;
}

.article-content {
    font-family: Rubik, Helvetica, Arial, sans-serif;
    color: #002a32;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    margin-left: 20px;
}

@media only screen and (min-width: 1024px) {
    .article-attribution {
        margin-top: 48px;
        min-height: 115px;
        padding: 0;
    }
}

@media only screen and (min-width: 1280px) {
    .article-attribution {
        margin-left: 104px;
        margin-right: 104px;
    }
}

.article-attribution {
    margin: 0 0 18px;
    color: #5f7a7b;
    -webkit-box-ordinal-group: 101;
    -ms-flex-order: 100;
    order: 100;
    position: relative;
    margin-left: 18px;
}

.article-attribution:before {
    background-color: #bed1cf;
    content: " ";
    display: block;
    height: 1px;
    width: 100%;
    /* margin-left: 18px; */
}

@media only screen and (min-width: 1024px) {
    .article-attribution__avatar {
        float: none;
        margin: 0;
        position: absolute;
        top: 20px;
    }
}

.article-attribution__avatar {
    border-radius: 50%;
    float: left;
    height: 90px;
    margin-bottom: 14px;
    margin-right: 12px;
    margin-top: 18px;
    width: 90px;
}

@media only screen and (min-width: 1024px) {
    .article-attribution__byline {
        display: block;
        height: auto;
        margin-left: 106px;
        margin-top: 40px;
    }
}

.article-attribution__byline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 90px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 18px;
}

.article-attribution__name {
    color: #00d6d6;
    cursor: pointer;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.17;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
    text-decoration: none;
}

.article-attribution__name a {
    text-decoration: none;
    color: #088488;
}

.article-attribution__username {
    font-size: 14px;
    line-height: 1.17;
}

/* @@@@@@@@@@@@@@@@@@@ Media Query @@@@@@@@@@@@@@@@@@@  */
@media only screen and (min-width: 1024px) {
    .article-layout__main {
        -ms-grid-column-span: 8;
    }
}

@media only screen and (min-width: 1280px) {
    .article-layout__main {
        -ms-grid-column-span: 9;
    }
}

@media only screen and (min-width: 1024px) {
    .article-header__image,
    .article-header__video {
        padding-top: 30px;
    }
}

@media only screen and (min-width: 768px) {
    .article-header__image,
    .article-header__video {
        padding-top: 24px;
    }
}

@media only screen and (min-width: 1280px) {
    .article-header__image,
    .article-header__video {
        margin-left: 12px;
        margin-right: 12px;
        width: calc(100% - 24px);
    }
}

@media only screen and (min-width: 768px) {
    .article-header__image,
    .article-header__video {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

.article-header__image,
.article-header__video {
    margin-bottom: 30px;
    margin-left: -18px;
    margin-right: -18px;
    width: calc(100% + 36px);
}

.cate-banner-profile-image .banner-profile-border {
    width: fit-content;
    padding: 5px;
    /* Adjust padding to control border width */
    border-radius: 50%;
    background-image: linear-gradient(
        43deg,
        #4158d0 0%,
        #c850c0 46%,
        #ffcc70 100%
    );
}

.cate-banner-profile-image .banner-profile-border img {
    display: block;
    border: 5px solid white;
    border-radius: 50%;
}

@media (max-width: 600px) {
    .cate-banner {
        display: flex;
        flex-direction: column-reverse;
    }

    .cate-banner-profile-image img {
        border-radius: 50%;
        width: 85px;
        height: auto;
    }
}

@media (min-width: 375px) and (max-width: 375px) and (min-height: 667px) and (max-height: 667px) {
    .cate-banner {
        display: flex;
        flex-direction: column-reverse;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 0px;
    }

    .cate-banner-title h1 {
        font-size: 2rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .cate-banner-title {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .dotted-background {
        height: 218px;
        left: 0;
        overflow: visible;
        position: absolute;
        right: 0;
        top: -6vw;
        -webkit-transform: skewY(-5deg);
        -ms-transform: skewY(-5deg);
        transform: skewY(0deg);
    }

    .cate-banner-profile-image img {
        border-radius: 50%;
        width: 85px;
        height: auto;
    }

    .cate-banner-title h5 {
        font-size: 0.9rem;
        font-weight: 200;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .dotted-background__dots {
        bottom: -175px;
        height: 300px;
        -webkit-mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        -webkit-mask-image: -webkit-linear-gradient(
            bottom,
            hsla(0, 0%, 100%, 0) -10%,
            #fff 80%,
            hsla(0, 0%, 100%, 0)
        );
        mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        /* mask-image: linear-gradient(0deg, hsla(0, 0%, 100%, 0) -10%, #fff 80%, hsla(0, 0%, 100%, 0)); */
        /* position: absolute; */
        /* -webkit-transform: skewY(3deg); */
        -ms-transform: skewY(3deg);
        transform: skewY(3deg);
        width: 0vw !important;
    }

    .recent_blog_section {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .cate-banner-profile-image {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }
}

@media (max-width: 480px) {
    .cate-banner {
        display: flex;
        flex-direction: column-reverse;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 0px;
    }

    .cate-banner-title h1 {
        font-size: 2rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .dotted-background {
        height: 306px;
        left: 0;
        overflow: visible;
        position: absolute;
        right: 0;
        top: -6vw;
        -webkit-transform: skewY(-5deg);
        -ms-transform: skewY(-5deg);
        transform: skewY(0deg);
    }

    .cate-banner-title h5 {
        font-size: 1rem;
        font-weight: 400;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .dotted-background__dots {
        bottom: -175px;
        height: 300px;
        -webkit-mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        -webkit-mask-image: -webkit-linear-gradient(
            bottom,
            hsla(0, 0%, 100%, 0) -10%,
            #fff 80%,
            hsla(0, 0%, 100%, 0)
        );
        mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        mask-image: linear-gradient(
            0deg,
            hsla(0, 0%, 100%, 0) -10%,
            #fff 80%,
            hsla(0, 0%, 100%, 0)
        );
        position: absolute;
        -webkit-transform: skewY(3deg);
        -ms-transform: skewY(3deg);
        transform: skewY(3deg);
        width: 0vw;
    }
}

@media (max-width: 313px) {
    .cate-banner-title h1 {
        font-size: 1.6rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 0px;
    }

    .cate-banner-title h5 {
        font-size: 0.8rem;
        font-weight: 400;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }
    .dotted-background {
        height: 266px;
        left: 0;
        overflow: visible;
        position: absolute;
        right: 0;
        top: -6vw;
        -webkit-transform: skewY(-5deg);
        -ms-transform: skewY(-5deg);
        transform: skewY(0deg);
    }
}
@media (max-width: 254px) {
    .cate-banner-title h1 {
        font-size: 1.6rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 0px;
    }

    .cate-banner-title h5 {
        font-size: 0.8rem;
        font-weight: 400;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }
    .dotted-background {
        height: 310px;
        left: 0;
        overflow: visible;
        position: absolute;
        right: 0;
        top: -6vw;
        -webkit-transform: skewY(-5deg);
        -ms-transform: skewY(-5deg);
        transform: skewY(0deg);
    }
}

@media (min-width: 481px) and (max-width: 600px) {
    .cate-banner {
        display: flex;
        flex-direction: column-reverse;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 0px;
    }
    .dotted-background {
        height: 319px;
        left: 0;
        overflow: visible;
        position: absolute;
        right: 0;
        top: -6vw;
        -webkit-transform: skewY(-5deg);
        -ms-transform: skewY(-5deg);
        transform: skewY(0deg);
    }

    .cate-banner-title h1 {
        font-size: 3rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .dotted-background__dots {
        bottom: -175px;
        height: 300px;
        -webkit-mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        -webkit-mask-image: -webkit-linear-gradient(
            bottom,
            hsla(0, 0%, 100%, 0) -10%,
            #fff 80%,
            hsla(0, 0%, 100%, 0)
        );
        mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        mask-image: linear-gradient(
            0deg,
            hsla(0, 0%, 100%, 0) -10%,
            #fff 80%,
            hsla(0, 0%, 100%, 0)
        );
        position: absolute;
        -webkit-transform: skewY(3deg);
        -ms-transform: skewY(3deg);
        transform: skewY(3deg);
        width: 0vw;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .cate-banner {
        display: flex;
        flex-direction: column-reverse;
    }

    .cate-banner-profile-image img {
        border-radius: 50%;
        width: 112px;
        height: auto;
    }

    .cate-banner-title h1 {
        font-size: 3rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .cate-banner-title h5 {
        font-size: 1rem;
        font-weight: 400;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .dotted-background {
        height: 303px;
        left: 0;
        overflow: visible;
        position: absolute;
        right: 0;
        top: -6vw;
        -webkit-transform: skewY(-5deg);
        -ms-transform: skewY(-5deg);
        transform: skewY(0deg);
    }

    .dotted-background__dots {
        bottom: -175px;
        height: 300px;
        -webkit-mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        -webkit-mask-image: -webkit-linear-gradient(
            bottom,
            hsla(0, 0%, 100%, 0) -10%,
            #fff 80%,
            hsla(0, 0%, 100%, 0)
        );
        mask-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(-10%, hsla(0, 0%, 100%, 0)),
            color-stop(80%, #fff),
            to(hsla(0, 0%, 100%, 0))
        );
        mask-image: linear-gradient(
            0deg,
            hsla(0, 0%, 100%, 0) -10%,
            #fff 80%,
            hsla(0, 0%, 100%, 0)
        );
        position: absolute;
        -webkit-transform: skewY(3deg);
        -ms-transform: skewY(3deg);
        transform: skewY(3deg);
        width: 0vw;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cate-banner-profile-image img {
        border-radius: 50%;
        width: 126px;
        height: auto;
    }

    .cate-banner-title h1 {
        font-size: 3rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .cate-banner-title h5 {
        font-size: 1rem;
        font-weight: 400;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .cate-banner-profile-image img {
        border-radius: 50%;
        width: 126px;
        height: auto;
    }

    .cate-banner-title h1 {
        font-size: 3rem;
        font-weight: 900;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }

    .cate-banner-title h5 {
        font-size: 1rem;
        font-weight: 400;
        /* margin-top: 3rem; */
        /* display: flex; */
        justify-content: center;
        color: white;
        font-family: "Libre Baskerville", serif;
    }
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@ Profile Card 2 css start here @@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.single_advisor_profile {
    position: relative;
    margin-bottom: 11px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    z-index: 1;
    border-radius: 15px;
    -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
}
.single_advisor_profile .advisor_thumb {
    position: relative;
    z-index: 1;
    border-radius: 6px 6px 0 0;
    margin: 0 auto;
    padding: 0px 30px 0 0px;
    background-color: #3f43fd;
    overflow: hidden;
}
#profile-card-2-urdu .single_advisor_profile .advisor_thumb::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    width: 150%;
    height: 70px;
    bottom: -45px;
    left: -25%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-17deg);
}
.single_advisor_profile .advisor_thumb::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    width: 150%;
    height: 70px;
    bottom: -45px;
    left: -25%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: rotate(-15deg);
    transform: rotate(17deg);
}
@media only screen and (max-width: 575px) {
    .single_advisor_profile .advisor_thumb::after {
        height: 160px;
        bottom: -90px;
    }
}
.single_advisor_profile .advisor_thumb .social-info {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    left: 16px;
    text-align: left;
}
.single_advisor_profile .advisor_thumb .social-info a {
    font-size: 14px;
    color: #020710;
    padding: 0 5px;
}
#profile-card-2-urdu .single_advisor_profile .advisor_thumb .social-info a {
    font-size: 14px;
    color: #020710;
    padding: 0 5px;
}
.single_advisor_profile .advisor_thumb .social-info a:hover,
.single_advisor_profile .advisor_thumb .social-info a:focus {
    color: #3f43fd;
}
#profile-card-2-urdu
    .single_advisor_profile
    .advisor_thumb
    .social-info
    a:hover,
.single_advisor_profile .advisor_thumb .social-info a:focus {
    color: #3f43fd;
}
.single_advisor_profile .advisor_thumb .social-info a:last-child {
    padding-right: 0;
}
.single_advisor_profile .single_advisor_details_info {
    position: relative;
    z-index: 1;
    padding: 18px;
    text-align: left;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-radius: 0 0 6px 6px;
    background-color: #ffffff;
}
.single_advisor_profile .single_advisor_details_info::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    z-index: 1;
    width: 50px;
    height: 3px;
    background-color: #3f43fd;
    content: "";
    top: 6px;
    left: 21px;
}
.single_advisor_profile .single_advisor_details_info a h6 {
    margin-bottom: 0.25rem;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-weight: 700;
    font-size: 14px;
    font-family: sans-serif;
}
.single_advisor_profile .single_advisor_details_info h6 {
    margin-bottom: 0.25rem;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-weight: 700;
    font-size: 14px;
    font-family: sans-serif;
}
.single_advisor_profile .single_advisor_details_info a {
    text-decoration: none;
    color: black;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_advisor_profile .single_advisor_details_info h6 {
        font-size: 14px;
    }
    .single_advisor_profile .single_advisor_details_info a h6 {
        font-size: 14px;
    }
}
.single_advisor_profile .single_advisor_details_info p {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-size: 10px;
    color: #263238;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 16px;
    margin-bottom: 0px;
    font-weight: 500;
}
#profile-card-2-urdu .single_advisor_profile .single_advisor_details_info p {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-size: 10px;
    color: #263238;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 16px;
    margin-bottom: 0px;
    font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_advisor_profile .single_advisor_details_info p {
        font-size: 12px;
    }
}
.single_advisor_profile:hover .advisor_thumb::after,
.single_advisor_profile:focus .advisor_thumb::after {
    background-color: #070a57;
}
#profile-card-2-urdu .single_advisor_profile:hover .advisor_thumb::after,
.single_advisor_profile:focus .advisor_thumb::after {
    background-color: #070a57;
}
#profile-card-2-urdu
    .single_advisor_profile:hover
    .advisor_thumb
    .social-info
    a,
.single_advisor_profile:focus .advisor_thumb .social-info a {
    color: #ffffff;
}
.single_advisor_profile:hover .advisor_thumb .social-info a,
.single_advisor_profile:focus .advisor_thumb .social-info a {
    color: #ffffff;
}
#profile-card-2-urdu
    .single_advisor_profile:hover
    .advisor_thumb
    .social-info
    a:hover,
.single_advisor_profile:hover .advisor_thumb .social-info a:focus,
.single_advisor_profile:focus .advisor_thumb .social-info a:hover,
.single_advisor_profile:focus .advisor_thumb .social-info a:focus {
    color: #ffffff;
}
.single_advisor_profile:hover .advisor_thumb .social-info a:hover,
.single_advisor_profile:hover .advisor_thumb .social-info a:focus,
.single_advisor_profile:focus .advisor_thumb .social-info a:hover,
.single_advisor_profile:focus .advisor_thumb .social-info a:focus {
    color: #ffffff;
}
#profile-card-2-urdu .single_advisor_profile:hover .single_advisor_details_info,
.single_advisor_profile:focus .single_advisor_details_info {
    background-color: #070a57;
}
.single_advisor_profile:hover .single_advisor_details_info,
.single_advisor_profile:focus .single_advisor_details_info {
    background-color: #070a57;
}
#profile-card-2-urdu
    .single_advisor_profile:hover
    .single_advisor_details_info::after,
.single_advisor_profile:focus .single_advisor_details_info::after {
    background-color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info::after,
.single_advisor_profile:focus .single_advisor_details_info::after {
    background-color: #ffffff;
}
#profile-card-2-urdu
    .single_advisor_profile:hover
    .single_advisor_details_info
    h6,
.single_advisor_profile:focus .single_advisor_details_info h6 {
    color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info h6,
.single_advisor_profile:focus .single_advisor_details_info h6 {
    color: #ffffff;
}
#profile-card-2-urdu
    .single_advisor_profile:hover
    .single_advisor_details_info
    p,
.single_advisor_profile:focus .single_advisor_details_info p {
    color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info p,
.single_advisor_profile:focus .single_advisor_details_info p {
    color: #ffffff;
}

/* Profile card 2 urdu  */
#profile-card-2-urdu .single_advisor_profile .advisor_thumb::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    width: 150%;
    height: 70px;
    bottom: -45px;
    left: -25%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-17deg);
}
#profile-card-2-urdu .single_advisor_profile .advisor_thumb .social-info {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    left: -16px;
    text-align: right;
}
#profile-card-2-urdu
    .single_advisor_profile
    .single_advisor_details_info::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    z-index: 1;
    width: 50px;
    height: 3px;
    background-color: #3f43fd;
    content: "";
    top: 6px;
    /* left:115px; */
    left: auto;
    right: 20px;
}
#profile-card-2-urdu .single_advisor_profile .single_advisor_details_info {
    position: relative;
    z-index: 1;
    padding: 18px;
    text-align: right;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-radius: 0 0 6px 6px;
    background-color: #ffffff;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Footer CSS Start Here @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  */
.global-footer {
    --global-footer-links-in-column: 2;
    background-color: #00492e;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
    word-wrap: break-word;
}

.global-footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.global-footer__header {
    line-height: 0;
    margin-bottom: 42px;
    text-align: center;
}

.global-footer__header + .global-footer__section {
    margin-top: 0;
}

.global-footer__header-logo {
    height: 46px;
    width: 183px;
}

.global-footer__bottom {
    background: #000;
    font-size: 12px;
    min-height: 50px;
    padding: 0 20px;
    text-align: center;
}

.global-footer__bottom a,
.global-footer__bottom a:visited {
    color: #ffc500;
    text-decoration: none;
}

.global-footer__bottom a:hover {
    color: #fff;
}

.global-footer__bottom > div {
    margin: 0 auto;
    padding: 16px 0;
}

.global-footer__bottom > div ~ div {
    border-top: 1px solid #ffffff40;
}

.global-footer__content {
    padding: 42px 18px 36px;
    width: 100%;
}

.global-footer__link {
    font-weight: 400;
    line-height: 2.7;
    transition: color 0.3s;
}

.global-footer__link,
.global-footer__link:active,
.global-footer__link:focus,
.global-footer__link:visited {
    color: #ffc500;
    text-decoration: none;
}

.global-footer__link:hover {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.global-footer__section {
    margin-top: 42px;
}

.global-footer__section-community .global-footer__links,
.global-footer__section-fandom-overview .global-footer__links,
.global-footer__section-site-overview .global-footer__links {
    column-count: var(--global-footer-links-in-column);
    column-gap: 30px;
}

.global-footer__section-social-links .global-footer__section-header {
    margin-bottom: 12px;
}

.global-footer__section-social-links .global-footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fill, 18px);
    grid-gap: 18px;
}

.global-footer__section-social-links .wds-icon {
    color: #f9edd8;
    transition: color 0.3s;
}

.global-footer__section-social-links .wds-icon:hover {
    color: #fff;
}

.global-footer__section-fandom-stores {
    align-items: flex-start;
    display: flex;
    line-height: 0;
    margin-bottom: 18px;
    margin-top: 12px;
    padding-bottom: 18px;
    position: relative;
}

.global-footer__section-fandom-stores .global-footer__icon {
    border-radius: 6px;
    height: 78px;
    margin: 0 18px 0 0;
    overflow: hidden;
    width: 78px;
}

.global-footer__section-fandom-stores .global-footer__link {
    display: flex;
    line-height: 1;
}

.global-footer__section-fandom-stores .global-footer__links li {
    margin-bottom: 8px;
}

.global-footer__section-fandom-stores .global-footer__links li:last-child {
    margin-bottom: 0;
}

.global-footer__section-fandom-stores .global-footer__link-icon {
    height: 35px;
    width: 119px;
}

.global-footer__section-header {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 6px;
}

.global-footer__section-header,
.global-footer__switch-view {
    font-weight: 700;
    text-transform: uppercase;
}

@media only screen and (max-width: 1023px) {
    .global-footer__switch-to-mobile {
        display: inline-block;
        margin-bottom: 28px;
    }

    .global-footer__section-fandom-stores {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .global-footer {
        --global-footer-links-in-column: 3;
    }

    .global-footer__section-fandom-stores {
        margin: 30px 30px 0 0;
        padding: 0 30px 0 0;
    }

    .global-footer__section-fandom-stores:after {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    .global-footer {
        --global-footer-links-in-column: unset;
    }

    .global-footer__header {
        margin-bottom: 24px;
        text-align: left;
    }

    .global-footer__section:first-child {
        margin-top: 18px;
    }

    .global-footer__section + .global-footer__section {
        margin-top: 30px;
    }

    .global-footer__link {
        line-height: 2;
    }

    .global-footer__content {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
        margin: 0 auto;
        max-width: 1024px;
        padding: 70px 20px 40px;
    }
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Media Quries @@@@@@@@@@@@@@@@@@@@@@@@@@  */
@media (min-width: 1680px) and (max-width: 1920px) {
    .container {
        max-width: 1765px;
    }
    .owl-carousel .item .blog_card {
        height: 418px;
    }
    .card-icone-with-background-color a {
        color: #000000;
        font-size: 1.4rem;
    }
    .work-force-categories {
        margin-top: 91px;
        margin-bottom: 40px;
    }
    .work-force-main-title p {
        font-size: 1.6rem;
        color: white;
        font-weight: 500;
        font-family: sans-serif;
        line-height: 32px;
    }
    .work-force-main-section {
        margin-left: 59px;
        background: white;
    }
    .recent-profiles .blog_card {
        height: 435px;
    }
    .recent-profiles h3 {
        font-size: 30px;
        font-family: sans-serif;
        font-weight: 700;
    }
    .global-footer__content {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
        margin: 0 auto;
        max-width: 1735px;
        padding: 70px 20px 40px;
    }
    .newsletter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background-color: #00492e;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        /* -ms-flex-direction: column; */
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /* justify-content: center; */
        padding: 36px 107px 0;
        position: relative;
    }
    .newsletter__graphic {
        line-height: 0;
        margin-left: 330px;
    }
    .newsletter__graphic img {
        /* width: 100%; */
        width: 579px;
    }
    .newsletter__heading {
        color: #ffc500;
        font-size: 36px;
        font-weight: 900;
        line-height: 45px;
        margin: 43px 0px 18px;
        text-transform: uppercase;
    }
    .newsletter__info {
        max-width: 700px;
    }
    .recent-profiles .blog_card .blog_card_img {
        height: 305px;
        overflow: hidden;
    }
    .single_advisor_profile .advisor_thumb::after {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        position: absolute;
        width: 150%;
        height: 65px;
        bottom: -45px;
        left: -25%;
        content: "";
        background-color: #ffffff;
        -webkit-transform: rotate(-15deg);
        transform: rotate(17deg);
    }
    .single_advisor_profile .advisor_thumb .social-info a {
        font-size: 22px;
        color: #020710;
        padding: 0 5px;
    }
    .single_advisor_profile .single_advisor_details_info a h6 {
        margin-bottom: 0.25rem;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 700;
        font-size: 20px;
        font-family: sans-serif;
    }
    .single_advisor_profile .single_advisor_details_info p {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-size: 16px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    #profile-card-2-urdu .single_advisor_profile .advisor_thumb .social-info a {
        font-size: 22px;
        color: #020710;
        padding: 0 5px;
    }
    #profile-card-2-urdu
        .single_advisor_profile
        .single_advisor_details_info
        p {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-size: 18px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    .s1-profile-card a h6 {
        font-size: 23px;
        font-family: sans-serif;
        font-weight: 700;
        margin-bottom: 3px;
        text-decoration: none;
    }
    .s1-profile-card p {
        font-size: 19px;
        font-family: sans-serif;
        font-weight: 300;
        margin-bottom: 5px;
    }
    .s1-stats h5 {
        font-size: 20px;
        font-family: sans-serif;
        margin-bottom: 3px;
        font-weight: 300;
    }
    .s1-stats p {
        font-size: 18px;
        font-family: sans-serif;
        font-weight: 800;
        margin-bottom: 0px;
    }
    .profile-card-3-social-icone {
        background-color: #f2f5f8;
        border-radius: 7%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .s1-profile-card a {
        text-decoration: none;
        color: black;
        font-size: 26px;
    }
    .papulor-categories-section a .card-title {
        font-size: 1.7rem;
        font-weight: 500;
        margin-bottom: 5px;
        font-family: sans-serif;
    }
    .papulor-categories-section .places-count {
        font-size: 1.2rem;
        color: gray;
        margin-bottom: 0px;
    }
    .papulor-categories-section .arrow-icon {
        font-size: 1.2rem;
        color: gray;
    }
    .story-serial {
        border-radius: 3px;
        padding: 12px 20px;
        background-color: #f5f5f5;
        font-weight: bold;
        margin-right: 10px;
        color: #7d7d7d;
        font-size: 22px;
    }
    .accordion-button:not(.collapsed) {
        color: #3b3b3b;
        line-height: 1.5;
        font-size: 1.3rem;
        background-color: #ffffff;
        box-shadow: inset 0 0px 0 rgba(0, 0, 0, 0.125);
    }
    .story-of-the-image img {
        height: 650px;
        width: auto;
        border-radius: 5px;
    }
    .nav-link p {
        font-size: 19px;
        color: #076266;
        font-weight: 700;
        margin-bottom: 0px;
        text-align: center;
        margin-top: 5px;
    }
    .owl-carousel .item .blog_card .blog_card_img {
        height: 301px;
        overflow: hidden;
    }
    .blog_card_body .cat_link {
        /* background: rgba(141, 27, 61, 0.1); */
        border-radius: 38px;
        /* padding: 0px 3px; */
        font-weight: 700;
        font-size: 23px;
        font-family: sans-serif;
        margin-bottom: 0px;
    }
    .blog_card_body a p {
        margin-top: 6px;
        font-size: 20px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 14px;
        font-weight: 500;
    }

    .work-force-image img {
        width: 52px;
    }
    .work-force-categories .work-force-image {
        display: flex;
        justify-content: center;
        /* margin-top: 28%; */
        /* font-size: 21px; */
        margin-bottom: 5px;
        background-color: #f5f5f585;
        border-radius: 50%;
        padding: 20px;
        margin: 24px;
        /* width: 79px; */
        /* height: 100px; */
        padding-top: -1px;
    }
    .work-force-categories a p {
        font-family: sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: normal;
    }
    .work-force-cetegories-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        padding: 11px 0px;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 57px;
    }
    .user-profile-detail-1 .user-profile-detail-1-image {
        width: 100%;
        height: 430px;
        object-fit: cover;
        border-radius: 5px;
        background-color: #a9233b;
        border: 5px solid white;
    }
    .user-services-section a .card-title {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 5px;
        font-family: sans-serif;
    }
    .user-services-section .places-count {
        font-size: 1.2rem;
        color: gray;
        margin-bottom: 0px;
    }
    .card-icone-with-background-color {
        background-color: #f2f5f8;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 5px;
        margin-right: 3px;
    }
    .owl-carousel .item .blog_card {
        height: 430px;
    }
}

@media (min-width: 1600px) and (max-width: 1679px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1445px;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 55px;
    }
    .dotted-background {
        height: 588px;
    }
    .work-force-categories {
        margin-top: 123px;
        margin-bottom: 40px;
    }
    .newsletter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background-color: #00492e;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        /* -ms-flex-direction: column; */
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /* justify-content: center; */
        padding: 47px 99px 0;
        position: relative;
    }
    .newsletter__info {
        max-width: 900px;
    }
    .newsletter__heading {
        color: #ffc500;
        font-size: 36px;
        font-weight: 900;
        line-height: 45px;
        margin: 8px 3px 27px;
        text-transform: uppercase;
    }
    .user-services-section a .card-title {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 5px;
        font-family: sans-serif;
    }
    .user-services-section .places-count {
        font-size: 1rem;
        color: gray;
        margin-bottom: 0px;
    }
    .user-services-section .arrow-icon {
        font-size: 1rem;
        color: gray;
    }
    .user-profile-detail-1 .user-profile-detail-1-image {
        width: 100%;
        height: 355px;
        object-fit: cover;
        border-radius: 5px;
        background-color: #a9233b;
        border: 5px solid white;
    }
    .owl-carousel .item .blog_card .blog_card_img {
        height: 266px;
        overflow: hidden;
    }
    .owl-carousel .item .blog_card {
        height: 367px;
    }
    .blog_card_body .cat_link {
        /* background: rgba(141, 27, 61, 0.1); */
        border-radius: 38px;
        /* padding: 0px 3px; */
        font-weight: 700;
        font-size: 16px;
        font-family: sans-serif;
        margin-bottom: 0px;
    }
    .blog_card_body a p {
        margin-top: 0px;
        font-size: 15px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    .recent-profiles .blog_card .blog_card_img {
        height: 266px;
        overflow: hidden;
        border-radius: 15px;
    }
    .recent-profiles .blog_card {
        height: 365px;
    }
    .single_advisor_profile .advisor_thumb .social-info a {
        font-size: 18px;
        color: #020710;
        padding: 0 5px;
    }
    .single_advisor_profile .single_advisor_details_info a h6 {
        margin-bottom: 0.25rem;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 700;
        font-size: 18px;
        font-family: sans-serif;
    }
    .single_advisor_profile .single_advisor_details_info p {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-size: 14px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    #profile-card-2-urdu .single_advisor_profile .advisor_thumb .social-info a {
        font-size: 18px;
        color: #020710;
        padding: 0 5px;
    }
    #profile-card-2-urdu
        .single_advisor_profile
        .single_advisor_details_info
        p {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-size: 15px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    .s1-profile-card a h6 {
        font-size: 17px;
        font-family: sans-serif;
        font-weight: 700;
        margin-bottom: 3px;
        text-decoration: none;
    }
    .s1-profile-card p {
        font-size: 16px;
        font-family: sans-serif;
        font-weight: 300;
        margin-bottom: 5px;
    }
    .s1-stats h5 {
        font-size: 16px;
        font-family: sans-serif;
        margin-bottom: 3px;
        font-weight: 300;
    }
    .profile-card-3-social-icone {
        background-color: #f2f5f8;
        border-radius: 7%;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .s1-profile-card a {
        text-decoration: none;
        color: black;
        font-size: 21px;
    }
    .work-force-categories .work-force-image {
        display: flex;
        justify-content: center;
        /* margin-top: 28%; */
        font-size: 17px;
        margin-bottom: 5px;
        background-color: #f5f5f585;
        border-radius: 50%;
        padding: 15px;
        margin: 25px;
    }
    .work-force-categories a p {
        font-family: sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: normal;
    }
    .global-footer__content {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
        margin: 0 auto;
        max-width: 1403px !important;
        padding: 70px 20px 40px;
    }
}

@media (min-width: 1366px) and (max-width: 1440px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1260px;
    }
    .work-force-main-section {
        margin-left: 58px;
        background: white;
    }
    .newsletter__info {
        max-width: 745px;
    }
    .newsletter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background-color: #00492e;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        /* -ms-flex-direction: column; */
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /* justify-content: center; */
        padding: 36px 95px 0;
        position: relative;
    }

    .global-footer__content {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
        margin: 0 auto;
        max-width: 1191px !important;
        padding: 70px 20px 40px;
    }
    .feed-layout {
        background-color: white;
        overflow: hidden;
        position: relative;
        margin-left: 55px;
    }
    .user-services-section a .card-title {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 5px;
        font-family: sans-serif;
    }
    .user-services-section .places-count {
        font-size: 1.1rem;
        color: gray;
        margin-bottom: 0px;
    }
    .user-services-section .arrow-icon {
        font-size: 1rem;
        color: gray;
    }
    .user-profile-detail-1 .user-profile-detail-1-image {
        width: 100%;
        height: 355px;
        object-fit: cover;
        border-radius: 5px;
        background-color: #a9233b;
        border: 5px solid white;
    }
    .owl-carousel .item .blog_card .blog_card_img {
        height: 266px;
        overflow: hidden;
    }
    .owl-carousel .item .blog_card {
        height: 367px;
    }
    .blog_card_body .cat_link {
        /* background: rgba(141, 27, 61, 0.1); */
        border-radius: 38px;
        /* padding: 0px 3px; */
        font-weight: 700;
        font-size: 16px;
        font-family: sans-serif;
        margin-bottom: 0px;
    }
    .blog_card_body a p {
        margin-top: 0px;
        font-size: 15px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    .recent-profiles .blog_card .blog_card_img {
        height: 266px;
        overflow: hidden;
        border-radius: 15px;
    }
    .recent-profiles .blog_card {
        height: 365px;
    }
    .single_advisor_profile .advisor_thumb .social-info a {
        font-size: 18px;
        color: #020710;
        padding: 0 5px;
    }
    .single_advisor_profile .single_advisor_details_info a h6 {
        margin-bottom: 0.25rem;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-weight: 700;
        font-size: 18px;
        font-family: sans-serif;
    }
    .single_advisor_profile .single_advisor_details_info p {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-size: 14px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    #profile-card-2-urdu .single_advisor_profile .advisor_thumb .social-info a {
        font-size: 18px;
        color: #020710;
        padding: 0 5px;
    }
    #profile-card-2-urdu
        .single_advisor_profile
        .single_advisor_details_info
        p {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-size: 15px;
        color: #263238;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 16px;
        margin-bottom: 0px;
        font-weight: 500;
    }
    .s1-profile-card a h6 {
        font-size: 17px;
        font-family: sans-serif;
        font-weight: 700;
        margin-bottom: 3px;
        text-decoration: none;
    }
    .s1-profile-card p {
        font-size: 16px;
        font-family: sans-serif;
        font-weight: 300;
        margin-bottom: 5px;
    }
    .s1-stats h5 {
        font-size: 16px;
        font-family: sans-serif;
        margin-bottom: 3px;
        font-weight: 300;
    }
    .profile-card-3-social-icone {
        background-color: #f2f5f8;
        border-radius: 7%;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .s1-profile-card a {
        text-decoration: none;
        color: black;
        font-size: 21px;
    }
    .work-force-categories .work-force-image {
        display: flex;
        justify-content: center;
        /* margin-top: 28%; */
        font-size: 17px;
        margin-bottom: 5px;
        background-color: #f5f5f585;
        border-radius: 50%;
        padding: 12px;
        margin: 25px;
    }
    .work-force-categories a p {
        font-family: sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: normal;
    }
    .story-of-the-image img {
        height: 419px;
        width: auto;
        border-radius: 5px;
    }
}
@media (min-width: 1280px) and (max-width: 1365px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1180px;
    }
    .global-footer__content {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
        margin: 0 auto;
        max-width: 1130px !important;
        padding: 70px 20px 40px;
    }
    .newsletter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background-color: #00492e;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        /* -ms-flex-direction: column; */
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /* justify-content: center; */
        padding: 36px 38px 0;
        position: relative;
    }
    .newsletter__info {
        max-width: 706px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1180px;
    }
    .global-footer__content {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
        margin: 0 auto;
        max-width: 900px !important;
        padding: 70px 20px 40px;
    }
    .newsletter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background-color: #00492e;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        /* -ms-flex-direction: column; */
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /* justify-content: center; */
        padding: 36px 19px 0;
        position: relative;
    }
    .newsletter__info {
        max-width: 549px;
    }
    .work-force-main-section {
        margin-left: 62px;
        background: white;
    }
    .global-footer__content {
        display: grid;
        grid-column-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
        margin: 0 auto;
        max-width: 1113px !important;
        padding: 70px 87px 40px;
    }
}

@media (max-width: 576px) {
    .ps-sm-1 {
        padding-left: 0.25rem !important; /* Adjust as per your need */
    }
}

@media (min-width: 360px) and (max-width: 414px) {
    .work-force-main-title .work-foce-title {
        font-size: 2rem;
        color: white;
        font-weight: 600;
        font-family: sans-serif;
        line-height: normal;
    }
    .work-force-categories .work-force-image {
        display: flex;
        justify-content: center;
        /* margin-top: 28%; */
        font-size: 17px;
        margin-bottom: 5px;
        background-color: #f5f5f585;
        border-radius: 50%;
        padding: 8px;
        margin: 19px;
    }
    .work-force-image img {
        width: 30px;
    }
    .blog_card_body .cat_link {
        font-size: 14px !important;
    }
    .top_blogs h3 {
        font-size: 22px;
    }
    .user-profile-detail-1 .main-title {
        color: white;
        font-family: sans-serif;
        font-weight: 700;
        font-size: 35px;
        line-height: normal;
        margin-bottom: 2px;
        margin-top: 11px;
    }
    .user-profile-detail-1 .main-title-prf {
        font-size: 18px;
        color: white;
        font-family: sans-serif;
        font-weight: 500;
        line-height: normal;
    }
    .card-icone-with-background-color-1 {
        background-color: #f2f5f8;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .card-icone-with-background-color-1 a {
        color: #000000;
        font-size: 18px;
    }
    .review-section button {
        /* width: 87px; */
        height: 30px;
        font-size: 12px;
        padding: 4px 16px;
        text-align: center;
        flex-grow: 1;
    }
    .newsletter__heading {
        color: #ffc500;
        font-size: 20px;
        font-weight: 900;
        line-height: 30px;
        margin: 0 0 12px;
        text-transform: uppercase;
    }
    .review-content p {
        font-size: 12px;
    }
    .review-box {
        /* border: 1px solid #ddd; */
        padding: 2px;
        border-radius: 5px;
        background-color: #fff;
        margin-bottom: 20px;
        padding-bottom: 0px;
        /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
        border: 1px solid #ececec75;
    }
    .review-b-x-1 {
        padding: 2px;
    }
    .review-section {
        background-color: white;
        padding: 0px;
        border-radius: 5px;
        margin-bottom: 20px;
        /* border: 2px solid rgba(210, 210, 210, 0.344); */
        /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
        border: 1px solid #ececec75;
    }
    .review-section h6 {
        margin-top: 10px;
    }
    .revw-1 {
        padding: 14px !important;
    }
    .pfl-img {
        margin-top: 0px !important;
    }
    .newsletter__graphic {
        margin-top: 1.4rem !important;
    }
}
@media (min-width: 1441px) and (max-width: 1536px) {
}


/* Index Page Custom Styles */
.logo-text {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #02442E;
    margin-bottom: 0px;
    text-align: left;
}

.logo-tagline {
    font-size: 12px;
    line-height: 1.25;
    text-align: left;
    margin-bottom: 0px;
}

.h1-title {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    letter-spacing: 0.01em;
}

.h3-title {
    padding: 5px 0px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0px;
}

.tl-cat-card {
    box-shadow: 5px 5px 15px rgb(0 0 0 / 10%);
    border: 1px solid rgb(199 199 199 / 26%);
}

.tl-cat-card img {
    font-size: 12px;
    line-height: 1.25;
    color: white;
}

.tl-cat-card h6 {
    margin-top: 3px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

/* Category Detail Page Styles */
#category-tools a {
    text-decoration: none;
    color: black;
}

.cat2_img-bg {
    border-radius: 50px;
    padding: 7px;
    margin: 0px;
}

.cat2_img-title {
    font-family: sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.25;
    margin-bottom: 0px;
}

.h2-title-cust {
    font-family: Rubik, Helvetica, Arial, sans-serif;
    color: #39424d;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
}

/* Tool Cards Layout */
.tools-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.tool-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.tool-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tool-card-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.tool-card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.tool-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tool-card-body {
    flex: 1;
    min-width: 0;
}

.tool-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.tool-card-description {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #606060;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.tool-card-btn {
    background: #065fd4;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-card-btn:hover {
    background: #0550b8;
}

.tool-card:hover .tool-card-btn {
    background: #0550b8;
}

/* Subcategory Cards - Border Style */
.subcategories-section .row {
    display: flex;
    flex-wrap: wrap;
}

.subcategories-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.subcategory-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.subcategory-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    /* No border on the card itself */
    border: none;
    min-height: 240px;
}

/* Partial border - only on bottom 70% using pseudo-element */
.subcategory-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    border: 6px solid var(--border-color, #ffd700);
    border-radius: 0 0 4px 4px;
    border-top: none;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

.subcategory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.subcategory-card-image {
    background: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
}

.subcategory-card-img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.subcategory-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
    min-height: 80px;
    justify-content: flex-start;
}

/* Light background color matching border color */
.subcategory-card-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color, #ffd700);
    opacity: 0.25;
    z-index: -1;
}

.subcategory-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 8px 0;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 38px;
    max-height: 38px;
}

.subcategory-card-description {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: #606060;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    flex: 1;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
    max-height: 50px;
}

/* Surah Card Header */
.surah-card-header {
    background: #ffffff;
    padding: 16px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.surah-card-header > .surah-arabic-icon {
    align-self: center;
}

.surah-number-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: "Nunito", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #333333;
    background: #fffcfc;
    padding: 5px 9px;
    border-radius: 20px;
    line-height: 1.3;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.surah-arabic-icon {
    width: 100%;
    height: 70px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--border-color, #ffd700) 0%, var(--border-color, #ffd700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.surah-arabic-text {
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.5px;
}

.surah-title-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.surah-title-left {
    flex: 1;
    text-align: left;
}

.surah-english-title {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #030303;
    margin: 0 0 2px 0;
    line-height: 1.2;
    text-align: left;
}

.surah-english-translation {
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #606060;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.surah-action-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
}

.surah-audio-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #606060;
    padding: 0;
}

.surah-audio-btn:hover {
    background: #f5f5f5;
    border-color: #030303;
    color: #030303;
}

.surah-audio-btn i {
    font-size: 14px;
}

.surah-info-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #606060;
    padding: 0;
}

.surah-info-btn:hover {
    background: #f5f5f5;
    border-color: #030303;
    color: #030303;
}

.surah-info-btn i {
    font-size: 14px;
}

/* Surah Info Lines */
.surah-info-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.surah-info-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    color: #333333;
    line-height: 1.2;
}

.surah-info-icon {
    font-size: 15px;
    color: #030303;
    flex-shrink: 0;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.surah-info-text {
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Remove outer border for surah cards */
.surah-card::before {
    display: none;
}

/* Remove background from surah card content and restore separator border with margins */
.surah-card-content {
    background: transparent !important;
    border-top: none;
    padding: 10px 16px 12px 16px;
    position: relative;
}

.surah-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background-color: #e0e0e0;
}

.surah-card-content::after {
    display: none;
}

/* Surah Card Footer with Button */
.surah-card-footer {
    padding: 0 16px 12px 16px;
    background: #ffffff;
    margin-top: 0;
}

.surah-read-btn {
    width: 100%;
    background: #212529;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.surah-read-btn:hover {
    background: #1a1d20;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .tool-card-content {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .tool-card-icon {
        width: 60px;
        height: 60px;
    }

    .tool-card-title {
        font-size: 18px;
    }

    .tool-card-description {
        font-size: 13px;
    }
}

/* Fandom-Style Multi-Gradient Hero Section - Green Theme */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
    padding: 40px;
    background: 
        linear-gradient(180deg, #1a6b4a 0%, #0F462F 25%, #02442E 50%, #0a1f15 70%, #181818 85%, #181818 100%),
        linear-gradient(135deg, rgba(15, 70, 47, 0.4) 0%, rgba(26, 107, 74, 0.3) 50%, rgba(2, 68, 46, 0.4) 100%),
        radial-gradient(circle at 20% 20%, rgba(168, 224, 184, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(200, 240, 212, 0.15) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
}

/* Decorative corner dots */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Dot grid with banded emphasis: dim → sharper → invisible center → sharper again */
    background-image: radial-gradient(rgba(255, 255, 255, 0.30) 1.6px, transparent 1.6px);
    background-size: 16px 16px;
    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.20) 0%,
        rgba(0, 0, 0, 0.45) 12%,
        rgba(0, 0, 0, 0.65) 24%,
        rgba(0, 0, 0, 0.18) 38%,
        rgba(0, 0, 0, 0.00) 48%,
        rgba(0, 0, 0, 0.00) 60%,
        rgba(0, 0, 0, 0.22) 70%,
        rgba(0, 0, 0, 0.55) 82%,
        rgba(0, 0, 0, 0.30) 100%
    );
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.20) 0%,
        rgba(0, 0, 0, 0.45) 12%,
        rgba(0, 0, 0, 0.65) 24%,
        rgba(0, 0, 0, 0.18) 38%,
        rgba(0, 0, 0, 0.00) 48%,
        rgba(0, 0, 0, 0.00) 60%,
        rgba(0, 0, 0, 0.22) 70%,
        rgba(0, 0, 0, 0.55) 82%,
        rgba(0, 0, 0, 0.30) 100%
    );
    pointer-events: none;
    opacity: 0.45;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 80%);
    pointer-events: none;
    opacity: 0.9;
    z-index: 2;
}

.hero-decorative-shape {
    position: absolute;
    pointer-events: none;
}

.hero-shape-1 {
    /* Hidden per request to remove circular/radial badge near create button */
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

.hero-logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    text-align: left;
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-decoration: none;
}

.hero-logo img {
    width: 80px;
    height: 80px;
}

.hero-logo-text {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-logo-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 4px 0 0 0;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #000000;
}

.hero-btn:active {
    transform: translateY(0);
}

/* Like Button Styles */
.hero-btn-like {
    position: relative;
}

.hero-btn-like .bi-heart,
.hero-btn-like .bi-heart-fill {
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-btn-like.liked {
    background: #ff1744;
    color: #ffffff;
}

.hero-btn-like.liked:hover {
    background: #d50000;
    color: #ffffff;
}

.hero-btn-like .bi-heart-fill {
    color: #ff1744;
}

.hero-btn-like.liked .bi-heart-fill {
    color: #ffffff;
}

.like-count {
    margin-left: 4px;
    font-weight: 600;
    font-size: 14px;
}

.hero-btn .bi-info-circle {
    font-size: 16px;
}

/* Hero Top Right Actions */
.hero-top-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-action-btn {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    height: 32px;
}

.hero-action-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.hero-action-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-action-icon {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    position: relative;
}

.hero-action-icon:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-action-icon svg {
    width: 18px;
    height: 18px;
    color: #000000;
    stroke-width: 2;
}

.hero-profile-icon {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.hero-profile-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-profile-icon .profile-initial {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    font-family: inherit;
}

/* Profile Dropdown Menu */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    max-width: 350px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    font-family: inherit;
}

.profile-dropdown.active {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-dropdown-header {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-dropdown-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F462F 0%, #1a6b4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.profile-dropdown-avatar svg {
    width: 22px;
    height: 22px;
}

.profile-dropdown-info {
    flex: 1;
    min-width: 0;
}

.profile-dropdown-guest-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

.profile-dropdown-name {
    font-size: 14px;
    font-weight: 500;
    color: #030303;
    margin: 0 0 2px 0;
    line-height: 1.4;
}

.profile-dropdown-handle {
    font-size: 13px;
    color: #606060;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.profile-dropdown-link {
    font-size: 13px;
    color: #065fd4;
    text-decoration: none;
    display: inline-block;
}

.profile-dropdown-link:hover {
    text-decoration: underline;
}

.profile-dropdown-section {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-dropdown-section.profile-guest-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: none;
}

.profile-guest-action-btn {
    background: rgba(248, 249, 250, 0.95);
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 12px;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.profile-guest-action-btn:hover,
.profile-guest-action-btn:focus {
    background: #212529;
    border-color: #212529;
    color: #ffffff;
    transform: translateY(-1px);
}

.profile-guest-action-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.25);
}

.profile-dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.1s ease;
    text-decoration: none;
    color: #030303;
    font-size: 14px;
    gap: 16px;
}

.profile-dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.profile-dropdown-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #030303;
}

.profile-dropdown-item-icon svg {
    width: 20px;
    height: 20px;
}

.profile-dropdown-item-text {
    flex: 1;
    font-size: 14px;
    color: #030303;
    line-height: 1.5;
}

.profile-dropdown-item-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #606060;
    flex-shrink: 0;
}

.profile-dropdown-item-arrow svg {
    width: 16px;
    height: 16px;
}

.hero-profile-wrapper {
    position: relative;
}

/* Create Button Dropdown */
.create-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    min-width: 200px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    font-family: inherit;
}

.create-dropdown.active {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

.create-dropdown-header {
    font-size: 14px;
    font-weight: 600;
    color: #030303;
    padding: 10px 16px;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.create-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.1s ease;
    text-decoration: none;
    color: #030303;
    font-size: 14px;
    gap: 16px;
}

.create-dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.create-dropdown-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #030303;
}

.create-dropdown-item-icon svg {
    width: 20px;
    height: 20px;
}

.create-dropdown-item-text {
    flex: 1;
    font-size: 14px;
    color: #030303;
    line-height: 1.5;
}

.hero-action-btn-wrapper {
    position: relative;
}

/* Notifications Dropdown */
.notifications-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 400px;
    max-height: 500px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    font-family: inherit;
}

.notifications-dropdown.active {
    display: flex;
    flex-direction: column;
    animation: dropdownFadeIn 0.2s ease;
}

.notifications-header {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notifications-header-title {
    font-size: 14px;
    font-weight: 600;
    color: #030303;
    margin: 0;
}

.notifications-header-settings {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #030303;
    border-radius: 50%;
    transition: background-color 0.1s ease;
}

.notifications-header-settings:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.notifications-header-settings svg {
    width: 18px;
    height: 18px;
}

.notifications-content {
    overflow-y: auto;
    max-height: 450px;
}

.notifications-content::-webkit-scrollbar {
    width: 8px;
}

.notifications-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notifications-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.notifications-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.notifications-section-title {
    padding: 12px 16px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-item {
    display: flex;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.1s ease;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.notification-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #065fd4;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F462F 0%, #1a6b4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-channel {
    font-size: 14px;
    font-weight: 500;
    color: #030303;
    margin: 0 0 2px 0;
}

.notification-text {
    font-size: 13px;
    color: #030303;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.notification-time {
    font-size: 12px;
    color: #606060;
    margin: 0;
}

.notification-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    background: #f0f0f0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.notification-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-menu {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #606060;
    border-radius: 50%;
    transition: background-color 0.1s ease;
    flex-shrink: 0;
    margin-top: 8px;
}

.notification-menu:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.notification-menu svg {
    width: 18px;
    height: 18px;
}

.hero-notification-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 450px;
        padding: 30px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo-container {
        margin-bottom: 20px;
    }

    .hero-logo-text {
        font-size: 28px;
    }

    .hero-logo img {
        width: 60px;
        height: 60px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 7px 18px;
        font-size: 14px;
        border-radius: 4px;
    }

    .hero-shape-1 {
        width: 60px;
        height: 60px;
    }

    .hero-top-actions {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .hero-action-btn {
        padding: 5px 12px;
        font-size: 12px;
        height: 28px;
        border-radius: 18px;
    }

    .hero-action-btn svg {
        width: 14px;
        height: 14px;
    }

    .hero-action-icon,
    .hero-profile-icon {
        width: 28px;
        height: 28px;
    }

    .hero-action-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-profile-icon .profile-initial {
        font-size: 14px;
    }

    .profile-dropdown {
        min-width: 280px;
        max-width: 320px;
        right: -10px;
    }

    .profile-dropdown-header {
        padding: 12px;
    }

    .profile-dropdown-avatar {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .profile-dropdown-name {
        font-size: 13px;
    }

    .profile-dropdown-handle {
        font-size: 12px;
    }

    .profile-dropdown-item {
        padding: 6px 12px;
        font-size: 13px;
    }

    .profile-dropdown-item-icon {
        width: 20px;
        height: 20px;
    }

    .profile-dropdown-item-icon svg {
        width: 18px;
        height: 18px;
    }

    .create-dropdown {
        min-width: 180px;
    }

    .notifications-dropdown {
        width: 350px;
        max-height: 400px;
    }

    .notifications-content {
        max-height: 350px;
    }

    .notification-thumbnail {
        width: 60px;
        height: 45px;
    }
}

/* Modal Styles */
.daily-content-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.daily-content-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: #181818;
    border-radius: 8px;
    overflow: hidden;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

.modal-top-section {
    position: relative;
    min-height: 300px;
    background: linear-gradient(180deg, #1a6b4a 0%, #0F462F 30%, #02442E 60%, #0a1f15 85%, #181818 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.modal-top-arabic {
    direction: rtl;
    text-align: center;
    font-size: 32px;
    line-height: 2.2;
    color: #ffffff;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-bottom-section {
    background: #181818;
    padding: 40px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-category {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-family: "Poppins", sans-serif;
}

.modal-details {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.modal-detail-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Poppins", sans-serif;
}

.modal-detail-separator {
    color: rgba(255, 255, 255, 0.5);
}

.modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.modal-translation {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-style: italic;
    font-family: "Poppins", sans-serif;
}

.modal-reference {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Poppins", sans-serif;
}

.modal-reference strong {
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced Surah Info Modal Styles */
.surah-info-modal {
    overflow: hidden;
    background: #1a1a1a;
}

.surah-modal-top {
    padding: 3rem 2rem;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.surah-modal-arabic {
    color: #fff;
    font-size: 2.2rem;
    font-family: 'Scheherazade New', 'Traditional Arabic', 'Amiri', serif;
    text-align: center;
    direction: rtl;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    word-spacing: 0.15em;
}

.surah-info-modal .modal-bottom-section {
    background: #1a1a1a;
    padding: 1.5rem 2rem 2rem;
}

.modal-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.modal-category-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #888;
    text-transform: uppercase;
}

.modal-title-center {
    font-size: 1.75rem;
    font-weight: 400;
    color: #fff;
    font-family: 'Playfair Display', 'Georgia', serif;
    margin: 0;
}

.modal-tags {
    font-size: 0.8rem;
    color: #888;
}

.modal-tags span {
    margin-left: 0.25rem;
}

.modal-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 0 1.5rem;
}

.modal-verse-translation {
    font-size: 1.05rem;
    font-style: italic;
    color: #4ade80;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.modal-description-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Modal Audio Player Styles */
.modal-audio-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-audio-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-audio-title i {
    font-size: 1.1rem;
    color: #4ade80;
}

.audio-players-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-audio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-reciter-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.reciter-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.audio-type-badge {
    font-size: 0.7rem;
    color: #888;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.audio-player-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.modal-play-btn i {
    font-size: 1.2rem;
}

.audio-progress-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.audio-progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.audio-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    border-radius: 3px;
    transition: width 0.1s ease;
}

.audio-time-display {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #888;
}

.audio-time-display .current-time {
    color: #fff;
}

/* Toast Notification */
@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@media (max-width: 768px) {
    .modal-content-wrapper {
        margin: 20px;
    }

    .modal-top-section {
        min-height: 250px;
        padding: 40px 20px;
    }

    .modal-top-arabic {
        font-size: 24px;
        line-height: 2;
    }

    .modal-bottom-section {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-translation {
        font-size: 16px;
    }

    /* Surah Modal Responsive */
    .surah-modal-top {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }

    .surah-modal-arabic {
        font-size: 1.6rem;
    }

    .modal-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .modal-title-center {
        font-size: 1.4rem;
        order: -1;
    }

    .modal-tags {
        order: 1;
    }

    .audio-reciter-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .modal-play-btn {
        width: 36px;
        height: 36px;
    }

    .modal-play-btn i {
        font-size: 1rem;
    }
}

/* Main Header - Transparent Fixed Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 50; /* keep below sidebar overlay */
    padding: 14px 18px;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.main-header .hero-top-actions {
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-right: 0;
    justify-content: flex-end;
}

/* Optional: Add background on scroll (if needed) */
.main-header.scrolled {
    background: linear-gradient(135deg, rgba(4, 35, 24, 0.8) 0%, rgba(6, 50, 34, 0.82) 50%, rgba(0, 0, 0, 0.78) 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-language-wrapper {
    position: relative;
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 180px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    display: none;
    z-index: 10;
}

.language-dropdown.active {
    display: block;
}

.language-dropdown-header {
    font-size: 14px;
    font-weight: 600;
    color: #030303;
    padding: 6px 14px 8px;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.language-dropdown-item {
    width: 100%;
    padding: 10px 14px;
    text-align: left;
    background: transparent;
    border: none;
    color: #030303;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-dropdown-item input[type="radio"] {
    margin: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #030303;
    flex-shrink: 0;
}

.language-dropdown-item label {
    cursor: pointer;
    margin: 0;
    flex: 1;
    user-select: none;
}

.language-dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.language-dropdown-item:active {
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .main-header {
        padding: 12px 14px;
    }

    .main-header .hero-top-actions {
        gap: 8px;
    }
}

/* Pillars of Islam Section */
.pillars-of-islam-section {
    background: #f0f8f5;
}

.pillars-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pillars-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.pillars-cards-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: nowrap;
}

.pillar-card-wrapper {
    flex: 1;
    min-width: 120px;
    max-width: 140px;
}

.pillar-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #C4DBC2;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.pillar-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #00723F;
}

.pillar-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pillar-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #b8d1b6;
}

.pillar-content {
    padding: 12px 12px 8px 12px;
    text-align: center;
}

.pillar-name {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #030303;
    margin: 0;
    line-height: 1.2;
}

.pillar-footer {
    padding: 0 12px 12px 12px;
    background: #C4DBC2;
}

.pillar-btn {
    width: 100%;
    background: #212529;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.pillar-btn:hover {
    background: #1a1d20;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .pillar-card {
        margin-bottom: 12px;
    }

    .pillar-image {
        height: 150px;
        padding: 15px;
    }

    .pillar-content {
        padding: 16px 16px 10px 16px;
    }

    .pillar-name {
        font-size: 16px;
    }

    .pillar-footer {
        padding: 0 12px 12px 12px;
    }
}