/* Dual logo layout: icon + wordmark */
.as_header_wrapper .dual-logo{
  display:flex;
  align-items:center;
  /* gap:8px; */
  /* min-width:0; */
}
.as_header_wrapper .dual-logo .logo-icon{
  width:28px;
  height:28px;
  object-fit:contain;
}
.as_header_wrapper .dual-logo .logo-wordmark{
  height:20px;
  width:auto;
  /* max-width:160px; */
  object-fit:contain;
}


@media (max-width: 767px){
  .as_header_wrapper .dual-logo{
    gap:0px;
  }
  .as_header_wrapper .dual-logo .logo-icon{
    width:35px;
    height:35px;
  }
  .as_header_wrapper .dual-logo .logo-wordmark{
    height:14px;
    /* max-width:126px; */
  }
  .global_section_margin{
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 576px) {
  .global_section_margin{
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 480px) {
    .global_section_margin{
      margin-bottom: 20px !important;
    }
  }

  .global_section_margin{
    margin-bottom: 0px;
  }

/* Header layout tweaks */
.as_header_wrapper .header-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

/* Mobile: left align the logo right after the toggle button */
@media (max-width: 767px){
  .as_header_wrapper .header-row
  .as_header_wrapper .logo-container{
    flex:0 0 auto !important;
    /* justify-content:flex-start !important; */
  }
}

/* Desktop: prevent nav overlap by keeping logo compact and giving menu a small margin */
@media (min-width: 992px){
  .as_header_wrapper nav.as_menu{ margin-left:12px; }
}

/* --- Mobile header layout: left group (toggle + logo) and right group (actions) --- */
@media (max-width: 767px){
  .as_header_wrapper .header-row{
    display:flex !important;
    align-items:center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    padding: 6px 8px !important;
  }
  .as_header_wrapper .as_toggle{
    flex: 0 0 auto !important;
    margin: 0 !important;
  }
  .as_header_wrapper .logo-container{
    flex: 0 0 auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    margin: 0 !important;
  }
  .as_header_wrapper .header-actions{
    margin-left: auto !important;
    gap: 6px !important;
  }
}
/* stylesheet */

/* Global Link Styling - Remove underlines from all links */
a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

/* Ensure specific link classes also don't have underlines */
.nav-link, .btn, .card a, .product-card-link, .category-card-link,
.text-decoration-none, .dropdown-item, .list-group-item a {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

/* Override Bootstrap's text-decoration-underline utility class */
.text-decoration-underline {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

:root {
    --primary-color: #797979;
    --secondary-color: #f4a636;
    --dark-color1: #111111;
    --dark-color2: #17384e;
    --white-color: #ffffff;
    --transition: 0.4s ease-in-out;
    
    /* Mystical Astrology Colors */
    --mystical-gold: #ffd700;
    --cosmic-purple: #4b0082;
    --ethereal-blue: #4169e1;
    --starlight: rgba(255, 255, 255, 0.8);
    --cosmic-glow: rgba(255, 215, 0, 0.3);
    
    /* Enhanced Mystical Theme Variables for Chat */
    --dark-cosmic-primary: #0a0a0a;
    --dark-cosmic-secondary: #1a1a2e;
    --dark-deep-space: #0f0f23;
    --dark-nebula-purple: #2d1b69;
    --light-cosmic-primary: #f8f8ff;
    --light-cosmic-secondary: #e6e6fa;
    --light-soft-gold: #fff8dc;
    --golden-gradient-start: #ffd700;
    --golden-gradient-end: #ff9f00;
    --mystic-glow: rgba(255, 215, 0, 0.3);
}

:after,
:before {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
}

body {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    color: var(--primary-color);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    font-weight: 500;
    background: linear-gradient(135deg, #f8f9fa 0%, #f9f9f9 100%) !important;
    min-height: 100dvh;
}
.section_design{
    background-image: url('../images/bg_gold.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    color: white;
}
.section_design_horoscope{
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}
.section_design_testimonial{
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

.section_design_about_astrology {
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        color: black;
}

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

.hide {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Philosopher', sans-serif;
    font-weight: 400;
}

a,
a:hover,
a:focus,
a:visited {
    color: inherit;
    text-decoration: none;
}

/* common css */
.as_padderTop10 {
    padding-top: 10px;
}

.as_padderTop20 {
    padding-top: 20px;
}

.as_padderTop30 {
    padding-top: 30px;
}

.as_padderTop40 {
    padding-top: 40px;
}

.as_padderTop50 {
    padding-top: 50px;
}

.as_padderTop60 {
    padding-top: 60px;
}

.as_padderTop70 {
    padding-top: 70px;
}

.as_padderTop80 {
    padding-top: 80px;
}

.as_padderTop90 {
    padding-top: 90px;
}

.as_padderTop100 {
    padding-top: 90px;
}

.as_padderBottom5 {
    padding-bottom: 5px;
}

.as_padderBottom10 {
    padding-bottom: 10px;
}

.as_padderBottom20 {
    padding-bottom: 20px;
}

.as_padderBottom30 {
    padding-bottom: 30px;
}

.as_padderBottom40 {
    padding-bottom: 40px;
}

.as_padderBottom50 {
    padding-bottom: 50px;
}

.as_padderBottom60 {
    padding-bottom: 60px;
}

.as_padderBottom70 {
    padding-bottom: 70px;
}

.as_padderBottom90 {
    padding-bottom: 90px;
}

.as_padderBottom100 {
    padding-bottom: 90px;
}

.as_margin0 {
    margin: 0px !important;
}

.as_font14 {
    font-size: 16px;
    line-height: 26px;
}
.as_font12 {
    font-size: 12px;
    line-height: 20px;
}
/* .as_toggle {
    display: none;
} */

.as_heading {
    font-size: 36px;
    text-transform: capitalize;
    padding-bottom: 5px;
    position: relative;
    margin: -8px 0 0;
    color: var(--dark-color1);
    font-weight: 600;
}

.form-control {
    height: 45px;
    background-color: #ffffff;
    border: 1px solid rgb(121 121 121 / 20%);
    outline: none;
    box-shadow: none !important;
    color: var(--primary-color);
    padding: 0 28px;
    border-radius: 45px;
}

.form-control:focus {
    border-color: var(--secondary-color) !important;
}

.form-control::placeholder {
    color: #797979;
}

.as_subheading {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--dark-color1);
}

.as_orange {
    color: var(--secondary-color);
}

.as_white {
    color: var(--white-color);
}


.as_btn,
.as_btn:focus,
.as_btn:visited {
    height: 45px;
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    font-size: 14px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    padding: 0 23px;
    border: none !important;
    position: relative;
    color: var(--white-color);
    border-radius: 45px;
    outline: none;
    min-width: 160px;
    justify-content: center;
    outline: none;
    z-index: 1;
    overflow: hidden;
}

.as_btn:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    bottom: 0;
    left: 100%;
    right: 0;
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
}

.as_btn:hover:after {
    left: 0
}

.as_btn:hover {
    color: var(--white-color) !important;
}

.as_btn_new,
.as_btn_new:focus,
.as_btn_new:visited {
    height: 35px;
    /* Reduced height for a smaller button */
    background-image: linear-gradient(45deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    font-size: 12px;
    /* Reduced font size for a more compact look */
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    /* Reduced padding for a smaller appearance */
    border: none;
    border-radius: 20px;
    /* Rounded corners for a modern look */
    color: var(--white-color);
    cursor: pointer;
    /* Pointer cursor for better UX */
    outline: none;
    justify-content: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* Smooth transitions for hover effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    width: 100%;
}

.as_btn_new:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    bottom: 0;
    left: 100%;
    right: 0;
    background-image: linear-gradient(45deg, rgb(243, 115, 53) 0%, rgb(244, 170, 54) 100%);
    transition: all 0.3s ease;
    /* Smooth hover effect */
}

.as_btn_new:hover:after {
    left: 0;
    /* Reveal the gradient effect */
}

.as_btn_new:hover {
    color: var(--white-color);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    /* Slightly larger shadow on hover */
    transform: translateY(-2px);
    /* Lift effect on hover */
}

.as_btn_new:active {
    transform: translateY(0);
    /* Reset lift effect on click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on click */
}





.as_verticle_center {
    display: flex;
    align-items: center;
}

.slick-dots {
    padding: 0;
    margin: 30px 0 0 0;
    list-style: none;
}

.slick-dots li {
    display: inline-flex;
}

.slick-dots li button {
    display: none;
}

.slick-dots li {
    height: 9px;
    width: 9px;
    background-color: #234a64;
    border-radius: 100%;
    margin: 0 6px;
    cursor: pointer;
}

.slick-dots li.slick-active {
    background-color: var(--secondary-color);
}

.slick-slide {
    outline: none;
}

.only-timepicker .datepicker--nav,
.only-timepicker .datepicker--content {
    display: none;
}

.only-timepicker .datepicker--time {
    border-top: none;
}

.datepicker {
    background-color: #ffffff;
    border: 1px solid rgb(255 255 255 / 10%);
    color: var(--primary-color);
}

.datepicker--nav {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.datepicker--nav>div {
    background-color: transparent !important;
    color: var(--primary-color);
}

.datepicker--pointer {
    background-color: #ffffff;
    border-top-color: rgb(255 255 255 / 10%);
    border-right-color: rgb(255 255 255 / 10%);
}

.datepicker--cell:hover {
    background-color: var(--secondary-color);
    color: var(--white-color) !important;
}

.datepicker--cell.-current-,
.datepicker--day-name {
    color: var(--secondary-color);
}

/* select2 */
.select2-selection {
    height: 45px !important;
    background-color: #ffffff !important;
    border: 1px solid #e7e7e7 !important;
    outline: none;
    box-shadow: none !important;
    color: var(--primary-color);
    border-radius: 45px !important;
    transition: none;
}

.select2-selection .select2-selection__rendered {
    color: var(--primary-color) !important;
    font-size: 14px;
    line-height: 45px !important;
    padding: 0 28px !important;
}


.select2-selection__clear {
    display: none;
}

.select2-container--default .select2-selection__arrow {
    height: auto !important;
    bottom: 1px;
    right: 18px !important;
}

.select2-container {
    transition: none;
    width: 100% !important;
}

.select2-dropdown {
    transition: none;
    background-color: #ffffff;
    border-color: #e7e7e7;
    font-size: 14px;
    box-shadow: -2px 0px 28px 0px rgb(0 0 0 / 5%);
}

.select2-search--dropdown {
    padding: 10px 25px;
}

.select2-search--dropdown input {
    background-color: #ffffff;
    border-color: rgb(223 223 223) !important;
    outline: none !important;
}

.select2-results__option {
    padding: 10px 26px;
    background-color: transparent !important;
}

.select2-results__option:hover,
.select2-results__option.select2-results__option--selected {
    color: var(--secondary-color) !important;
}

.select2-container--below.select2-container--open .select2-selection {
    border-radius: 10px 10px 0 0 !important;
}

.select2-container--above.select2-container--open .select2-selection {
    border-radius: 0 0 10px 10px !important;
}

.select2-dropdown.select2-dropdown--above {
    box-shadow: -10px -28px 28px -24px rgb(0 0 0 / 5%);
}

/* loader */
.as_loader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.as_loader img {
    animation: spin 7s infinite linear;
    -webkit-animation: spin 7s infinite linear;
    -moz-animation: spin 7s infinite linear;
}

/* header css start */
.as_header_wrapper {
    background-color: rgb(17 16 17);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.as_header_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.as_logo {
    display: flex;
}

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

.as_menu>ul>li {
    display: inline-flex;
    text-transform: capitalize;
    margin: 0;
    color: #ffffff;
    position: relative;
    align-items: center;
}

.as_info_detail:last-child {
    margin-right: 0px;
}

.as_header_detail {
    width: calc(100% - 449px);
}

.as_menu>ul>li>a {
    padding: 0px 0px 13px 0;
    position: relative;
    transition: all 0.3s linear;
    text-decoration: none;
}

.as_wishlist {
    margin-left: 20px;
}

.as_menu>ul>li>a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.as_menu>ul>li>a:hover:before,
.as_menu>ul>li>a.active:before {
    width: 30px;
}

.as_menu ul li a:hover,
.as_menu ul li a.active {
    color: var(--secondary-color);
}

.as_info_detail {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    padding: 20px 0;
}

.as_search_wrapper {
    max-width: 415px;
    width: 100%;
    position: relative;
}

.as_search_wrapper>a {
    position: absolute;
    top: 11px;
    right: 20px;
}

.as_search_wrapper .form-control {
    height: 45px;
    border: 1px solid #fff;
    border-radius: 45px;
    background-color: transparent;
    color: #ffffff;
}

.as_search_wrapper .form-control::placeholder {
    color: #ffffff;
}

.as_user img {
    border-radius: 100%;
    border: 3px solid #fff;
}

.as_user {
    position: relative;
    margin-left: 30px;
}

.dropdown-divider {
    margin: 0;
    border-top: 1px solid rgb(236, 236, 253);
}

.profile-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    /* Makes the image circular */
    object-fit: cover;
    /* Ensures the image scales properly */
}

.as_user span {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 100%;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 14px;
    padding-left: 2px;
}

.as_search {
    cursor: pointer;
}

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

.as_info_detail ul li {
    display: inline-flex;
    padding: 0 15px;
}

.as_info_detail ul li a,
.as_info_detail ul li a:focus {
    text-decoration: none;
    color: inherit;
}

.as_infobox {
    display: flex;
    color: #ffffff;
}

.as_infobox:hover {
    color: var(--secondary-color);
}

.as_info_detail ul li .as_infobox>span {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.as_right_info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.as_cart_wrapper {
    margin: 20px 15px 0px 0px;
    position: relative;
}

.profile_img_logo {
    margin: 15px 15px 0px 0px;
    position: relative;
}

.as_cart_wrapper>span {
    position: relative;
    cursor: pointer;
    margin-right: 20px;
}

.as_cart_wrapper>span .as_cartnumber {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
    min-width: 14px;
    padding: 0 4px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.as_cart_wrapper {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.as_cart_wrapper:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.05);
}

.as_cart_wrapper>span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerSvg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.as_cart_wrapper:hover .headerSvg {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.as_cart {
    position: relative;
}

.as_cart_box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: #ffffff;
    z-index: 999;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid #e8e9ea;
    transform: translateY(-10px);
}

.as_cart.cart_open .as_cart_box {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    transform: translateY(0) scale(1);
}

.as_cart_box::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid #ffffff;
    filter: drop-shadow(0 -3px 6px rgba(0, 0, 0, 0.1));
}

.as_cart_list {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 15px;
}

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

.as_cart_list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    backdrop-filter: blur(5px);
}

.as_cart_list li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.as_cart_list .as_cart_img {
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.as_cart_list .as_cart_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
}

.as_cart_list li:hover .as_cart_img {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.as_cart_list li:hover .as_cart_img img {
    transform: scale(1.05);
}

.as_cart_info {
    flex: 1;
    min-width: 0;
}

.as_cart_info a {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 8px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.as_cart_info a:hover {
    color: var(--secondary-color);
}

.as_cart_info p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 8px 0;
    font-weight: 500;
}

.as_cart_info .quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.as_cart_info .quantity-controls button {
    width: 28px;
    height: 28px;
    border: 2px solid #e74c3c;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.as_cart_info .quantity-controls button:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.as_cart_info .quantity-controls span {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 25px;
    text-align: center;
    background: rgba(52, 152, 219, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.as_cart_info .fa-trash {
    color: #e74c3c;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    background: rgba(231, 76, 60, 0.1);
    margin-left: 10px;
}

.as_cart_info .fa-trash:hover {
    color: #c0392b;
    background: rgba(231, 76, 60, 0.2);
    transform: scale(1.1);
}

.as_cart_box .as_cart_total {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.as_cart_box .as_cart_total p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.as_cart_box .as_cart_total p span {
    color: #27ae60;
    font-size: 20px;
    font-weight: 800;
}

.as_cart_box .as_cart_btn {
    text-align: center;
    padding: 0;
}

.as_cart_box .as_cart_btn button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.as_cart_box .as_cart_btn button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.as_cart_box .as_cart_btn button:hover::before {
    left: 100%;
}

.as_cart_box .as_cart_btn button:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.as_cart_box .as_cart_btn button:active {
    transform: translateY(0);
}

/* Custom Scrollbar */
.as_cart_list::-webkit-scrollbar {
    width: 6px;
}

.as_cart_list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.as_cart_list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.as_cart_list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
}

/* Empty cart state */
.as_cart_empty {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.as_cart_empty i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.as_cart_empty h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.as_cart_empty p {
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .as_cart_box {
        width: 320px;
        right: -10px;
    }
    
    .as_cart_list .as_cart_img img {
        width: 60px;
        height: 60px;
    }
    
    .as_cart_info a {
        font-size: 14px;
    }
    
    .as_cart_info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .as_cart_box {
        width: 280px;
        right: -20px;
    }
}

.as_cart_list .as_cart_info p {
    font-size: 14px;
}

.as_cart_box .as_cart_total,
.as_cart_box .as_cart_btn {
    padding-right: 20px;
}

.as_cart_box .as_cart_total p {
    margin-top: 10px;
    text-align: left;
    text-transform: capitalize;
}

.as_cart_box .as_cart_total p span {
    float: right;
    font-family: 'Philosopher', sans-serif;
}

.as_cart_box .as_cart_btn {
    text-align: center;
    padding-top: 5px;
    display: flex;
}

.as_cart_box .as_cart_btn button {
    background-color: var(--dark-color1);
    padding: 0 5px;
    text-transform: capitalize;
    min-width: 120px;
    margin-right: 1;
}

.as_cart_box .as_cart_btn button::after {
    border-left-color: var(--dark-color1);
}

.as_cart_box .as_cart_btn button::before {
    border-right-color: var(--dark-color1);
}

.as_cart_box .as_cart_btn button:hover {
    background-color: var(--secondary-color);
}

.as_cart_box .as_cart_btn button:hover::after {
    border-left-color: var(--secondary-color);
}

.as_cart_box .as_cart_btn button:hover::before {
    border-right-color: var(--secondary-color);
}

.as_cart_box .as_cart_btn button:first-child {
    margin-right: 15px;
}

.as_cart_list::-webkit-scrollbar {
    width: 4px;
}

.as_cart_list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.as_cart_list::-webkit-scrollbar-thumb {
    background-color: #ff6f00;
    outline: #708090 solid 1px;
}

.as_menu>ul>li .as_submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--dark-color2);
    padding: 15px 0;
    border-radius: 10px;
    width: 170px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.as_menu>ul>li>.as_submenu {
    transform: translateY(-10px);
}

.as_menu>ul>li:hover>.as_submenu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.as_menu>ul>li .as_submenu li a {
    padding: 7px 20px;
    display: flex;
}

.as_menu>ul>li .as_submenu>li>.as_submenu {
    right: 100%;
    top: 8px;
    left: auto;
    transform: translateX(-20px);
}

.as_menu>ul>li .as_submenu>li:hover>.as_submenu {
    transform: translateX(-10px);
    opacity: 1;
    visibility: visible;
}

.as_menu>ul>li .as_submenu>li {
    position: relative;
}

.as_menu>ul>li .as_submenu:before {
    content: '';
    position: absolute;
    border-bottom: 7px solid var(--dark-color2);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    bottom: 100%;
    left: 13px;
}

.as_menu>ul>li>.as_submenu>li>.as_submenu:before {
    bottom: auto;
    top: 10px;
    left: 100%;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 7px solid var(--dark-color2);
}

/* header css end */
/* banner css start */
.as_banner_wrapper {
    background-image: url(../images/bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 170px 0 150px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.as_banner_detail .as_btn {
    background: #ffffff;
    color: var(--dark-color1);
    font-weight: 600;
    transition: all 0.3s linear;
}

.as_banner_detail .as_btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.as_banner_wrapper:after {
    position: absolute;
    content: '';
    /* background: url(../images/shape.svg) no-repeat; */
    width: 100%;
    height: 273px;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(-1);
    z-index: 1;
}

.as_banner_detail h5 {
    font-size: 26px;
    margin: 0 0 5px;
}

.as_banner_detail h1 {
    font-size: 54px;
    line-height: 62px;
    margin: 0 0 13px;
}

.as_banner_detail p {
    margin-bottom: 26px;
}

.as_banner_img {
    position: relative;
}

.as_banner_img .as_hand_bg {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
    display: inline-block;
}

.as_banner_img .as_hand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 60%;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

.as_banner_slider .slick-arrow.slick-prev {
    left: -200px;
}

.as_banner_slider .slick-arrow.slick-next {
    right: -900px;
}

.as_banner_slider .slick-arrow.as_btn {
    background: rgba(255, 255, 255, .3);
    min-width: 50px;
    height: 50px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transition: all 0.3s linear;
}

.as_banner_slider .slick-arrow.as_btn:after {
    display: none;
}

.as_banner_slider .slick-arrow.as_btn:hover {
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
}

.as_banner_slider .slick-arrow>span {
    display: inline-flex;
}

/* banner css end */
/* about css start */
.as_about_wrapper {
    background-image: url('../images/bg2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.as_paragraph_wrapper {
    padding-left: 20px;
    border-left: 2px solid var(--secondary-color);
}

.as_paragraph_wrapper {
    padding-left: 20px;
    border-left: 2px solid #f4a636;
    /* margin-top: 20px; */
}

.as_contact_expert {
    display: flex;
    margin: 40px 10px;
    align-items: center;
    color: var(--dark-color1);
}

.as_contact_expert .as_icon {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    position: relative;
}

.as_year_ex {
    font-size: 60px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Philosopher', sans-serif;
    margin-right: 10px;
}

.as_contact_expert .as_icon:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #dcdcdc;
    content: '';
    border-radius: 100%;
    width: 100px;
    height: 100px;
}

.as_contact_expert:hover .as_icon:before {
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
}

.as_contact_expert h5 {
    font-size: 18px;
    margin: 0;
}

.as_contact_expert h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 0 0;
}

.as_aboutimg {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.as_aboutimg img {
    display: inline-block;

}

.as_aboutimg span.as_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.as_aboutimg span.as_play:after,
.as_aboutimg span.as_play:before {
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    bottom: -5px;
    right: -5px;
    background-color: rgb(246 246 246 / 60%);
    animation: zoom 0.8s infinite alternate;
    border-radius: 100%;
    z-index: -1;
}

.as_aboutimg span.as_play:after {
    left: -12px;
    right: -4px;
    top: -12px;
    bottom: -12px;
}

.register-url {
    color: blue;
    text-decoration: underline;
}

/*Cards */
.card {
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: none;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(239, 239, 239);
    font-weight: 600;
    font-size: 14px;
    color: #59597d;
}

.card-title {
    margin-bottom: .75rem;
    font-weight: 600;
    font-size: 16px;
    color: #1a262b;
}

.card-action {
    float: right
}

.card-action a i {
    color: #1a262b;
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card-deck {
    margin-bottom: 30px;
}

.card-deck .card {
    margin-right: 15px;
    margin-left: 15px;
}

.card-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.card-group .card {
    box-shadow: none;
}

.float-card {
    position: relative;
    top: -50px;
    margin: 0px 20px;
    border-radius: .25rem;
    box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.45);
}

.float-card img {
    width: 100%;
}

.float-card-content {
    margin-top: -40px;
}

.post-date {
    background: #11cdef;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: .25rem;
    box-shadow: 1px 2px 15px #00000040;
}

.card.card-primary {
    border-bottom: 3px solid #5e72e4 !important;

}

.card.card-success {
    border-bottom: 3px solid #2dce89 !important;
}

.card.card-danger {
    border-bottom: 3px solid #f5365c !important;
}

.card.card-warning {
    border-bottom: 3px solid #fb6340 !important;
}

.card.card-info {
    border-bottom: 3px solid #11cdef !important;
}

.card.card-light {
    border-bottom: 3px solid #e9eaea !important;
}

.card.card-secondary {
    border-bottom: 3px solid #ff2fa0 !important;
}

.card.card-dark {
    border-bottom: 3px solid #172b4d !important;
}

.overlay-primary {
    background: #5e72e4;
    background: rgba(0, 140, 255, 0.81);
}

.overlay-success {
    background: #2dce89;
    background: rgba(21, 202, 32, 0.81);
}

.overlay-danger {
    background: #f5365c;
    background: rgba(253, 53, 80, 0.81);
}

.overlay-warning {
    background: #fb6340;
    background: rgba(255, 151, 0, 0.81);
}

.overlay-info {
    background: #11cdef;
    background: rgba(13, 206, 236, 0.81);
}

.overlay-dark {
    background: #172b4d;
    background: rgba(34, 48, 53, 0.81);
}



/* user profile cards */



/*Profile Card 1*/
.profile-card-1 {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    color: #ffffff;
    text-align: center;
    height: 368px;
    border: none;
}

.profile-card-1 .background {
    width: 100%;
    vertical-align: top;
    opacity: 0.9;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transform: scale(1.8);
    transform: scale(4.8);
}

.profile-card-1 .card-content {
    width: 100%;
    padding: 15px 25px;
    position: absolute;
    left: 0;
    top: 50%;
}

.profile-card-1 .profile {
    border-radius: 50%;
    position: absolute;
    bottom: 50%;
    left: 50%;
    max-width: 100px;
    opacity: 1;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 1);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.profile-card-1 h2 {
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 20px;
}

.profile-card-1 h2 small {
    display: block;
    font-size: 15px;
    margin-top: 10px;
}

.profile-card-1 i {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 5px;
}

.profile-card-1 .icon-block {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.profile-card-1 .icon-block a {
    text-decoration: none;
}

/*Profile card 2*/
.profile-card-2 .card-img-block {
    float: left;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.profile-card-2 .card-body {
    position: relative;
}

.profile-card-2 .profile {
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 15%;
    width: 100px;
    height: 85px;
    max-width: 75px;
    border: 3px solid rgba(255, 255, 255, 1);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.profile-card-2 h5 {
    font-weight: 600;
}

.profile-card-2 .card-text {
    font-weight: 300;
    font-size: 15px;
}

.profile-card-2 .icon-block {
    float: left;
    width: 100%;
}

.profile-card-2 .icon-block a {
    text-decoration: none;
}

.profile-card-2 i {
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 5px;
}


/*Profile Card 3*/
.profile-card-3 {
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    text-align: center;
    height: 368px;
    border: none;
}

.profile-card-3 .background-block {
    float: left;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.profile-card-3 .background-block .background {
    width: 100%;
    vertical-align: top;
    opacity: 0.9;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
    -webkit-transform: scale(1.8);
    transform: scale(2.8);
}

.profile-card-3 .card-content {
    width: 100%;
    padding: 15px 25px;
    color: #232323;
    float: left;
    background: #efefef;
    height: 50%;
    border-radius: 0 0 5px 5px;
    position: relative;
    z-index: 100;
}

.profile-card-3 .card-content::before {
    content: '';
    background: #efefef;
    width: 120%;
    height: 100%;
    left: 11px;
    bottom: 51px;
    position: absolute;
    z-index: -1;
    transform: rotate(-13deg);
}

.profile-card-3 .profile {
    border-radius: 50%;
    position: absolute;
    bottom: 50%;
    left: 50%;
    max-width: 100px;
    opacity: 1;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 1);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: 105;
}

.profile-card-3 h2 {
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 20px;
}

.profile-card-3 h2 small {
    display: block;
    font-size: 15px;
    margin-top: 10px;
}

.profile-card-3 i {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 5px;
}

.profile-card-3 .icon-block {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.profile-card-3 .icon-block a {
    text-decoration: none;
}


/*Profile card 4*/
.profile-card-4 .card-img-block {
    float: left;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.profile-card-4 .card-body {
    position: relative;
}

.profile-card-4 .profile {
    border-radius: 50%;
    position: absolute;
    top: -62px;
    left: 50%;
    width: 100px;
    border: 3px solid rgba(255, 255, 255, 1);
    margin-left: -50px;
}

.profile-card-4 .card-img-block {
    position: relative;
}

.profile-card-4 .card-img-block>.info-box {
    position: absolute;
    background: rgba(217, 11, 225, 0.6);
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    opacity: 0;
}

.profile-card-4 h5 {
    font-weight: 600;
}

.profile-card-4 .card-text {
    font-weight: 300;
    font-size: 15px;
}

.profile-card-4 .icon-block {
    float: left;
    width: 100%;
}

.profile-card-4 .icon-block a {
    text-decoration: none;
}

.profile-card-4 i {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 5px;
}

.custom-grid {
    margin-top: 350px;
}

.custom-grid-form {
    margin-top: 350px;
}


/* horoscope css end */
/* service css start */
.as_service_wrapper {
    background-image: url('../images/bg4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.as_service_img {
    position: relative;
}

.as_service_img .as_service_img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 150px;
}

.as_service_img:after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    width: 207px;
    height: 651px;
    /* background-image: url('../images/service_shape.png'); */
    bottom: -35px;
}

.as_service_single .as_service_img:after {
    display: none;
}

.as_service_img .as_service_circle {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
}

.as_service_box {
    background-color: #ffffff;
    padding: 59px 22px 25px;
    /* margin-top: 30px; */
    box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 4%);
    border: 1px solid rgb(231, 231, 231);
    position: relative;
    min-height: 322px;
    border-radius: 10px;
    z-index: 1;
    transition: all 0.3s linear;
}

.as_service_box:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    /* margin: -135px 0 0 -135px; */
    background-image: url(../images/circle.png);
    width: 271px;
    height: 270px;
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
    z-index: -1;
}

.as_service_box:hover {
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
}

.as_service_box .as_icon svg {
    fill: var(--secondary-color);
    transition: none;
}

.as_service_box:hover .as_icon svg {
    fill: #ffffff;
}

.as_service_box p {
    transition: none;
}

.as_service_box .as_subheading {
    margin: 40px 0 10px;
    font-size: 20px;
    position: relative;
    font-weight: 600;
    transition: none;
}

.as_link {
    text-transform: capitalize;
    font-size: 15px;
    line-height: 24px;
    color: var(--dark-color1);
    letter-spacing: 0.6px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    transition: none;
    cursor: pointer;
    /* display: inline-flex; */
}

.as_link span {
    margin: -1px 0 0 5px;
}

.as_service_box:hover .as_link span svg {
    fill: #ffffff;
}

.as_service_box .as_link span svg,
.as_service_box .as_link span {
    transition: none !important;
    fill: var(--primary-color);
}

.as_service_box:hover .as_subheading,
.as_service_box:hover p,
.as_service_box:hover .as_link {
    color: #ffffff;
}

.as_service_box:hover .as_link svg {
    fill: #ffffff;
}

/* service css end */
/* why choose css start */
.as_whychoose_wrapper {
    background-image: url('../images/bg5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
}

.as_whychoose_wrapper:before {
    position: absolute;
    content: '';
    /* background: url(../images/shape.svg) no-repeat; */
    width: 100%;
    height: 273px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.as_whychoose_wrapper:after {
    position: absolute;
    content: '';
    /* background: url(../images/shape.svg) no-repeat; */
    transform: scale(-1);
    width: 100%;
    height: 273px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* .as_about_page .as_whychoose_wrapper:before {
    background: url(../images/shape1.svg) no-repeat;
}

.as_about_page .as_whychoose_wrapper:after {
    background: url(../images/shape1.svg) no-repeat;
} */

.as_whychoose_wrapper .as_heading {
    color: #ffffff;
}

.as_whychoose_wrapper p {
    color: #ffffff;
}

.as_whychoose_box .as_number>span {
    font-size: 24px;
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.as_whychoose_box h4 {
    font-size: 20px;
    margin: 25px 0 35px;
    text-align: center;
}

.as_number {
    display: block;
    position: relative;
    width: 130px;
    margin: 0 auto;
}

.as_whychoose_box:hover h4 {
    color: var(--secondary-color);
}

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

.as_choose_ul li {
    display: inline-flex;
    width: 19.5%;
    justify-content: center;
    color: #ffffff;
}

.as_choose_ul li:hover h4 {
    color: var(--secondary-color);
}

/* why choose css end */
/* customer css start */
/* .as_customer_wrapper {
    background-image: url('../images/bg6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
} */

.as_customer_img {
    width: 89px !important;
    height: 89px;
    cursor: pointer;
}

.as_customer_img img {
    border-radius: 100%;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: -2px 0px 13px 0px rgba(0, 0, 0, 0.13);
    width: 100%;
}

.as_customer_nav .slick-list {
    padding: 30px !important;
}

.as_customer_img:first-child {
    margin: 16px 0 0 10px;
}

.as_customer_img:nth-child(2) {
    margin: 155px 0 0 -40px;
}

.as_customer_img:nth-child(3) {
    margin: 50px 0 0 -8px;
}

.as_customer_img:nth-child(4) {
    margin: 170px 0 0 -50px;
}

.as_customer_img:nth-child(6) {
    margin: 124px 0 0 -50px;
}

.as_customer_img:nth-child(5) {
    margin: 5px 0 0 0px;
}


.as_customer_nav {
    position: relative;
}

.as_customer_box {
    border-radius: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 25%, #ff8c00 50%, #ffa500 75%, #ffd700 100%);
    background-size: 200% 200%;
    animation: goldShimmer 3s ease-in-out infinite;
    padding: 54px 50px;
    position: relative;
    color: #ffffff;
    z-index: 1;
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.as_customer_box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.4),
        0 15px 25px rgba(255, 140, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffcc02 25%, #ff9500 50%, #ffb347 75%, #ffd700 100%);
}

.as_customer_box::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffb347, #ff8c00, #ffa500, #ffd700);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.6;
    animation: rotateGlow 4s linear infinite;
}

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

.as_customer_box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 235px;
    height: 235px;
    background-image: url(../images/circle1.png);
    z-index: -1;
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
}

.as_customer_box .as_customer_img>img {
    border-radius: 100%;
}

.as_customer_box .as_customer_img {
    position: relative;
    display: inline-flex;
    margin: -45px 0 34px;
}

.as_customer_box .as_customer_img span {
    position: absolute;
    width: 38px;
    height: 38px;
    background-color: var(--secondary-color);
    border-radius: 100%;
    line-height: 32px;
    right: -10px;
    bottom: 0px
}

.as_customer_box .as_customer_img span img {
    display: inline-block;
}

.as_customer_box p {
    font-size: 14px;
    line-height: 24px;
}

.as_customer_box h3 {
    font-size: 20px;
    margin: 25px 0 0;
}

.as_customer_box h3>span {
    font-size: 15px;
}

.as_customer_slider .slick-dots {
    position: absolute;
    top: 50%;
    left: -34px;
    margin: 0;
    transform: translateY(-50%);
}

.as_customer_slider .slick-dots li {
    display: flex;
    margin: 10px auto;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
}

.as_customer_slider .slick-dots li.slick-active {
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
    box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.18);
}

.as_customer_for:before {
    content: '';
    position: absolute;
    top: 0;
    left: -27px;
    bottom: 0;
    border-left: 1px solid #e7e7e7;
}

.as_customer_img.slick-slide.slick-current {
    transform: scale(1.2);
}

.as_customer_img.slick-slide.slick-current img {
    border-color: var(--secondary-color);
}

/* customer css end */
/* zodiec sign css start */
.as_sign_box {
    background-color: #ffffff;
    /* max-width: 170px; */
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: -2px 0px 28px 0px rgb(0 0 0 / 5%);
    border: 1px solid rgb(231, 231, 231);
    margin-top: 30px;
    transition: all 0.3s linear;
}

.as_sign_box .as_sign {
    background-color: #ffffff;
    box-shadow: -2px 0px 15px 0px rgba(0, 0, 0, 0.06);
    height: 56px;
    width: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 14px;
    border-radius: 100%;
    transition: all 0.3s linear;
}

.as_sign_box:hover .as_sign img {
    transform: rotate(360deg);
}

.as_sign_box h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color1);
    margin: 0 0 2px;
    transition: none;
    transition: all 0.3s linear;
}

.as_sign_box p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    transition: none;
}

.as_sign_box:hover h5,
.as_sign_box:hover p {
    color: #ffffff;
}

.as_sign_box:hover {
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    border-color: rgb(231, 231, 231);
}

/* zodiec sign css end */

/* blog css start */
.as_blog_wrapper {
    background-image: url('../images/bg4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.as_blog_img {
    position: relative;
    margin-bottom: 36px;
}

.as_blog_img .date-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    padding: 5px 15px;
    background: linear-gradient(45deg, #f37935, #fdc830);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.as_blog_img .date-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid #f37935;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.as_blog_img .date-ribbon::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    border-right: 5px solid #c85f1d;
    border-bottom: 5px solid transparent;
}

.as_blog_box {
    /* margin-top: 30px; */
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: -2px 0px 28px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(231, 231, 231);
    overflow: hidden;
}

.v3_blog_wrapper .row {
    justify-content: center;
}

.as_blog_box:hover .as_subheading {
    color: var(--secondary-color);
}

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

.as_blog_detail {
    padding: 0 20px 20px;
}

.as_blog_box ul li {
    display: inline-flex;
    margin-right: 30px;
    font-size: 14px;
    line-height: 24px;
}

.as_blog_box ul li img {
    margin-right: 10px;
}

.as_blog_box .as_subheading {
    line-height: 28px;
    margin: 8px 0;
    font-size: 20px;
    transition: all 0.3s linear;
}

.as_blog_box.as_blog_single .as_subheading {
    color: var(--primary-color);
}

.as_blog_page .as_blog_box {
    margin: 0 0 30px;
    box-shadow: none;
}

.as_workinghours_widget ul li>a {
    display: flex;
    justify-content: space-between;
}

.as_post_widget .as_product .as_productimg {
    padding: 0;
}

.as_post_widget .as_product span {
    color: inherit;
    transition: all 0.3s linear;
}

.as_blog_page .as_blog_detail {
    padding: 0;
}

.as_blog_page .as_blog_box {
    border: none;
    margin: 0 0 50px;
}

.as_blog_page .as_blog_wrapper,
.as_blogsingle_page .as_blog_wrapper {
    background: var(--white-color);
}

.as_post_widget .as_product .as_product_detail span>img {
    margin-right: 5px;
}

.as_post_widget .as_product .as_product_detail span:last-child {
    margin-top: 8px;
}

.as_accordion .card-header h2 {
    margin: 0;
}

.as_accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #f37935;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: '+';
    font-size: 30px;
    transition: transform .2s ease-in-out;
    line-height: 20px;
    background-image: none;
    transition: all 0.3s linear;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-360deg);
    content: '-';
    font-size: 40px;
    line-height: 15px;
}

.as_accordion .accordion-button:focus {
    z-index: 3;
    border-color: #f37935;
    outline: 0;
    box-shadow: 0 0 0 1px rgb(243 121 53);
}

.as_about_admin .as_subheading {
    color: #fff !important;
    font-size: 22px;
    font-weight: 600;
}

.as_about_admin .as_subheading span {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}

/* blog css end */
/* product css start */
.as_product_wrapper {
    background-image: url('../images/bg7.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.as_shopsingle_page .as_product_wrapper {
    background: #f6f6f6;
}

.as_product_box {
    /* margin-top: 30px; */
    text-align: left;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgb(231, 231, 231);
    background-color: #ffffff;
    min-height: 340px;
}

.as_product_img {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.as_product_img>img {
    width: 100%;
}

.as_cart_svg {
    max-width: 12px !important;
}

.as_product_detail {
    padding: 0 30px 20px;
}

.profile-card-2 .card-img-block {
    float: left;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.profile-card-4 .card-img-block {
    float: left;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.profile-card-4 .card-img-block {
    position: relative;
}

.profile-card-4 .card-img-block>.info-box {
    position: absolute;
    background: rgba(217, 11, 225, 0.6);
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    opacity: 0;
}

.as_product_detail .as_subheading {
    font-size: 20px;
    font-weight: 600;
}

.as_product_img ul {
    position: absolute;
    margin: 0;
    list-style: none;
    bottom: -60px;
    left: 0;
    right: 0;
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    padding: 14px 10px 14px 23px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}

.as_product_box .as_product_img ul {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.as_product_img ul li {
    display: inline-flex;
    padding: 0 10px 0 7px;
    border-right: 1px solid rgb(255 255 255 / 10%);
    line-height: 26px;
    color: #ffffff;
}

.as_product_img ul li:last-child {
    border-right: none;
}

.as_product_box .as_subheading {
    margin: 12px 0px 9px;
    ;
}

.as_new_tag {
    position: absolute;
    top: 22px;
    left: 22px;
    background-color: var(--secondary-color);
    color: #fff;
    text-transform: capitalize;
    border-radius: 4px;
    padding: 2px 15px;
}

.as_product_box .as_price {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color1);
}

.as_product_box .as_price>span {
    font-size: 14px;
    font-weight: 400;
}

.as_product_img ul li:nth-child(2) {
    padding: 0 7px 0 5px;
}

.as_product_box .as_price>del {
    color: #797979;
}

.as_product_img ul li span {
    margin-left: 8px;
    font-size: 14px;
}

.as_product_box ul li img {
    display: inline-block;
}

section.as_pricing_plan .row {
    justify-content: center;
}

.as_product_wrapper.as_product_page {
    background-color: var(--dark-color2);
}

/* product css end */

/* footer css start */
.as_footer_wrapper {
    background-image: url('../images/bg8.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    z-index: 1;
}


/* .as_shopsingle_page .as_footer_wrapper:before {
    background: url(../images/shape2.svg) no-repeat;
} */

.as_footer_wrapper:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #111111;
    opacity: 0.87;
    z-index: -1;
}

.as_know_sign_wrapper .as_heading {
    color: #fff;
    padding: 11px 0 0;
}

.as_know_sign_wrapper {
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    position: relative;
    z-index: 1;
}

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

.as_sign_form ul li {
    display: inline-flex;
    width: 23%;
    margin-left: 15px;
}

.as_sign_form ul li:last-child {
    width: 21%;
}

.as_sign_form ul li .as_input_feild {
    width: 100%;
}

.as_newsletter_wrapper {
    margin: -5px 0 15px;
}

.as_newsletter_box {
    position: relative;
}

.as_newsletter_box .form-control {
    border-radius: 45px;
    height: 45px;
}

.as_newsletter_box .as_btn {
    position: absolute;
    right: 5px;
    height: 35px;
    top: 5px;
    bottom: 5px;
    min-width: 60px;
    z-index: 1;
}

.as_newsletter_box .as_btn img {
    width: 17px;
}

.as_footer_inner {
    /* display: flex; */
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.as_footer_widget {
    margin-top: 30px;
}

.as_footer_widget>p {
    margin: 18px 0 20px;
    font-size: 14px;
}

.as_footer_widget>ul>li:hover {
    color: var(--secondary-color);
}

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

.as_footer_widget>ul>li {
    padding-bottom: 10px;
    position: relative;
    font-size: 14px;
    padding-left: 18px;
}

.as_footer_widget>ul>li span svg {
    fill: #ffffff;
    margin-right: 10px;
}

.as_footer_widget>ul>li:hover span svg path {
    fill: var(--secondary-color);
}

.as_footer_widget>ul>li:hover span {
    transition: none;
}

.as_footer_heading {
    font-size: 20px;
    line-height: 46px;
    margin: 0;
    position: relative;
    margin-bottom: 22px;
}

.as_footer_widget .as_contact_list li {
    padding-left: 0;
    display: flex;
    align-items: baseline;
}

.as_footer_widget>ul>li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 100%;
    left: 0;
    top: 9px;
}

.as_footer_widget .as_contact_list li:before {
    display: none;
}

.as_footer_widget .as_contact_list li img {
    margin: 0 15px 0 0;
    transform: translateY(3px);
}

.as_footer_widget .as_contact_list li p {
    margin: 0;
}

.as_share_box ul li a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e7e7e7;
    border-radius: 100%;
}

.as_footer_widget .as_login_data label .checkmark {
    border: 1px solid #ffffff;
}

.as_share_box ul {
    margin: 0;
    padding: 0;
}

.as_share_box ul li a:hover {
    border-color: var(--secondary-color);
}

.as_share_box ul li {
    display: inline-flex;
    margin-right: 18px;
}

.as_share_box ul li svg {
    transition: none;
    fill: var(--primary-color);
}

.as_share_box ul li:hover svg {
    fill: var(--secondary-color);
}

.as_copyright_wrapper {
    padding: 23px 0 27px;
    display: flex;
    justify-content: center;
}

.as_footer_widget>ul>li a {
    transition: 0.2s linear;
}

/* footer css end */
/* breadcrum start */
.as_breadcrum_wrapper {
    background-image: url(../images/bg10.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 30px; /* Mobile padding */
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Desktop padding */
@media (min-width: 768px) {
    .as_breadcrum_wrapper {
        padding: 140px 0 140px;
    }
}

.as_breadcrum_wrapper .container {
    z-index: 2;
    position: relative;
}

.as_breadcrum_wrapper::after {
    position: absolute;
    content: '';
    /* background: url(../images/shape.svg) no-repeat; */
    width: 100%;
    height: 273px;
    left: 0;
    right: 0;
    transform: scale(-1);
    bottom: 0;
    z-index: 1;
}

.as_breadcrum_wrapper:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.as_breadcrum_wrapper h1 {
    margin: 0px 0 15px;
    font-size: 28px;
}

.as_breadcrum_wrapper .breadcrumb {
    display: inline-flex;
    border-radius: 40px;
    font-size: 14px;
    line-height: 18px;
    padding: 0 30px;
    margin: 0px;
    align-items: center;
    background-color: transparent;
}

.breadcrumb>li+li:before {
    content: '';
    background-image: url('../images/star.png');
    background-repeat: no-repeat;
    width: 22px;
    height: 20px;
    display: inline-flex;
    margin: 0 10px;
}

.breadcrumb>li {
    display: inline-flex;
    align-items: center;
}

.form-group {
    margin: 10px 0px 10px;
}

/* breadcrum end */
/* pricing plan start */
.as_pricing_plan {
    background-image: url(../images/bg9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.as_service_page .as_pricing_plan {
    background-image: url(../images/bg4.jpg);
}

.as_service_page {
    background-image: url(../images/bg9.jpg);
}

/* .as_service_page .as_footer_wrapper:before {
    background: url(../images/shape1.svg) no-repeat;
} */

.as_pricing_box {
    border: 1px solid rgb(231, 231, 231);
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.04);
    padding: 60px 35px 35px;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.as_pricing_box:after {
    content: '';
    position: absolute;
    background-image: url(../images/circle2.png);
    left: 50%;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 368px;
    height: 368px;
}

.as_gradient_text {
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.as_pricing {
    font-size: 45px;
    font-weight: 700;
    padding: 50px 0 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e7e7e7;
}

.as_pric_icon svg {
    fill: var(--secondary-color);
    transition: none;
}

.as_pricing sup,
.as_pricing sub {
    font-size: 18px;
    font-weight: 400;
}

.as_pricing sup {
    top: -22px;
}

.as_pricing sub {
    bottom: 0;
}

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

.as_pricing_box ul li:not(.as_inactive) {
    color: var(--dark-color1);
}

.as_pricing_box ul li {
    padding-bottom: 15px;
    transition: none;
}

.as_pricing_box .as_btn {
    margin-top: 17px;
    background: #f6f6f6;
    border: 2px solid transparent;
    color: var(--dark-color1) !important;
}

.as_pricing_box .as_btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.as_pricing_box .as_btn:after {
    display: none;
}

.as_pricing_box:hover {
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    color: #ffffff;
}

.as_pricing_box:hover .as_pric_icon svg {
    fill: #ffffff;
}

.as_pricing_box:hover ul li {
    color: #ffffff !important;
}

.as_pricing_box:hover .as_gradient_text {
    color: #ffffff;
    -webkit-text-fill-color: inherit;
    transition: none;
}



/* pricing plan end */
/* service detail start */
.as_about_page .as_service_wrapper {
    background-image: url(../images/bg9.jpg);
}

.as_servicedetail_wrapper {
    background-color: #07273c;
}

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

.as_service_ul li {
    padding: 0 0 6px 23px;
    position: relative;
}

.as_service_ul li:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: url(../images/svg/arrow.svg) no-repeat center;
    left: 0;
    top: 8px;
}

.as_service_detail_inner .as_heading {
    font-size: 32px;
    padding-bottom: 15px;
    margin: 22px 0 15px;
}

.as_service_detail_inner p {
    margin-bottom: 20px;
}

.as_service_detail_inner h4 {
    font-size: 24px;
}

.as_service_widget h3 {
    font-size: 22px;
    display: inline-flex;
    padding-bottom: 11px;
}

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

.as_service_widget ul li {
    font-size: 14px;
    margin-bottom: 7px;
    padding-left: 24px;
    position: relative;
}

.as_service_widget ul li a {
    display: flex;
    justify-content: space-between;
    transition: none;
}

.as_service_widget ul li a span {
    transition: none;
}

.as_service_widget ul li a span:first-child {
    border-bottom: 1px solid transparent;
}

.as_service_widget ul li:hover a span:first-child {
    border-color: var(--secondary-color);
}

.as_service_widget ul li:hover {
    color: var(--secondary-color);
}

.as_service_widget ul li:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: url(../images/svg/arrow.svg) no-repeat center;
    left: 0;
    top: 8px;
}

.as_service_widget ul li:hover:before {
    background: url(../images/svg/arrowHover.svg) no-repeat center;
}

.as_service_widget.as_download_box {
    background-color: var(--secondary-color);
    padding: 50px 10px;
}

.as_gplay {
    margin-bottom: 15px;
    display: inline-flex;
}

.as_service_widget .as_heading::after {
    width: 75%;
}

/* service detail End */
/* zodiac detail start */
.as_card_box img {
    border-radius: 10px
}

.as_card_box>a {
    outline: none;
}

.as_zodiac_sidebar .as_sign_box {
    margin-bottom: 20px;
}

.as_zodiac_heading .as_sign {
    background-color: var(--secondary-color);
    height: 80px;
    width: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 38px;
    position: relative;
}

.as_zodiac_heading .as_sign:after,
.as_zodiac_heading .as_sign:before {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 18px solid var(--secondary-color);
}

.as_zodiac_heading .as_sign:before {
    left: auto;
    right: 100%;
    border-left: none;
    border-right: 18px solid var(--secondary-color);
}

.as_zodiac_heading {
    font-family: 'Philosopher', sans-serif;
    font-size: 36px;
    padding-left: 20px;
}

.as_zodiac_heading>span {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.as_tab_wrapper .nav-tabs>li>button {
    background-color: transparent !important;
    border: none !important;
    font-size: 20px;
    padding: 16px 35px;
    font-family: 'Philosopher', sans-serif;
    position: relative;
}

.as_tab_wrapper .nav-tabs>li>button::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 0;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.as_tab_wrapper .nav-tabs>li>button:hover,
.as_tab_wrapper .nav-tabs>li>button.active {
    color: var(--secondary-color);
}

.as_tab_wrapper .nav-tabs>li>button:hover:before,
.as_tab_wrapper .nav-tabs>li>button.active:before {
    width: 100%;
}

.as_tab_wrapper .nav-tabs {
    border-color: rgb(121 121 121 / 20%);
}

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

.as_tab_wrapper .nav-link {
    color: #3c3c3c;
}

.as_countdown_wrapper ul li {
    display: inline-flex;
    flex-direction: column;
    margin: 50px 0 30px;
    padding-right: 62px;
    position: relative;
}

.as_countdown_wrapper ul li .progress-percentage {
    width: 108px;
    height: 108px;
    border: 9px solid #193e57;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-family: 'Philosopher', sans-serif;
}

.as_countdown_wrapper ul li h3 {
    margin: 15px 0 0;
    text-transform: capitalize;
}

.as_countdown_wrapper ul li:last-child {
    padding-right: 0px;
}

.as_zodiac_single_wrapper {
    background-color: #07273c;
}

.as_progressbar {
    position: relative;
    width: 108px !important;
    height: 108px !important;
}

.as_countdown_wrapper ul li canvas {
    position: absolute;
    top: -21px;
    left: -21px;
}

/* zodiac detail End */
/* Blog Single Start */
.as_blogsingle_page .as_blog_box {
    box-shadow: none;
    border: none;
    margin: 0;
}

.as_blogsingle_page .as_blog_box .as_blog_detail {
    padding: 0;
}

.as_tag_wrapper {
    border-bottom: 1px solid #e7e7e7;
}

.as_bloquote {
    color: #ffffff;
    padding: 60px 120px;
    margin-bottom: 20px;
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    border-radius: 10px;
    position: relative;
}

.as_bloquote:after {
    position: absolute;
    content: '';
    background-image: url(../images/circle1.png);
    right: 0;
    top: 0;
    bottom: 0;
    width: 235px;
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
}

.as_bloquote h3 {
    font-size: 18px;
}

.as_bloquote h3 span {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.as_tag_wrapper .as_btn {
    background: transparent;
    height: 50px;
    text-transform: capitalize;
    padding: 0 12px;
    font-family: 'Lato', sans-serif;
    border: 1px solid #e7e7e7 !important;
    color: var(--primary-color);
    transition: all 0.3s linear;
}

.as_tag_wrapper .as_btn:hover {
    color: #ffffff;
}

.as_tag_wrapper ul li {
    margin-right: 17px;
    align-items: center;
    color: var(--dark-color1);
    font-weight: 600;
    font-size: 17px;
    font-family: 'Philosopher', sans-serif;
}

.as_tag_wrapper ul {
    padding-top: 15px;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.as_about_admin {
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 10px;
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    margin-top: 40px;
}

.as_about_admin .as_aboutImage {
    width: 200px;
}

.as_about_admin .as_aboutDetail {
    width: calc(100% - 200px);
    color: #ffffff;
}

.as_about_admin .as_aboutImage img {
    border-radius: 10px;
}

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

.as_comment_section ul li {
    display: flex;
    /* align-items: center; */
}

.as_comment_section>ul>li {
    border-bottom: 1px solid #e7e7e7;
    padding: 40px 0;
}

.as_comment_section>ul>li:last-child {
    border-bottom: none;
}

.as_comment_section>ul>li>ul>li {
    border-bottom: 1px solid #e7e7e7;
    padding: 0 0 40px;
    margin-bottom: 40px;
}

.as_comment_section>ul>li>ul>li:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.as_comment_section>ul>li>ul>li {
    margin-left: 80px;
}

.as_comment_section>ul>li .as_comnt_img {
    width: 200px;
}

.as_comment_section>ul>li .as_comnt_img img {
    border-radius: 10px;
}

/* .as_comment_section >ul>li>.as_comnt_detail{
    padding-right: 100px;
} */
.as_comment_section>ul>li .as_comnt_detail {
    width: calc(100% - 200px);
    position: relative;
}

.as_comment_section>ul>li .as_comnt_detail .as_btn {
    position: absolute;
    right: 35px;
    top: 0;
    padding: 0 10px;
}

.as_comment_section>ul>li .as_comnt_detail .as_btn img {
    margin-right: 10px;
}

.as_comment_section>ul>li .as_comnt_detail>span {
    display: flex;
    padding: 5px 0 10px;
}

.as_comment_section>ul>li .as_comnt_detail>span img {
    margin-right: 10px;
}

.as_comment_form .as_heading,
.as_comment_section .as_heading {
    font-size: 24px;
    border-bottom: 1px solid #e7e7e7;
}

.as_comment_form .form-group {
    margin-bottom: 30px;
}

.as_comment_form textarea.form-control {
    height: 210px;
    padding: 15px 30px;
    resize: none;
}

.as_comnt_detail .as_comnt_title {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.as_comnt_detail .as_comnt_title .as_subheading {
    font-weight: 600;
}

.as_comnt_detail .as_comnt_title .as_time {
    padding-left: 38px;
}

.as_comnt_detail .as_comnt_title>span>img {
    margin-right: 5px;
}

.as_comnt_detail .as_comnt_title .as_date {
    padding-left: 30px;
}

.as_comnt_detail .as_comnt_title .as_reply {
    padding-left: 30px;
}

.as_blog_box.as_blog_single {
    margin: 0px;
}

.as_widget {
    margin-bottom: 50px;
}

.as_search_widget {
    position: relative;
}

.as_search_widget .form-control {
    width: 100%;
}

.as_search_widget>span {
    position: absolute;
    background-image: -moz-linear-gradient(0deg, rgb(253, 200, 48) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(253, 200, 48) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(253, 200, 48) 0%, rgb(243, 115, 53) 100%);
    padding: 0 25px;
    display: inline-flex;
    bottom: 0;
    top: 0;
    right: 0;
    align-items: center;
    border-radius: 0 45px 45px 0;
}

.as_tag_wrapper>.as_btn {
    margin: 0 15px 10px;
}

.as_service_widget .as_recentposts li {
    padding: 0;
    margin: 5px 0 13px;
}

.as_service_widget .as_recentposts li h5 {
    margin: -5px 0 0;
    font-size: 16px;
    line-height: 26px;
    transition: none;
}

.as_service_widget .as_recentposts li:before {
    display: none;
}

.as_service_widget .as_recentposts li .as_img {
    margin-right: 15px;
}

.as_service_widget .as_recentposts li .as_detail>span {
    display: flex;
    align-items: center;
}

.as_service_widget .as_recentposts li .as_detail>span img {
    margin-right: 10px;
}

.as_tag_wrapper .as_btn:hover {
    background-color: var(--secondary-color);
}

.as_tag_wrapper .as_btn:hover:before {
    border-right-color: var(--secondary-color)
}

.as_tag_wrapper .as_btn:hover:after {
    border-left-color: var(--secondary-color)
}

.as_blog_box .as_subheading>a {
    transition: none;
    text-decoration: none;
}

/* Blog Single End */
/* Contact Start */
.as_info_box {
    display: flex;
    align-items: center;
}

.as_info_box .as_icon {
    width: 45px;
    border: 1px solid var(--secondary-color);
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: relative;
}

li.as_info_box p {
    margin-left: 25px;
}

.as_contact_wrapper .as_appointment_form textarea.form-control {
    height: 243px;
}

.as_contact_detail {
    background-color: #f6fbff;
    padding: 40px;
    border-radius: 10px;
}

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

.as_contact_detail ul li {
    margin-bottom: 30px;
}

/* Contact End */
/* Search popup start */

/* Search popup End */
/* Login popup Start */
.modal.show {
    opacity: 1;
    background-color: rgb(3 29 46 / 87%);
}

.modal .modal-dialog {
    margin: 0 auto;
    transform: none !important;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
}

.modal-content {
    background-color: var(--dark-color2);
    width: 100%;
}

.modal-header {
    padding: 15px 25px;
    border-color: rgb(255 255 255 / 10%);
}

.modal-header h4 {
    font-size: 24px;
}

.modal-body .form-control {
    border: 1px solid rgb(255 255 255 / 10%);
}

.modal-body {
    padding: 40px;
}

.modal-header .close {
    color: #fff;
    font-weight: 300;
    text-shadow: none;
    opacity: 1;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color: var(--dark-color1);
    border-radius: 100%;
    margin-top: 5px;
    font-size: 16px;
    outline: none !important;
}

.small-button {
    font-size: 0.8rem;
    /* Smaller font size */
    padding: 5px 10px;
    /* Reduced padding */
    border-radius: 4px;
    /* Optional for a sleeker look */
}

.btn-rating-submit {
    background-color: #fdd14e;
    /* Yellow color */
    color: #333;
    /* Text color */
    border: none;
    border-radius: 50px;
    /* Makes the button round */
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    /* Adjust font size */
    padding: 10px 20px;
    /* Adjust padding for round shape */
}

.btn-rating-submit:hover {
    background-color: #e0a800;
    /* Slightly darker yellow on hover */
}

.btn-sm {
    font-size: 0.8rem;
    /* Smaller font size */
    padding: 10px 116px;
    /* Reduced padding for smaller size */
}

.btn-success {
    font-size: 0.8rem;
    /* Smaller font size */
    padding: 4px 110px;
    /* Reduced padding for smaller size */
}


.as_login_wrapper {
    /* background-color: #101112; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
}

.as_login_slider {
    background-image: url('../images/login_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px 0 0 10px;
}

.ad_login_box {
    background-color: #fff;
    border-radius: 10px;
}

.as_login_detail {
    padding: 70px 40px 70px 20px;
}

.as_login_detail h1 {
    color: var(--dark-color1);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 30px
}

.as_login_detail p {
    color: var(--dark-color1);
    font-size: 19px;
}

.as_login_data label {
    font-weight: 400;
    margin: 0;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}

.as_login_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.as_login_img img {
    display: inline-block;
}

.as_login_detail .as_btn {
    min-width: 100%;
}

.as_login_data label input {
    display: none;
}

.as_login_data label .checkmark {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 4px;
    border: 1px solid #e7e7e7;
}

.as_login_data label .checkmark:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    transform: rotate(-45deg) scale(0);
    top: 3px;
    left: 3px;
}

.as_login_data label input:checked+.checkmark:after {
    transform: rotate(-45deg) scale(1);
}

.as_login_box,
.as_signup_box {
    display: none;
}

.as_login_box.active,
.as_signup_box.active {
    display: block;
}

/* Login popup End */
/* Appointment Page Start */
.as_appointment_form .form-control {
    border: 1px solid #e7e7e7;
    border-radius: 45px;
}

.as_appointment_form .form-control::placeholder {
    color: #797979;
}

.as_appointment_form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.as_appointment_form .form-group>span {
    position: absolute;
    right: 20px;
    top: 7px;
}

.as_appointment_form textarea.form-control {
    height: 200px;
    resize: none;
    border-radius: 20px;
}

/* Appointment Page End */
/* Error Page Start */
.as_error_wrapper {
    height: 100dvh;
    display: flex;
    align-items: center;
    background-image: url('../images/bg12.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

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

.as_error_detail_box .as_circle {
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    width: 850px;
    bottom: 0;
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
    margin: -55% 0 0 -58%;
    z-index: -1;
}

.as_error_detail_box .as_btn {
    background: #ffffff;
    color: var(--dark-color1);
}

.as_error_wrapper h2 {
    text-transform: capitalize;
    letter-spacing: 6px;
    font-size: 35px;
}

.as_error_wrapper p {
    font-size: 40px;
    margin-bottom: 40px;
    line-height: 48px;
}

/* Error Page End */
/* shop page */
.as_shop_topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.as_shop_topbar .as_select_box {
    max-width: 270px;
    width: 100%;
}

/* shop single */
.as_shopsingle_wrapper,
.as_cartsingle_wrapper,
.as_checkout_wrapper {
    background-image: url('../images/bg4.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.as_shopsingle_nav .as_prod_img {
    margin: 0 0 30px;
    width: 169px !important;
    cursor: pointer;
}

.as_shopsingle_nav .as_prod_img img {
    height: 140px;
    width: 100%;
    border-radius: 10px;
}

.as_shopsingle_for .as_prod_img img {
    width: 100%;
    border-radius: 10px;
}

.as_shopsingle_slider .as_shopsingle_nav {
    width: 200px;
    padding-right: 30px;
}

.as_product_description .as_subheading {
    font-weight: 600;
    font-size: 24px;
}

.as_shopsingle_slider .as_shopsingle_for {
    width: calc(100% - 200px);
}

.as_product_description>p {
    font-size: 15px;
    padding-bottom: 13px;
}

.as_shopsingle_slider {
    display: flex;
}

.as_shopsingle_slider .as_shopsingle_nav .slick-track {
    display: flex;
    flex-direction: column;
}

.ad_wishlist,
.ad_compare {
    width: 45px;
    height: 45px;
    border: 1px solid #e7e7e7;
    border-radius: 100%;
    margin: 0 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.as_share_box ul {
    margin: 0;
    padding: 0;
}

.as_price {
    font-size: 21px;
    margin: 5px 0 15px;
    color: var(--dark-color1);
    font-weight: 500;
}

.as_price del {
    color: #797979;
    margin-left: 10px;
}

.prod_quantity {
    display: flex;
    align-items: center;
    color: var(--dark-color1);
}

.prod_quantity input {
    margin: 0;
    padding: 0 60px;
    text-align: center;
    width: 56px;
    border: none;
    padding: 0;
    height: 43px;
}

.quantity {
    position: relative;
    margin: 0 30px;
    border: 1px solid #e7e7e7;
    width: 99px;
    border-radius: 15px;
}

.quantity .qty_button {
    position: absolute;
    background-color: transparent;
    border: none;
    right: 0;
    height: 22px;
    width: 40px;
    top: 0;
    border-left: 1px solid #e7e7e7;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity .qty_button.minus {
    bottom: 0;
    top: auto;
    border-top: 1px solid #e7e7e7;
}

.prod_detail .buy_btn.as_btn span {
    margin-right: 6px;
}

.as_shopsingle_nav .slick-list.draggable {
    padding: 0 !important;
}

textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 15px;
    border-radius: 20px;
}

.as_cartsingle_wrapper .prod_thumb {
    position: absolute;
}

.as_price .as_btn {
    background: #f7b709;
    height: 30px;
    min-width: 108px;
    font-size: 19px;
    border-radius: 6px;
    margin-left: 22px;
}

.rating_star span {
    color: var(--dark-color1);
    margin: 0 30px;
}

.product_rating {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(118 118 118 / 30%);
    padding-bottom: 26px;
    margin-bottom: 23px;
}

.prod_detail {
    display: flex;
    border-top: 1px solid rgb(118 118 118 / 30%);
    padding: 30px 0 0;
    border-bottom: 1px solid rgb(118 118 118 / 30%);
}

.as_cartsingle_wrapper .prod_thumb img {
    width: 50px;
}

.as_cartsingle_wrapper .product_details {
    padding: 0 0 0 70px;
}

.as_cartsingle_wrapper td,
.as_cartsingle_wrapper th {
    padding: 20px !important;
    border-top: 1px solid rgb(255 255 255 / 10%) !important;
}

.as_cartsingle_wrapper table {
    border: 1px solid rgb(255 255 255 / 10%);
}

.cupon_code_wrap {
    display: flex;
}

.cupon_code_wrap .form-control {
    width: 35%;
    margin-right: 25px;
}

.step .receipt_btn {
    margin: 0 25px;
}

.stock_details span {
    color: #1cb71c;
}

.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
    background-color: var(--secondary-color) !important;
}

.as_widget_title {
    color: var(--dark-color1);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

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

.as_widget ul li {
    line-height: 20px;
    padding: 15px 0;
    border-top: 1px solid #e7e7e7;
    text-transform: capitalize;
}

.as_widget ul li a {
    transition: none;
}

.as_widget ul li.as_product:hover span+span {
    color: var(--secondary-color);
}

.as_widget ul li:hover {
    color: var(--secondary-color);
}

.as_widget ul li:first-child {
    padding-top: 0px;
    border-top: none;
}

.as_widget ul li:last-child {
    padding-bottom: 0px;
}

.as_share_widget.as_share_box ul li a {
    width: 39px;
    height: 39px;
}

.as_share_widget.as_share_box ul li {
    border: none;
    padding: 0px;
}

.as_share_widget.as_share_box ul li a svg {
    fill: #797979;
    transition: none;
}

.as_product>a {
    display: flex;
    align-items: center;
}

.as_share_widget.as_share_box ul li:hover a svg {
    fill: var(--secondary-color);
}

.as_product .as_productimg {
    padding: 10px;
    background-color: #f6f8fc;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.as_product .as_product_detail {
    padding: 0 0 0 19px;
    display: flex;
    flex-direction: column;
}

.as_product .as_product_detail>img {
    width: 80px;
    margin-bottom: 10px;
}

.as_product .as_product_detail>.as_title {
    color: var(--dark-color1);
    font-weight: 600;
    margin-bottom: 6px;
}

.as_product .as_product_detail>span {
    color: var(--dark-color1);
}

.as_product .as_product_detail>span>del {
    color: #797979;
    margin-left: 7px;
}

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

.as_pagination ul li {
    display: inline-flex;
    background-color: #f6f6f6;
    border-radius: 45px;
    text-transform: capitalize;
    margin: 0 12px;
}

.as_pagination ul li a,
.as_pagination ul li span {
    transition: none;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 45px;
    padding: 0 18px;
}

.as_pagination ul li:last-child {
    margin-right: 0px;
}

.as_pagination ul li.as_prev,
.as_pagination ul li.as_next {
    padding: 0 30px;
}

.as_pagination ul li.as_active,
.as_pagination ul li:hover {
    background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
    color: #ffffff;
}

/* pricing css */
.as_pricing_page .as_pricing_plan {
    background-image: url(../images/bg2.jpg);
}

/* service single */
.as_service_single>h3 {
    color: var(--dark-color1);
    padding: 5px 0 3px;
    font-weight: 600;
}

.as_service_single>ul {
    padding: 0 150px 0 17px;
    margin: 0 0 14px;
}

.as_service_single ul li {
    margin-bottom: 6px;
}

.as_bookingform .as_heading {
    font-size: 24px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 30px;
}

form.d_block {
    display: inline-block;
}

.as_bookingheading {
    font-size: 20px;
    color: var(--dark-color1);
    display: flex;
    align-items: center;
    font-weight: 600;
    margin: 0 0 35px;
}

.as_bookingheading>img {
    margin-right: 10px;
}

.as_astro img {
    border-radius: 10px;
}

.as_astro h5 {
    font-size: 18px;
    color: var(--dark-color1);
    font-weight: 600;
    padding-top: 6px;
}

.as_astro {
    cursor: pointer;
}

.as_astro input:checked+span>span:after,
.as_astro:hover span>span:after {
    transform: none;
}

.as_astro>span> :after {
    position: absolute;
    content: '';
    border-radius: 10px;
    background-image: -moz-linear-gradient(0deg, rgb(253, 200, 48) 0%, rgb(243, 115, 53) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(253, 200, 48) 0%, rgb(243, 115, 53) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(253, 200, 48) 0%, rgb(243, 115, 53) 100%);
    opacity: 0.502;
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
    transform: scale(0);
}

.as_astro>span>span {
    position: relative;
    display: inline-flex;
}

.as_booking_section {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 37px;
}

.as_booking_section.as_payment {
    border: none;
}

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

.as_booking_section ul li {
    display: flex;
    justify-content: space-between;
    margin: 0 0 18px;
}

.as_booking_section ul.as_total_amount {
    border-right: 1px solid #e7e7e7;
    padding-right: 45px;
    margin-right: 15px;
}

.as_booking_section ul.as_total_amount li:last-child {
    border-top: 1px solid #e7e7e7;
    padding-top: 13px;
    margin-top: 22px;
}

.as_booking_section .as_payment_list li {
    display: inline-flex;
    margin-right: 40px;
    cursor: pointer;
}

.as_booking_section .as_payment_list li svg {
    margin-right: 10px;
    fill: #797979;
    transition: none;
}

.as_booking_section .as_payment_list li:hover svg {
    fill: var(--secondary-color);
}

.as_booking_section .as_payment_list li:hover {
    color: var(--secondary-color);
}

.as_shop_sidebar .as_widget:last-child {
    margin-bottom: 0;
}

/* Responsive css */
@media (min-width: 1200px) {
    .container {
        width: 1400px;
    }
}

@media (min-width:1400px) and (max-width:1810px) {

    .as_header_detail {
        width: calc(100% - 220px);
    }

    .as_info_detail {
        padding-right: 50px;
    }

    /* .as_menu_wrapper{
        padding-right: 50px; 
    } */

    .as_info_detail ul li,
    .as_right_info,
    .as_menu>ul>li {
        font-size: 14px;
    }
}

@media (max-width:1199px) and (min-width:991px) {
    .as_product_box {
        min-height: 483px;
    }
}

@media (max-width:1800px) {
    .as_banner_slider .slick-arrow.slick-next {
        right: -750px;
    }

    .as_banner_slider .slick-arrow.slick-prev {
        left: -120px;
    }

    .as_whychoose_wrapper:before,
    .as_footer_wrapper:before {
        top: -1px;
    }

    .as_whychoose_wrapper:after,
    .as_banner_wrapper:after {
        bottom: -1px;
    }
}

@media (max-width:1560px) {
    .as_banner_slider .slick-arrow.slick-next {
        right: -700px;
    }
}

@media (max-width:1560px) {
    .as_banner_slider .slick-arrow.slick-next {
        right: -650px;
    }

    .as_banner_slider .slick-arrow.slick-prev {
        left: -60px;
    }
}

@media (max-width:1450px) {

    .as_error_detail_box .as_circle {
        width: 75%;
        display: inline-block;
        margin: -36% 0 0 -38%;
    }

    .as_error_detail_box img {
        width: 60%;
        display: inline-block;
    }
}

@media (max-width:1399px) {
    .as_header_detail {
        width: calc(100% - 220px);
    }

    .as_infobox {
        font-size: 14px;
    }

    .as_menu>ul>li {
        margin: 0 10px;
    }
}

@media (max-width:1360px) {
    .as_menu ul li a {
        font-size: 13px;
    }

    .as_banner_slider .slick-arrow.slick-next,
    .as_banner_slider .slick-arrow.slick-prev {
        right: auto;
        left: 70px;
        top: auto;
        transform: none;
        bottom: -80px;
    }

    .as_banner_slider .slick-arrow.slick-prev {
        left: 0;
    }

    .as_banner_slider {
        z-index: 2;
        margin-top: -80px;
    }
}

@media (max-width:1260px) {
    .as_header_wrapper .as_info_detail .row {
        display: flex;
        align-items: center;
    }

    .as_cart_wrapper {
        margin-left: 20px;
        padding: 10px 15px;
        font-size: 11px;
    }

    .as_menu ul li a {
        padding: 13px 0;
    }

    .as_info_detail,
    .as_menu_wrapper {
        padding-right: 0;
    }

    .as_banner_slider .slick-arrow.slick-next {
        right: -580px;
    }

    .as_customer_wrapper .slick-prev {
        left: 0;
    }

    .as_customer_wrapper .slick-next {
        right: 20px;
        margin: 0;
    }

    .as_overview_wrapper .slick-prev {
        left: -20px;
    }

    .as_overview_wrapper .slick-next {
        right: -4px;
    }

    .as_header_wrapper .as_info_detail .row>div {
        flex: 1;
    }
}

@media (max-width:1199px) {
    .as_service_img:after {
        bottom: -100px;
    }

    .as_aboutimg::after {
        top: 85px;
        right: 80px;
    }

    .as_aboutimg::before {
        left: -45px;
        bottom: -40px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    .as_product_img>img {
        width: 100%;
    }

    .as_tab_wrapper .nav-tabs>li>a {
        padding: 16px 20px;
    }

    .as_countdown_wrapper ul li {
        padding-right: 30px;
    }

    .as_tag_wrapper .as_btn {
        margin-bottom: 10px;
    }

    .as_banner_detail h1 {
        font-size: 40px;
        line-height: 52px;
    }

    .as_banner_detail h5 {
        font-size: 23px;
    }

    .as_customer_img {
        width: 75px !important;
        height: 75px;
    }

    .as_sign_form ul li {
        margin-left: 8px;
    }

    .as_know_sign_wrapper>div {
        width: 100%;
        text-align: center;
    }

    .as_know_sign_wrapper .as_heading {
        padding-bottom: 30px;
    }

    .as_comnt_detail .as_comnt_title .as_time,
    .as_comnt_detail .as_comnt_title .as_reply,
    .as_comnt_detail .as_comnt_title .as_date {
        font-size: 12px;
    }

    .as_blog_box ul li img {
        margin-right: 5px;
    }

    .as_comment_section>ul>li .as_comnt_img img {
        width: 100px;
    }

    .as_comment_section>ul>li .as_comnt_img {
        width: 120px;
    }

    .as_comment_section>ul>li .as_comnt_detail {
        width: calc(100% - 120px);
        padding-right: 0px;
    }

    .as_comment_section>ul>li>ul>li {
        margin-left: 50px;
    }
}

@media (max-width:1160px) {
    .as_banner_slider .slick-arrow.slick-next {
        right: -515px;
    }
}

@media (max-width:1145px) {
    .as_info_detail ul li .as_infobox>span.as_orange {
        width: 50px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (max-width:991px) {
    .as_heading {
        font-size: 28px;
    }

    .as_infobox .as_infoicon svg {
        width: 15px;
    }

    .as_info_detail ul li .as_infobox>span.as_orange {
        width: 40px;
    }

    .as_cart_wrapper {
        margin-left: 10px;
    }

    .as_infobox .as_infoicon {
        margin-right: 5px;
    }

    .as_cart_wrapper>span {
        margin-right: 12px;
    }

    .as_header_detail {
        width: calc(100% - 170px);
    }

    .as_info_detail,
    .as_menu_wrapper {
        padding-right: 6px;
    }

    .as_info_detail ul li {
        padding: 5px;
    }

    .as_info_detail ul li .as_infobox>span.as_orange {
        width: 34px;
    }

    .as_infobox .as_logintext {
        display: none;
    }

    .as_banner_detail h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .as_banner_detail h5 {
        font-size: 18px;
    }

    .as_aboutimg::before,
    .as_aboutimg::after {
        display: none
    }

    .as_aboutimg>img {
        margin: 0 0px 30px auto;
        width: 100%;
    }

    .as_padderTop80 {
        padding-top: 50px;
    }

    .as_product_img ul {
        display: flex;
        justify-content: space-around;
    }

    .as_service_detail_inner {
        margin-bottom: 50px;
    }

    .as_newsletter_box {
        margin: 0 20px;
    }

    .as_card_box {
        text-align: center;
    }

    .as_card_box img {
        display: inline-block;
    }

    .as_choose_ul li {
        width: 33.33%;
    }

    .as_comment_form {
        margin-bottom: 50px;
    }

    .as_verticle_center {
        display: block;
    }

    .as_service_img .as_service_circle {
        margin: 60px auto;
        margin-left: 60px;
    }

    .as_customer_nav .slick-list {
        display: inline-flex;
        width: 330px;
    }

    .as_copyright_wrapper,
    .as_login_data {
        display: block;
    }

    .as_banner_slider {
        margin: 0;
    }

    .as_choose_ul {
        text-align: center;
    }

    .as_banner_wrapper {
        padding: 240px 0 100px;
    }

    .as_tab_wrapper {
        float: left;
        width: 100%;
    }

    .as_product_description {
        padding: 50px 0 0;
    }

    .as_pagination ul li.as_prev,
    .as_pagination ul li.as_next {
        padding: 0;
    }

    .as_share_box ul li {
        margin-right: 5px;
    }

    .as_blog_detail .col-lg-4.col-md-4.col-sm-12 img {
        width: 100%;
        margin-bottom: 30px;
    }

    .as_bloquote {
        padding: 30px;
    }

    .as_comnt_detail .as_comnt_title {
        display: block;
    }

    .as_comnt_detail .as_comnt_title .as_time {
        padding-left: 0;
    }

    .as_comnt_detail .as_comnt_title .as_reply,
    .as_comnt_detail .as_comnt_title .as_date {
        padding-left: 10px;
    }

    .as_contact_detail {
        margin-bottom: 50px;
    }

    .as_customer_img:nth-child(2) {
        margin: 110px 0 0 -42px;
    }

    .as_customer_img:nth-child(3) {
        margin: 30px 0 0 -8px;
    }

    .as_customer_img:nth-child(4) {
        margin: 120px 0 0 -50px;
    }

    .as_customer_img:nth-child(5) {
        margin: 0px;
    }

    .as_customer_img:nth-child(6) {
        margin: 10px 0 0 20px;
    }

    .as_booking_section ul.as_total_amount {
        border-right: 0px;
        padding-right: 0px;
        margin-right: 0px;
    }

    .as_banner_img {
        margin-top: 50px;
    }

    .as_service_img:after {
        bottom: 0;
    }
}

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

    .as_product_description {
        padding: 50px 0 0;
    }

    .prod_detail {
        display: block;
    }

    .prod_detail .as_btn {
        margin: 0 0 30px;
    }

    .as_search_wrapper {
        padding-top: 0;
    }

    .as_choose_ul li {
        width: 100%;
    }

    .as_sign_box {
        margin: 40;
        margin: 30px auto 0 !important;
    }

    .as_blog_img img {
        width: 100%;
    }

    .as_banner_slider .slick-arrow.slick-next {
        /* right: -75px; */
        height: 40px;
        width: 40px;
        margin-left: 240px;
    }

    /* .as_toggle {
        display: flex;
        cursor: pointer;
    } */

    .menu_open .as_menu {
        display: block;
        /* Ensure this shows the menu */
    }

    .as_menu {
        display: none;
        /* Hide by default */
    }

    .as_menu ul li,
    .as_menu ul li a {
        display: block;
    }

    .as_menu {
        position: fixed;
        left: -200px;
        top: 0;
        bottom: 0;
        background-color: var(--dark-color1);
        z-index: 999;
        width: 300px;
        border-right: 2px solid var(--secondary-color);
        opacity: 0;
        visibility: hidden;
    }

    .menu_open .as_menu {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .as_menu li {
        display: flex;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
        margin: 0;
    }

    .as_menu ul li a:before {
        display: none;
    }

    .as_menu_wrapper {
        padding: 12px 10px;
    }

    .as_cart_wrapper {
        display: flex;
    }

    .as_cart_wrapper>span {
        margin-right: 5px;
    }

    .as_info_detail {
        justify-content: center;
        flex-direction: column;
        padding: 10px;
    }

    .as_right_info {
        padding-left: 5px;
    }

    .as_search_inner {
        padding: 0 20px;
    }

    .as_menu>ul>li .as_submenu {
        position: relative;
        opacity: 1;
        visibility: visible;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        right: auto !important;
        padding: 0;
        background-color: transparent;
        display: none;
    }

    .as_service_img:after {
        bottom: -40px;
    }

    .as_menu>ul>li .as_submenu .as_submenu {
        display: none;
    }

    .as_menu>ul>li .as_submenu:before {
        display: none;
    }

    .as_menu ul li .as_submenu.active {
        display: block;
    }

    .as_menu ul li.as_submenu_li:after {
        position: absolute;
        content: '';
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        top: 25px;
        right: 0;
    }

    .as_menu ul li.as_submenu_li ul li.as_submenu_li:after {
        top: 18px;
    }

    .as_service_img .as_service_img {
        position: unset;
        transform: translate(0, 0);
        margin: auto;
    }

    .as_service_img .as_service_circle {
        margin: auto;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
    }

    .as_service_img {
        position: relative;
        margin: 50px 0;
        text-align: center;
    }

    .as_banner_slider .slick-arrow.as_btn {
        min-width: 40px;
        height: 40px;
    }

    .as_banner_slider .slick-arrow.slick-next,
    .as_banner_slider .slick-arrow.slick-prev {
        bottom: -50px;
    }

    .as_service_single>ul {
        padding: 0 0px 0 18px;
    }

    .as_blog_wrapper.as_padderBottom90 {
        padding-bottom: 0px;
    }

    .as_shop_sidebar {
        margin-bottom: 40px;
    }

    .as_shopsingle_slider .as_shopsingle_nav .slick-track {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .as_shopsingle_slider .as_shopsingle_nav {
        width: 100%;
        padding-right: 0px;
    }

    .as_shopsingle_slider .as_shopsingle_for {
        width: 100%;
        display: block;
    }

    .as_shopsingle_slider {
        display: block;
    }

    .as_shopsingle_nav .as_prod_img {
        margin: 0 10px 20px;
    }

    .as_shopsingle_nav .as_prod_img img {
        height: auto;
    }

    .as_logo {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:600px) {
    .as_comment_section>ul>li .as_comnt_detail .as_btn {
        position: relative;
        right: auto;
        top: auto;
        padding: 0 10px;
        margin: 10px 0 0 0;
    }

    .as_sign_form ul li {
        width: 100% !important;
        margin: 0 0 20px;
        justify-content: center;
    }

    .as_header_wrapper .as_info_detail .row {
        flex-direction: column;
    }

    .as_sign_box {
        padding: 15px;
    }

    .as_info_detail ul {
        text-align: center;
    }

    .as_info_detail ul li {
        padding: 0px;
        display: block;
    }

    .as_infobox {
        justify-content: center;
    }

    .as_right_info {
        margin-top: 5px;
    }

    .as_wishlist {
        margin-left: 5px;
    }

    .as_cart_wrapper {
        margin-left: 0;
    }

    .as_year_ex {
        font-size: 40px;
    }

    .as_contact_expert .as_icon {
        margin-bottom: 15px;
        margin-left: -10px;
    }

    .as_comment_section ul li,
    .as_about_admin {
        display: block;
    }

    .as_comment_section>ul>li .as_comnt_detail,
    .as_about_admin .as_aboutDetail {
        width: 100%;
        margin-top: 10px;
    }

    .as_comment_section>ul>li>ul>li {
        margin-left: 20px;
    }

    .as_comment_section>ul>li {
        padding: 20px 0;
    }

    .as_pagination ul li a,
    .as_pagination ul li span {
        height: 30px;
        padding: 0 11px;
    }

    .as_pagination ul li {
        margin: 0 6px;
    }

    .ad_wishlist,
    .ad_compare {
        margin: 0 0 0 10px;
    }

    .as_tab_wrapper .nav-tabs>li>a {
        padding: 10px;
    }

    .as_about_admin {
        padding: 20px;
    }

    .as_tag_wrapper .as_btn {
        height: 30px;
        min-width: 120px;
    }

    .as_tag_wrapper ul li {
        margin-right: 10px;
    }

    .as_service_img .as_service_circle {
        top: 60px;
    }
}

@media (max-width:450px) {
    .as_contact_detail {
        padding: 20px;
    }

    li.as_info_box p {
        margin-left: 10px;
    }

    .as_contact_expert h1 {
        font-size: 24px;
    }
}

@media (max-width:355px) {
    .as_info_box .as_icon {
        width: 50px;
    }
}

/* astrologer card design */
.astrologer-card {
    display: flex;
    flex-direction: row;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    /* Adjust the card width */
    margin: 16px auto;
    position: relative;
}

.astrologer-left {
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    /* gap: 8px; */
    flex-basis: 20%;
}

.astrologer-image img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.blog_logo {
    height: "90px" !important;
    width: "90px" !important;
    border-radius: "50%" !important;
}

.rating-and-orders {
    text-align: center;
    font-size: 0.9em;
}

/* .astrologer-middle {
    flex-basis: 50%; 
    display: flex;
    flex-direction: column;
    gap: 8px;
} */

.astrologer-middle {
    flex: 1;
    /* Middle section takes the remaining space */
    padding-left: 16px;
}

.astrologer-name {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

.specialization,
.languages,
.experience {
    font-size: 0.9em;
    margin: 4px 0;
}

.price {
    font-size: 1.1em;
    font-weight: bold;
    color: #27ae60;
}

.astrologer-right {
    flex-basis: 15%;
    /* 25% width of the card */
    display: flex;
    justify-content: flex-end;
    /* align-items: center; */
    position: relative;
    /* Needed for the button to align inside this section */
}

.chat-button.online {
    padding: 1px 28px;
    /* Smaller padding for a smaller button */
    border: 2px solid #27ae60;
    /* Border to maintain visibility */
    background-color: transparent;
    /* Transparent background */
    color: #27ae60;
    /* Text color matches the border */
    border-radius: 12px;
    /* More rounded corners */
    cursor: pointer;
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.8em;
    /* Smaller text size */
}

.chat-button.offline {
    padding: 1px 28px;
    /* Smaller padding for a smaller button */
    border: 2px solid red;
    /* Border to maintain visibility */
    background-color: transparent;
    /* Transparent background */
    color: red;
    /* Text color matches the border */
    border-radius: 12px;
    /* More rounded corners */
    cursor: pointer;
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.8em;
    /* Smaller text size */
}


.chat-button.online:hover {
    background-color: #27ae60;
    /* Green background on hover */
    color: #fff;
    /* White text color on hover */
}

.specialization,
.languages,
.experience {
    margin: 2px 0;
    /* Minimal vertical spacing */
    padding: 0;
    /* Remove extra padding */
    font-size: 0.9em;
    /* Slightly smaller font size */
    line-height: 1.2;
    /* Adjust line height for tighter spacing */
    color: #333;
    /* Ensure readability */
}



/* Product Card design */
.product-card {
    border: 1px solid #ddd;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    /* margin: 0 8px; */
}

.product-card:hover {
    transform: scale(1.05);
}

.card-img-container {
    position: relative;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.new-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f59e42;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    text-transform: uppercase;
}

.wishlist-heart-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-container:hover .card-overlay {
    opacity: 1;
}

.action-button {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.action-button:hover {
    background-color: #f59e42;
    color: #fff;
}

.card-details {
    padding: 5px;
    /* text-align: center; */
}

.card-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Responsive card name styles */
@media (max-width: 768px) {
    .card-name {
        font-size: 14px;
        white-space: nowrap;        
        overflow: hidden; 
        text-overflow: ellipsis;     
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .card-name {
        font-size: 12px;
        white-space: nowrap;        
        overflow: hidden; 
        text-overflow: ellipsis;     
        max-width: 100%;
    }
}

.card-price {
    font-size: 16px;
    font-weight: bold;
    color: #f59e42;
}

.current-price {
    margin-right: 10px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
}


/* Online status */
.active-status {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outer-green {
    width: 25px;
    height: 25px;
    background-color: #c9ebdb;
    border-radius: 50%;
    /* Make it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.outer-red {
    width: 25px;
    height: 25px;
    background-color: #fac0bb;
    border-radius: 50%;
    /* Make it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-green {
    width: 10px;
    /* Smaller green circle inside */
    height: 10px;
    background-color: #27ae60;
    /* Green color for the inner dot */
    border-radius: 50%;
    /* Make it a circle */
}

.inner-red {
    width: 10px;
    /* Smaller green circle inside */
    height: 10px;
    background-color: red;
    /* Red color for the inner dot */
    border-radius: 50%;
    /* Make it a circle */
}

.astrologer-card {
    position: relative;
    /* Necessary for absolute positioning of active-status */
}

/* Rating start */
.rating span {
    font-size: .8rem;
}

.full-star {
    color: gold;
    /* Full yellow star */
}

.half-star {
    background: linear-gradient(90deg, gold 50%, lightgray 50%);
    /* Half yellow */
    -webkit-background-clip: text;
    color: transparent;
}

.empty-star {
    color: lightgray;
    /* Empty star */
}

.red-text {
    color: red;
}

/* Rating modal */
/* Overlay for dimming the background */

/* Rating modal */
/* Overlay for dimming the background */
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
    animation: fadeIn 0.6s ease-in-out;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Apply fade-out when modal closes */
.modal-closing {
    animation: fadeOut 0.6s ease-in-out forwards;
}

/* Modal box styling */
.modal-overlay .modal {
    background: #fff !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    width: 90% !important;
    max-width: 400px !important;
    height: auto !important;
    max-height: 90% !important;
    text-align: center !important;
    animation: fadeIn 0.6s ease-in-out;
    z-index: 100000 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: none !important;
    margin: auto !important;
}

/* Header and description */
.modal h2 {
    font-size: 1.2rem;
    /* Adjusted font size */
    margin-bottom: 0.8rem;
    color: #333;
}

.modal p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #555;
}

/* Star rating */
.rating-stars {
    display: flex;
    /* justify-content: center; */
}

/* Modal rating stars - more specific to override other star styles */
.modal-overlay .star {
    font-size: 2.0rem !important;
    /* Adjusted star size */
    color: #ddd !important;
    /* Initially gray/empty stars like production */
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 2px;
    /* Clean design without borders */
}

.modal-overlay .star.filled {
    color: #ff8c00 !important;
    /* Orange/golden color when filled like production */
}

.modal-overlay .star:hover {
    color: #ff8c00 !important;
    transform: scale(1.1);
}

/* Rating error message */
.rating-error {
    color: #e74c3c;
    background-color: #fdf2f2;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 10px 0;
    font-size: 0.85rem;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

/* Input fields */
.review-input {
    margin-bottom: 1rem;
    text-align: left;
}

.review-input label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.review-input textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    resize: none;
    outline: none;
    height: 60px;
    /* Reduced input height */
}

/* Modal action buttons */
.modal-actions {
    display: block;
    /* Switch to block-level so the button takes up full width */
    text-align: center;
    /* Centers the button horizontally */
    margin-top: 20px;
    /* Optional margin for spacing */
    justify-content: space-between;
}

.modal-close-icon {
    position: absolute;
    top: 11px;
    right: 17px;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    /* Ensure it's above other elements */
}

.modal-close-icon:hover {
    color: #e0a800;
    /* Slightly darker color on hover */
}

.btn-submit,
.btn-cancel {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-submit {
    background: #28a745;
    color: #fff;
}

.btn-submit:hover {
    background: #218838;
}

.btn-cancel {
    background: #dc3545;
    color: #fff;
}

.btn-cancel:hover {
    background: #c82333;
}

.chat_partner_rating_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
        /* Start slightly smaller */
    }

    to {
        opacity: 1;
        transform: scale(1);
        /* Scale to full size */
    }
}

/* Animation for Fade-Out Effect */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
        /* Modal is full size */
    }

    to {
        opacity: 0;
        transform: scale(0.8);
        /* Modal becomes smaller */
    }
}


/* Chat Message design */
.chat_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f4f6;
    min-height: 100dvh;
}

.chat_area {
    display: flex;
    flex-direction: column;
    /* width: 90%; */
    max-width: 800px;
    height: 70vh;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat_header {
    display: flex;
    align-items: center;
    padding: 1em;
    background-color: #007bff;
    color: #fff;
}

.chat_partner_image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.8em;
}

.chat_partner_name {
    font-size: 1.2rem;
    font-weight: bold;
}

.messages {
    flex-grow: 1;
    padding: 1em;
    overflow-y: auto;
    /* Only scroll messages */
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    background-color: #fafafa;
}

.message {
    max-width: 75%;
    padding: 0.8em;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sent {
    background-color: #DCF8C6;
    align-self: flex-end;
    color: #333;
    border-bottom-right-radius: 4px;
}

.received {
    background-color: #f0f0f0;
    align-self: flex-start;
    color: #555;
    border-bottom-left-radius: 4px;
}

.content {
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.timestamp {
    font-size: 0.75rem;
    color: #353535;
    text-align: right;
    display: block;
    margin-top: 7px;
}

.message_input {
    display: flex;
    align-items: center;
    padding: 0.8em;
    background-color: #fafafa;
    border-top: 1px solid #ddd;
}

.message_input input {
    flex-grow: 1;
    padding: 0.8em;
    border-radius: 20px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.message_input input:focus {
    border-color: #007bff;
}

.message_input button {
    margin-left: 0.5em;
    padding: 0.6em 1em;
    background-color: #cccccc;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.message_input button:hover {
    background-color: #0056b3;
}

.typing-indicator {
    display: flex;
    align-items: center;
    margin-top: 5px;
    /* background: #5a4f4f; */
    width: 60px;
    padding: 10px;
    border-radius: 100px;
}

.dot {
    width: 8px;
    height: 8px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: #ffffff;
    animation: typing 0.6s infinite alternate;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

.titleImage {
    width: 15%;
    /* Allow the image to scale with its container */
}
.rounded-button {
    display: inline-block;
    text-decoration: none;
}

.rounded-button button {
    border: none;
    background-color: #f0f0f0;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.rounded-button img {
    width: 24px;
    height: 24px;
}

/* header */
/* Style for the container that holds CartComponent, Recharge Button, and Login/Settings */


button {
    border: none;
    background-color: #f0f0f0;
    border-radius: 10%;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Right Info Section */
.col-4 {
    /* display: flex; */
    align-items: center;
    justify-content: end;
    gap: 1rem;
}



/* Close Button */
.close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Ensure it's above the slider contents */
}

.close_btn:hover {
    color: #ff0000;
}

/* Backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    /* Ensure it's below the slider */
}

/* Toggle Button */
.as_toggle {
    display: none;
    /* Hidden by default */
    cursor: pointer;
}

.profileLogin {
    color: white !important;
    /* margin: 28px 28px 0px 0px; */
}





.profile_info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.profile_info p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.close_btn {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 20px;
    color: #ffffff;
    background: transparent;
}

.close_btn:hover {
    color: var(--secondary-color);
}

/* Toggle Button for Mobile */
@media (max-width: 768px) {
    .as_toggle {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        margin-top: 9px;
    }

    .as_toggle img {
        width: 24px;
        height: 24px;
    }

    .header-row {
        display: flex;
        flex-direction: row;
        /* Ensure it remains in a row */
    }

    .headerLogo {
        height: 80px !important;
        width: 270px !important;
    }

    .as_cart_wrapper {
        margin: 13px 20px 0px 0px;
        padding: 0px 0px 0px 0px;
        font-size: 11px;
    }

    .profile_img_logo {
        display: none;
    }

    .profileLogin {
        display: none !important;
    }
}

.headerLogo {
    height: 80px !important;
    width: 270px !important;
}

.header-row {
    display: flex;
}

.as_toggle img {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.logo-container {
    flex: 1;
    /* Allow the logo to grow/shrink as needed */
    /* text-align: center; */
    /* Center the logo */
}

/* .headerSvg {
    padding-top: 7px;
} */

/* Horoscope List Styles */
.as_horoscope_list_wrapper {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.as_horoscope_box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.as_horoscope_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.as_horoscope_box h4 {
    color: #333;
    margin-bottom: 10px;
}

.as_horoscope_box p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Added hover effects and price tag */
.product-card,
.category-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover,
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.category-card {
    position: relative;
    overflow: hidden;
}

.category-card .price-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    z-index: 5;
}

/* Product card overlay appears on hover */
.product-card .card-overlay {
    transition: opacity .2s ease;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

/* Top Most Services */
.top-services-section .service-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
}

.top-services-section .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Video overlay logo */
.video-container {
    position: relative;
}

.video-logo-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 80px;
    opacity: 0.8;
}

/* Fix Slick slide height when Bootstrap columns used inside */
.popular-carousel .slick-slide>div {
    overflow: hidden;
    /* create a new block formatting context to contain floats */
}

@media (max-width: 576px) {
    .category-card .card-body {
        padding: 4px 2px 2px 2px !important;
    }

    .category-card .card-title {
        font-size: 0.92rem;
        margin-bottom: 2px;
    }

    .category-card .text-muted {
        font-size: 0.78rem;
        margin-bottom: 0;
    }

    .card-body.text-center {
        padding: 4px 2px 2px 2px !important;
        height: 20px !important;
    }
}

/* Astrologer Filter Modal Styles - Improved */
.filter-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2000;
    display: none;
}

.filter-modal-backdrop.show {
    display: block;
}

.filter-modal {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100vw;
    height: 100dvh;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
    z-index: 2100;
    transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.filter-modal.show {
    right: 0;
}

.filter-modal-header {
    padding: 18px 20px 10px 20px;
    border-bottom: 1px solid #eee;
}

.filter-modal-body {
    flex: 1 1 auto;
    display: flex;
    min-height: 0;
    padding: 0 20px;
    overflow-y: auto;
}

.filter-modal-tabs {
    min-width: 120px;
    border-right: 1px solid #eee;
    padding-top: 18px;
}

.filter-modal-tabs .nav-link {
    background: none;
    border: none;
    color: #333;
    text-align: left;
    padding: 8px 0;
    font-weight: 500;
    cursor: pointer;
}

.filter-modal-tabs .nav-link.active {
    color: #ffb300;
    font-weight: 700;
}

.filter-modal-options {
    padding-top: 18px;
    width: 100%;
}

.filter-modal-footer {
    padding: 12px 20px 18px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

@media (max-width: 576px) {
    .filter-modal {
        width: 100vw;
        max-width: 100vw;
        right: -100vw;
        border-radius: 0;
    }

    .filter-modal.show {
        right: 0;
    }

    .filter-modal-body {
        flex-direction: column;
        padding: 0 10px;
    }

    .filter-modal-tabs {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-top: 10px;
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .filter-modal-tabs .nav-link {
        padding: 8px 12px;
    }

    .filter-modal-options {
        padding-top: 10px;
    }
}

/* ---- Astrologer Filter Centered Modal ---- */
.filter-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 380px;
    max-width: 95vw;
    max-height: 90vh;
    height: auto;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2100;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.filter-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.filter-modal-body {
    flex-direction: column;
    padding: 0 20px;
}

.filter-modal-tabs {
    border-right: none;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 12px;
    overflow-x: auto;
}

.filter-modal-options {
    padding-top: 14px;
}

@media (max-width: 576px) {
    .filter-modal {
        width: 95vw;
    }

    .filter-modal-tabs {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        min-height: 60px;
        height: auto;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        padding-bottom: max(env(safe-area-inset-bottom, 0), 8px);
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
        display: flex;
        justify-content: center;
        align-items: stretch;
    }

    .mobile-bottom-nav .nav-link {
        padding: 10px 8px calc(8px + env(safe-area-inset-bottom, 0)) 8px;
        font-size: clamp(10px, 2.5vw, 12px);
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.2s ease;
        border-radius: 8px;
        margin: 4px 2px;
        min-height: 52px;
        min-width: 60px;
        max-width: 100px;
        flex: 1;
        position: relative;
        /* Improved touch target */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-bottom-nav .nav-link:hover,
    .mobile-bottom-nav .nav-link:focus {
        color: #f39c12;
        background: rgba(243, 156, 18, 0.1);
        text-decoration: none;
        outline: none;
    }

    .mobile-bottom-nav .nav-link i {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 3px;
        transition: transform 0.2s ease;
        display: block;
        line-height: 1;
    }

    .mobile-bottom-nav .nav-link:hover i,
    .mobile-bottom-nav .nav-link:focus i {
        transform: translateY(-1px);
    }

    .mobile-bottom-nav .nav-link.active {
        color: #f39c12;
        background: rgba(243, 156, 18, 0.15);
        font-weight: 500;
    }

    .mobile-bottom-nav .nav-link.active i {
        transform: scale(1.1);
    }

    .mobile-bottom-nav .nav-label {
        font-size: clamp(9px, 2.2vw, 11px);
        line-height: 1.2;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    display: block;
}
}

/* Enhanced responsive adjustments for very small screens */
@media (max-width: 350px) {
    .mobile-bottom-nav .nav-link {
        padding: 8px 4px calc(6px + env(safe-area-inset-bottom, 0)) 4px;
        min-height: 48px;
        min-width: 50px;
        margin: 2px 1px;
    }
    
    .mobile-bottom-nav .nav-link i {
    font-size: 16px;
        margin-bottom: 2px;
    }
    
    .mobile-bottom-nav .nav-label {
        font-size: 9px;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
    .mobile-bottom-nav {
        min-height: 50px;
        padding-bottom: max(env(safe-area-inset-bottom, 0), 4px);
    }
    
    .mobile-bottom-nav .nav-link {
        min-height: 42px;
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0)) 8px;
    }
    
    .mobile-bottom-nav .nav-link i {
        font-size: clamp(14px, 3.5vw, 16px);
        margin-bottom: 1px;
    }
    
    .mobile-bottom-nav .nav-label {
        font-size: clamp(8px, 2vw, 10px);
        margin-top: 1px;
    }
}

/* Wide screen adjustments (tablets in portrait, foldables) */
@media (min-width: 480px) and (max-width: 767.98px) {
    .mobile-bottom-nav {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px 20px 0 0;
        margin: 0 8px;
        right: auto;
        bottom: 0;
    }
    
    .mobile-bottom-nav .nav-link {
        max-width: 120px;
        min-width: 80px;
    }
    
    .mobile-bottom-nav .nav-link i {
        font-size: 18px;
    }
    
    .mobile-bottom-nav .nav-label {
        font-size: 11px;
    }
}

/* Extra wide screens (large tablets, foldables unfolded) */
@media (min-width: 600px) and (max-width: 767.98px) {
    .mobile-bottom-nav {
        max-width: 400px;
        border-radius: 25px 25px 0 0;
        margin: 0 auto;
        left: 50%;
        right: auto;
    }
}

/* Very tall screens (reduce bottom padding) */
@media (max-width: 767.98px) and (min-height: 800px) {
    .mobile-bottom-nav {
        margin-bottom: env(safe-area-inset-bottom, 0);
    }
}

/* Hide mobile nav on larger screens to prevent any conflicts */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* Body padding adjustment for mobile bottom nav */
@media (max-width: 767.98px) {
    body:has(.mobile-bottom-nav) {
        padding-bottom: calc(70px + env(safe-area-inset-bottom, 0));
    }
    
    /* Fallback for browsers that don't support :has() */
    .mobile-nav-active {
        padding-bottom: calc(70px + env(safe-area-inset-bottom, 0)) !important;
    }
}

/* Ensure content doesn't get hidden behind the nav */
@media (max-width: 767.98px) {
    .container,
    .container-fluid {
        margin-bottom: calc(10px + env(safe-area-inset-bottom, 0));
    }
}

/* Fix for specific device issues */
/* iPhone X and newer safe area */
@supports (padding: max(0px)) {
    @media (max-width: 767.98px) {
        .mobile-bottom-nav {
            padding-bottom: max(8px, env(safe-area-inset-bottom));
        }
        
        .mobile-bottom-nav .nav-link {
            padding-bottom: calc(8px + max(0px, env(safe-area-inset-bottom)));
        }
    }
}

/* Android devices with gesture navigation */
@media (max-width: 767.98px) and (display-mode: standalone) {
    .mobile-bottom-nav {
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0));
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .mobile-bottom-nav .nav-link,
    .mobile-bottom-nav .nav-link i {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        min-height: 60px;
    height: auto;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        padding-bottom: max(env(safe-area-inset-bottom, 0), 8px);
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
    display: flex;
        justify-content: center;
    align-items: stretch;
    }

    .mobile-bottom-nav .nav-link {
        padding: 10px 8px calc(8px + env(safe-area-inset-bottom, 0)) 8px;
        font-size: clamp(10px, 2.5vw, 12px);
        color: rgba(255, 255, 255, 0.8);
    display: flex;
        flex-direction: column;
    align-items: center;
    justify-content: center;
        text-decoration: none;
        transition: all 0.2s ease;
        border-radius: 8px;
        margin: 4px 2px;
        min-height: 52px;
        min-width: 60px;
        max-width: 100px;
        flex: 1;
    position: relative;
        /* Improved touch target */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-bottom-nav .nav-link:hover,
    .mobile-bottom-nav .nav-link:focus {
        color: #f39c12;
        background: rgba(243, 156, 18, 0.1);
        text-decoration: none;
        outline: none;
    }

    .mobile-bottom-nav .nav-link i {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 3px;
        transition: transform 0.2s ease;
        display: block;
        line-height: 1;
    }

    .mobile-bottom-nav .nav-link:hover i,
    .mobile-bottom-nav .nav-link:focus i {
        transform: translateY(-1px);
    }

    .mobile-bottom-nav .nav-link.active {
        color: #f39c12;
        background: rgba(243, 156, 18, 0.15);
        font-weight: 500;
    }

    .mobile-bottom-nav .nav-link.active i {
        transform: scale(1.1);
    }

    .mobile-bottom-nav .nav-label {
        font-size: clamp(9px, 2.2vw, 11px);
        line-height: 1.2;
        margin-top: 2px;
        white-space: nowrap;
    overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
    }
}

/* Enhanced responsive adjustments for very small screens */
@media (max-width: 350px) {
    .mobile-bottom-nav .nav-link {
        padding: 8px 4px calc(6px + env(safe-area-inset-bottom, 0)) 4px;
        min-height: 48px;
        min-width: 50px;
        margin: 2px 1px;
    }
    
    .mobile-bottom-nav .nav-link i {
    font-size: 16px;
        margin-bottom: 2px;
    }
    
    .mobile-bottom-nav .nav-label {
        font-size: 9px;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 991.98px) and (orientation: landscape) {
    .mobile-bottom-nav {
        min-height: 50px;
        padding-bottom: max(env(safe-area-inset-bottom, 0), 4px);
    }
    
    .mobile-bottom-nav .nav-link {
        min-height: 42px;
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0)) 8px;
    }
    
    .mobile-bottom-nav .nav-link i {
        font-size: clamp(14px, 3.5vw, 16px);
        margin-bottom: 1px;
    }
    
    .mobile-bottom-nav .nav-label {
        font-size: clamp(8px, 2vw, 10px);
        margin-top: 1px;
    }
}

/* Wide screen adjustments (tablets in portrait, foldables) */
@media (min-width: 480px) and (max-width: 991.98px) {
    .mobile-bottom-nav {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px 20px 0 0;
        margin: 0 8px;
        right: auto;
        bottom: 0;
    }
    
    .mobile-bottom-nav .nav-link {
        max-width: 120px;
        min-width: 80px;
    }
    
    .mobile-bottom-nav .nav-link i {
    font-size: 18px;
    }
    
    .mobile-bottom-nav .nav-label {
        font-size: 11px;
    }
}

/* Extra wide screens (large tablets, foldables unfolded) */
@media (min-width: 600px) and (max-width: 991.98px) {
    .mobile-bottom-nav {
        max-width: 400px;
        border-radius: 25px 25px 0 0;
        margin: 0 auto;
        left: 50%;
        right: auto;
    }
}

/* Medium tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .mobile-bottom-nav {
        max-width: 360px;
        border-radius: 30px 30px 0 0;
        box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-bottom-nav .nav-link {
        max-width: 90px;
        min-width: 70px;
    }
}

/* Very tall screens (reduce bottom padding) */
@media (max-width: 991.98px) and (min-height: 800px) {
    .mobile-bottom-nav {
        margin-bottom: env(safe-area-inset-bottom, 0);
    }
}

/* Hide mobile nav on larger screens to prevent any conflicts */
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* Body padding adjustment for mobile bottom nav */
@media (max-width: 991.98px) {
    body:has(.mobile-bottom-nav) {
        padding-bottom: calc(70px + env(safe-area-inset-bottom, 0));
    }
    
    /* Fallback for browsers that don't support :has() */
    .mobile-nav-active {
        padding-bottom: calc(70px + env(safe-area-inset-bottom, 0)) !important;
    }
}

/* Ensure content doesn't get hidden behind the nav */
@media (max-width: 991.98px) {
    .container,
    .container-fluid {
        margin-bottom: calc(10px + env(safe-area-inset-bottom, 0));
    }
}

/* iPhone X and newer safe area */
@supports (padding: max(0px)) {
    @media (max-width: 991.98px) {
        .mobile-bottom-nav {
            padding-bottom: max(8px, env(safe-area-inset-bottom));
        }
        
        .mobile-bottom-nav .nav-link {
            padding-bottom: calc(8px + max(0px, env(safe-area-inset-bottom)));
        }
    }
}

/* Android devices with gesture navigation */
@media (max-width: 991.98px) and (display-mode: standalone) {
    .mobile-bottom-nav {
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0));
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .mobile-bottom-nav .nav-link,
    .mobile-bottom-nav .nav-link i {
        transition: none;
    }
}

.profile_initials {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    margin-left: 0.5rem;
}

.mobile-bottom-nav .nav-link {
    text-decoration: none;
}

/* Custom Carousel Navigation Buttons */
.custom-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-carousel-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-carousel-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 170, 54, 0.3);
}

.custom-carousel-prev {
    left: -20px;
}

.custom-carousel-next {
    right: -20px;
}

.custom-carousel-btn i {
    font-size: 14px;
    line-height: 1;
}

/* Responsive adjustments for carousel buttons */
@media (max-width: 1200px) {
    .custom-carousel-prev {
        left: -15px;
    }
    
    .custom-carousel-next {
        right: -15px;
    }
}

@media (max-width: 992px) {
    .custom-carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .custom-carousel-btn i {
    font-size: 12px;
    }
    
    .custom-carousel-prev {
        left: -10px;
    }
    
    .custom-carousel-next {
        right: -10px;
    }
}

/* Hide custom buttons on mobile where slick is disabled */
@media (max-width: 768px) {
    .custom-carousel-btn {
        display: none;
    }
}

/* Bootstrap modal override styles for rating modal */
.modal-overlay .modal {
    background: #fff !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    width: 90% !important;
    max-width: 400px !important;
    height: auto !important;
    max-height: 90% !important;
    text-align: center !important;
    animation: fadeIn 0.6s ease-in-out;
    z-index: 100000 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: none !important;
    margin: auto !important;
    transform: none !important;
}

/* Ensure modal content is visible */
.modal-overlay .modal * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any Bootstrap modal fade class */
.modal-overlay .modal.fade {
    opacity: 1 !important;
}

/* Chat Ended Message Styling */
.chat-ended-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    text-align: center;
    /* position: relative; */
    overflow: hidden;
}

/* .chat-ended-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.1) 1deg, transparent 2deg, transparent 10deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
} */

.chat-ended-message {
    position: relative;
    z-index: 10;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: slideInUp 1s ease-out;
}

.chat-ended-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.chat-ended-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.chat-ended-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    animation: bounce 2s infinite;
}

.chat-ended-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.chat-ended-btn {
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chat-ended-btn.primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.chat-ended-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chat-ended-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.chat-ended-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from { text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 4px 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Floating particles effect */
.chat-ended-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.particle:nth-child(odd) {
    animation-delay: -2s;
    background: #fff;
}

.particle:nth-child(even) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(-100px) rotate(180deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .chat-ended-title {
        font-size: 2rem;
    }
    
    .chat-ended-icon {
        font-size: 3rem;
    }
    
    .chat-ended-message {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .chat-ended-actions {
        flex-direction: column;
    }
    
    .chat-ended-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Blog Detail Styles */
.as_blog_detail {
    padding: 20px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease;
}

.as_blog_detail .author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.as_blog_detail .author-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.as_blog_detail .author-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.as_blog_detail .blog-title-link {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin: 10px 0;
}

.as_blog_detail .blog-title-link:hover {
    color: var(--secondary-color, #f37935);
}

.as_blog_detail .blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.as_blog_detail .read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color, #f37935);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(243, 121, 53, 0.1);
    border-radius: 20px;
}

.as_blog_detail .read-more-link:hover {
    gap: 12px;
    color: #fff;
    background: var(--secondary-color, #f37935);
}

.as_blog_detail .read-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.as_blog_detail .read-more-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .as_blog_detail {
        padding: 15px;
    }

    .as_blog_detail .blog-title-link {
        font-size: 16px;
        margin: 8px 0;
    }

    .as_blog_detail .blog-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
        margin: 8px 0;
    }

    .as_blog_detail .read-more-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Blog date ribbon styling */
.as_blog_img .date-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    padding: 5px 15px;
    background: linear-gradient(45deg, #f37935, #fdc830);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.as_blog_img .date-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid #f37935;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.as_blog_img .date-ribbon::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    border-right: 5px solid #c85f1d;
    border-bottom: 5px solid transparent;
}

@media (max-width: 768px) {
    .as_blog_img .date-ribbon {
        top: 10px;
        right: -3px;
        padding: 3px 10px;
        font-size: 12px;
    }
    
    .as_blog_img .date-ribbon::before {
        right: -8px;
        border-left-width: 8px;
        border-top-width: 11px;
        border-bottom-width: 11px;
    }
    
    .as_blog_img .date-ribbon::after {
        border-right-width: 3px;
        border-bottom-width: 3px;
    }
}

/* ===== Profile Dropdown - Simple & Professional ===== */
.as_profile_dropdown {
    position: relative;
    display: inline-block;
}


.as_profile_dropdown.dropdown_open .as_profile_dropdown_box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile_header {
    padding: 20px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile_avatar {
    flex-shrink: 0;
}

.profile_avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.profile_info {
    flex: 1;
    min-width: 0;
}

.profile_info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile_info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile_menu {
    padding: 8px 0;
}

.profile_menu_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.profile_menu_item:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.profile_menu_item i {
    width: 16px;
    color: #666;
    font-size: 14px;
}

.profile_menu_item span {
    font-size: 14px;
    font-weight: 500;
}

.profile_menu_item:last-child {
    border-top: 1px solid #f5f5f5;
    margin-top: 4px;
    padding-top: 12px;
}

/* Profile logo hover effect */
.profile_img_logo {
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

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

.profile-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .as_profile_dropdown_box {
        width: 260px;
        right: -10px;
    }
    
    .profile_header {
        padding: 16px;
    }
    
    .profile_info h4 {
        font-size: 15px;
    }
    
    .profile_info p {
        font-size: 13px;
    }
}

/* Logout item styling */
.logout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.logout-item:hover {
    color: #c82333;
}

.logout-item i {
    width: 16px;
    font-size: 14px;
}

/* ===== RESPONSIVE HEADER STYLES ===== */
/* Base header styles */
.as_header_wrapper {
    background-color: rgb(17 16 17);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.as_header_spacer {
    height: 70px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.headerLogo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.as_toggle {
    display: none;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.as_toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.as_toggle img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Desktop navigation */
.as_menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.as_menu ul {
    display: flex;
    align-items: center;
    /* gap: 30px; */
    list-style: none;
    margin: 0;
    padding: 0;
}

.as_menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.as_menu ul li a:hover,
.as_menu ul li a.active {
    color: var(--secondary-color);
}

.as_menu ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.as_menu ul li a:hover::before,
.as_menu ul li a.active::before {
    width: 100%;
}

/* Right side navigation */
.as_cart,
.profileLogin {
    display: flex;
    align-items: center;
    /* margin-left: 15px; */
}

.as_cart_wrapper {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.as_cart_wrapper:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.headerSvg {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: all 0.3s ease;
}

.as_cart_wrapper:hover .headerSvg {
    transform: scale(1.1);
}

.walletAmount {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
}

/* .as_cartnumber {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
} */

.profileLogin {
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.profileLogin:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.profile_img_logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.profile_img_logo:hover {
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.profile-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile slider menu */


.menu_slider .as_logo {
    margin-bottom: 30px;
    text-align: center;
}

.menu_slider .as_logo img {
    height: 50px;
}

.close_btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close_btn:hover {
    color: #333;
}

.menu_slider .as_menu ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.menu_slider .as_menu ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.menu_slider .as_menu ul li:last-child {
    border-bottom: none;
}

.menu_slider .as_menu ul li a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu_slider .as_menu ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.menu_slider .as_menu ul li a i {
    margin-right: 12px;
    width: 20px;
    color: #666;
}

.menu_slider .as_menu ul li a:hover i {
    color: var(--secondary-color);
}




.profile_details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile_initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.profile_info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.profile_info p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .header-row {
        padding: 0 40px;
    }
    
    
    .as_menu ul li a {
        font-size: 15px;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {    
    .as_menu ul li a {
        font-size: 14px;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .as_header_wrapper {
        height: 65px;
    }
    
    .as_header_spacer {
        height: 65px;
    }
    
    .header-row {
        padding: 0 15px;
    }
    
    .as_toggle {
        display: block;
    }
    
    .as_menu {
        display: none;
    }
    
    .headerLogo {
        height: 35px;
    }
    
    .as_cart_wrapper {
        padding: 6px 10px;
        margin-left: 10px;
    }
    
    .walletAmount {
        display: none;
    }
    
    .headerSvg {
        width: 18px;
        height: 18px;
    }
    
    .profile_img_logo {
        width: 35px;
        height: 35px;
    }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
    .as_header_wrapper {
        height: 60px;
    }
    
    .as_header_spacer {
        height: 60px;
    }
    
    .header-row {
        padding: 0 12px;
    }
    
    .headerLogo {
        height: 32px;
    }
    
    .as_cart_wrapper {
        padding: 5px 8px;
        margin-left: 8px;
    }
    
    .profileLogin {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .profile_img_logo {
        width: 32px;
        height: 32px;
    }
    
    .menu_slider {
        width: 260px;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .as_header_wrapper {
        height: 55px;
    }
    
    .as_header_spacer {
        height: 55px;
    }
    
    .header-row {
        padding: 0 10px;
    }
    
    .headerLogo {
        height: 28px;
    }
    
    .as_cart_wrapper {
        padding: 4px 6px;
        margin-left: 6px;
    }
    
    .headerSvg {
        width: 16px;
        height: 16px;
    }
    
    .as_cart_wrapper>span .as_cartnumber {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .profileLogin {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .profile_img_logo {
        width: 28px;
        height: 28px;
    }
    
    .menu_slider {
        width: 240px;
    }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .header-row {
        padding: 0 8px;
    }
    
    .headerLogo {
        height: 26px;
    }
    
    .as_cart_wrapper {
        margin-left: 4px;
    }
    
    .profileLogin {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .menu_slider {
        width: 220px;
    }
}

/* ===== RESPONSIVE HEADER IMPROVEMENTS ===== */

/* Improved header base styles */
.as_header_wrapper {
    height: 70px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.as_header_spacer {
    height: 70px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.headerLogo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.as_toggle {
    display: none;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.as_toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.as_toggle img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Desktop menu improvements */
.as_menu.d-none.d-lg-flex {
    display: flex !important;
    flex-grow: 1;
    justify-content: center;
    margin: 0 20px;
    height: 70px; /* Match header height */
    align-items: center; /* Center vertically */
}

.as_menu ul {
    display: flex;
    align-items: center;
    /* gap: 30px; */
    list-style: none;
    margin: 0;
    padding: 0;
    /* height: 100%;  */
}

.as_menu>ul>li {
    display: inline-flex;
    text-transform: capitalize;
    margin: 0; /* Remove excessive margin */
    color: #ffffff;
    position: relative;
    height: 100%; /* Full height */
    align-items: center; /* Center vertically */
}

.as_menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
    height: auto; /* Auto height */
    display: flex;
    align-items: center;
}

.as_menu ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.as_menu ul li a:hover::before,
.as_menu ul li a.active::before {
    width: 100%;
}

.as_menu ul li a:hover,
.as_menu ul li a.active {
    color: var(--secondary-color);
}


.headerLogo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    display: block !important; /* Ensure visibility */
}

/* Header row spacing improvements */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px; /* Reduced from 20px */
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px; /* Ensure minimum width */
    justify-content: flex-end;
}


.menu_slider .as_logo {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.menu_slider .as_logo img {
    height: 50px;
}

.close_btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close_btn:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.menu_slider .as_menu ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.menu_slider .as_menu ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.menu_slider .as_menu ul li:last-child {
    border-bottom: none;
}

.menu_slider .as_menu ul li a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 0;
}

.menu_slider .as_menu ul li a:hover {
    color: var(--secondary-color);
    background: rgba(255, 107, 53, 0.1);
    padding-left: 10px;
}

.menu_slider .as_menu ul li a i {
    margin-right: 12px;
    width: 20px;
    color: #666;
}

.menu_slider .as_menu ul li a:hover i {
    color: var(--secondary-color);
}

.profile_details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile_initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.profile_info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.profile_info p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive improvements */
@media (max-width: 1199px) {
    .header-row {
        padding: 0 15px;
    }
    
    
    .as_menu ul li a {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .as_header_wrapper {
        height: 65px;
    }
    
    .as_header_spacer {
        height: 65px;
    }
    
    .as_toggle {
        display: block;
    }
    
    .as_menu.d-none.d-lg-flex {
        display: none !important;
    }
    
    .headerLogo {
        height: 35px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .as_cart_wrapper {
        padding: 6px 10px;
    }
    
    .walletAmount {
        font-size: 12px;
    }
    
    .headerSvg {
        width: 18px;
        height: 18px;
    }
    
    .profile_img_logo {
        width: 35px;
        height: 35px;
    }
    
    .profileLogin {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .as_header_wrapper {
        height: 60px;
    }
    
    .as_header_spacer {
        height: 60px;
    }
    
    .header-row {
        padding: 0 12px;
    }
    
    .headerLogo {
        height: 32px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .as_cart_wrapper {
        padding: 5px 8px;
    }
    
    .walletAmount {
        display: none;
    }
    
    .headerSvg {
        width: 16px;
        height: 16px;
    }
    
    .profile_img_logo {
        width: 32px;
        height: 32px;
    }
    
    .profileLogin {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .menu_slider {
        width: 260px;
    }
}

@media (max-width: 575px) {
    .as_header_wrapper {
        height: 55px;
    }
    
    .as_header_spacer {
        height: 55px;
    }
    
    .header-row {
        padding: 0 10px;
    }
    
    .headerLogo {
        height: 28px;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .as_cart_wrapper {
        padding: 4px 6px;
    }
    
    .headerSvg {
        width: 14px;
        height: 14px;
    }
    
    .as_cartnumber {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .profile_img_logo {
        width: 28px;
        height: 28px;
    }
    
    .profileLogin {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .menu_slider {
        width: 240px;
    }
}

@media (max-width: 360px) {
    .header-row {
        padding: 0 8px;
    }
    
    .headerLogo {
        height: 26px;
    }
    
    .as_toggle img {
        width: 20px;
        height: 20px;
    }
    
    .menu_slider {
        width: 220px;
    }
}

/* Improved button styles */
.as_cart {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.as_cart:hover {
    text-decoration: none;
    color: inherit;
}

.as_cart:focus {
    outline: none;
}

.as_cart_wrapper:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.profileLogin:hover {
    background: #ff6b35;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.profile_img_logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Accessibility improvements */
.as_toggle:focus,
.close_btn:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Smooth animations for menu items */
@media (prefers-reduced-motion: reduce) {
    .as_header_wrapper,
    .menu_slider,
    .backdrop,
    .as_cart_wrapper,
    .as_menu ul li a {
        transition: none;
    }
}

/* ===== RESPONSIVE HEADER FINAL IMPROVEMENTS ===== */

/* Header actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Improved button styling */
.as_cart {
    background: none !important;
    border: none !important;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.as_cart:hover,
.as_cart:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

/* Mobile responsive improvements */
@media (max-width: 991px) {
    .header-actions {
        gap: 6px;
    }
    
    .as_toggle {
        display: block !important;
    }
    
    .as_menu {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .walletAmount {
        display: none !important;
    }
    
    .header-actions {
        gap: 4px;
    }
}

@media (max-width: 575px) {
    .header-actions {
        gap: 2px;
    }
}

/* Ensure proper z-index stacking */
.menu_slider {
    z-index: 1001 !important;
}

.backdrop {
    z-index: 1000 !important;
}

.as_header_wrapper {
    z-index: 999 !important;
}

/* ===== HEADER LAYOUT FIXES ===== */
/* Fix for excessive menu height and spacing issues */

/* Override problematic menu styles */
.as_menu>ul>li {
    display: inline-flex !important;
    text-transform: capitalize;
    margin: 0 !important; /* Remove excessive 30px margin */
    color: #ffffff;
    position: relative;
    height: auto !important;
    align-items: center;
}

/* Fix menu link padding */
.as_menu>ul>li>a {
    padding: 10px 0 !important; /* Reduced from 13px bottom padding */
    position: relative;
    transition: all 0.3s linear;
    text-decoration: none;
    height: auto !important;
    display: flex;
    align-items: center;
}

/* Ensure logo container is visible */
.logo-container {
    display: flex !important;
    /* align-items: center; */
    flex-shrink: 0;
    min-width: 100px;
    visibility: visible !important;
    opacity: 1 !important;
}

.headerLogo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix header row spacing */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px !important; /* Reduced from 15px */
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fix menu container height */
.as_menu.d-none.d-lg-flex {
    display: flex !important;
    flex-grow: 1;
    justify-content: center;
    margin: 0 15px !important; /* Reduced from 20px */
    height: 70px;
    align-items: center;
}

.as_menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Fix header actions spacing */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px !important; /* Reduced gap */
    min-width: 180px; /* Reduced from 200px */
    justify-content: flex-end;
}

/* Remove excessive cart wrapper margins */
.as_cart_wrapper {
    margin: 0 !important; /* Remove all margins */
    position: relative;
    padding: 8px 12px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile_img_logo {
    margin: 0 !important; /* Remove all margins */
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .header-row {
        padding: 0 8px !important;
    }
    
    
    .as_menu.d-none.d-lg-flex {
        margin: 0 10px !important;
    }
}

@media (max-width: 991px) {
    .header-row {
        padding: 0 8px !important;
    }
    
    .header-actions {
        gap: 4px !important;
        min-width: 150px !important;
    }
}

@media (max-width: 767px) {
    .header-row {
        padding: 0 6px !important;
    }
    
    .header-actions {
        gap: 2px !important;
        min-width: 120px !important;
    }
    
    .headerLogo {
        height: 32px !important;
    }
}

@media (max-width: 575px) {
    .header-row {
        padding: 0 4px !important;
    }
    
    .headerLogo {
        height: 28px !important;
    }
}

/* Ensure all header elements are visible */
.as_header_wrapper * {
    visibility: visible !important;
}

/* Fix any potential z-index issues */
.as_header_wrapper {
    z-index: 1000 !important;
}

.logo-container,
.headerLogo {
    z-index: 1001 !important;
}

/* Fix header row spacing - OVERRIDE EXISTING RULES */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px !important; /* Minimal padding instead of 10px */
    height: 100%;
    max-width: none !important; /* Remove 1200px constraint */
    margin: 0 auto;
    width: 100% !important; /* Use full width */
}

/* Remove container width constraints */
.as_header_wrapper {
    width: 100% !important;
}

/* ===== MOBILE HEADER FIXES ===== */
/* Fix desktop menu visibility and mobile menu functionality */

/* FORCE HIDE desktop menu on mobile screens */
@media (max-width: 991.98px) {
    .as_menu.d-none.d-lg-flex {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Show mobile toggle button */
    .as_toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 35px !important;
        height: 35px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }
    
    .as_toggle:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: scale(1.05) !important;
    }
    
    .as_toggle img {
        width: 24px !important;
        height: 24px !important;
        filter: brightness(0) invert(1) !important;
    }
}

/* Mobile menu slider improvements */
.menu_slider {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    height: 100dvh !important;
    width: 300px !important;
    background: #fff !important;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3) !important;
    /* overflow-y: auto !important; */
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 9999 !important;
    backdrop-filter: blur(10px) !important;
}

.menu_slider.menu_open {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile menu content styling */
.menu_slider .as_logo {
    padding: 20px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.menu_slider .as_logo img {
    max-height: 50px !important;
    width: auto !important;
    filter: brightness(0) invert(1) !important;
}

.menu_slider .close_btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    color: white !important;
    font-size: 24px !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 10000 !important;
}

.menu_slider .close_btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(90deg) !important;
}

/* Mobile menu navigation */
.menu_slider .as_menu ul {
    list-style: none !important;
    margin: 0 !important;
    /* padding: 20px 0 !important; */
    background: transparent !important;
}

.menu_slider .as_menu ul li {
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.menu_slider .as_menu ul li a {
    display: flex !important;
    align-items: center !important;
    padding: 10px 25px !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    background: transparent !important;
}

.menu_slider .as_menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding-left: 35px !important;
}

.menu_slider .as_menu ul li a i {
    margin-right: 12px !important;
    font-size: 14px !important;
    width: 20px !important;
    text-align: center !important;
}

/* Backdrop for mobile menu */
.backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: rgba(0, 0, 0, 0.6) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.backdrop.show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Header layout fixes for mobile */
@media (max-width: 991.98px) {
    .header-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 10px !important;
        /* gap: 10px !important; */
    }
    
    .logo-container {
        flex: 1 !important;
        display: flex !important;
        /* justify-content: center !important; */
        /* align-items: center !important; */
    }
    
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }
}



/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
}

/* Force hide any conflicting desktop menu styles */
@media (max-width: 991.98px) {
    nav.as_menu.d-none.d-lg-flex,
    .as_menu.d-none.d-lg-flex {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    /* Ensure logo stays left-aligned on tablets and mobiles */
    .as_header_wrapper .logo-container{
        flex: 0 0 auto !important;
        /* justify-content: flex-start !important; */
        /* align-items: center !important; */
    }
}

.form-container{
    margin: 0px 264px 0px 264px;
}
.responsive-padding{
    padding: 0px 15px 0px 15px !important;
}
.search-container-item{
    padding: 0px 15px 0px 15px !important;
}
.section-gap{
    margin-top: 60px !important;
}

.img-responsive {
    height: 700px !important;
    width: 530px !important;
}

.main-product-image {
    width: 100%;
    height: 625px;
    object-fit: cover;
    border-radius: 1rem;
}

@media (max-width: 1199px) {
    .form-container{
        margin: 10px;
    }
    .responsive-padding{
        padding: 0px 15px 0px 15px !important;
    }
    .section-gap{
        margin-top: 50px !important;
    }
    .main-product-image {
        width: 100%;
        height: 625px;
        object-fit: cover;
        border-radius: 1rem;
    }
}

@media (max-width: 991px) {
    .form-container{
        margin: 10px;
    }
    .search-container-item{
        padding: 0px 10px 0px 10px !important;
    }
    .section-gap{
        margin-top: 40px !important;
    }
    .main-product-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 1rem;
    }
}

@media (max-width: 767px) {
    .form-container{
        margin: 10px;
    }
    .responsive-padding{
        padding: 0px 15px 0px 15px !important;
    }
    .search-container-item{
        padding: 0px 5px 0px 5px !important;
    }
    .section-gap{
        margin-top: 30px !important;
    }
    .img-responsive {
        height: 450px !important;
        width: 340px !important;
    }
    .main-product-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 1rem;
    }
}

@media (max-width: 575px) {
    .form-container{
        margin: 10px;
    }
    .responsive-padding{
        padding: 0px 5px 0px 5px !important;
    }
    .search-container-item{
        padding: 0px 5px 0px 5px !important;
    }
    .section-gap{
        margin-top: 25px !important;
    }
    .img-responsive {
        height: 450px !important;
        width: 340px !important;
    }
    .main-product-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 1rem;
    }
}
@media (min-width: 480px) and (max-width: 991.98px) {
    .form-container{
        margin: 10px;
    }
    .responsive-padding{
        padding: 0px 5px 0px 5px !important;
    }
    .search-container-item{
        padding: 0px 5px 0px 5px !important;
    }
    .section-gap{
        margin-top: 20px !important;
    }
    .img-responsive {
        height: 450px !important; 
        width: 340px !important;
    }
    .main-product-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 1rem;
    }
}