* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body{
    text-decoration: none;
    list-style: none;
    padding-top: 130px;
    
}
:root {
    --primary-color: #78ac24;
    --primary-light: #93c04a59;
}


/* navbar start */


/* 

.navbar-pro {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
    z-index: 50;
   
}


.nav-content-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.brand {
    display: flex;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.25rem;
}

.brand svg {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    color: #fbbf24;
}

.brand img {
    height: 80px;
  }


.desktop-menu-pro {
    display: none;
}


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}


.link-pro:hover{
    color: var(--primary-color);
    }

    .nav-item.dropdown:hover > .nav-link {
        background-color: var(--primary-color);
        color: white;
        border-radius: 5px;
    }

    
    .dropdown-menu .dropdown-item:hover {
        background-color: var(--primary-light);
        color: black;
    }

@media (min-width: 990px) {
    .desktop-menu-pro {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link-pro {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link-pro:hover {
    color: var(--primary-color);
}

.nav-link-pro svg {
    width: 16px;
    height: 16px;
}

.login-btn-pro {
    background-color:var(--primary-color);
    color: rgb(255, 255, 255);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn-pro:hover {
    background-color: var(--primary-light);
}

.mobile-menu-btn-pro {
    display: block;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
}


@media (min-width: 990px) {
    .mobile-menu-btn-pro {
        display: none;
    }
}

.mobile-menu-pro {
    display: none;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.5rem;
}

.mobile-menu-pro.active {
    display: block;
}

.mobile-nav-link-pro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    transition: color 0.2s;
}

.mobile-nav-link-pro:hover {
    color: var(--primary-color);
}

.mobile-nav-link-pro svg {
    width: 16px;
    height: 16px;
}

.mobile-login-btn-pro {
    width: 100%;
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: none;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mobile-login-btn-pro:hover {
    background-color: var(--primary-light);
}

.content-pro {
    padding-top: 80px;
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 80px 1rem 1rem 1rem;
}

.content-pro h1 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-top: 5rem;
}

.content-pro p {
    margin-top: 1rem;
} */

/* navbar end */


/* --------silder-------- */



.hero-section{
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 10px;
  
  
}




  .hero-section img {
    width: 100%;
    /* height: 450px; */
    border-radius: 15px;
    display: block;
    margin-top: 10px;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .swiper-button-next,
  .swiper-button-prev {
    background:var(--primary-color); /* Custom color */
    color: white; /* Text color */
    padding: 10px 20px; /* Button padding */
    border-radius: 50%; /* Optional, for round buttons */
    font-size: 12px; /* Font size */
    border: 1px solid var(--primary-color);
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 90%;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 15px !important; /* Adjust the size of the arrows */
    color: white;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    top: 55%;
  }

  
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        padding: 10px 20px; /* Smaller padding for mobile */
      font-size: 12px; /* Smaller font size */
      width: 40px; /* Set a specific width */
      height: 40px; /* Set a specific height */
    }
  
    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 10px !important; /* Smaller arrow size */
    }
  }

  /* step section */




.steps-section {
    padding: 50px 0;
    background-color: white;
}

.section-title-pro {
    /* color: var(--primary-color); */
    color: black;
    font-weight: 700 !important;
    /* margin-bottom: 1rem; */
    position: relative;
}

.section-subtitle {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.step-card {
    background-color:var(--primary-light);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color:var(--primary-color);
    box-shadow: 0 15px 35px rgba(106, 27, 154, 0.15);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* .step-card:hover::before {
    transform: scaleX(1);
} */

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    
    animation: float 3s ease-in-out infinite;
}

.step-card:hover .step-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.step-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: #333;
}

/* Animation for reveal */
/* .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
} */

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .steps-section {
        padding: 60px 0;
    }
    
    .step-card {
        margin-bottom: 30px;
    }
}

/* Add number indicators */
.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* Remove default link styling */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;

}










        .stats-section {
            padding: 50px 0;
            position: relative;
            background-color: var(--primary-light);
            color: #fff;
            overflow: hidden;
        }

        

        .section-title-pro {
            color: black;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .section-subtitle {
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .section-description {
            color:#333;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            background-color: var(--primary-color);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background-color: var(--primary-color);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-light);
            border-radius: 50%;
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-icon {
            background-color: var(--primary-color);
            color: #fff;
            transform: scale(1.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .counter {
            display: inline-block;
        }

        .stat-plus {
            color: #333;
            margin-left: 5px;
        }

        .stat-text {
            color: #ffffff;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Animation for cards */
        /* .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in-up.active {
            opacity: 1;
            transform: translateY(0);
        } */

        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .stats-section {
                padding: 60px 0;
            }
            
            .stat-card {
                margin-bottom: 30px;
            }
            
            .section-title-pro {
                font-size: 28px !important;
            }
            
            .section-subtitle {
                font-size: 20px !important;
            }
        }




/* ===========seevice======== */

        .section-services{
            background-color: var(--primary-light);
            margin-top: 50px;
        }


        .service-card {
            
            height: 100%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
        
                box-shadow: 0 10px 25px var(--primary-color);
           
        }

        .service-icon {
            color: #78ac24;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .service-icon img {
            width: 100px;  /* Set the width */
            height: 100px; /* Set the height equal to the width */
            border-radius: 50%;  /* Makes the image round */
            margin: 0 auto;
            display: inline-block !important;
        }

        .section-title {
            position: relative;
            margin-bottom: 2rem;
            color: black;
            font-weight: 700 !important;
        }

      
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #78ac24;
        }







        /* <!-- =====astrologers section===== --> */


        
/* Astrologers Section */

.astrologer-section{
    padding: 50px 0;
    background-color: white;
  }
.astrologer-section a{
  
color: black;
  }
  .astrologer-section img{
    margin-bottom: 10px;
  display: block;
   
  }
  
  .astrologer-card {
    background: var(--primary-light);
    border-radius: 1rem;
    padding: 1.5rem;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .astrologer-card:hover{
    box-shadow: 0 10px 25px var(--primary-color);
  }
  
  .astrologer-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
   
  }
  
  .card-img01 {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin-bottom: 1rem;
  }
  
  .astrologer-info {
    flex: 1;
  }
  
  
  
  .rating {
    
    font-weight: bold;
    margin-top: 0.5rem;
  }
  
  .rating .rating-star{
    color:  #ffcc00;
  }
  
  .expertise {
    color: #666;
    font-size: 0.9rem;
    /* margin-bottom: 1rem; */
    /* min-height: 3em; */
  }
  
 
  
  .details p {
    /* margin-bottom: 0.5rem; */
    font-size: 0.9rem;
  }
  
  .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem !important;
  }
  
  .action-buttons {
    display: flex;
  justify-content: space-between;
  width: 100%;
  }
  
  .action-buttons a{
    display: inline-block;
  }
  
  /* .chat-btn,
  .call-btn {
    width: 80px;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
   */
  
  /* .chat-btn {
    background: #e9ecef;
    color: #333;
  } */
  
  .call-btn {
    background: var(--primary-color);
    color: white;
  }
/*   
  .chat-btn:hover {
    background: #dee2e6;
  } */
  
  .call-btn:hover {
    background: var(--primary-color);
  }
  
  
  
  /* added by sami */
  .badge-container{
    min-height: 30px;
    margin-top: 10px;
  }
  
  .badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 1rem;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .most-choice {
    background-color: #ff9800;
    color: white;
  }
  
  .vip {
    background-color: #f44336;
    color: white;
  }
  
  .new {
    background-color: #2196F3;
    color: white;
  }
  
  .badge:hover {
    opacity: 0.8;
  }
  
  .online-badge {
    display: inline-block;
   
    padding: 5px 10px;
    border-radius: 1rem;
    font-size: 10px;
    margin-bottom: 0.5rem;
    float: right;
  }
  
  .available{
    background: #4CAF50;
    color: white;
  }
  
  .available::after{
    content: 'Online';
  }
  
  .not-available{
    background: #f8d7da;
  color: #721c24;
  
  }
  
  .not-available::after{
    content: 'Offline';
  
  }
  
  .busy2{
    background: #fff3cd; /* light gold/yellowish background */
  color: #856404; /* darker goldish text color */
  
  }
  
  .busy2::after{
    content: 'Busy';
  }
  
  
  
  
  /* added by sami */
  
  
  .hidden {
    display: none;
  }
  
  .hidden-silder {
    overflow: hidden;
  }
  
  .container-pro-01{
  max-width: 1000px;
  margin: 0% auto;
  padding: 2px;
  }
/* end */

.service-card01 {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.service-card01 h3 {
    color: #333;
    font-size: 1.25rem;
}


/* Responsive Design */
@media (min-width: 1068px) {
    .hidden-silder {
        display: none;
    }
    .service-card01{
        color: var(--primary-light);
    }
}

@media (max-width: 1068px) {
    .services {
        display: none;
    }
    
    .service-card01{
        color: var(--primary-light);
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 1.50rem;
        margin-top: 5%;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .astrologer-grid {
        grid-template-columns: 1fr;
    }

    
    .service-card01{
        color: var(--primary-light);
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    
    .service-card{
        color: var(--primary-light);
    }
}





/* <!-- ====astrologer-product====== --> */


#second-section {
    width: 100%;
    height: 40rem;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin-top: 50px;
}


.container-pro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}

.section-title-pro {
    text-align: center;
    /* margin-bottom: 30px; */
    position: relative;
    font-size: 35px;
}

.section-title-pro h2 {
    font-size: 32px;
    color: #000000;
    /* margin-bottom: 10px; */
    font-weight: 700;
}

.section-title-pro p {
    color: #ffffff;

    font-size: 16px;
}

.section-title-pro::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.category-slider-pro {
    padding: 20px 0;
    position: relative;
    margin-top: -50px !important;
}

.swiper {
    width: 100%;
    padding-bottom: 50px;
}


.category-card-pro {
    background: var(--primary-light);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
}

.category-card-pro:hover {
    box-shadow: 0 10px 25px var(--primary-color);
}

.category-icon-pro {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-pro img {
    width: 180px;
    height: 180px;
    border-radius: 100%;

}

.category-name-pro {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #312f2f;
}

.category-desc-pro {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-link {
    display: inline-block;
    padding: 8px 20px;
    background-color:var(--primary-color);
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 250px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.category-link:hover {
    background-color: var(--primary-light) !important;
    transform: scale(1.05);
    color:black !important;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.swiper-button-next-pro,
.swiper-button-prev-pro {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next-pro:after,
.swiper-button-prev-pro:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next-pro:hover,
.swiper-button-prev-pro:hover {
    background: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 991px) {
    .section-title-pro h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .section-title-pro h2 {
        font-size: 24px;
    }

    .category-card-pro {
        height: 380px;
    }
    .category-link {
        width: 150px;
    }
}

@media (max-width: 575px) {
    .container-pro {
        padding: 15px;
    }

    .section-title-pro h2 {
        font-size: 10px;
    }

    .category-card-pro {
        height: 380px;
    }

    .category-icon-pro {
        width: 180px;
        height: 180px;
    }

    .category-icon-pro img {
        width: 180px;
        height: 180px;
    }

    .category-name-pro {
        font-size: 16px;
    }
    .category-link {
        width: 150px;
    }
}




/* =======blog-section==== */

.blogs-section{
    align-items: center;
    justify-content: center;
    height: 50rem;
    background-color: var(--primary-light);
    padding: 50px 0;

}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.blog-card:hover{
    box-shadow: 0 10px 25px var(--primary-color);
  }

  

.blog-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #78ac24;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.read-more {
    color: #78ac24;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #5c8a14;
}

.swiper {
    padding: 2rem 1rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: #78ac24;
}

.swiper-pagination-bullet-active {
    background: #78ac24;
}

@media (max-width: 768px) {
    .swiper {
        padding: 1rem 0;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}
    


.testimonials-section {
    /* height: auto; */
    padding: 5rem 0;
    background-color: #f8f9fa;

}

.section-header {
    text-align: center;
    /* margin-bottom: 0.5rem; */
    position: relative;
    margin-top: 0;
}

.section-header h2 {
    color: black;
    font-size: 2.5rem;
    /* margin-bottom: 1rem; */
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #78ac24;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.testimonial-card {
    background: var(--primary-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: calc(100% - 2rem);
    height: auto;
}

.testimonial-card:hover {
   
        box-shadow: 0 10px 25px var(--primary-color);
      
}

.stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.quote {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #78ac24;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.client-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.swiper {
    padding: 2rem 1rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: #78ac24;
}

.swiper-pagination-bullet-active {
    background: #78ac24;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}






/* footer start */

/* .footer {
    background-color: #212529;
    color: #fff;
    padding-top: 4rem;
  padding-bottom: 1rem;

}
.footer h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer p, .footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 0.75rem;
}
.footer-bottom {
    border-top: 1px solid #343a40;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}
.contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.contact-item i {
    margin-top: 0.25rem;
}
.contact-item p {
    margin: 0 !important;
} */


/* footer end */




/* ==================.loader=============== */


.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    position: relative;
}

.loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    /* Adjust logo size */
    height: 60px;
    /* Adjust logo size */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ==================loader---end=========


/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 5px;
    height: 10px; /* Scrollbar width */
}

::-webkit-scrollbar-track {
    background: var(--primary-light); /* Track background color */
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color); /* Scrollbar color */
    border-radius: 10px; /* Rounded edges */
}



     /* Scroll to top button styles */
     .scroll-top-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 100000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.9);
        transition: all 0.3s ease;
    }
  
    .scroll-top-btn.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
  
    .scroll-top-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }
  
    .scroll-top-btn:active {
        transform: translateY(0) scale(0.95);
    }
  
    /* Button animation */
    .scroll-top-btn .icon {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
  
    .scroll-top-btn .icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        animation: pulse 2s infinite;
    }
  
    @keyframes pulse {
        0% {
            transform: scale(0.95);
            opacity: 0.7;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.3;
        }
        100% {
            transform: scale(0.95);
            opacity: 0.7;
        }
    }
  
    /* Responsive styles */
    @media (max-width: 768px) {
        .scroll-top-btn {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            font-size: 1.2rem;
        }
    }



/* =======icon======== */
    .rotate-icon {
        transition: transform 0.3s ease-in-out;
    }
    .collapsed .rotate-icon {
        transform: rotate(0deg);
    }
    .rotate-icon {
        transform: rotate(180deg);
    }



    /* ========astrologer====== */

    .dropdown-menu {
        max-height: 300px;
        overflow-y: auto;
      
    }

    .btn-pro{
        background-color: var(--primary-color);
    }
   

 

    
    /* ========astrologer-product====== */

    #book-btn{
        background-color: var(--primary-color);
        border: none;
    }





    /* ========login======== */


/* .login-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
    border-radius: 10px;
    z-index: 1000;
} */
/* .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    text-decoration: none;
    color: black;
} */

.modal-content .modal-header {
    background-color: #78ac24;
}

/* .toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.toggle-buttons button {
    flex: 1;
    border: 1px solid #74a22e;
    padding: 10px;
    cursor: pointer;
    background-color: white;
    font-weight: bold;
    transition: all 0.3s;
}
.toggle-buttons .active {
    background-color: #74a22e;
    color: white;
    transition: all 0.3s;
} */


/* Remove focus outline and box shadow */
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    border-color: var(--primary-color) !important; /* Remove focus border */
    box-shadow: none !important; /* Remove any shadow effect on focus */
}
  



/* =========astrologer-data============== */

.profile-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
}
.profile-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.verified-badge {
    color: #28a745;
    font-size: 14px;
}
.price-tag {
    background: #f8f9fa;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
}
.rating-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}
.star-rating {
    color: #ffc107;
}
.review-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.review-date {
    color: #6c757d;
    font-size: 14px;
}
.review-stars {
    color: #ffc107;
    font-size: 14px;
}
.rating-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 5px 0;
}
.rating-fill {
    background: #ffc107;
    height: 100%;
    border-radius: 4px;
}





/* footer synastro css */


footer {
    background-color: #212529;
}


footer i:hover{
    color: var(--primary-color);
    transition: all 0.3s;
}

footer p i {
    color: var(--primary-color);
}

footer li {
    color: var(--primary-color);
    margin-bottom: 5px;
    
}

footer h6,
footer p {
    color: #ffffff;
    margin-bottom: 10px;
  
}

.fs-5{
    font-size: 1.07rem !important;
   
}

footer h6,
footer strong {
    border-bottom: 3px solid var(--primary-color);
    
}

footer .bottom,
footer .top {
    /* background-color: #040c0c; */
    color: white;
    padding-top: 20px;
}

footer .bottom{
    border-top:1px solid #343a40;
}
footer .bottom a{
    color: var(--primary-color);
}

footer .top{
    border-bottom:1px solid #343a40;
}

footer .top > div:first-child {
    color: white !important;
  }



.footer p{
    margin-bottom: 15px;
}

.sideProfiles101 {
    box-shadow: 0 0 20px 4px #dbdbdb;
}

.btmTabData {
    border-top: 1px dashed #4e4e4e;
}

.userTitles h4 {
    color: #000;
}

.userTitles p {
    color: #6d6d6d;
}

.titleEditBtn button.btn786 {
    color: #bf6200 !important;
    background-color: #fff;
}

.userEditBtn button.btn {
    color: #fff;
    background-color: #00000091;
}

.MenuLists li p {
    color: #ffffff;
}

.MenuLists li.dividers {
    border: 0;
    background: linear-gradient(to right, #78ac24, #ceab42);
}

.table-color {
    background-color: var(--primary-color) !important;
    color: #fff;
}
.table-bg{
    background-color: var(--primary-color) !important;
    color: #fff;
}


.MenuLists li {
    border-top: 1px dashed #bbbbbb;
}

.MenuLists li a.active,
.MenuLists li:hover a {
    color: var(--primary-color);
}

.MenuLists li a {
    color: black;
}

 footer a {
    color: white;
}
 footer a:hover {
    color: var(--primary-color);
}

/* footer synastro css */




/* navbar syniastro css */


.mynav .navbar {
    background-color: white;
}

.btnclassforall {
    background-color: var(--primary-color);
    color: white;
}

.btntheme {
    color: var(--primary-color);
}

.btnclassforall:hover {
    background-color: var(--primary-color);
}

.ourkundlih2 {
    color: #584f47;
}

.horoscope_box_newkundli {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}

.collapse .btnhome {
    color: #000000;
}

.dropdown-content121 {
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 0 3px 0 #ccc;
    background-color: #fff;
}

.dropdown-content121 a {
    color: black;
}

.dropdown-content121 a:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-content121top {
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 0 3px 0 #ccc;
    background-color: #fff;
}

.dropdown-content121top a {
    color: black;
}

.dropdown-content121top a:hover {
    background-color: var(--primary-color);
    color: white;
}

.chnagecolor {
    color: var(--primary-color);
   border-radius: 10px;
}
.chnagecolor:hover {
 background-color: var(--primary-color);
 color:white;
  
}


/*SendOtp*/

.btn-check:checked+.btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    outline: none;
}

.btn-check .btn {
    outline: 1px solid var(--primary-color);
    color: black;
}

.sendotp{
    outline: none;
}

.sendotp:hover {
    background-color: var(--primary-color);
    outline: none;
}

.purchase {
    background-color: var(--primary-color);
    /* Green */
    border: none;
    color: white;
    padding: 7px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

.purchase:hover{
    background-color: var(--primary-color);
    color: white;
}

.blog_box_content:hover{
    color: var(--primary-color) !important;
}


/* .navbtn:hover {
    background-color: var(--primary-color);
} */

.navbtn {
    background-color: var(--primary-color);
    color:white!important;
    outline: none;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s;
}

.navbtn:hover{
    background-color: white;
    color: var(--primary-color) !important;
  
}
.navbar .nav-link:active,
.navbar .nav-link:focus {
 background-color: white!important;
  color: var(--primary-color) !important;
  
}



.modal-title{
    color: white !important;
}
.close-btn{
    color: white !important;
}

/* navbar syniastro css */


/*contact.html css*/

section .topcontact,
header {
    background-color: var(--primary-color);
}

/* .contactmap {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
} */

section .contactcard {
    background-color: #d4e2bc;
}



/*Astroprofile.html  css*/

section .maincontent {
    border: 1px solid rgba(0, 0, 0, 0.886);
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 212, 175, 0.64) 100%);
}

section .astroname {
    color: #000;
}

section .astroskill {
    color: #807f7f;
}

section .astrolang,
section .astroexp {
    color: #807f7f;
}

section .chat_details {
    color: #807f7f;
}

section .call_details,
section .chat_details {
    color: #807f7f;
}

section .astrocontact {
    background-color: #fff;
    box-shadow: 0 0 4px #ccc;
    color: black !important;
    border: 1px solid #8c8c8c !important;
}


/*revoew section*/

.rating_review {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 212, 175, 0.64) 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.rating_review .container .border_outline {
    border: 1px solid #0003;
}

.ratting_heading {
    color: #454545;
}

.ratting_number {
    color: #313131;
}

.ratting_star {
    color: #616161;
}

.full,
.half {
    color: #6c757d;
}

.number_progress_bar {
    color: #616161;
}

.rating_review .width_custom {
    background-color: #eee;
}

.progress,
.progress-bar {
    background-color: var(--primary-color);
}

.progress {
    background-color: #e9ecef;
}

.review_height_Set::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

.review_height_Set::-webkit-scrollbar-track {
    background-color: #eee;
}

.review_border_radius {
    border: 1px solid #0003;
}

.bg_dark_green_name {
    background-color: darkred;
}

.picture_profile {
    background-color: orange;
    color: #fff;
}

.date_rate_reply {
    color: #616161;
}

.comment_rate_reply {
    color: #616161;
}

.box_reply_review,
.box_reply_review_loader {
    background-color: #fff;
    border: 1px solid #0003;
}



::selection {
    background: var(--primary-color);
    color: #fff;
}

.clr-black-1 {
    color: #22262a !important;
}

.clr-black-2 {
    color: #262626 !important;
}

.blogCardTwo.blgBlox3 a {
    border-bottom: 1px solid #dbdbdb;
}

a:hover {
    border-color: #ea871e !important;
}

.smallBlgCards .recent {
    background-color: #ffc107;
    color: black;
}

.blgBoxShdow {
    box-shadow: 0px 0px 10px #d5d5d5;
}

.blogCardTwo.blgBlox3 a {
    border-bottom: 1px solid #dbdbdb;
}

.discBox {
    background-color: rgb(32 192 69) !important;
}

.discBox:before {
    border-color: rgb(32 192 69 / 70%) transparent rgb(32 192 69 / 70%) rgb(32 192 69);
}

.discBox1 {
    background-color: var(--primary-color) !important;
}

.discBox1:before {
    border-color: #e96a026d transparent #e96a0281 var(--primary-color);
}

.discBox2 {
    background-color: blue !important;
}

.discBox2:before {
    border-color: rgba(0, 0, 255, 0.496) transparent rgba(0, 0, 255, 0.397) blue;
}


/* .topline input[type="checkbox"]{
  border: 2px solid rgba(0, 0, 0, 0.508) !important;
  background-color: white !important;
} */

.Astrologers {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
}

.Astrologers .card {
    background-color: #ffe7d3;
}

.Astrologers ul {
    color: var(--primary-color);
}


/*about.html ki css*/

.aboutlearn {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
}

.bgabout {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.bgabout .aboutcard {
    background-color: #ffe7d3;
}

.socialmedia:hover,
.socialmedia:focus {
    background: #ddd;
    background-color: #ff8c00;
}

.socialmedia {
    border: 1px solid #ddd;
    color: #666;
}



/*service page css*/

.AddressInsides {
    box-shadow: 0 10px 30px #2634421a;
}

.AddressInsides:hover {
    transform: scale( 1.1);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    box-shadow: 0 0 20px 4px #dbdbdb;
}

.description_blog101 {
    color: #000;
}

.product-grid2:hover {
    color: var(--primary-color);
}

.product-grid2 .social li a {
    color: #505050;
    background-color: #fff;
}

.product-grid2 .social li a:hover {
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-grid2 .social li a:after,
.product-grid2 .social li a:before {
    color: #fff;
    background-color: #000;
}

.product-grid2 .add-to-cart {
    color: #fff;
    background-color: var(--primary-color);
}

.product-grid2 .add-to-cart:hover {
    background-color: var(--primary-color);
}

.product-grid2 .product-new-label {
    background-color: var(--primary-color);
    color: #fff;
}

.product-grid2 .title a {
    color: #303030;
}

.product-grid2 .title a:hover {
    color: var(--primary-color);
}

.product-grid2 .price {
    color: #303030;
}

.add-to-cart {
    background-color: var(--primary-color);
}

.description_blogpage {
    color: #000;
}

.bg-gradient-primary {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
}

.shadow {
    box-shadow: 0 0.25rem 0.375rem -0.0625rem hsla(0, 0%, 8%, 0.12), 0 0.125rem 0.25rem -0.0625rem hsla(0, 0%, 8%, 0.07) !important;
}

.msg_head {
    background-color: var(--primary-color);
}

.search {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.type_msg {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.attach_btn {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.send_btn {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.search_btn {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.navbar-nav .anchortag:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.user_img {
    border: 1.5px solid #f5f6fa;
}

.user_img_msg {
    border: 1.5px solid #f5f6fa;
}

.online_icon {
    background-color: #198754;
    border: 1.5px solid white;
}

.offline_icon {
    background-color: #dc3545;
    border: 1.5px solid white;
}

.busy_icon {
    background-color: #FFCC00;
    border: 1.5px solid white;
}

.video_cam span {
    color: white;
}

.msg_cotainer {
    color: #fff;
}

.msg_cotainerchat {
    color: black;
    background-color: #fff;
}

.msg_cotainer_send {
    background-color: #e96a02d8;
    color: #fff;
}

.msg_time {
    color: #fff;
}

.msg_time_send {
    color: rgba(255, 255, 255, 0.5);
}

.msg_head {
    position: relative;
}

#action_menu_btn {
    color: white;
}

.action_menu {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.icon_containerchat {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon_containerchat {
    background: #f17a02;
}

.icon_containerchat::before {
    background: #f78e0e;
}

.action_menu ul li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.anchortag:hover {
    color: #000;
    border-bottom: 4px solid var(--primary-color);
}


/*liveastro.html ki css*/

.reel__container {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.customer__container {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 768px) {
    .inputliveastro::placeholder {
        color: black;
    }
}

@media (min-width: 768px) {
    .livefooter {
        background-color: rgba(0, 0, 0, 0.518);
    }
}

.chathistcard {
    border-bottom: 5px solid #cc5500;
}


shop__sorting {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shop__sorting>li>a {
    color: #757575;
}

.shop__sorting>li>a:hover,
.shop__sorting>li>a:focus {
    color: #333333;
}

.shop__sorting>li.active>a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

@media (max-width: 767px) {
    .shop__sorting>li>a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}


/* Has error */

.has-error .form-control {
    border-color: #d9534f;
}

.has-error .form-control:focus {
    border-color: #b52b27;
}

.has-error .help-block {
    color: #d9534f;
}

.radio label:before {
    border: 10px solid #eee;
    background-color: #333333;
}

.input_qty label {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.input_qty label>span:not(.output) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.input_qty label>span:not(.output):last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.input_qty label>span:not(.output):hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.input_qty_sm label {
    color: #ccc;
}

.input_qty_sm label>span:not(.output):hover {
    color: #333333;
}

.input_qty_sm label output {
    color: #ccc;
}

.c_review li {
    border-bottom: 1px solid #e8e8e8;
}

.product_item:hover .cp_img img {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.product_item .product_details {
    color: #000;
}

.product_item .product_details h5 a {
    color: #444;
}

.product_item .product_details .product_price .new_price {
    font-weight: 600;
    color: #ff4136;
}

.details .colors .not-available:before {
    color: #fff;
}

.cart-table .quantity-grp .input-group-addon {
    background-color: #1ab1e3;
}

.cart-table .quantity-grp .input-group-addon a {
    color: #fff;
}

.cart-table .quantity-grp .form-control {
    background-color: #fff;
}

.cart-table .quantity-grp .form-control+.input-group-addon {
    background-color: #1ab1e3;
}

.card101 {
    background: #fff;
    background-color: #ffe7d3;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.card101 .body {
    color: #424242;
}

.regisform {
    box-shadow: 2px 6px 100px #fff;
}

.wizard-card .picture {
    background-color: #999999;
    border: 4px solid #cccccc;
    color: #ffffff;
}

.formsection {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.BlackFridayBanner__wrapper {
    background-color: #0b2148;
}

.BlackFridayBanner__pinkTitle:after {
    -webkit-text-stroke: 5px var(--primary-color);
}

.heading_name_trending h4 {
    color: #323232;
}

.blog_box_content {
    background-color: #fff;
    box-shadow: 0 0 2px #919191;
}

.heading_top_trending {
    border-bottom: 1px dotted #919191;
}

.heading_name_trending h6 {
    color: #8c8c8c;
}

.content_blog_list .col-3 {
    border-right: 1px solid #ccc;
}

.review_upper_image span {
    color: #383535;
}

.search_box_astromall_new input {
    box-shadow: 0 0 4px 2px #ccc;
}

.description_blog {
    color: #212529 !important;
}

.description_blog {
    color: #000;
}

.shopproductcontent {
    color: #000;
}

.writter_blog_box {
    color: #616161;
}

.date_description_blog {
    color: #616161;
}

.review_upper_image {
    background-color: rgb(255 255 255 / 90%);
}

.recently_posted_blogs .trending_link {
    color: #323232;
}

.catergories_items .categories_link {
    color: #323232;
}

.gray-bg {
    background-color: #f5f5f5;
}


/* 
* Blog
---------------------*/ */

.blog-grid {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    background: #ffffff;
}

.blog-grid .blog-img .date {
    background: var(--primary-color);
    color: #ffffff;
}

.blog-grid .blog-info h5 a {
    color: #20247b;
}


/* Blog Sidebar
-------------------*/

.blog-aside .widget {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    background: #ffffff;
}

.blog-aside .widget-title {
    border-bottom: 1px solid #eee;
}

.blog-aside .widget-title h3 {
    color: var(--primary-color);
}

.blog-aside .widget-author h6 {
    color: #20247b;
}

.blog-aside .post-aside .post-aside-title a {
    color: #20247b;
}

.blog-aside .post-aside .post-aside-meta a {
    color: #6f8ba4;
}

.blog-aside .latest-post-aside+.latest-post-aside {
    border-top: 1px solid #eee;
}

.blog-aside .latest-post-aside .lpa-title a {
    color: #20247b;
}

.blog-aside .latest-post-aside .lpa-meta a {
    color: #6f8ba4;
}

.tag-cloud a {
    color: #ffffff;
    background: var(--primary-color);
}

.tag-cloud a:hover {
    background: var(--primary-color);
}

.article {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    background: #ffffff;
}

.article .article-title h6 a {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.article .article-title h2 {
    color: #20247b;
}

.article .article-title .media {
    border-bottom: 1px dashed #ddd;
}

.article .article-title .media .media-body label {
    color: var(--primary-color);
}

.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
    color: #20247b;
}

.article .article-content blockquote p {
    color: var(--primary-color);
}

.article .article-content blockquote .blockquote-footer {
    color: #20247b;
}

.article-comment {
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    background: #ffffff;
}

.article-comment h4 {
    color: #20247b;
}

.ribbon::before,
.ribbon::after {
    border: 5px solid #2980b9;
}

.ribbon span {
    background-color: var(--primary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.panel-heading {
    border-color: #eff2f7;
}

.panel-title {
    color: #2a3542;
}


/*product list*/

.prod-cat li a {
    border-bottom: 1px dashed #d9d9d9;
}

.prod-cat li a {
    color: #3b3b3b;
}

.prod-cat li ul li a:hover,
.prod-cat li ul li a:focus,
.prod-cat li ul li.active a,
.prod-cat li a:hover,
.prod-cat li a:focus,
.prod-cat li a.active {
    color: var(--primary-color);
}

.adtocart {
    background: var(--primary-color);
    color: #fff;
    border: 3px solid #fff;
}

.adtocart i {
    color: #fff;
}

.pro-title {
    color: #5a5a5a
}

.product-list .price {
    color: var(--primary-color);
}

.product_meta {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.astro_promises {
    background-color: #ffebdb;
}

.astro_promises button {
    background-color: #ecc8ab;
}

.searchbtn {
    background-color: var(--primary-color);
    color: white
}

.searchbtn:hover {
    background-color: var(--primary-light);
    color: white
}

/*add to cart ki css*/

.gradient-custom {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
}


/*devieydetail css*/

.buynowsection {
    background: -webkit-linear-gradient(left, #3931af, #00c6ff);
}

.card-custom {
    background-color: #f8f9fa;
}

.input-custom {
    background-color: white;
}

.white-text {
    color: hsl(52, 0%, 98%);
}

.back-button {
    background-color: hsl(52, 0%, 98%);
    color: black;
}


/*thoroscope detail ki css*/

.btnhoroscope {
    background-color: #ecc8ab;
}

.horoscopechat {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

.horoscope_box_new1 {
    background-color: #fff;
    box-shadow: 0 0 10px 2px #dbdbdb;
}

.horoscope_box_new1:hover {
    box-shadow: 0 0 20px 4px #dbdbdb;
}

.horoscope_box_new {
    background-color: #fff;
    box-shadow: 0 0 10px 2px #dbdbdb;
}

.horoscope_box_new:hover {
    box-shadow: 0 0 20px 4px #dbdbdb;
}


/*today panchang ki css*/

.daily_col {
    box-shadow: 0 0 10px 2px #ccc;
    background-color: #ff8c0020;
    border: 1px solid #e2800720 !important;
}

.night_col {
    background-color: #1e90ff20 !important;
    border: 1px solid #1e90ff !important;
}


/*getkundli css*/

.kundli_predict_card {
    background: #e4e4e4;
    box-shadow: 0 2px 6px 1px #e4e4e4;
    color: black;
}

.kundli_predict_card p {
    color: black;
}

.kundli_predict_card p:hover {
    color: white;
}

.kundli_predict_card:hover {
    background-color: var(--primary-color);
    color: white;
}

.getkundlidash a {
    color: black;
}

.getkundlidash:hover {
    background-color: var(--primary-color);
}

.submenu:hover {
    color: white;
}

.getkundlidash a:hover {
    color: white;
}


/*service page css*/

.AddressInsides {
    box-shadow: 0 10px 30px #2634421a;
}

.AddressInsides:hover {
    transform: scale( 1.1);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    box-shadow: 0 0 20px 4px #dbdbdb;
}

.description_blog101 {
    color: #000;
}

.product-grid2:hover {
    color: var(--primary-color);
}

.product-grid2 .social li a {
    color: #505050;
    background-color: #fff;
}

.product-grid2 .social li a:hover {
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-grid2 .social li a:after,
.product-grid2 .social li a:before {
    color: #fff;
    background-color: #000;
}

.product-grid2 .add-to-cart {
    color: #fff;
    background-color: var(--primary-color);
}

.product-grid2 .add-to-cart:hover {
    background-color: var(--primary-color);
}

.product-grid2 .product-new-label {
    background-color: var(--primary-color);
    color: #fff;
}

.product-grid2 .title a {
    color: #303030;
}

.product-grid2 .title a:hover {
    color: var(--primary-color);
}

.product-grid2 .price {
    color: #303030;
}

.add-to-cart {
    background-color: var(--primary-color);
}

.description_blogpage {
    color: #000;
}

.bg-gradient-primary {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
}

.shadow {
    box-shadow: 0 0.25rem 0.375rem -0.0625rem hsla(0, 0%, 8%, 0.12), 0 0.125rem 0.25rem -0.0625rem hsla(0, 0%, 8%, 0.07) !important;
}

.msg_head {
    background-color: var(--primary-color);
}

.search {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.type_msg {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.attach_btn {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.send_btn {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.search_btn {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.navbar-nav .anchortag:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.user_img {
    border: 1.5px solid #f5f6fa;
}

.user_img_msg {
    border: 1.5px solid #f5f6fa;
}

.online_icon {
    background-color: #198754;
    border: 1.5px solid white;
}

.offline_icon {
    background-color: #dc3545;
    border: 1.5px solid white;
}

.busy_icon {
    background-color: #FFCC00;
    border: 1.5px solid white;
}

.video_cam span {
    color: white;
}

.msg_cotainer {
    color: #fff;
}

.msg_cotainerchat {
    color: black;
    background-color: #fff;
}

.msg_cotainer_send {
    background-color: #e96a02d8;
    color: #fff;
}

.msg_time {
    color: #fff;
}

.msg_time_send {
    color: rgba(255, 255, 255, 0.5);
}

.msg_head {
    position: relative;
}

#action_menu_btn {
    color: white;
}

.action_menu {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.icon_containerchat {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon_containerchat {
    background: #f17a02;
}

.icon_containerchat::before {
    background: #f78e0e;
}

.action_menu ul li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.anchortag:hover {
    color: #000;
    border-bottom: 4px solid var(--primary-color);
}


/*liveastro.html ki css*/

.reel__container {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.customer__container {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 768px) {
    .inputliveastro::placeholder {
        color: black;
    }
}

@media (min-width: 768px) {
    .livefooter {
        background-color: rgba(0, 0, 0, 0.518);
    }
}

.chathistcard {
    border-bottom: 5px solid var(--primary-color);
}


/* .navbar-toggler-icon {
    filter: invert(1) grayscale(0%) contrast(100%) brightness(200%);
  
    
} */
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    border: 1px solid #C2DA9C;
}

.user-active-color{
    background-color: white;
 color: var(--primary-color);
 border-radius: 10px;
 font-weight: bold;
}
.user-active-color:hover{
    color: var(--primary-color);
}




@media (max-width: 768px) {

    footer ul{
        padding-left: 1.5rem !important;
    }

}



/* new updates */


  
  /* astrolger new */

  .astro-cards{
    margin-top: 30px;
    gap: 10px;
    justify-content: center;
   
}
  
.card-new {
    position: relative;
    width: 370px;
    height: 220px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #d8b4fe; */
    border: 1px solid var(--primary-color);
 
}

.online-badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    /* background-color: var(--primary-color);
    color: white; */
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
   
}




  .available{
    background: #4CAF50;
    color: white;
  }
  
  .available::after{
    content: 'Online';
  }
  
  .not-available{
  
    background-color: #dc3545;
    color: white;
  }
  
  .not-available::after{
    content: 'Offline';
  
  }
  
  .busy2{
    background: #f8d7da;
    color: #721c24;
  
  }
  
  .busy2::after{
    content: 'Busy';
  }
  

  .hide-after::after {
    content: none !important;
}


.profile-section-new {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.profile-image-new {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary-color);
}

.profile-info-new {
    flex: 1;
}

.name-new {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.specialties-new, .experience-new, .languages-new {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.languages-new{
    margin-bottom:10px;
}
.rating-new {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 4px; */
    font-size: 13px;
    margin-top: 5px;
}


.rating-value-new {
    color: #333;
    font-weight: bold;
}

.star-new {
    color: #FF7722;
    font-size: 15px;
}

.price-new {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    /* margin: 5px 0; */
}

.action-buttons-new {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.chat-btn-new, .call-btn-new {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
    font-size: 13px;
}

.chat-btn-new {
    background-color: var(--primary-color);
    color: white !important;
   
}

.call-btn-new {
    background-color: var(--primary-color);
    color: white !important;
}

.chat-btn-new:hover {
    background-color: var(--primary-light);
}

.call-btn-new:hover {
    background-color: var(--primary-light);
}



.profile-image-wrapper {
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.online-dot-new {
    position: absolute;
    bottom: 10px;
    right: 0px;
    width: 15px;
    height: 15px;
    /* background-color: #00a651; */
    border: 2px solid white;
    border-radius: 50%;
}

@media (max-width: 576px) {
    .astro-cards {
      justify-content: center;
    }
  }
  



.view-all-new {
   text-align: center;
   margin-top: 10px;
}

.view-all-new a {
    display: inline-block;
    padding: 8px 20px;
    background-color:var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 250px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.view-all-new a:hover {

    transform: scale(1.05);
   
}

/* banner */



  
  .banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: linear-gradient(to bottom, #ff7e00, #d93900); */
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
    color: white;
    padding: 20px 220px;
    margin-top: 50px;
    
  }
  
  .features {
    display: flex;
    gap: 40px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .feature-item img {
    width: 60px;
    height: 60px;
  }
  
  .feature-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
  }
  
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .call-button,
  .whatsapp-button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }

  .call-button i,
  .whatsapp-button i {
    font-size: 14px;
  }
  
  .call-button:hover,
  .whatsapp-button:hover {
    background-color: var(--primary-light);
  color: white;
  }
  
  
/* ✅ Responsive Design */
@media (max-width: 768px) {
    .banner {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 10px;
    }
  
    .features {
      justify-content: space-between;
      gap: 20px;
      width: 100%;
    }
  
    .buttons {
        margin-top: 20px;
      width: 100%;
      flex-direction: row;
      justify-content: space-between;
    }
  
    .call-button,
    .whatsapp-button {
      flex: 1;
    }
  }
  
  @media (max-width: 480px) {
    .features {
      flex-direction: column;
      gap: 15px;
    }
  
    .buttons {
        margin-top: 20px;
      flex-direction: column;
      gap: 10px;
    }
  }


  /* banner 2 */

  .banner2 {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    flex-wrap: wrap;
  }

  .banner2 img.phone {
    height: 100px;
    margin-bottom: -16px;
  }

  .banner-text2 {
    text-align: left;
    /* max-width: 300px; */
    display: flex;
  }

  .banner-text2 h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .store-buttons2 {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
  }

  .store-buttons2 a img {
    height: 40px;
    cursor: pointer;
  }

  .contact-buttons2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-buttons2 a {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }


  .contact-buttons2 a:hover  {

        background-color: var(--primary-light);
        color: white;
      }
  .contact-buttons2 a i {
    margin-right: 10px;
  }

  @media (max-width: 768px) {
    .banner2 {
      flex-direction: column;
      text-align: center;
    }

    .banner-text2 {
      max-width: 100%;
    }

    .contact-buttons2 {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
    }

    .contact-buttons2 a {
      margin: 5px;
    }
  }




  /* new navbar */


  


/* Header styles */
header {
    width: 100%;
  
}
.header-navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  z-index: 1000;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.top-header {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 150px;
    color: white;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-new {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    margin-right: 10px;
}



.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-care {
    display: flex;
    align-items: center;
    gap: 5px;
}

.customer-care i {
    font-size: 20px;
}

.customer-care div {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.talk-btn, .chat-btn {
    background-color: white;
    color: #333;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: -35px;
}

.talk-btn:hover, .chat-btn:hover{
  background-color: var(--primary-light);
  color: white;
}

.chat-btn {
    background-color: white;
}

.sign-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.mobile-sign-in {
    display: none;

}

.user-icon {
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-icon i {
    font-size: 25px;
    color: #78ac24;
}

.sign-in span {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}

/* Mobile buttons */
.mobile-buttons {
    display: none;
    width: 100%;
    padding: 10px;
    background:#feed01;
    gap: 10px;
}

.mobile-buttons .talk-btn,
.mobile-buttons .chat-btn {
    flex: 1;
    justify-content: center;
    padding: 12px;
    border-radius: 25px;
    font-size: 14px;
}

/* Main navigation */
.main-nav {
    background-color: #78ac24;
    /* padding: 10px 0; */
    
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}

.main-nav li {
    position: relative;
    padding: 10px 5px; 
}

.main-nav li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav li:hover {
   background-color: #93c04a59;
}


.user-drop{
    list-style:none;
    margin-top: 10px !important;
}
/* Dropdown menu */
.dropdown2 {
    position: relative;
   
}

.dropdown-toggle2 i {
    font-size: 12px;
    transition: transform 0.3s;
}



.dropdown2:hover .dropdown-toggle2 i {
    transform: rotate(180deg);
  
}

.login-hover-new{
    color: black;
    padding: 5px 10px;
    border-radius: 15px;
    /* font-weight: bold; */
    background-color: white;
  
   
}

.login-hover-new:hover{
    color: var(--primary-color);
    
}

.dropdown-menu2 {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    position: absolute;
    background-color:#78ac24;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    
    
}

.dropdown2:hover .dropdown-menu2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-menu2 li {
    color: white;
    padding: 2px 5px; 
    text-decoration: none;
    display: block;
    border-bottom: 1px solid white;
}



.dropdown-menu2 li:last-child {
    border-bottom: none;
}

.dropdown-menu2 li a {
    display: block;
    /* padding: 10px 15px; */
    color: white;
    font-weight: normal;
}

.dropdown-menu2 li a:hover {
    background-color: #93c04a59;
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: white;
    z-index: 10000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    background: linear-gradient(180deg, #78ac24 0%, #feed01 100%);
    color: white;
    padding: 20px;
    position: relative;
}

.close-btn2 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #eee;
}

.sidebar-menu li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.sidebar-menu li a:hover {
    background-color: #f5f5f5;
    color: #78ac24;
}

/* Sidebar dropdown */
.sidebar-dropdown {
    position: relative;
}

.sidebar-dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.sidebar-dropdown-toggle i {
    transition: transform 0.3s;
}

.sidebar-dropdown.active .sidebar-dropdown-toggle i {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu {
    display: none;
    background-color: #f9f9f9;
    list-style: none;
    padding: 0;
 
}

.sidebar-dropdown.active .sidebar-dropdown-menu {
    display: block;
}

.sidebar-dropdown-menu li a {
    padding-left: 40px;
    font-weight: normal;
    font-size: 14px;
}

.sidebar-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-buttons .talk-btn,
.sidebar-buttons .chat-btn {
    width: 100%;
    justify-content: center;
}

.sidebar-buttons .sign-in {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}


/* Responsive styles */
@media (max-width: 1200px) {
    .top-right {
        gap: 10px;
    }
    
    .talk-btn, .chat-btn {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    
    .customer-care div span:first-child {
        display: none;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 20px;
    }
    
    .main-nav li {
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {

    .top-header{
        padding: 10px 20px;
    }

    .talk-btn, .chat-btn{
        margin-bottom: 0px;
    }
    .hamburger-menu {
        display: flex;
    }
    
    .top-right {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 9px;
    }
    
    .mobile-buttons {
        display: flex;
    }
    
    .mobile-sign-in {
        display: flex;
        margin-right: 15px;
    }
    
    .sign-in span {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-header{
        padding: 10px 20px;
    }

    .talk-btn, .chat-btn{
        margin-bottom: 0px;
    }


    .logo-img {
        height: 35px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 8px;
    }
}



.login-btn-new {
    margin-top: 20px;
}

.login-btn-new i{
    margin-right: 5px;
    font-size: 18px;
}

.login-btn-new a {
    background-color: #78ac24;
    color:white!important;
   border-radius: 20px;
    border: 1px solid #78ac24 !important;
    transition: all 0.3s;
    
  
  
   
}

.login-btn-new a:hover{
    background-color: white;
    color: #78ac24 !important;
}