/* --- Global Styles & Variables --- */
:root {
    --primary-color: #b59337; /* Purple */
    --secondary-color: #4caf50; /* Green (for online status) */
    --accent-color: #ffab00; /* Amber/Yellow (for stars/busy) */
    --light-accent-color: #ffeb3b; /* Lighter Yellow */
    --text-color: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --bg-dark-footer: #212529;
    --border-color: #e0e0e0;
    --border-light: #f1f1f1;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-start: #a58cff;
    --gradient-end: #6c42f5;
    --primary-button-hover: #fff;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 0.75em;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); text-align: center; color: #444; margin-bottom: 40px; }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.1rem); }

p {
    margin-bottom: 1em;
    color: var(--text-light);
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.text-center{
	text-align: center;
}
/* --- Buttons & Links --- */
.cta-button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--border-radius-md);
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
    text-align: center;
    border: 1px solid #b59337;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #a02c2c;
    color: white;
    text-decoration: none;
	 border: 1px solid white;
}

.cta-button.secondary-cta {
	background-color: #a02c2c;
    color: white;
    border: 1px solid var(--primary-color);
}
.cta-button.secondary-cta:hover {
     background-color: #b59337;
     color: #fff;
	 border: 1px solid white;
}

.link-style {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}
.link-style:hover {
    text-decoration: underline;
}
section {
    scroll-margin-top: 80px; /* Adjust according to your header height */
  }
/* --- Header --- */
.sticky-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    box-shadow: 0 2px 5px var(--shadow-color);
    z-index: 1000;
    
}

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

.logo{
	margin-top: -7px;
    margin-bottom: -7px;
}

.logo a {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
	text-align: center;
    display: block;
}
.logo a span{
    font-size: 14px;
    margin-bottom: 14px;
    margin-top: -6px;
    display: block;
}
.main-nav img{
	width: 100px;
}
img.header-logo {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.main-nav { /* Hide main nav on desktop if burger is primary */
   display: flex;
   align-items: center;
}

.header-cta {
    padding: 8px 20px; /* Slightly smaller CTA */
}

.mobile-menu-toggle {
    display: none; /* Initially hidden on larger screens */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    padding: 60px 20px 20px;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu ul li {
    margin-bottom: 15px;
    text-align: center;
}

.mobile-menu ul li a {
    display: block;
    padding: 10px;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
}
.mobile-menu ul li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}
.mobile-menu .mobile-cta {
    margin-top: 20px;
    width: 100%;
}

/* Show burger menu on smaller screens */
@media (max-width: 768px) {
    .main-nav .header-cta { display: none; } /* Hide desktop CTA */
    .mobile-menu-toggle { display: none; }
}


/* --- Hero Section --- */

/* Overlay for readability 
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay 
    z-index: 1;
} */
.hero-section {
    width: 100%;
    background: url('./images/bg1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
  }
  .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    width: 100%;
    gap: 40px;
  }
  
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    flex: 1;
    color: white;
}
.hero-text h1 {
    font-weight: 500;
    margin-bottom: 0.2em;
    line-height: 49px;
}
.hero-text .subheadline {
    font-size: 1.4rem;
    margin-bottom: 1em;
    color: rgba(255, 255, 255, 0.9);
}
.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5em;
}
.hero-cta {
    padding: 12px 35px;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    width: 100%;
  }
  
  .rotating-wheel {
    position: absolute;
    width: 500px;
    height: 500px;
    background: url('./images/hand_bg.png') no-repeat center center/contain;
    animation: spin 12s linear infinite;
    z-index: 1;
  }
  
  .hand-image {
    max-width: 430px;
    z-index: 2;
    position: relative;
  }
  
  /* Animation for rotating background wheel */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* --- How It Works Section --- */

.how-it-works-section {
    background: #fff;
    padding: 60px 20px;
  }
  .steps-container {
    background: #f7f3ff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    max-width: 500px; /* Limit width for better vertical alignment */
    margin: 0 auto;  
  }

  .step-title-box {
    background: #b59337;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    margin-bottom: 40px;
  }
  /* Steps Layout */
  .steps-wrapper {
    position: relative;
    margin-top: 20px;
    padding-left: 30px;
  }
  .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    z-index: 2;
  }
  .step-left {
    position: relative;
    width: 50px;
    display: flex;
    justify-content: center;
  }
  .step-number {
    background: #b59337;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    z-index: 3;
  }
  /* Vertical Line Centered */
  .vertical-line {
    position: absolute;
    top: 30px;
    left: 53px; /* center of step-left area */
    width: 2px;
    height: 0;
    background: #b59337;
    z-index: 1;
    transition: height 0.5s ease-out;
  }
  
  /* Content */
  .step-content {
    padding-left: 10px;
  }
  .step-content h3 {
    margin: 0 0 5px;
  }
  .step-detail {
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    background: #a02c2c;
    color: white;
    padding: 7px 10px; 
    border-radius: 7px; 
    font-size: 14px;
  }
  .step-detail i {
    color: white;
  }
  
  /* Step Options */
  .step-options {
    display: flex;
    gap: 15px;
    margin-top: 5px;
  }
  .step-option {
     background: #a02c2c;
    color: white;
    padding: 7px 30px;
    border-radius: 7px;
  }

  /* CTA */
  .view-rates {
    display: block;
    text-align: center;
    color: #b59337;
    margin-top: 30px;
    text-decoration: underline;
    font-weight: bold;
  }

/* --- About Astro Shubra Section --- */
.about-shubra-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; /* important for mobile */
  }
.about-image img{
    width: 250px;
    height: 250px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* If using img */
	object-fit: contain;
}
.step-content a{
	
}
.phone_box {
    position: fixed;
    bottom: 100px;
    right: 35px;
    z-index: 9;
}
.phone_box img {
    width: 55px;
}
.wchat_box {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9;
}
.wchat_box img {
    width: 100px;
}
.swiper-button-next,.swiper-button-prev{
	display:none!important;
}

.about-content h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
}
.mentorship-note {
    margin-top: 25px;
    font-style: italic;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px;
    border-left: 4px solid var(--primary-color);
    background-color: #ede7f6; /* Very light purple */
    text-align: left;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
.about-text {
    flex: 1;
    min-width: 280px;
  }

/* --- Featured Astrologers Section --- */
.featured-astrologers-section {
    padding: 60px 0;
}
.filters {
    text-align: center;
    margin-bottom: 30px;
}
.filter-btn {
    background-color: #eee;
    color: var(--text-light);
    border: none;
    padding: 8px 20px;
    margin: 5px;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.astrologer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    justify-content: center;
}

.astrologer-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-align: left;
    box-shadow: 0 4px 10px var(--shadow-color);
    position: relative;
    overflow: hidden; /* To contain badge */
    transition: transform 0.2s ease-in-out;
    position: relative;
}
.astrologer-card:hover {
    transform: translateY(-5px);
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
}
.status-badge.online { background-color: var(--secondary-color); }
.status-badge.busy { background-color: var(--accent-color); }
.status-badge.offline { background-color: var(--text-light); }

.astrologer-photo {
    border-radius: 50%;
    width: 230px;
    object-fit: cover;
    height: 230px;
    display: flex; /* Center icon if used */
    align-items: center;
    justify-content: center;
    font-size: 3rem; /* Placeholder icon size */
    color: #aaa;
     padding: 15px;
}

.astrologer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-color);
}
.astrologer-content {
    padding: 20px;
}
.astrologer-bg {
    justify-content: center;
    display: flex;
}

.tags {
    margin-bottom: 10px;
}
.tags .tag {
    display: inline-block;
    background-color: #b593374a; /* Light Indigo background */
    color: #b59337; /* Indigo text */
    font-size: 0.8em;
    padding: 3px 10px;
    border-radius: var(--border-radius-lg);
    margin: 3px;
}

.rating {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.rating .stars {
    color: var(--accent-color);
    font-size: 1.1rem;
}
.rating .rating-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.rate {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.view-profile-btn {
    width: 100%;
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto; /* Center the button */
}

/* --- Wallet Recharge Section --- */
.wallet-recharge-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.recharge-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.recharge-content h2 {
    margin-bottom: 10px;
}
.recharge-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.payment-icons {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.payment-icon { /* Style actual icons/images */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: white;
    font-weight: bold; /* Placeholder text */
    font-size: 0.8rem; /* Placeholder text */
    padding: 20px;
}

.recharge-slabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.recharge-slab {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 15px 10px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: var(--text-light);
}
.recharge-slab span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 5px;
}
.recharge-slab:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(124, 77, 255, 0.2);
}
.recharge-cta {
    width: auto;
    padding: 12px 30px;
}


/* --- Services Section --- */
.services-section {
    padding: 60px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
    gap: 25px;
}
.service-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px var(--shadow-color);
    text-align: center;
    border: 1px solid var(--border-light);
}
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: #f3e5f5; /* Light purple background for icon */
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon {
    font-size: 2rem; /* Adjust icon size */
    color: var(--primary-color);
}
.service-card h4 {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}


/* --- Testimonials Section --- */
.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-slider {
    width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    top: auto;
    transform: none;
    color: #b59337!important; /* Change to any color you want */
    font-size: 30px;
    margin: 0 auto;
    cursor: pointer;
}
.swiper{
    padding: 0 20px!important;
}

.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 3px 8px var(--shadow-color);
    min-height: 306px;
}
.testimonial-card .rating .stars {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
}
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto; /* Push footer to bottom if needed */
}
.swiper-pagination {
    position: relative !important; /* instead of absolute */
    margin-top: 20px; /* move it below the cards */
    text-align: center;
  }
.author {
    font-weight: 700;
    color: var(--text-color);
    font-style: normal;
    margin-bottom: 0;
}

.topic-tag {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}
.verified-badge {
    background-color: #e8f5e9; /* Light green */
    color: #388e3c; /* Darker green */
    padding: 3px 10px;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    font-weight: 500;
    align-self: center; /* Align vertically */
}
.as_contact_wrapper h3{
	margin-top: 30px;
}
.as_contact_wrapper ul{
	padding-left: 40px;
}
.as_breadcrum_wrapper h1{
	font-size: 34px;
}
.as_breadcrum_wrapper{
	margin-top: 35px;
}
.as_contact_wrapper{
	margin-bottom: 65px;
}
.footer-newsletter p a{
	color: #adb5bd;
    transition: color 0.3s ease;
}
.copyright{
	color:white!important;
}
/* --- Signup CTA Section --- */
.signup-cta-section {
    padding: 60px 0;
    /* background: linear-gradient(45deg, #ffdb7c, #b59337); */
    color: var(--text-white);
    text-align: center;
	background: url(./images/bg1.jpg) no-repeat center center / cover;
}
.signup-cta-section h2 {
    color: var(--text-white);
    margin-bottom: 40px;
}
.benefits-list {
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}
.benefit-item {
    background-color: #a02c2c;
    padding: 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 130px;
}
.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.benefit-text h4 {
    margin-bottom: 5px;
    color: var(--text-white);
    font-size: 1.1rem;
}
.benefit-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 0.95rem;
}
.large-cta {
    font-size: 1.1rem;
    padding: 15px 40px;
    background-color: var(--bg-white);
    color: var(--primary-color);
}
.large-cta:hover {
    background-color: #b59337;
     color: var(--primary-button-hover);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 60px 0;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Remove default marker */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; } /* Hide default marker */
.faq-item summary .arrow {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}
.faq-item[open] summary .arrow {
    transform: rotate(180deg);
}
.faq-item p {
    padding: 0 0 20px 0; /* Answer padding */
    color: var(--text-light);
}

/* --- Footer --- */
.footer-section {
    background-color: var(--bg-dark-footer);
    color: #adb5bd; /* Lighter grey */
    padding-top: 60px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}
.footer-about h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.footer-about p {
    color: #adb5bd;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.social-media a {
    color: #adb5bd;
    font-size: 20px; /* Placeholder size */
    margin-right: 5px;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-media a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-links h4 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: #adb5bd;
    transition: color 0.3s ease;
}
.footer-links ul li a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-newsletter h4 {
     color: var(--text-white);
     margin-bottom: 15px;
     font-size: 1.1rem;
}
.footer-newsletter p {
    color: #adb5bd;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.newsletter-form {
    display: flex;
    max-width: 300px; /* Limit width */
}
.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #495057; /* Darker border */
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    background-color: #343a40; /* Dark input bg */
    color: var(--text-white);
    outline: none;
}
.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 1.2rem; /* Arrow size */
}
.newsletter-form button:hover {
    background-color: var(--primary-button-hover);
}

.footer-bottom {
    background-color: #1a1d20; /* Slightly darker */
    padding: 15px 0;
    margin-top: 20px; /* Space above */
}
.bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Wrap on small screens */
    gap: 10px;
}
.copyright {
    font-size: 0.9rem;
    color: #6c757d; /* Even lighter grey */
    margin-bottom: 0; /* Reset p margin */
}
.payment-partners img {
    max-height: 25px; /* Adjust size */
    opacity: 0.8;
}

/* Basic Tablet Responsiveness */
@media (max-width: 992px) {
    .astrologer-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
    .testimonial-grid { grid-template-columns: 1fr; /* Stack testimonials */ }
    .footer-container { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .benefits-list { grid-template-columns: 1fr; } /* Stack benefits */
    .hero-container { flex-direction: column; text-align: center; }
}

/* Basic Mobile Responsiveness */
@media (max-width: 576px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; margin-bottom: 30px; }
    .hero-section { padding: 60px 0; }
    .hero-content p { font-size: 1rem; }
    .steps-wrapper { padding-left: 45px; }
    .step-number { width: 35px; height: 35px; left: -45px; font-size: 1rem; }
    .astrologer-grid { grid-template-columns: 1fr; }
    .recharge-slabs { grid-template-columns: repeat(2, 1fr); } /* 2 columns */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-media { justify-content: center; margin-bottom: 20px; }
    .newsletter-form { max-width: none; } /* Allow full width */
    .bottom-container { flex-direction: column; text-align: center; }
    .payment-partners { margin-top: 10px; }
    .swiper-button-prev,.swiper-button-next{ display: none!important;}
}
@media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
    .about-image img {
      width: 150px;
      height: 150px;
    }
    .about-text h3 {
      font-size: 22px;
    }
    .about-text p,
    .mentorship-note {
      font-size: 15px;
    }
    .hero-image{
        padding: 0px 0;
    }
    .rotating-wheel {
        width: 400px;
        height: 400px;
    }
    .hand-image {
        max-width: 100%;
    }
    section#hero {
        padding: 50px 0;
    }
    .header-container {
        justify-content: center;
    }
	    .steps-wrapper {
        padding-left: 10px!important;
        padding-right: 10px!important;
    }
	.vertical-line{
		display:none!important;
	}
	.how-it-works-section {
		background: #fff;
		padding: 60px 0px;
	}
	.hero-text h1 {
    line-height:34px;
  }
  .hero-text .subheadline {
    font-size: 12px;
	}
	.footer-about a img{
		margin: 0 auto;
	}
	.certification{
		display: block!important;
		margin-bottom: 28px;
	}
	.certification p{
		font-weight: bold;
		font-size: 20px;
		color: #b59337;
	}
	.main-nav img {
		margin-left: 10px;
	}
	img.header-logo {
        height: 95px;
    }
	.recharge-slabs{
		margin-bottom: 18px;
	}
  }
  @media (max-width: 480px) {
  .steps-wrapper {
    padding-left: 20px;
    padding-right: 20px; /* slightly reduce padding on mobile */
  }

  .vertical-line {
    left: 38px; /* align properly with smaller step circles */
  }

  .step-left {
    width: 40px; /* shrink step-left area */
  }

  .step-number {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
  }

  .step-content h3 {
    font-size: 16px;
  }
  
  .step-content p, 
  .step-detail, 
  .mentorship-note {
    font-size: 13px;
  }
}