* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
}

header {
    font-family: "Poppins", sans-serif;
}

header .top-header {
    margin: 20px 0;
}

header .bottom-header {
    margin-bottom: 22px;
}

header .bottom-header ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

header .top-header form input {
    border: 1px solid #CCCCCC;
    height: 44px;
    padding: 10px 20px 10px 40px;
    border-radius: 30px;
}

header .top-header form {
    max-width: 62%;
    width: 100%;
    position: relative;
}

header .top-header form i {
    position: absolute;
    left: 17px;
    top: 11px;
    color: #0D0D0DB2;
}

header .offcanvas-body form input {
    border: 1px solid #CCCCCC;
    height: 44px;
    padding: 10px 20px 10px 40px;
    border-radius: 30px;
}

header .offcanvas-body form {
    max-width: 62%;
    width: 100%;
    position: relative;
}

header .offcanvas-body form i {
    position: absolute;
    left: 17px;
    top: 11px;
    color: #0D0D0DB2;
}

header .top-header form input:focus-visible {
    outline: none;
}

header .top-header form input::placeholder {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
}

header .offcanvas-body form input:focus-visible {
    outline: none;
}

header .offcanvas-body form input::placeholder {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
}

header .bottom-header ul li a {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #000000B2;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}


header .bottom-header ul li a .white-icon {
    display: none;
    transition: .3s;
}

header .bottom-header ul li a img {
    width: 16px;
    height: 16px;
    /* margin-right: 7px; */
}
.single-chat img.single-astro-img {
    width: 100%  !important;
    height: 100% !important;
}

header .bottom-header ul li a:hover {
    color: #ED6028;
}

header .bottom-header ul li a:hover .white-icon {
    display: inline-block;
    /* margin-right: 7px; */
}

header .bottom-header ul li a:hover .black-icon {
    display: none;
}

header .top-header select {
    color: #4C4C4C;
    border: none;
    font-size: 14px;
    margin-right: 10px;
}

.login-btn {
    background: #ED6028;
    color: white;
    padding: 7px 19px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s ease;
}

header .login-btn {
    font-size: 14px;
}

header .offcanvas-body ul {
    padding: 0;
    list-style: none;
    line-height: 40px;
}

header .offcanvas-body ul li a {
    text-decoration: none;
    color: #000000B2;
}

header .offcanvas-body ul li a img {
    margin-right: 7px;
}

header .offcanvas.offcanvas-end {
    width: 270px;
}

.astro-banner {
    background: linear-gradient(to right, #ed4b28a8 10%, #f3bc07ad 90%);
    min-height: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.astro-banner h1 {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 500;
    max-width: 735px;
    margin: auto;
    margin-bottom: 25px;
}

.astro-banner p {
    color: white;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
}

.astro-call .call-card .img-wrapper {
    background: #ED6028;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 13px;
}

.astro-call .call-card .img-wrapper img {
    width: 48px;
}

.astro-call {
    margin-top: 50px;
}

.astro-call p {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
    margin: auto;
}

.astro-call .call-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    cursor: pointer;
}

.astro-call .astro-card {
    border: 1px solid #CCCCCC;
    padding: 10px 17px;
    margin-top: 28px;
    border-radius: 10px;
    transition: .3s;
}

.astro-call .astro-card:hover {
    box-shadow: rgba(45, 45, 45, 0.05) 0px 2px 2px, rgba(49, 49, 49, 0.05) 0px 4px 4px, rgba(42, 42, 42, 0.05) 0px 8px 8px, rgba(32, 32, 32, 0.05) 0px 16px 16px, rgba(49, 49, 49, 0.05) 0px 22px 22px, rgba(35, 35, 35, 0.02) 0px 64px 64px;
    transform: translate(0, -10px);
}

.astro-call .call-card p {
    font-weight: 600;
}

.astro-call .astro-card h3 {
    font-size: 18px;
    margin-top: 20px;
    font-weight: 600;
}

.astro-call .astro-card img {
    width: 100px;
    transition: .6s ease;
}

.astro-call .astro-card:hover img {
    transform: rotate(360deg);
}

.astro-news {
    margin-top: 50px;
}

.astro-news .news-body button {
    border: 1px solid #CCCCCC;
    background-color: transparent;
    color: #000000B2;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
}

.astro-news .news-card {
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 11px;
}

.astro-news .news-card small {
    color: #555555;
    font-size: 12px;
    font-weight: 400;
}

.astro-news .news-desc {
    color: #000000;
    font-weight: 400;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-chat p.single-astro-about {
    height: 196px !important;
    overflow: scroll;
    text-align: justify;
}
.see-all {
    border: 1px solid #CCCCCC;
    color: #ED6028;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 20px;
    width: max-content;
    margin: auto;
    border-radius: 30px;
}

.astro-news .top-news {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.astro-news .top-news p {
    color: black;
    font-weight: 600;
}

.astro-news .top-news a {
    border: 1px solid #ED6028;
    color: black;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 15px;
    border-radius: 20px;
    transition: .3s ease;
}

.astro-news .top-news a:hover {
    background-color: #ED6028;
    color: white;
}

.astro-online {
    margin-top: 50px;
}

.astro-online h3,
.astro-celeb h3 {
    font-weight: 600;
    font-size: 33px;
}

.offer-card .card {
    border-radius: 12px;
    overflow: hidden;
    margin: auto;
    position: relative;
    border: 1px solid #CECECEDB;
    justify-content: space-between;
    height: 100%;
}
.astro-celeb .blog-card-new img {
    height: 190px;
    width: 100%;
    object-fit: cover;
}
p.footerAbout {
    text-align: justify;
}
/* Offer Tag (Top Right Corner) */
.offer-card .offer-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #ED6028;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 21px;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 17% 100%);
    border-top-right-radius: 12px;
}

/* Verified Icon (Top Left) */
.offer-card .verified-icon {
    position: absolute;
    top: 0px;
    left: 6px;
    border-radius: 50%;
    padding: 3px;
}

.offer-card .verified-icon i {
    color: #007bff;
    font-size: 20px;
}

/* Profile Image */
.offer-card .profile-pic {
    position: relative;
    display: inline-block;
}

.offer-card .profile-pic img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ED6028;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

/* Online Status Dot */
.offer-card .status-dot {
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border: 2px solid #fff;
    border-radius: 50%;
    left: 0;
    margin: auto;
}

/* Text Styling */
.offer-card h6 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

.offer-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Book Now Button */
.offer-card .btn-orange {
    background: #ED6028;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 6px 0;
    font-weight: 600;
    margin-top: 5px;
    transition: 0.3s ease;
}

.offer-card .btn-orange:hover {
    opacity: 0.9;
}

.astro-footer {
    background-color: #121212;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
}

.astro-footer h6 {
    font-size: 15px;
    color: #fff;
    position: relative;
    margin-bottom: 1rem;
    font-weight: 600;
}

.astro-footer h6.position-relative::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #f15a24;
}

.astro-footer p {
    color: #b3b3b3;
    line-height: 1.6;
    font-size: 13px;
}

.astro-footer ul {
    padding-left: 0;
    list-style: none;
}

.astro-footer ul li {
    margin-bottom: 6px;
    color: #b3b3b3;
    transition: color 0.3s;
    font-size: 13px;
    cursor: pointer;
}

.astro-footer ul li:hover {
    color: #f15a24;
}

.astro-footer a {
    color: #f15a24;
    text-decoration: none;
}

.astro-footer a:hover {
    color: #fff;
}

.astro-footer .fa {
    transition: transform 0.3s;
    font-size: 15px;
}

.astro-footer .fa:hover {
    transform: scale(1.2);
    color: #f15a24;
}

.astro-footer .border-top {
    border-color: #333 !important;
}

.astro-footer .secure-list li {
    color: #b3b3b3;
    font-size: 13px;
    margin-bottom: 8px;
}

.astro-footer .secure-list i {
    color: #f15a24;
    margin-right: 8px;
}

.astro-call .call-card:hover img {
    animation: shake 0.6s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.shine-btn {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.shine-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-25deg);
}

.shine-btn:hover {
    background-color: #f15a24;
    color: #fff;
}

.shine-btn:hover::before {
    animation: shine-move 1s ease-in-out;
}

@keyframes shine-move {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.web-btn {
    /* font-size: 16px; */
    /* color: white; */
    /* padding: 10px 20px; */
    transition: all .5s;
    /* text-transform: capitalize; */
    position: relative;
    /* border-radius: 0; */
    /* font-weight: 500; */
    /* cursor: pointer; */
    /* text-align: center; */
    /* vertical-align: middle; */
    overflow: hidden;
    /* border: none; */
    /* background: transparent; */
    /* box-shadow: var(--box-shadow); */
    /* z-index: 1; */
    /* padding-left: 0; */
}

.web-btn:hover {
    color: white !important;
    /* padding-left: 10px; */
}

.web-btn i {
    margin-left: 8px;
    transform: rotate(-40deg);
    display: inline-block;
    transition: all .3s ease-in-out;
}

.web-btn:hover i {
    margin-left: 8px;
    transform: rotate(0);
}

.web-btn::before {
    content: "";
    height: 500px;
    width: 500px;
    background: #ED6028;
    color: black;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.web-btn:hover::before {
    color: black;
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.blog-card-new {
    position: relative;
    overflow: hidden;
}

.blog-card-new:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.card-hover:hover .blog-card-new:after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}


.join-astrolk h2 {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(to right, #ED6028, #F3BC07);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.join-astrolk h2::after {
    content: "";
    display: inline-block;
    width: 70px;
    height: 2px;
    background: #FF922F;
    margin-left: 8px;
    vertical-align: middle;
}

.join-astrolk p {
    font-size: 0.95rem;
    color: #333;
    margin-top: 8px;
    margin-bottom: 25px;
}

.join-astrolk .phone-input {
    display: flex;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 9px 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.join-astrolk select,
.join-astrolk input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
}

.join-astrolk input {
    flex: 1;
}

.join-astrolk button {
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-astrolk .btn-join {
    background: #ED6028;
    color: #fff;
    border: 1px solid #ED6028;
}

.join-astrolk .btn-join:hover {
    background: linear-gradient(to right, #f78c29, #f64c1e);
    color: #fff;
}

.join-astrolk .btn-check-status {
    margin-top: 15px;
    border: 1px solid #FFA81C;
    color: #FFA81C;
    background: transparent;
}

.join-astrolk .btn-check-status:hover {
    background: #ED6028;
    color: #fff;
}

.join-astrolk small {
    display: block;
    margin-top: 10px;
    color: #888;
    font-size: 0.85rem;
}

.gain-card .call-card {
    border: 1px solid #d6d6d6;
    padding: 20px 10px;
    border-radius: 10px
}

.gain-card .call-card p {
    font-weight: 700;
}

.client-reviews {
    /* max-width: 1100px; */
    margin: 60px auto;
    /* font-family: "Poppins", sans-serif; */
    color: #333;
}

.client-reviews h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.client-reviews .review-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.client-reviews .review-card:hover {
    transform: translateY(-5px);
}

.client-reviews .review-date {
    font-size: 11px;
    color: #858585;
    margin-bottom: 10px;
}

.client-reviews .review-stars i {
    background: #ED6028;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 3px;
}

.client-reviews .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 8px;
}

.client-reviews .author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ccc;
}

.client-reviews .author-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.client-reviews .review-text {
    font-size: 12px;
    color: black;
    line-height: 1.5;
    font-weight: 400;
}

/* Custom Owl Controls */
.client-reviews .owl-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.client-reviews .owl-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    border: none;
    background: #f56723 !important;
    color: #fff !important;
    font-size: 1rem !important;
    transition: all 0.3s ease;
}

.client-reviews .owl-nav button:hover {
    background: linear-gradient(to right, #f78c29, #f64c1e) !important;
}

.client-reviews .owl-dots {
    display: none;
}

.bg-color {
    background: linear-gradient(to bottom, #ED60281A 5%, #FFFFFF1A);
}

.astro-gain h2 {
    font-size: 25px;
    max-width: 700px;
    margin: auto;
    font-weight: 700;
    margin-bottom: 30px;
}

.astro-gain h2 span {
    color: #ED6028;
}

.astro-gain h3 {
    margin-top: 70px !important;
    font-size: 25px;
    font-weight: 600;
}

.astro-gain p {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
}

.astro-value h3 {
    font-size: 25px;
    font-weight: 600;
}

.astro-value p {
    font-size: 13px;
    color: #000000B2;
    font-weight: 400;
}

.astro-value .value-card {
    border: 1px solid #F4F4F4;
    background: white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.astro-value .value-card h6 {
    font-weight: 600;
    font-size: 15px;
}

.topbar-section {
    background: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.topbar-section .balance-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.topbar-section .balance-area span {
    color: #666;
}

.topbar-section .balance-area strong {
    font-weight: 600;
    color: #000;
}

.topbar-section .btn-recharge {
    border: 1px solid #28a745;
    color: #28a745;
    background: transparent;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s;
}

.topbar-section .btn-recharge:hover {
    background: #28a745;
    color: #fff;
}

.topbar-section .action-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar-section .btn-filter,
.topbar-section .btn-orange {
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.topbar-section .btn-filter {
    border: 1px solid #ccc;
    background: #fff;
    color: #555;
}

.topbar-section .btn-filter:hover {
    background: #f5f5f5;
}

.topbar-section .btn-orange {
    background: #ED6028;
    color: #fff;
    border: none;
}

.topbar-section .btn-orange:hover {
    background: #e45b12;
}

.topbar-section .search-box {
    position: relative;
}

.topbar-section .search-box input {
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 6px 35px 6px 15px;
    font-size: 14px;
    outline: none;
}

.topbar-section .search-box .bi-search {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    cursor: pointer;
    background: #ED6028;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.astro-chat .chat-card {
    border: 1px solid #CCCCCC;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    /* padding-bottom: 22px;  */
    height: 100%;
}

.astro-chat .chat-card .chat-right h3 {
    font-size: 17px;
    font-weight: 600;
}

.astro-chat .chat-card .chat-right p {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 7px;
}

.astro-chat .chat-card .chat-right .price {
    color: #000000B2;
    font-weight: 600;
}

.astro-chat .chat-card .chat-left {
    position: relative;
}

.astro-chat .chat-card .chat-left a {
    position: absolute;
    bottom: -11px;
    border: 1px solid #ED6028;
    width: 100%;
    padding: 4px;
    border-radius: 20px;
    color: #ED6028;
    font-weight: 600;
    left: 0;
    transition: .3s ease;
    z-index: 1051;
    text-decoration: none;
    background-color: white;
    text-align: center;
}

.astro-chat .chat-card .chat-left button:hover {
    color: white;
    background-color: #ED6028;
}

.astro-chat .chat-card .chat-left img {
    object-fit: cover;
    border-radius: 10px;
}

.astro-chat .chat-card .chat-left .verified {
    color: #0059FF;
    position: absolute;
    right: 10px;
    top: 10px;
}
.blogdesc {
    height: 700px;
    overflow: scroll;
}
.astro-chat .breadcrumb-item a {
    color: #000000;
    font-size: 13px;
    font-weight: 600;
}

.astro-chat .breadcrumb-item.active {
    color: #000000;
    /* font-size: 13px; */
    font-weight: 600;
}

.astro-chat h2 {
    font-size: 26px;
    color: black;
    font-weight: 600;
}


.astro-chat p {
    font-size: 14px;
    font-weight: 400;
}

.astrologer-profile-card {
    /* font-family: 'Poppins', sans-serif; */
    background: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    padding: 25px;
    max-width: 800px;
    margin: 40px auto;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.astrologer-profile-card .profile-top {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 20px;
}

.customer-reviews h6 {
    color: #000000B2;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

.astrologer-profile-card .profile-img {
    position: relative;
}

.astrologer-profile-card .profile-img img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.astrologer-profile-card .verified-icon {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 28px !important;
    height: 28px !important;
}

.astrologer-profile-card .profile-info {
    flex: 1;
}

.astrologer-profile-card .profile-info h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.astrologer-profile-card .follow-btn {
    background: #ED6028;
    color: #fff;
    border: none;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
}

.astrologer-profile-card .profile-info p {
    margin-bottom: 4px;
    color: #555;
    font-size: 0.92rem;
}

.astrologer-profile-card .rating {
    font-weight: 500;
    color: #ffb400;
}

.astrologer-profile-card .rating i {
    color: #ED6028;
}

.astrologer-profile-card .price {
    color: #28a745;
    font-weight: 600;
}

.astrologer-profile-card .action-btns {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.astrologer-profile-card .action-btns button {
    flex: 1;
    border: 1px solid #ED6028;
    color: #ED6028;
    border-radius: 25px;
    background: transparent;
    font-weight: 500;
    padding: 8px 0;
    transition: 0.3s;
}

.astrologer-profile-card .action-btns button:hover {
    background: #ED6028;
    color: #fff;
}

.astrologer-profile-card .about {
    margin-top: 25px;
}

.astrologer-profile-card .about h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.astrologer-profile-card .about p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.6;
}

.review-section {
    /* font-family: 'Poppins', sans-serif; */
    color: #333;
}

.review-section .customer-reviews .progress {
    height: 13px;
    border-radius: 10px;
    background-color: #f0f0f0;
    border: 1px solid #CCCCCC;
}

/* .review-section .customer-reviews .progress-bar {
    border-radius: 10px;
    background-color: #009227 !important;
} */

.review-section .customer-reviews .progress-bar {
    border-radius: 10px;
    background-color: #ED6028 !important;
}
.review-section .ratings-reviews h6 {
    font-weight: 600;
}

.review-section .review-card {
    border-color: #eaeaea !important;
}

.review-section .review-card img {
    object-fit: cover;
}

.astro-sign .sign-img {
    background: #00000066;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    padding: 10px;
}

.astro-sign .sign-img img {
    width: 50px;
}

.astro-sign .sign-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.ratings-reviews {
    max-height: 499px;
    overflow: scroll;
    height: auto;
}

.astro-sign .sign-card:hover .sign-img,
.astro-sign .sign-card.active-sign .sign-img{
    background: linear-gradient(135deg,
            #F3BC07 30%,
            #ED6028 70%);
    background-position: center;
}



.astro-sign .sign-card p {
    color: #000000B2;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

.astro-sign .sign-card:hover p {
    color: #ED6028;
}
.astro-sign .sign-card.active-sign p{
    color: #ED6028 !important;
}
.sign-tabs .nav-link {
    border: 1px solid #CCCCCC;
    color: #000000B2;
    font-size: 13px;
    border-radius: 20px;
    padding: 4px 14px;
    font-weight: 400;
}

.sign-tabs .nav-link.active {
    border: 1px solid #ED6028;
    background-color: #ED6028;
    color: white !important;
}

.sign-tabs .nav-tabs {
    border: none;
}

.sign-tabs select {
    border: 1px solid #CCCCCC;
    padding: 4px 10px;
    border-radius: 20px;
    color: #000000B2;
    font-weight: 400;
}

.sign-tabs .tab-content {
    border: 1px solid #CCCCCC;
    padding: 20px;
    margin-top: 20px;
    border-radius: 20px;
}

.sign-tabs h3 {
    color: black;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.sign-tabs p {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
}

.sign-tabs h4 i {
    color: #ED6028;
}

.sign-tabs h4 {
    color: black;
    font-size: 18px;
    font-weight: 600;
}

.astro-sign select {
    color: #000000B2;
    border: 1px solid #CCCCCC;
    padding: 4px 10px;
}

.astro-connect .connect-right a {
    /* position: absolute; */
    /* bottom: -11px; */
    border: 1px solid #ED6028;
    width: 100%;
    padding: 4px;
    border-radius: 20px;
    color: #ED6028;
    font-weight: 600;
    left: 0;
    transition: .3s ease;
    z-index: 1051;
    text-decoration: none;
    background-color: white;
    text-align: center;
    display: block;
}

.astro-connect h4 {
    font-size: 17px;
    color: #000000B2;
    font-weight: 600;
}

.astro-connect .web-btn i {
    transform: rotate(0);
}

.astro-connect .connect-left {
    max-width: 347px;
    margin: auto;
}

.astro-connect .connect-right {
    max-width: 343px;
    margin: auto;
}

.astro-cancer img {
    width: 110px;
}

.kundli-section {
    padding: 0;
}

.kundli-section .card {
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
    padding: 12px !important;
}

.kundli-section h5 {
    font-weight: 600;
    margin-bottom: 13px;
    font-size: 17px;
}

.kundli-section .form-control {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 12px;
}

.kundli-section .gender-btns .btn {
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 14px;
}

.kundli-section input::placeholder {
    color: #636060;
    font-size: 13px;
    font-weight: 400;
}

.kundli-section .input-group-text {
    border: 1px solid #CCCCCC;
    background-color: transparent;
    border-left: none;
}

.kundli-section .btn-male {
    background-color: #f26b21;
    color: #fff;
    border: none;
}

.kundli-section .btn-female {
    background-color: #fff;
    color: #000;
    border: 1px solid #ddd;
}

.kundli-section .generate-btn {
    width: 100%;
    border-radius: 50px;
    background-color: #ED6028;
    color: #fff;
    padding: 10px;
    border: none;
    font-weight: 500;
    margin-top: 15px;
}

.kundli-section .saved-kundli .search-box {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.kundli-section .search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
}

.kundli-section .search-box input::placeholder {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
}

.kundli-section .kundli-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.kundli-section .kundli-item:last-child {
    border-bottom: none;
}

.kundli-section .kundli-item h6 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

.kundli-section .kundli-item p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #555;
}

.kundli-section .kundli-item .icons {
    float: right;
}

.kundli-section .kundli-item .icons i {
    cursor: pointer;
    margin-left: 10px;
    color: #555;
}

.kundli-section label {
    color: #636060;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.sign-tabs ul li {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
}

.sign-tabs h5 {
    color: #000000B2;
    font-size: 14px;
    font-weight: 600;
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

.faq-section h3 {
    font-weight: 600;
    font-size: 33px;
    text-align: center;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e5e5e5;
    background-color: transparent;
}

.faq-section .accordion-button {
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    box-shadow: none;
    padding: 18px 25px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #F9F9FB;
    color: #000;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
}

/* Remove unwanted white space completely */
.faq-section .accordion-collapse {
    margin: 0;
    background-color: #F9F9FB;
}

.faq-section .accordion-body {
    background-color: #fbfbfd;
    padding: 0 25px 25px 25px;
    color: #000000B2;
    line-height: inherit;
    border-radius: 0 0 12px 12px;
    font-size: 13px;
}

/* Remove Bootstrap's default focus/transition artifacts */
.faq-section .accordion-button:focus {
    box-shadow: none;
}

/* Custom plus/minus icons */
.faq-section .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 22px;
    font-weight: 500;
    color: #000;
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: "−";
}

.customer-reviews .rating-bars {
    max-width: 220px;
    margin: auto;
}

.ratings-reviews h6 {
    font-size: 22px;
    font-weight: 600 !important;
}

.ratings-reviews i {
    color: #ED6028 !important;
}

.kundli-detail .nav-link {
    color: black;
    font-size: 13px;
    font-weight: 600;
    border: none;
}

.kundli-detail .nav-link:hover,
.kundli-detail .nav-link:focus {
    border: none;
}

.kundli-detail .nav-tabs {
    border: none;
}

.kundli-detail .nav-link.active {
    color: #ED6028;
    border: none;
    border-bottom: 1px solid #ED6028;
}

.details-section {
    padding: 20px 0;
    background: #fff;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.details-section .card {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06); */
    margin-bottom: 20px;
}

.details-section .card-header {
    background: #ED6028;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 10px 12px;
    font-size: 15px;
}

.details-section .table {
    border-collapse: collapse;
    /* tight rows */
    width: 100%;
    margin: 0;
}

/* Ensure the stripe color is applied to each cell (reliable across browsers / bootstrap) */
.details-section .table tbody tr:nth-child(odd) td {
    background-color: #EEEEEE !important;
    /* light grey stripe */
}

.details-section .table tbody tr:nth-child(even) td {
    background-color: #ffffff !important;
    /* white */
}

/* cell styling */
.details-section .table td {
    padding: 10px 14px;
    vertical-align: middle;
    border: none;
    font-size: 14px;
    color: #333;
}

.details-section .table td:first-child {
    font-weight: 500;
    width: 48%;
    color: black;
}

.details-section .table td:last-child {
    text-align: right;
    color: black;
    font-weight: 500;
}

.welcome {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 60vh;
    padding: 20px 0;
}

.welcome .wel-content h1 {
    color: #ED6028;
    font-size: 40px;
    font-weight: 600;
}

.welcome .wel-content p {
    color: #ffffffc7;
    font-size: 14px;
    font-weight: 400;
}

.welcome .wel-content {
    background: #00000033;
    backdrop-filter: blur(6px);
    padding: 35px 93px;
    margin: 50px 0;
}

.register-form {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 750px;
    margin: 40px auto;
}

.register-form .step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

/* Background line */
.register-form .step-indicators::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

/* Blue progress line */
.register-form .progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, #F3BC07 30%, #ED6028 70%);
    z-index: 2;
    transform: translateY(-50%);
    width: 0%;
    transition: width 0.4s ease;
}

.register-form .step-indicators .step-number {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #555;
    z-index: 3;
    position: relative;
    transition: all 0.3s ease;
}



.register-form .step-indicators .step-number.active {
    background: linear-gradient(135deg, #F3BC07 30%, #ED6028 70%);
    color: #fff;
    transform: scale(1.1);
}

.register-form .step-indicators .step-label {
    text-align: center;
    font-size: 13px;
    margin-top: 8px;
    color: #777;
}

.register-form .step {
    display: none;
}

.register-form .step.active {
    display: block;
}

.register-form .buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;

}

.register-form button#nextBtn {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #F3BC07 30%, #ED6028 70%);
    background-size: 150%;
    background-position: left;
    color: white;
    font-weight: 600;
    transition: background-position 0.5s ease;
    border: none;
    box-shadow: 0 2px 3px #ed6028a8;
}

.register-form button#nextBtn:hover {
    background-position: right;
}

.register-form button#prevBtn {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #F3BC07 30%, #ED6028 70%);
    background-size: 150%;
    background-position: left;
    color: white;
    font-weight: 600;
    transition: background-position 0.5s ease;
    margin-right: 10px;
    box-shadow: 0 2px 3px #ed6028a8;
}

.register-form button#prevBtn:hover {
    background-position: right;
}

.register-form h4 {
    font-size: 35px;
    color: black;
    font-weight: 600;
}

.register-form h5 {
    text-align: center;
    color: black;
    font-weight: 600;
    margin-bottom: 30px;
}

.register-form label {
    margin-bottom: 7px;
}

.register-form .form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #ed60286b;
    outline: 0;
    box-shadow: 0 0 0 .25rem #ed602830;
}

.planets-table-section {
    background-color: #fff;
    border-radius: 10px;
    /* box-shadow: 0 0 6px rgba(0, 0, 0, 0.1); */
    padding: 0;
    margin: 40px auto;
    /* max-width: 900px; */
    border: 1px solid #CCCCCC;
}

.planets-table-section h5 {
    background: white;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    color: black;
}

.planets-table-section .table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.planets-table-section .table thead {
    background-color: #edf0f2;
}

.planets-table-section .table th {
    font-weight: 600;
    font-size: 14px;
    color: black;
    border: none;
    padding: 10px 12px;
    background: #EDF2F6;
}

.planets-table-section .table td {
    font-size: 13px;
    padding: 10px 12px;
    color: #000000B2;
    border: none;
    font-weight: 600;
}

.planets-table-section .table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.planets-table-section .table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    background: #fff;
    text-align: center;
    margin: 50px 0;
    /* font-family: 'Poppins', sans-serif; */
}

.coming-soon h1 {
    font-weight: 600;
    color: #000000B2;
    margin-bottom: 2rem;

}

.coming-soon .countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.coming-soon .time-box {
    position: relative;
    padding: 0 2rem;
}

.coming-soon .time-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: #ddd;
}

.coming-soon .time-box h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #000000B2;
}

.coming-soon .time-box p {
    font-size: 1rem;
    color: #000000B2;
    margin: 0;
    font-weight: 600;
}

.coming-soon .subscribe-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.coming-soon .subscribe-box input {
    border-radius: 30px;
    border: none;
    background: #f7f7f7;
    padding: 10px 20px;
    width: 360px;
    outline: none;
}

.coming-soon .subscribe-box button {
    background: #ED6028;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.coming-soon .subscribe-box button:hover {
    background: #F3BC07;
}

.coming-soon p.small {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.coming-soon .social-icons i {
    font-size: 1.3rem;
    margin: 0 10px;
    color: #000;
    /* background: #f7f7f7; */
    border-radius: 50%;
    padding: 10px;
    transition: 0.3s;
}

.coming-soon .social-icons i:hover {
    background: #ED6028;
    color: #fff;
}

.dasha-card .dasha-top {
    background: #EDF2F6;
    padding: 10px;
}

.dasha-card {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.dasha-card .dasha-top h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.milan-card {
    border: 1px solid #D6D6D6;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.match-reco {
    position: relative;
    border: 1px solid #CCCCCC;
    padding: 20px 20px 33px 200px;
    border-radius: 8px;
}

.match-reco .match-left {
    position: absolute;
    left: 17px;
    align-items: center;
}

.match-reco .match-right h5 {
    color: black;
    font-size: 15px;
}

.match-reco .match-right p {
    color: #000000B2;
    font-size: 15px;
    font-weight: 400;
    font-family: 'open sans';
}

.shop-banner {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
    background-position: left bottom;
}

.shop-banner h1 {
    font-family: 'Poltawski Nowy';
    color: #7B3138;
}

.shop-banner .shop-content {
    padding-top: 60px;
}

.shop-cat, .astro-dhan {
    margin-top: 50px;
    text-align: center;
}

.shop-cat img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.shop-cat p {
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}
.astro-online .blog-card-new img {
    height: 204px;
    width: 100%;
}

.shop-cat h3 {
    font-weight: 600;
    font-size: 33px;
}

.best-seller h3,
.shop-purpose h3 {
    font-weight: 600;
    font-size: 33px;
    text-align: center;
}

.best-seller,
.shop-purpose {
    margin-top: 50px;
}

.best-seller .best-card h4 {
    color: black;
    font-size: 14px;
    font-weight: 600;
    margin-top: 7px;
}

.best-seller .best-card {
    margin-bottom: 15px;
}

.best-seller .best-card a {
    border: 1px solid #ED6028;
}

.astro-dhan h3 {
    font-weight: 600;
    font-size: 33px;
}

.bracelet-page {
    /* font-family: 'Poppins', sans-serif; */
    padding: 3rem 2rem;
}

.bracelet-page .product-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.bracelet-page .rating span {
    border: 1px solid #CCCCCC;
    padding: 3px 10px;
    margin-right: 10px;
}

.bracelet-page .thumbnail-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

.bracelet-page .thumbnail-img:hover {
    border-color: #f58220;
}

.bracelet-page .product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bracelet-page .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
}

.bracelet-page .old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-size: 1rem;
}

.bracelet-page .rating {
    font-size: 0.9rem;
    color: #f4a300;
}

.bracelet-page .desc {
    color: #000000B2;
    font-size: 13px;
    font-weight: 400;
    margin: 1rem 0 1.5rem;
}

.bracelet-page .btn-cart {
    background-color: #f58220;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: background 0.3s;
}

.bracelet-page .btn-cart:hover {
    background-color: #e26f10;
}

.bracelet-page .btn-shop {
    background-color: #fff;
    color: #f58220;
    border: 1px solid #f58220;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.bracelet-page .btn-shop:hover {
    background-color: #f58220;
    color: #fff;
}

.bracelet-page .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #111;
}

.bracelet-page .accordion-button {
    font-weight: 500;
}

.bracelet-page .accordion-item {
    border: none;
    border-bottom: 1px solid #CCCCCC !important;
}

.bracelet-page .accordion-button:focus {
    box-shadow: none;
}

.bracelet-page .accordion-button {
    color: #000000B2;
    font-weight: 600;
}

.single-des p {
    color: #000000B2;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 400;
}

.single-des h5 {
    color: #000000;
    font-size: 17px;
    font-weight: 600;
}

.des-detail p strong {
    min-width: 300px;
    display: inline-block;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
}

.des-detail p span {
    display: inline-block;
    color: #000000B2;
    font-weight: 600;
    font-size: 15px;
}

.single-astrolk .call-card .img-wrapper {
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 50%;
}

.astrology-card .card {
    border-radius: 12px;
    margin-bottom: 19px;
}

.single-blog-left .breadcrumb-item {
    color: black;
    font-size: 13px;
    font-weight: 500;
}

.single-blog-left .breadcrumb-item a {
    color: black;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.small-text {
    font-weight: 600;
    color: black;
    margin: 10px 0;
}

.single-left h4 {
    font-weight: 600;
    font-size: 22px;
}

.single-left h3 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #CCCCCCCC;
}

.single-left p {
    font-weight: 400;
    color: #000000B2;
    font-size: 14px;
}

.single-right a {
    color: #000000B2;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.remedies-banner .remedies-inner {
    min-height: 403px;
    background-image: url(./images/remedies-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.remedies-banner .remedies-inner h1 {
    font-size: 30px;
    color: white;
    font-weight: 600;
    max-width: 301px;
    margin-bottom: 20px;
}

.pooja-card-section .pooja-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    width: 239px;
    /* margin: auto; */
}

.pooja-card-section .pooja-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.pooja-card-section .price-strip {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pooja-card-section .pooja-title {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.astro-online .offer-card {
    margin-bottom: 15px;
    height: 100%;
}

.signup-page {
    background: linear-gradient(to right, #ed4b28a8 10%, #f3bc07ad 90%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.signup-page .signup-card {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

.signup-page label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333;
}

.signup-page input,
.signup-page textarea,
.signup-page select {
    border-radius: 0.5rem !important;
    box-shadow: none !important;
}

.signup-page button {
    width: 100%;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.login-page {
    min-height: 100vh;
    background: linear-gradient(to right, #ed4b28a8 10%, #f3bc07ad 90%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.login-page .card-body {
    padding: 2rem;
}

.login-page .form-control {
    border-radius: 0.5rem;
}

.login-page .btn-primary {
    border-radius: 10px;
    background: linear-gradient(135deg, #007bff, #6610f2);
    border: none;
}

.login-page .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #520dc2);
}

.login-page .small-text {
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .kundli-section .card {
        margin-bottom: 20px;
    }

    .astro-footer h6 {
        margin-top: 1.5rem;
    }

    header .top-header form {
        max-width: 48%;
    }
}


@media (max-width: 768px) {
    .bracelet-page {
        padding: 2rem 1rem;
    }

    .match-reco {
        position: relative;
        border: 1px solid #CCCCCC;
        padding: 20px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }

    .match-reco .match-left {
        position: static;
        margin-bottom: 16px;
    }

    .coming-soon .countdown {
        flex-direction: column;
        gap: 1.2rem;
    }

    .coming-soon .time-box {
        padding: 0;
    }

    .coming-soon .time-box:not(:last-child)::after {
        display: none;
    }

    .planets-table-section {
        padding: 15px;
    }

    .planets-table-section h5 {
        font-size: 16px;
        text-align: center;
    }

    .planets-table-section .table th,
    .planets-table-section .table td {
        font-size: 13px;
        padding: 8px;
    }

    .client-reviews .review-card {
        margin-bottom: 20px;
    }

    .review-section .customer-reviews .row {
        text-align: center;
    }

    .review-section .customer-reviews .progress {
        width: 80%;
        margin: 0 auto;
    }

    header .offcanvas-body form {
        max-width: 100%;
        margin-bottom: 10px;
    }

    header .offcanvas-body form i {
        top: 9px;
    }

    header .offcanvas-body form input {
        height: 40px;
    }

    header .offcanvas-body ul li a {
        font-size: 13px;
    }

    .astro-banner h1 {
        font-size: 42px;
    }

    .astro-banner {
        min-height: 300px;
    }

    .topbar-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .topbar-section .action-area {
        width: 100%;
        justify-content: space-between;
    }

    .astro-call .call-card {
        margin-bottom: 0;
    }

    .astro-call .call-card .img-wrapper {
        width: 80px;
        height: 80px;
    }

    .astro-call .call-card .img-wrapper img {
        width: 41px;
    }

    .astro-call .astro-card img {
        width: 67px;
    }

    .astro-news,
    .astro-online {
        margin-top: 35px;
    }

    .astro-online h3,
    .astro-celeb h3 {
        font-size: 28px;
    }

    .astro-sign .sign-img {
        height: 60px;
        width: 60px;
    }

    .astro-sign .sign-img img {
        width: 37px;
    }

    .faq-section h3 {
        font-size: 22px;
    }

    .faq-section .accordion-button {
        font-size: 14px;
    }

}


@media(max-width:575px) {
    header .logo {
        width: 119px;
    }

    .astro-banner h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .best-seller h3,
    .shop-purpose h3 {
        font-weight: 600;
        font-size: 22px;
    }

    .astro-banner p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .details-section .table td {
        /* display: block; */
        width: 100%;
        text-align: left;
        padding-left: 16px;
        padding-right: 16px;
    }

    .details-section .table td:last-child {
        margin-bottom: 12px;
    }

    .details-section .table td:first-child {
        padding-top: 12px;
    }

    .astrologer-profile-card {
        padding: 20px;
    }

    .astrologer-profile-card .profile-top {
        text-align: center;
        flex-direction: column;
    }

    .astrologer-profile-card .action-btns {
        flex-direction: column;
    }

    .astro-footer {
        text-align: left;
    }

    .astro-footer .d-flex {
        justify-content: center;
    }

    .astro-footer h6.position-relative::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .shop-cat img {
    width: 70PX;
    height: 70PX;
}
}
        .contact-section {
            color: #222;
            padding: 60px 0;
        }

        .contact-section .title {
            font-size: 14px;
            color: #ED6028;
            font-weight: 500;
        }

        .contact-section h2 {
            font-size: 32px;
            font-weight: 500;
            margin-top: 10px;
            margin-bottom: 30px;
        }

        .contact-section .social-links strong {
            color: #0D0D0D;
            font-size: 16px;
            font-weight: 500;
        }

        .contact-section .info-item {
            display: flex;
            align-items: start;
            margin-bottom: 20px;
        }

        .contact-section .info-item i {
            font-size: 17px;
            color: #ED6028;
            margin-right: 10px;
            margin-top: 0;
        }

        .contact-section .info-item strong {
            display: block;
            font-weight: 500;
            color: #000;
        }

        .contact-section .social-links a {
            color: #0D0D0D;
            font-size: 18px;
            margin-right: 10px;
            transition: all 0.3s;
            border: 1px solid #0D0D0D;
            height: 35px;
            width: 35px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .contact-section .social-links a:hover {
            color: #ED6028;
        }

        .contact-section .contact-form {
            background: #fafafa;
            border-radius: 12px;
            padding: 20px;
        }

        .contact-section .form-control {
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding-left: 0;
            font-size: 15px;
            box-shadow: none !important;
            background-color: transparent;
        }

        .contact-section label {
            font-size: 13px;
            font-weight: 500;
            color: #777;
            margin-bottom: 4px;
        }

        .contact-section textarea {
            height: 80px;
            resize: none;
        }

        .contact-section .btn-send {
            background-color: #ED6028;
            color: #fff;
            border-radius: 6px;
            padding: 10px 20px;
            font-size: 15px;
            border: none;
            transition: all 0.3s;
        }


        .contact-section .btn-send i {
            margin-left: 5px;
            font-size: 14px;
        }

        .contact-section .info-item p {
            color: #000000B2;
            font-size: 13px;
        }

        .contact-section .reach iframe {
            border-radius: 10px;
        }
   

        a {
            color: #ed6028;
            text-decoration: underline;

        }

        a:hover{
            color: #ffc107;
            text-decoration: underline;

        }

        .heading {
                color: #ed6028;
            }

         .profile-widget .profile-widget-img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 10px;
        }


            /* Astrologer Dashboard */

                    .astro-dashboard {
                        padding: 40px 0;
                    }

                    .dash-container {
                        background: #ffffff;
                        /* padding: 35px; */
                        border-radius: 20px;
                        /* box-shadow: 0px 10px 40px rgba(0,0,0,0.06); */
                    }

                /* HEADER */
                .dash-header-astro {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                .dash-header-astro h2 {
                    font-size: 28px;
                    font-weight: 800;
                }

                .dash-actions {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                }

                /* STATUS BOXES */
                .statusDrop {
                    padding: 6px 14px;
                    border-radius: 10px;
                    border: 1px solid #ddd;
                    font-weight: 600;
                    background: #fff;
                    cursor: pointer;
                    transition: .3s;
                }

                .statusDrop:hover {
                    border-color: #ff6f00;
                    box-shadow: 0px 4px 15px rgba(255,111,0,0.2);
                }

                /* USER WELCOME */
                .user-welcome {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-weight: 600;
                }

                .userImg {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                }

                /* GRID LAYOUT */
                .dash-grid {
                    margin-top: 30px;
                    display: grid;
                    grid-template-columns: 1.2fr 1fr 1fr;
                    gap: 25px;
                }

                /* PROFILE CARD */
                .profile-card {
                    grid-row: span 2;
                    /* background: linear-gradient(135deg, #ffe0b3, #ffc78c); */
                    padding: 25px;
                    border-radius: 18px;
                    box-shadow: 0px 6px 25px rgba(255,167,72,0.25);
                }

                .profile-header {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                .profile-header .emoji {
                    font-size: 32px;
                }

                .profile-card h3 {
                    font-size: 20px;
                    font-weight: 800;
                    color: #f15a24;
                }

                .profile-body p {
                    margin: 8px 0;
                    font-size: 15px;
                }

                .btnEdit {
                    margin-top: 15px;
                    width: 100%;
                    padding: 10px;
                    background: #f15a24;
                    color: white;
                    border: none;
                    border-radius: 10px;
                    font-weight: 600;
                    cursor: pointer;
                }

                /* STAT CARDS */
                .stat-card {
                    background: #fff;
                    padding: 22px;
                    border-radius: 18px;
                    color: white;
                    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
                    transition: .3s ease;
                }

                .stat-card h4 {
                    font-size: 16px;
                    opacity: .9;
                }

                .stat-card h2 {
                    margin-top: 8px;
                    font-size: 32px;
                    font-weight: 900;
                }

                /* HOVER EFFECT */
                .stat-card:hover {
                    transform: translateY(-6px);
                    box-shadow: 0px 14px 35px rgba(0,0,0,0.15);
                }

                /* GRADIENTS */
                .gradient1 {
                    background: linear-gradient(135deg, #f15a24, #ffc107);
                }
                .gradient2 {
                    background: linear-gradient(135deg, #ffc107, #f15a24);
                }
                .gradient3 {
                    background: linear-gradient(135deg, #ffc107, #f15a24);
                }

                .gradient4 {
                    background: linear-gradient(135deg, #f15a24, #ffc107);
                }



                .wallet-container {
                        /* background: #d9eee6; */
                        /* border: 1px solid #f15a24; */
                        /* border-radius: 14px; */
                    }

                    .yellow-btn {
                        background: #FFD600;
                        border: none;
                        padding: 10px 20px;
                        border-radius: 25px;
                        font-weight: 600;
                        transition: 0.3s;
                    }

                    .yellow-btn:hover {
                        background: #ffcd32;
                    }

                    .wallet-stats h4 {
                        font-size: 26px;
                    }

                    .wallet-tabs {
                        display: flex;
                        gap: 30px;
                        list-style: none;
                        padding-left: 0;
                        margin-bottom: 0;
                    }

                    .wallet-tabs li {
                        font-weight: 600;
                        padding-bottom: 10px;
                        cursor: pointer;
                        color: #333;
                    }

                    .wallet-tabs .active-tab {
                        color: #f15a24;
                    }

                    .tab-underline {
                        width: 120px;
                        height: 3px;
                        background: #f15a24;
                        margin-top: -4px;
                        transition: 0.4s;
                    }

                    .wallet-table th {
                        background: #ed602814;
                        border: none;
                    }

                    .wallet-table td {
                        padding: 12px 10px;
                        border-bottom: 1px solid #d8e9e3;
                    }

                    .wallet-stats h4{
                        color:#f15a24;
                    }



                    .clients-page {
    padding: 30px;
    font-family: "Inter", sans-serif;
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.clients-header h2 {
    font-size: 26px;
    font-weight: 600;
}

.filters {
    display: flex;
    gap: 12px;
}

.search-box {
    padding: 10px 14px;
    width: 220px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.filter-select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
}

.client-card {
    padding: 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    transition: 0.2s;
    cursor: pointer;
}

.client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.client-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.client-avatar img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.client-info {
    text-align: center;
}

.client-name {
    font-size: 20px;
    font-weight: 600;
}

.client-email {
    color: #555;
    margin-bottom: 8px;
}

.status-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.online {
    color: #f15a24;
    font-weight: 600;
}

.offline {
    color: #888;
    font-weight: 600;
}

.busy {
    color: #d93c27;
    font-weight: 600;
}

.view-btn {
    width: 100%;
    padding: 10px;
    background: #f15a24;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.view-btn:hover {
    background: #f15a24;
}

.chat-history-page {
    padding: 30px;
    font-family: "Inter", sans-serif;
}

.page-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.chat-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.chat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: 0.2s;
}

.chat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.chat-left h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.chat-time {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.chat-status {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.completed {
    background: #e8f9ef;
    /* color: #f15a24; */
}

.pending {
    background: #fff4da;
    /* color: #dba300; */
}

.cancelled {
    background: #ffe7e7;
    /* color: #f15a24; */
}

.chat-right .amount {
    font-size: 20px;
    font-weight: 700;
     color: #198754;
}

.amount.red {
    color: #dc3545;
}

.amount.yellow {
    color: #c7c7c7;
}





.inbox-container {
    display: flex;
    height: 90vh;
    /* background: #f8f9fc; */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
}

/* LEFT CLIENT LIST */
.client-list {
    width: 28%;
    background: #fff;
    border-right: 1px solid #e5e5e5;
    padding: 20px;
    overflow-y: auto;
}

.side-title {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 600;
}

.client-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.client-item:hover {
    background: #ed602821;
}

.client-item.active {
    background: #ed602821;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
}

.client-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.last-message {
    margin: 0;
    color: #666;
    font-size: 13px;
}

/* RIGHT CHAT AREA */
.chat-window {
    width: 72%;
    display: flex;
    flex-direction: column;
}

/* CHAT HEADER */
.chat-header {
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.chat-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 12px;
}

.chat-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.chat-status {
    margin: 0;
    font-size: 13px;
}

/* CHAT BODY */
.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f3bc0721;
}

.msg {
    max-width: 60%;
    padding: 12px 16px;
    border-radius: 14px;
    margin-bottom: 12px;
    font-size: 14px;
}

.msg-left {
    background: #fff;
    align-self: flex-start;
    border-radius: 14px 14px 14px 0;
}

.msg-right {
    background: #ed602821;
    align-self: flex-end;
    border-radius: 14px 14px 0 14px;
}

/* CHAT INPUT */
.chat-input-area {
    padding: 12px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    font-size: 14px;
}

.send-btn {
    background: #f15a24;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.send-btn:hover {
    background: #f15a24;
}




#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -120px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #f15a24;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}