/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--vedic-cream);
}

a {
    text-decoration: none;
    color: var(--vedic-orange);
}

a:hover {
    color: var(--vedic-dark);
}

/* Header Styles */
.navbar {
     min-height: 15px !important; /* Adjust this value as needed */
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    background: linear-gradient(135deg, var(--vedic-dark), var(--vedic-orange));
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.2);
    padding: 15px 0;
    
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    font-family: 'Times New Roman', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 10px;
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--vedic-light) !important;
    background-color: rgba(255,255,255,0.1);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    position: relative;
    background-color: var(--vedic-cream);
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(135deg, var(--vedic-orange), var(--vedic-dark));
    opacity: 0.1;
}

/* Spacing between hero and why choose us */
.why-choose-us-section {
    padding: 4rem 0;
    position: relative;
}

/* Card Styles */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: 600;
}

/* Button Styles */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
}

/* Testimonials */
.testimonial-card .card-body {
    position: relative;
}

.testimonial-card .card-body::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: #f8f9fa;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    z-index: 0;
}

.testimonial-card .card-text {
    position: relative;
    z-index: 1;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--vedic-dark), var(--vedic-orange));
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--vedic-light), var(--vedic-orange), var(--vedic-light));
}

footer h5 {
    font-family: 'Times New Roman', serif;
    color: var(--vedic-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--vedic-light);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
}

footer a:hover {
    color: var(--vedic-light);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--vedic-orange);
    transform: translateY(-3px);
}

/* Vedic Color Variables */
:root {
    --vedic-orange: #FF7F24;  /* Saffron orange */
    --vedic-dark: #8B4513;    /* Sienna brown */
    --vedic-light: #FFD700;   /* Gold */
    --vedic-cream: #FFF8DC;   /* Cream */
    --vedic-gold: #FFD700;    /* Gold */
    
    /* --primary: #8e44ad;
            --secondary: #f39c12;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --accent: #e67e22; */
}



.vedic-orange {
    color: var(--vedic-orange);
}

.vedic-bg-dark {
    background-color: var(--vedic-dark);
}

.btn-vedic {
    background: linear-gradient(135deg, var(--vedic-orange), var(--vedic-dark));
    color: white;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-vedic:hover {
    background: linear-gradient(135deg, var(--vedic-dark), var(--vedic-orange));
    color: var(--vedic-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.vedic-service-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--vedic-cream);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.vedic-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.15);
}

.card-header {
    position: relative;
    padding-right: 50px; /* Make space for the Om symbol */
}

.zodiac-icon {
    position: absolute;
    top: 20%;
    left: 30px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--vedic-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--vedic-orange);
    color: var(--vedic-dark);
    font-size: 1.2rem;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFF8DC, #FFD700);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--vedic-orange), transparent);
    margin: 15px 0;
    opacity: 0.3;
}

.service-meta {
    font-size: 0.9rem;
}

.display-4 {
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Global Vedic Styles */
.vedic-highlight {
    color: var(--vedic-gold);
    font-weight: bold;
}

.vedic-section-title {
    font-family: 'Times New Roman', serif;
    color: var(--vedic-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.vedic-section-title span {
    color: var(--vedic-orange);
}

.vedic-section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--vedic-orange), var(--vedic-gold));
    bottom: -10px;
    left: 25%;
}

.vedic-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn-vedic {
    background: linear-gradient(135deg, var(--vedic-orange), var(--vedic-dark));
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-vedic:hover {
    background: linear-gradient(135deg, var(--vedic-dark), var(--vedic-orange));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-vedic-outline {
    background: transparent;
    color: var(--vedic-orange);
    border: 2px solid var(--vedic-orange);
    border-radius: 4px;
    padding: 10px 23px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-vedic-outline:hover {
    background: var(--vedic-orange);
    color: white;
}

.btn-vedic-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.vedic-hero {
    /* background: var(--vedic-cream);*/
     background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    position: relative;
    overflow: hidden;
    background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center
}

.btn-hero {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .btn-hero-secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .trust-badge {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .client-images {
            display: flex;
        }
        
        .client-images img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
        }

.vedic-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/vedic-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.vedic-title-box {
    position: relative;
    z-index: 1;
}

.vedic-image-frame {
    position: relative;
    border: 8px solid white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vedic-image-frame:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--vedic-gold);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.7;
}

/* Feature Cards */
.vedic-feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.vedic-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vedic-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vedic-cream), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--vedic-orange);
    border: 2px solid var(--vedic-gold);
}

/* Service Cards */
.vedic-service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.vedic-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vedic-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vedic-cream), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--vedic-orange);
    border: 2px solid var(--vedic-gold);
}

.vedic-price {
    color: var(--vedic-orange);
    font-weight: bold;
    margin: 15px 0;
}

/* Astrologer Cards */
.vedic-astrologer-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.vedic-astrologer-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vedic-astrologer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vedic-astrologer-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vedic-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.vedic-specialization {
    font-style: italic;
    color: var(--vedic-dark);
}

/* Testimonial Cards */
.vedic-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.vedic-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(139, 69, 19, 0.1);
}

.vedic-testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.vedic-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--vedic-gold);
}

/* CTA Section */
.vedic-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/vedic-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.vedic-cta h2 {
    color: var(--vedic-gold);
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vedic-hero .row {
        flex-direction: column-reverse;
    }
     .hero h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
    
    .vedic-title-box {
        text-align: center;
        margin-top: 30px;
    }
    
    .vedic-image-frame {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .why-choose-us-section {
        padding: 2rem 0;
    }
}

/* Circular Astrologer Image */
.astrologer-img-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--vedic-cream);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.1);
}

.astrologer-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vedic-astrologer-card:hover .astrologer-img-circle img {
    transform: scale(1.05);
}

/* Astrologers Listing Page */
.vedic-astrologers-listing {
    background-color: var(--vedic-cream);
}

.vedic-astrologer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.vedic-astrologer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.astrologer-profile-img {
    height: 100%;
    position: relative;
    padding: 20px;
}

.astrologer-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--vedic-cream);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.1);
    aspect-ratio: 1/1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--vedic-orange), var(--vedic-dark));
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.astrologer-name {
    font-size: 1.3rem;
    color: var(--vedic-dark);
    margin-bottom: 0;
}

.rating-badge {
    background-color: var(--vedic-cream);
    color: var(--vedic-dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.specialization {
    color: var(--vedic-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.astrologer-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.astrologer-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.consultation-fee {
    text-align: right;
}

.consultation-fee .text-muted {
    display: block;
    font-size: 0.8rem;
}

.consultation-fee .price {
    font-weight: 700;
    color: var(--vedic-orange);
    font-size: 1.2rem;
}

.alert-vedic {
    background-color: var(--vedic-cream);
    border-left: 4px solid var(--vedic-orange);
    color: var(--vedic-dark);
}

.btn-vedic-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-vedic-outline-sm {
    padding: 7px 20px;
    font-size: 0.9rem;
    border: 2px solid var(--vedic-orange);
    color: var(--vedic-orange);
    background: transparent;
}

.btn-vedic-outline-sm:hover {
    background: var(--vedic-orange);
    color: white;
}

.text-vedic-orange {
    color: var(--vedic-orange);
}

/*. Blog sectio ----*/

/* Vedic Blog Styles */
.vedic-blog-container {
    background-color: var(--vedic-cream);
}

/* Featured Post */
.vedic-featured-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.vedic-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
}

.vedic-featured-img {
    width: 100%;
    object-fit: cover;
}

.vedic-featured-content {
    padding: 30px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Post Cards */
.vedic-post-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.vedic-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.vedic-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vedic-post-body {
    padding: 20px;
}

.vedic-post-title {
    font-size: 1.2rem;
    color: var(--vedic-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.vedic-post-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.vedic-post-meta {
    font-size: 0.85rem;
    color: #666;
}

.vedic-post-category {
    margin-right: 15px;
}

.vedic-post-category i,
.vedic-post-date i {
    color: var(--vedic-orange);
}

/* Placeholder Images */
.vedic-placeholder-img {
    background-color: var(--vedic-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}

.vedic-placeholder-icon {
    color: var(--vedic-orange);
    opacity: 0.3;
    font-size: 3rem;
}

/* Sidebar */
.vedic-sidebar-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
    margin-bottom: 30px;
}

.vedic-sidebar-header {
    background: linear-gradient(135deg, var(--vedic-orange), var(--vedic-dark));
    color: white;
    padding: 15px 20px;
}

.vedic-sidebar-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.vedic-sidebar-body {
    padding: 20px;
}

/* Category List */
.vedic-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vedic-category-list li {
    border-bottom: 1px dashed rgba(139, 69, 19, 0.1);
    padding: 8px 0;
}

.vedic-category-list li:last-child {
    border-bottom: none;
}

.vedic-category-list li a {
    display: flex;
    align-items: center;
    color: var(--vedic-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.vedic-category-list li a:hover {
    color: var(--vedic-orange);
    transform: translateX(5px);
}

.vedic-category-list li i {
    font-size: 0.7rem;
    color: var(--vedic-orange);
}

.vedic-badge {
    margin-left: auto;
    background-color: var(--vedic-cream);
    color: var(--vedic-dark);
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Popular Posts */
.vedic-popular-posts {
    margin-top: 10px;
}

.vedic-popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(139, 69, 19, 0.1);
}

.vedic-popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vedic-popular-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.vedic-popular-placeholder {
    width: 80px;
    height: 60px;
    background-color: var(--vedic-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.vedic-popular-placeholder i {
    color: var(--vedic-orange);
    opacity: 0.3;
}

.vedic-popular-content h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.vedic-popular-content h5 a {
    color: var(--vedic-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vedic-popular-content h5 a:hover {
    color: var(--vedic-orange);
}

.vedic-popular-date {
    color: #666;
    font-size: 0.8rem;
}

.vedic-popular-date i {
    color: var(--vedic-orange);
}

/* Pagination */
.vedic-pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.vedic-page-item.active .vedic-page-link {
    background: linear-gradient(135deg, var(--vedic-orange), var(--vedic-dark));
    color: white;
    border-color: var(--vedic-orange);
}

.vedic-page-link {
    position: relative;
    display: block;
    color: var(--vedic-dark);
    text-decoration: none;
    background-color: white;
    border: 1px solid rgba(139, 69, 19, 0.1);
    padding: 0.5rem 0.9rem;
    margin-left: -1px;
    transition: all 0.3s ease;
}

.vedic-page-link:hover {
    color: var(--vedic-orange);
    background-color: var(--vedic-cream);
    border-color: rgba(139, 69, 19, 0.1);
}

.vedic-page-item:first-child .vedic-page-link {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.vedic-page-item:last-child .vedic-page-link {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Alert */
.vedic-alert {
    background-color: var(--vedic-cream);
    color: var(--vedic-dark);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--vedic-orange);
}

.vedic-alert i {
    color: var(--vedic-orange);
}

/* No Content */
.vedic-no-content {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.vedic-no-content i {
    color: var(--vedic-orange);
}

/*--- blog post section --*/
/* Vedic Post Page Styles */
.vedic-post-container {
    background-color: var(--vedic-cream);
}

/* Breadcrumb */
.vedic-breadcrumb {
    padding: 10px 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(139, 69, 19, 0.05);
}

.vedic-breadcrumb .breadcrumb-item a {
    color: var(--vedic-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vedic-breadcrumb .breadcrumb-item a:hover {
    color: var(--vedic-orange);
}

.vedic-breadcrumb .breadcrumb-item.active {
    color: var(--vedic-orange);
}

/* Article Styles */
.vedic-article {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.05);
}

.vedic-post-title {
    font-family: 'Times New Roman', serif;
    color: var(--vedic-dark);
    font-weight: 700;
    line-height: 1.3;
}

.vedic-post-meta {
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(139, 69, 19, 0.1);
}

.vedic-author-name {
    color: var(--vedic-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.vedic-post-details {
    font-size: 0.9rem;
    color: #666;
}

.vedic-post-details i {
    color: var(--vedic-orange);
}

.vedic-featured-image {
    margin-bottom: 25px;
}

.vedic-featured-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.vedic-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.vedic-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.vedic-post-footer {
    border-top: 1px dashed rgba(139, 69, 19, 0.1);
}

.vedic-post-tags {
    display: flex;
    align-items: center;
}

.vedic-category-badge {
    background-color: var(--vedic-cream);
    color: var(--vedic-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.vedic-category-badge:hover {
    background-color: var(--vedic-orange);
    color: white;
}

/* Comments Section */
.vedic-comments {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.05);
}

.vedic-comment {
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(139, 69, 19, 0.1);
    margin-bottom: 15px;
}

.vedic-comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.vedic-comment-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.vedic-default-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--vedic-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vedic-orange);
}

.vedic-comment-author {
    color: var(--vedic-dark);
    font-weight: 600;
}

.vedic-comment-date {
    font-size: 0.8rem;
}

.vedic-comment-date i {
    color: var(--vedic-orange);
}

.vedic-comment-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Comment Form */
.vedic-comment-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.05);
}

.vedic-form-control {
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 5px;
    padding: 15px;
    font-size: 0.95rem;
}

.vedic-form-control:focus {
    border-color: var(--vedic-orange);
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.1);
}

/* Sidebar */
.vedic-sidebar-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
    margin-bottom: 30px;
}

.vedic-sidebar-header {
    background: linear-gradient(135deg, var(--vedic-orange), var(--vedic-dark));
    color: white;
    padding: 15px 20px;
}

.vedic-sidebar-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.vedic-sidebar-body {
    padding: 20px;
}

/* Author Profile */
.vedic-author-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--vedic-cream);
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
}

.vedic-author-title {
    font-style: italic;
    margin-bottom: 10px;
}

.vedic-author-rating {
    color: var(--vedic-orange);
    margin-bottom: 15px;
}

.vedic-author-rating span {
    color: #666;
    font-size: 0.9rem;
}

.vedic-author-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Related Posts */
.vedic-related-posts {
    margin-top: 10px;
}

.vedic-related-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(139, 69, 19, 0.1);
}

.vedic-related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vedic-related-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.vedic-related-placeholder {
    width: 80px;
    height: 60px;
    background-color: var(--vedic-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.vedic-related-placeholder i {
    color: var(--vedic-orange);
    opacity: 0.3;
}

.vedic-related-content h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.vedic-related-title {
    color: var(--vedic-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vedic-related-title:hover {
    color: var(--vedic-orange);
}

.vedic-related-date {
    color: #666;
    font-size: 0.8rem;
}

.vedic-related-date i {
    color: var(--vedic-orange);
}

/* Alert */
.vedic-alert {
    background-color: var(--vedic-cream);
    color: var(--vedic-dark);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--vedic-orange);
}

.vedic-alert i {
    color: var(--vedic-orange);
}

/* No Content */
.vedic-no-content {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.vedic-no-content i {
    color: var(--vedic-orange);
}

/* Links */
.vedic-link {
    color: var(--vedic-orange);
    text-decoration: none;
    font-weight: 500;
}

.vedic-link:hover {
    text-decoration: underline;
}

 /* YouTube Section Styling */
    .youtube-section {
        padding: 4rem 0;
        background: #F9F9F9;
    }
    
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .video-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
    }
    
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .video-card h3 {
        padding: 1rem;
        font-size: 1.1rem;
        color: #333;
    }
    
    .video-duration {
        display: block;
        padding: 0 1rem 1rem;
        color: #888;
        font-size: 0.9rem;
    }
    
  
    /* Pricing Section Styling */
    .packages-section {
        padding: 4rem 0;
        background: white;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .pricing-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        position: relative;
        border: 1px solid #eee;
    }
    
    .pricing-card.popular {
        border: 2px solid #FFA500;
        transform: scale(1.02);
    }
    
    .popular-badge {
        position: absolute;
        top: -12px;
        right: 20px;
        background: #FFA500;
        color: white;
        padding: 0.25rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    
    .pricing-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .pricing-header h3 {
        color: #8B4513;
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
        font-weight: bold;
        color: #FFA500;
        margin: 0.5rem 0;
    }
    
    .price span {
        font-size: 1rem;
        color: #888;
        font-weight: normal;
    }
    
    .pricing-features {
        list-style: none;
        margin: 2rem 0;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        border-bottom: 1px dashed #eee;
    }
    
    .cta-button.outline {
        background: transparent;
        border: 2px solid #FFA500;
        color: #FFA500;
    }
    
    .cta-button.outline:hover {
        background: #FFA500;
        color: white;
    }
    
    /* Blog Section Styling */
    .blog-section {
        padding: 4rem 0;
        background: white;
    }
    
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .blog-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
    }
    
    .blog-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-category {
        display: inline-block;
        background: #FFA50020;
        color: #FFA500;
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-content h3 {
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }
    
    .blog-excerpt {
        color: #555;
        margin-bottom: 1rem;
    }
    
    .blog-meta {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: #888;
    }
 /* newsletter-subscription   */
 
    .newsletter-subscription {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
}

.newsletter-subscription h5 {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.newsletter-subscription p {
    font-size: 0.85rem;
    opacity: 0.8;
}

#newsletterForm .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

#newsletterForm .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#newsletterForm .btn-warning {
    font-weight: 500;
}

/* thnak you for newsletter-subscription */


/* Newsletter Modal Styles */
#subscriptionModal .modal-content {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

#subscriptionModal .modal-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

#subscriptionModal .modal-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.text-vedic-gold {
    color: #ffc107;
}

.btn-vedic {
    background-color: #ffc107;
    color: #000;
    font-weight: 500;
}

.btn-vedic:hover {
    background-color: #e0a800;
    color: #000;
}

/* Loading spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Zodiac Sign Buttons */
.btn-zodiac {
    background: transparent;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100px;
}
.btn-zodiac:hover {
    background: rgba(212, 175, 55, 0.1);
}
.btn-zodiac span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

/* Prediction Cards */
.prediction-card {
    background: #f8f5f0;
    border-left: 3px solid #D4AF37;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    height: 100%;
}

/* Add to your main CSS file */
.btn-zodiac {
    background: white;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 15px 10px;
    transition: all 0.3s;
    text-align: center;
}
.btn-zodiac:hover {
    background: #FFF8E1;
    transform: translateY(-3px);
}
.prediction-card {
    background: #f8f5f0;
    border-left: 3px solid #D4AF37;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    height: 100%;
}
 .vedic-details {
            background-color: #f8f9fa;
            border-radius: 5px;
            padding: 15px;
            margin-top: 15px;
        }

/* menue stye */

 /* Hover dropdown styles */
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .dropdown-submenu:hover .dropdown-menu {
        display: block;
        left: 100%;
        top: 0;
    }
    
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu .dropdown-menu {
        display: none;
    }
    
    .dropdown-submenu .dropdown-toggle::after {
        content: "▸";
        float: right;
        margin-left: 0.5em;
        border: none;
    }
    
    /* numerology */
     .scroll-container {
            max-height: 500px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #9ca3af #f3f4f6;
        }
        .scroll-container::-webkit-scrollbar {
            width: 8px;
        }
        .scroll-container::-webkit-scrollbar-track {
            background: #f3f4f6;
        }
        .scroll-container::-webkit-scrollbar-thumb {
            background-color: #d1d5db;
            border-radius: 20px;
            border: 2px solid #f3f4f6;
        }
        /* Custom scrollbar for dark mode */
        @media (prefers-color-scheme: dark) {
            body {
                background-color: #1f2937;
            }
            .scroll-container::-webkit-scrollbar-thumb {
                background-color: #4b5563;
                border-color: #1f2937;
            }
            .scroll-container::-webkit-webkit-scrollbar-track {
                background: #1f2937;
            }
        }