/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Lora&family=Poppins&family=Space+Mono&display=swap');
:root {
    --primary: #ee5a24;
    --astro-purple: #ee5a24;
    --astro-indigo: #ff6b6b;
    --gradient: linear-gradient(135deg, #ff6b6b, #ee5a24);
    --astro-gold: #f59e0b;
    --foreground: #1a1a1a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --radius: 0.5rem;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --light: #000000;
    --text-muted: #e4e7ea;
    --gold-accent: #ffd700;
    --darker-bg: #0a0d11;
    --new-bread-accent-color: #f59e0b;
    --secondary-orange: #FFB347;
    --light-orange: #FFF8DC;
    --dark-text: #2C2C2C;
    --medium-text: #666666;
    --border-color: #E0E0E0;
    --white: #FFFFFF;
    --green-verified: #4CAF50;
    --star-color: #FF8C00;
    --front-section: linear-gradient(135deg, var(--light-orange) 0%, #fff5f5 50%, #fef7ed 100%);
    /* rgba(30, 41, 59, 0.05) */
    
  }

  /* Body Scrollbar Track */
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Body Scrollbar Track Background */
body::-webkit-scrollbar-track {
  background: var(--light-orange);
  border-radius: var(--radius);
}

/* Body Scrollbar Thumb */
body::-webkit-scrollbar-thumb {
  background: var(--astro-purple);
  background-image: var(--gradient);
  border-radius: var(--radius);
  border: 2px solid var(--light-orange);
  transition: var(--transition);
}

/* On hover */
body::-webkit-scrollbar-thumb:hover {
  background: var(--astro-indigo);
}



  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  
    line-height: 1.5;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ul,
  ol {
    list-style: none;
  } */
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Typography */
  .purple-text {
    color: var(--astro-purple);
  }
  
  .light-text {
    color: var(--foreground);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
  }
  .btn.active,
.btn:active {
  background-color:var(--primary) !important;
  border-color: inherit !important;
  color: white !important;
  box-shadow: none !important;
}
.btn-primary.active,
.btn-primary:active {
  background-color:var(--primary) !important;
  border-color: inherit !important;
  color: white !important;
}

  .btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--astro-indigo);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
  }
  
  .btn-outline:hover {
    background-color: rgba(109, 40, 217, 0.1);
  }
  
  /* Icons */
  .gold-icon {
    /* color: var(--astro-gold); */
    color: var(--primary);
  }
  
  .purple-icon {
    color: var(--astro-purple);
  }
  
  /* Section Styles */
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-description {
    max-width: 768px;
    margin: 0 auto;
    color: #222;
    font-size: 17px;
  }
  
  .section-action {
    text-align: center;
    margin-top: 3rem;
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
    }
  
    .section-description {
      font-size: 0.9rem;
    }
  }
  
  /* Background Styles */
  .cosmos-bg {
    position: relative;
  }
  
  /* .cosmos-bg::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1), transparent 60%);
      pointer-events: none;
      z-index: -1;
    } */
  
  /* Card Styles */
  .cosmic-card,
  .step-card,
  .feature-card,
  .service-card,
  .astrologer-card,
  .blog-card,
  .testimonial-card {
    background-color: white;
    border: 1px solid rgba(238, 90, 36, 0.1);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .cosmic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    );
    background-size: 20px 20px;
    z-index: 0;
  }
  
  .star {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    opacity: 0.6;
    animation: twinkle 3s infinite ease-in-out;
  }
  
  /* Custom Announcement Bar */
  .custom-announcement-bar {
    background: var(--gradient);
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
  }
  
  .custom-left-contact,
  .custom-right-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .custom-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .custom-contact-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 11px;
  }
  
  .custom-contact-item i:hover {
    background-color: var(--primary-dark);
    color: var(--white);
  }
  
  .custom-contact-item a {
    color: white;
  }
  
  .custom-social-icons {
    display: flex;
    gap: 5px;
  }
  
  .custom-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 11px;
  }
  
  .custom-social-icons a:hover {
    background-color: var(--primary-dark);
    color: var(--white);
  }
  
  /* Navbar */
  .container-navbar {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .navbar-own {
    padding: 0.75rem 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    /* background-color: rgba(255, 255, 255, 0.8); */
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-own.scrolled {
    border-radius: 70px;
  }
  
  .navbar-own .container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 90px;
  }
  
  .logo span {
    color: #f59e0b;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    list-style: none !important;
  }
  
  .nav-links li {
    margin-left: 2.5rem;
  }
  
  .nav-links a {
    color: var(--light);
     color: #222;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 17px;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
  }
  
  .nav-links a:hover::before {
    width: 100%;
  }
  
  .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
    background-color: var(--primary);
    color: white !important;
    border: none;
  }
  
  .nav-btn:hover {
    background-color: var(--astro-indigo);
  }
  
  .nav-links .nav-btn:hover::before {
    width: 0;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    color: white !important;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Dropdown Menu Styles */
  /* Unique Dropdown Styling */
  .custom-dropdown {
    position: relative;
  }
  
  .custom-dropdown a {
    cursor: pointer;
  }
  
  .custom-dropdown-menu {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: white;
    min-width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    list-style: none;
  }
  
  .custom-dropdown-menu li {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .custom-dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--light);
    font-size: 15px;
    transition: var(--transition);
    position: relative;
  }
  .dropdown-Icon {
    margin-left: 5px;
    
  }
  
  .custom-dropdown-menu li a:hover {
    background-color: #f3f3f3;
    color: var(--primary);
  }
  
 
  .custom-dropdown-menu li .logout {
    
    color: red;
    font-weight: 700;
  }

  .custom-dropdown-menu li .logout:hover {
    background-color: #f3f3f3;
    color: red;
  }
  
  .custom-dropdown-menu a:hover::before {
    width: 0;
  }
  
  /* Show dropdown on hover for desktop */
  .custom-dropdown:hover .custom-dropdown-menu {
    display: flex;
  }
  
  /* Responsive Mobile Dropdown */
  @media (max-width: 768px) {
    .custom-dropdown-menu {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      pointer-events: none;
      padding: 10px 30px;
    }
  
    .custom-dropdown.active .custom-dropdown-menu {
      max-height: 500px; /* Adjust based on content */
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
  
    .custom-dropdown-menu li a {
      padding: 5px 0px;
  
      font-size: 15px;
      margin-bottom: -50px;
      margin-top: -20px;
    }
  
    .custom-dropdown-menu li a:hover {
      background-color: transparent;
      color: var(--primary);
    }
  
    .custom-dropdown-menu a:hover::before {
      width: 100%;
    }
  }
  
  /* Responsive */
  
  @media (max-width: 768px) {
    .custom-announcement-bar {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      position: fixed;
      top: 0px;
      left: -100%;
      width: 250px;
      height: 100%;
      backdrop-filter: blur(10px) !important;
      -webkit-backdrop-filter: blur(8px) !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 15px;
  
      background-color: rgba(255, 255, 255, 0.8);
      flex-direction: column;
      align-items: start !important;
      justify-content: flex-start !important;
      padding-top: 3rem;
      transition: var(--transition);
      z-index: 999;
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .nav-links li {
      margin: 1.5rem 0;
    }
  }
  
  /* hero section */
  .hero-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  
  .swiper-slide img {
    width: 100%;
    object-fit: cover;
  }
  
  /* Custom button base styles */
  .custom-nav-button {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 40px;
    height: 40px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 15px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
  }
  
  .custom-nav-button i {
    font-size: 13px;
  }
  
  /* Slide-in from left/right setup */
  .custom-nav-button.prev {
    left: 0;
    transform: translate(-100%, -50%);
  }
  
  .custom-nav-button.next {
    right: 0;
    transform: translate(100%, -50%);
  }
  
  /* Hover state to reveal buttons */
  .hero-slider:hover .custom-nav-button {
    opacity: 1;
    pointer-events: auto;
  }
  
  .hero-slider:hover .custom-nav-button.prev {
    transform: translate(20px, -50%);
  }
  
  .hero-slider:hover .custom-nav-button.next {
    transform: translate(-20px, -50%);
  }
  
  /* Button hover effect */
  .custom-nav-button:hover {
    /* background-color: rgba(0, 0, 0, 0.8); */
    background-color: var(--primary) !important;
    transform: scale(1.05) translateY(-50%);
  }
  
  /* Steps Section */
  .steps-container {
    display: grid;
  
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .step-card {
    padding: 2rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
  }
  
  .step-icon-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    /* background-color: rgba(30, 41, 59, 0.5); */
    border: 1px solid var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .step-icon-container i {
    font-size: 3rem;
  }
  
  .step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--astro-purple);
    color: white;
    font-weight: 700;
    border-radius: 50%;
  }
  
  .step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--foreground);
  }
  
  .step-description {
    color: var(--muted-foreground);
  }
  
  /* Animations */
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes twinkle {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  
  @media (max-width: 768px) {
    .steps-container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .step-card {
      padding: 1.5rem;
    }
  
    .step-icon-container {
      width: 5rem;
      height: 5rem;
      margin-bottom: 1rem;
    }
  
    .step-icon-container i {
      font-size: 2.5rem;
    }
  
    .step-number {
      width: 1.5rem;
      height: 1.5rem;
      font-size: 0.75rem;
      top: -0.5rem;
      right: -0.5rem;
    }
  
    .step-title {
      font-size: 1.1rem;
    }
  
    .step-description {
      font-size: 0.95rem;
    }
  }
  
  /* Why Choose Us Section */
  .why-choose-us {
    background: var(--front-section);
    border-radius: 70px;
  }
  
  .why-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  
  .why-us-content {
    flex: 1;
    min-width: 300px;
  }
  
  .why-us-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
  }
  
  .why-us-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
  }
  /* .why-us-image:hover img {
    transform: scale(1.1);
  } */
  
  .why-us-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
  }
  
  .why-us-icon {
    font-size: 1.3rem;
    color: white !important;
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
    /* background: rgba(106, 48, 147, 0.1); */
    background: var(--primary);
  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .why-us-text h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
   ;
  }
  .why-us-text p {
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .why-us-container {
      flex-direction: column;
      gap: 30px;
    }
  
    .why-us-text h3 {
      font-size: 1rem;
    }
  
    .why-us-text p {
      font-size: 0.9rem;
    }
  
    .why-us-image img {
      width: 100%;
      height: auto;
    }
  }
  
  /* Services Section */
  
  .services-section {
    background: var(--front-section);
    border-radius: 70px;
  }
  .card-service {
    padding: 2em 1.5em;
    cursor: pointer;
    transition: 0.5s;
    background-color: white;
    border: 1px solid rgba(238, 90, 36, 0.1);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .card-service::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    );
    background-size: 20px 20px;
    z-index: 0;
  }
  
  .card-service h3 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin: 0.5em 0;
    color:var(--dark-text);
  }
  .card-service p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .card-service .icon-wrapper {
    /* background-color: var(--primary); */
    position: relative;
    /* margin: auto; */
    font-size: 30px;
    /* height: 2.5em; */
    /* width: 2.5em; */
    color: #ffffff;
    border-radius: 50%;
    /* display: grid; */
    place-items: center;
    transition: 0.5s;
  }
  
  .icon-wrapper img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
  }
  /* .card-service:hover {
      background-position: 0 100%;
    } */
  /* .card-service:hover .icon-wrapper {
  
      color: var(--primary);
    } */
  /* .card-service:hover h3 {
      color: #ffffff;
    }
    .card-service:hover p {
      color: #f0f0f0;
    } */
  
  @media (max-width: 768px) {
    .card-service h3 {
      font-size: 20px;
    }
  
    .card-service p {
      font-size: 14px;
      line-height: 1.5;
    }
  }
  
  .custom-prev2,
  .custom-next2 {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    position: absolute;
    top: 65%;
    z-index: 10;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
  }
  
  .custom-prev2 {
    left: 185px;
  }
  
  .custom-next2 {
    right: 185px;
  }
  
  .custom-prev2 i,
  .custom-next2 i {
    font-size: 13px;
  }
  
  /* #custom-prev2:hover, #custom-next2:hover {
      background-color: #0056b3;
    } */
  
  @media (max-width: 768px) {
    .custom-prev2 {
      left: 10px;
    }
  
    .custom-next2 {
      right: 10px;
    }
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    background: var(--primary); /* Custom color */
    color: white; /* Text color */
    padding: 10px 20px; /* Button padding */
    border-radius: 15px; /* Optional, for round buttons */
    font-size: 12px; /* Font size */
    border: 1px solid var(--primary);
    transition: var(--transition);
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 90%;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 13px !important; /* Adjust the size of the arrows */
    color: white;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
  }
  
  @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 */
    }
  }
  
  /* Astrologers Section */
  .astrologers-section {
    /* background-color: rgba(30, 41, 59, 0.05); */
    position: relative;
  }
  
  .astrologers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .astrologers-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .astrologers-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .astrologer-card {
    transition: border-color 0.3s ease;
  }
  
  .astrologer-card:hover {
    border-color: var(--astro-purple);
  }
  
  .astrologer-image-container {
    position: relative;
  }
  
  .astrologer-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
  }
  
  .astrologer-rating {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
 

    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
  }
  
  .rating-star {
    color: var(--astro-gold);
    margin-right: 0.25rem;
    fill: currentColor;
  }
  
  .astrologer-content {
    padding: 1.5rem;
  }
  
  .astrologer-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
  }
  
  .astrologer-specialty {
    color: var(--astro-purple);
    font-weight: 500;
    margin-bottom: 0.75rem;
  }
  
  .astrologer-details {
    margin-bottom: 1rem;
  }
  
  .astrologer-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .detail-label {
    color: var(--muted-foreground);
  }
  
  .detail-value {
    color: var(--foreground);
  }
  
  .detail-value.price {
    color: var(--astro-gold);
    font-weight: 700;
  }

  
.own-astro-online-badge {
  
 
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;

}

.own-astro-online{
 
  background-color: #10b981; /* Emerald (green) */
box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3); /* Matching green shadow */

}

.own-astro-online::after {
  content: "Online";
  padding-top: 2px;
 

}


.own-astro-offline{
  background-color: #9ca3af; /* Gray-400 */
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.2); /* Soft gray shadow */
  
}
.own-astro-offline::after {
  content: "Offline";
  padding-top: 2px;
 

}
.own-astro-busy{
  background-color: #f43f5e; /* Rose-500 (red-ish) */
box-shadow: 0 2px 8px rgba(244, 63, 94, 0.3); /* Subtle red shadow */

}
.own-astro-busy::after {
  content: "Busy";
  padding-top: 2px;
 

}

.own-astro-status-dot {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  animation: own-pulse 2s infinite;
}
  
  /* .astrologer-actions {
      display: flex;
      gap: 0.5rem;
    }
     */
     @media (max-width: 768px) {
     
    
      .astrologer-name {
        font-size: 1.125rem; /* slightly smaller */
      }
    
      .astrologer-specialty {
        font-size: 0.95rem;
      }
    
      .astrologer-detail {
        font-size: 0.8125rem; /* reduced font */
      }
    
      .astrologer-rating {
        font-size: 0.75rem;
       
      }
    
      .astrologer-image {
        height: 320px;
      }
    }
    
    @media (max-width: 480px) {
    
    
      .astrologer-name {
        font-size: 1rem;
      }
    
      .astrologer-specialty {
        font-size: 0.875rem;
      }
    
      .astrologer-detail {
        font-size: 0.75rem;
      }
    
      .astrologer-rating {
        font-size: 0.7rem;
    
      }
    
      .astrologer-image {
        height: 280px;
      }
    }
    
  /* Blogs Section */
  
  .blogs-section {
    background:var(--front-section);
    border-radius: 70px;
  }
  .blogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .blogs-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .blog-card {
    height: 100%;
    transition: border-color 0.3s ease;
  }
  
  .blog-card:hover {
    border-color: var(--astro-purple);
  }
  
  .blog-image-container {
    position: relative;
  }
  
  .blog-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
  }
  
  .blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
  }
  
  .blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 192px);
  }
  
  .blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
  }
  
  .blog-excerpt {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    flex-grow: 1;
  }
  
  .blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }
  
  .meta-item {
    display: flex;
    align-items: center;
  }
  
  .meta-item i {
    margin-right: 0.5rem;
    color: var(--primary);
  }
  
  .blog-link {
    align-self: flex-start;
    color: var(--astro-purple);
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  .blog-link:hover {
    color: var(--astro-gold);
  }
  
  .blog-link i {
    margin-left: 0.5rem;
  }
  
  
  @media (max-width: 768px) {
  
    /* .blog-content {
      padding: 1rem;
    } */
  
    .blog-title {
      font-size: 1.125rem;
    }
  
    .blog-category {
      font-size: 0.75rem;
   
    }
  
    .blog-meta {
      font-size: 0.8125rem;
    }
  
    
  }
  
  @media (max-width: 480px) {
   
  
    /* .blog-content {
      padding: 0.75rem;
    } */
  
    .blog-title {
      font-size: 1rem;
    }
  
    .blog-category {
      font-size: 0.7rem;
     
    }
  
    .blog-meta {
      font-size: 0.75rem;
    }
  
    .blog-link {
      font-size: 0.875rem;
    }
  
    /* .blog-image {
  
      height: 240px;
     
    } */
   
  }
  
  
  /* Products Section */
  .products-section {
    /* background-color: rgba(30, 41, 59, 0.05); */
    position: relative;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 640px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .product-category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    height: 16rem;
    transition: box-shadow 0.3s ease;
  }
  
  .product-category-card:hover {
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.2);
  }
  
  .product-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-category-card:hover .product-category-image {
    transform: scale(1.1);
  }
  
  .product-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, #1e293b, transparent);
  }
  
  .product-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
  }
  
  .product-category-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.25rem;
  }
  
  .product-category-count {
    color: var(--astro-gold);
  }
  
  @media (max-width: 768px) {
   
  
  
    .product-category-title {
      font-size: 1.125rem;
    }
  
    .product-category-count {
      font-size: 0.875rem;
    }
  }
  
  @media (max-width: 480px) {
   
  
  
    .product-category-title {
      font-size: 1rem;
    }
  
    .product-category-count {
      font-size: 0.75rem;
    }
  }
  
  /* Testimonials Section */
  
  .testimonials-section {
    background:var(--front-section);
    border-radius: 70px;
  }
  
  .testimonials-slider {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial-slide {
    display: none;
    padding: 0 1rem;
  }
  
  .testimonial-slide.active {
    display: block;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .testimonial-content {
      flex-direction: row;
    }
  }
  
  .testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .testimonial-profile {
      width: 33.333333%;
    }
  }
  
  .testimonial-image-container {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
  }
  
  .testimonial-location {
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
  }
  
  .testimonial-rating {
    display: flex;
    margin-bottom: 0.75rem;
  }
  
  .testimonial-rating i {
    color: var(--muted-foreground);
    margin: 0 0.125rem;
  }
  
  .testimonial-rating i.filled {
    color: var(--astro-gold);
  }
  
  .testimonial-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .testimonial-text {
    position: relative;
  }
  
  @media (min-width: 768px) {
    .testimonial-text {
      width: 66.666667%;
    }
  }
  
  .testimonial-quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.5rem;
    color: rgba(109, 40, 217, 0.2);
  }
  
  .testimonial-message {
    padding: 3rem 1rem 1rem 2rem;
    font-style: italic;
    color: var(--foreground);
  }
  
  .testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
  }
  
  .testimonial-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--astro-purple);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .testimonial-nav-button:hover {
    background-color: var(--astro-indigo);
  }
  
  .testimonials-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    /* background-color: var(--muted) !important; */
    color: var(--muted) !important;
    border: none;
    /* margin: 0 0.25rem; */
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .testimonial-dot.active {
    background-color: var(--astro-purple);
  }
  
  /* Custom Navigation Styles */
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px; /* Reduced gap between elements */
    max-width: 180px; /* Control the overall width of the controls */
    margin-left: auto;
    margin-right: auto;
  }
  
  .slider-controls i {
    color: var(--primary);
    transition: var(--transition);
  }
  
  .custom-prev-btn,
  .custom-next-btn {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 2;
    font-size: 13px;
  }
  
  .custom-prev-btn:hover,
  .custom-next-btn:hover {
    background-color: var(--primary);
    color: white;
  }
  
  .custom-prev-btn:hover i,
  .custom-next-btn:hover i {
    color: white;
  }
  
  .custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px; /* Reduced margin */
    flex-grow: 1;
  }
  
  .custom-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 3px; /* Reduced margin between bullets */
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
  }
  
  .custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 10px;
  }
  @media (max-width: 768px) {
    .testimonial-content {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .testimonial-profile {
      width: 100%;
    }
  
    .testimonial-text {
      width: 100%;
    }
  
    .testimonial-message {
      padding: 2rem 1rem 1rem 2rem;
      font-size: 0.95rem;
    }
  
    .testimonial-name {
      font-size: 1.125rem;
    }
  
    .testimonial-location,
    .testimonial-date {
      font-size: 0.8125rem;
    }
  
    .testimonial-rating i {
      font-size: 0.875rem;
    }
  
    .testimonial-quote-icon {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-message {
      padding: 1.5rem 0.75rem 1rem 1.5rem;
      font-size: 0.875rem;
    }
  
    .testimonial-name {
      font-size: 1rem;
    }
  
    .testimonial-location,
    .testimonial-date {
      font-size: 0.75rem;
    }
  
    .testimonial-rating i {
      font-size: 0.75rem;
    }
  
    .testimonial-image-container {
      width: 5rem;
      height: 5rem;
    }
  
    .testimonial-quote-icon {
      font-size: 1.75rem;
    }
  
    .testimonial-card {
      padding: 1.25rem;
    }
  
    .slider-controls {
      gap: 6px;
      max-width: 140px;
    }
  
    .custom-prev-btn,
    .custom-next-btn {
      width: 36px;
      height: 36px;
      font-size: 12px;
    }
  
    .custom-pagination .swiper-pagination-bullet-active {
      width: 20px;
    }
  }
  
  /* free service */
  
  .free-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  }
  
  .free-service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .free-card-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .free-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 16px rgba(238, 90, 36, 0.3);
  }
  
  .free-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
  }
  
  .free-card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.5rem;
  }
  
  .free-card-header p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
  }
  
  .free-current-date {
    font-weight: 600;
    color: #e74c3c !important;
  }
  
  .free-service-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .free-form-group {
    display: flex;
    flex-direction: column;
  }
  
  .free-form-group label {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .free-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .free-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
  }
  .input[type="date"],
  input[type="time"] {
    -webkit-appearance: none;
    appearance: auto; /* Let browser decide */
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
  }
  
  .free-form-input:focus {
    outline: none;
    border-color: #ee5a24;
    /* box-shadow: 0 8px 16px rgba(238, 90, 36, 0.3); */
  }
  
  .free-form-input::placeholder {
    color: #95a5a6;
  }
  
  .free-info-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem;
    /* background: #e8f4fd; */
    border-radius: 8px;
    /* color: #2980b9; */
    font-size: 0.85rem;
    background: var(--front-section);
    color: var(--primary);
  }
  
  .free-btn-primary {
    /* background: linear-gradient(135deg, #ffd700, #ffed4e); */
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    /* box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3); */
    box-shadow: 0 8px 16px rgba(238, 90, 36, 0.3);
  }
  
  .free-btn-primary:hover {
    transform: translateY(-2px);
  
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
  }
  
  .free-btn-full {
    width: 100%;
  }
  
  .free-panchang-content {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  
  .free-panchang-item {
    /* padding: 1rem; */
    padding-left: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    padding: 0 1rem;
  }
  
  .free-panchang-item .free-label {
    font-weight: 600;
    color: #2c3e50;
    text-transform: capitalize;
  }
  
  .free-panchang-item .free-value {
    font-weight: 600;
  }
  
  .free-highlight-red {
    color: #e74c3c;
  }
  
  .free-time-range {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.25rem;
    line-height: 1.4;
  }
  
  .free-panchang-card {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(248, 249, 250, 0.95)
    );
  }
  
  @media (max-width: 768px) {
    .free-services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .free-main-title {
      font-size: 2rem;
    }
  
    .free-service-card {
      padding: 1.5rem;
    }
  
    .free-form-row {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .free-service-card {
      padding: 1rem;
    }
  
    .free-main-title {
      font-size: 1.75rem;
    }
  }

  .free-card-page {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.free-card-page.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.free-card-page.exit-left {
    transform: translateX(-100%);
    opacity: 0;
}

.free-service-card {
    position: relative;
    overflow: hidden;
   /* Set based on your content */
}

.go-back-btn {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
padding: 0 10px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}



.go-back-btn:hover {
  background-color: #e2e6ea;
  border-color: #bbb;
  color: #000;
}

.go-back-btn:active {
  background-color: #d6d8db;
  transform: scale(0.97);
}

  
  
  
  /* Footer Styles */
  .new-footer {
    background: linear-gradient(
      135deg,
      var(--darker-bg) 0%,
      rgba(26, 27, 58, 0.95) 100%
    );
    position: relative;
  }
  
  .new-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--primary) 50%,
      transparent 100%
    );
    opacity: 0.6;
  }
  
  .new-footer-container {
    padding: 3rem 0rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
  
  /* Brand Section */
  .new-footer-brand {
    padding-right: 2rem;
  }

  .new-footer-brand img{
    width: 90px;
  }
  
  .new-brand-name {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--gold-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
  }
  
  .new-brand-tagline {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .new-brand-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
  
  /* Social Links */
  .new-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .new-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(244, 162, 97, 0.1);
    border: 1px solid rgba(244, 162, 97, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .new-social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(238, 90, 36, 0.2),
      transparent
    );
    transition: left 0.5s ease;
  }
  
  .new-social-link:hover::before {
    left: 100%;
  }
  
  .new-social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    background: rgba(238, 90, 36, 0.2);
  }
  
  .new-social-link i {
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
  }
  
  /* Footer Sections */
  .new-footer-section {
    display: flex;
    flex-direction: column;
  }
  
  .new-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .new-section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold-accent));
    border-radius: 2px;
  }
  
  .new-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
  }
  
  .new-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }
  
  .new-footer-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
  }
  
  .new-footer-links a:hover {
    color: var(--primary);
    /* transform: translateX(5px); */
  }
  
  .new-footer-links a:hover::before {
    width: 100%;
  }
  
  .vendor-BTn {
    padding: 5px 10px !important;
    border-radius: 10px;
    border: 0px;
    color: black !important;
    background-color: white;
  }
  
  .new-footer-links .vendor-BTn:hover::before {
    width: 0;
  }
  
  /* Contact Info */
  .new-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .new-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.2rem 0;
  }
  
  .new-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
  }
  
  .new-contact-item a {
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .new-contact-item a:hover {
    color: var(--primary) !important;
  }
  
  /* Footer Bottom */
  .new-footer-bottom {
    border-top: 1px solid rgba(244, 162, 97, 0.1);
    background: rgba(10, 13, 17, 0.5);
  }
  
  .new-footer-bottom-content {
    padding-top: 1rem;
    padding-bottom: 0.3rem !important;
  
    text-align: center;
  }
  
  .new-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  .new-powered-by {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  .new-tech-partner {
    color: var(--primary);
    font-weight: 500;
  }
  .new-tech-partner:hover{
    color: var(--primary);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .new-footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  
    .new-footer-brand {
      grid-column: 1 / -1;
      padding-right: 0;
      margin-bottom: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .new-footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem 0rem 1rem;
    }
  
    .new-footer-brand {
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .new-social-links {
      justify-content: center;
    }
  
    .new-footer-bottom-content {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .new-footer-container {
      padding: 1.5rem 0rem 1rem;
    }
  
    .new-social-link {
      width: 40px;
      height: 40px;
    }
  
    .new-social-link i {
      font-size: 1.1rem;
    }
  }
  
  /* talk to astrologer page */
  
  /* breadcrumbs */
  
  .new-bread-hero-container {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
  }
  
  .new-bread-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  .new-bread-hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at 25% 25%,
        rgba(165, 180, 252, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(245, 158, 11, 0.1) 0%,
        transparent 50%
      );
    z-index: 1;
  }
  
  .new-bread-hero-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  
  .new-bread-star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: new-bread-twinkle var(--duration) infinite ease-in-out;
    opacity: 0;
  }
  
  @keyframes new-bread-twinkle {
    0%,
    100% {
      opacity: 0;
      transform: scale(0.5);
    }
    50% {
      opacity: var(--opacity);
      transform: scale(1);
    }
  }
  
  .new-bread-breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: white;
  }
  
  .new-bread-breadcrumbs a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .new-bread-breadcrumbs a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .new-bread-breadcrumb-separator {
    margin: 0 0.5rem;
    color: white;
  }
  
  .new-bread-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  
    color: white;
  }
  
  .new-bread-astrology-icon {
    font-size: 2rem;
    color: var(--new-bread-accent-color);
    animation: new-bread-float 3s ease-in-out infinite;
  }
  
  @keyframes new-bread-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .new-bread-hero-title {
      font-size: 2.5rem;
    }
  
    .new-bread-hero-subtitle {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .new-bread-hero-title {
      font-size: 2rem;
    }
  
    .new-bread-breadcrumbs {
      font-size: 0.8rem;
    }
  }
  
  /* new */
  
  .talkTo-main {
    display: flex !important;
    gap: 2rem;
    flex-wrap: wrap;
    /* justify-content: center; */
    margin-top: 20px;
  }
  .own-container {
    width: 100%;
    max-width: 400px;
  }
  .own-profile-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(67, 67, 67, 0.125);
    position: relative;
  }
  .own-profile-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
  /* Top Rated Badge */
  .own-rated-badge {
    width: 80px;
    left: -15px;
  
    height: 18px;
    font-size: 11px;
    transform: rotate(-41deg);
    z-index: 1;
    top: 12px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  
    
  }
  
  .top-rated{
    background: #ee4e5e;
    color: white;
  }
  .new-rated{
    background: var(--green-verified);
    color: white;
  }
  .vip-rated{
    background: #00bcd4; 
    color: white;
  }
  
  /* Header Section */
  .own-card-header {
    padding: 24px;
  /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
  /* border-bottom: 1px solid rgba(67, 67, 67, 0.125); */
  /* background-color: #FCFAF2; */
  background: var(--front-section);
  
  
  
    
  }
  .own-profile-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
  }
  .own-avatar-container {
    position: relative;
  }
  .own-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .own-online-badge {
    position: absolute;
    bottom: -2px;
    right: -8px;
   
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
  
  }
  
  .own-online{
    /* background: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3); */
    background-color: #10b981; /* Emerald (green) */
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3); /* Matching green shadow */
  
  }
  .own-offline{
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7); /* red */
    background: #F44336;
    
  }
  .own-busy{
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7); /* orange */
    background: #FF9800;
  
  }
  
  .own-status-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: own-pulse 2s infinite;
  }
  @keyframes own-pulse {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.6;
    }
  }
  .own-profile-details {
    flex: 1;
  }
  .own-name {
    font-size: 25px;
    font-weight: 600;
    /* color: #1a202c; */
    margin-bottom: 2px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--gold-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .own-icOn{
    background: linear-gradient(135deg, var(--primary), var(--gold-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 5px;
  }
  .own-title {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .own-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 20px
  }
  .own-stars {
    display: flex;
    gap: 2px;
  }
  .own-stars i {
    color: #fbbf24;
    font-size: 16px;
  }
  .own-rating-count {
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
  }
  .own-quick-info {
    display: flex;
    gap: 20px;
  }
  .own-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  
  }
  .own-info-label {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .own-info-value {
    font-size: 15px;
    color: #2d3748;
    font-weight: 600;
  }
  /* Services Section */
  .own-services {
  
    display: flex;
    justify-content: space-between;
    gap: 16px;
    background:var(--front-section);
  }
  .own-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    padding: 12px 0px;
  
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .own-service-item:hover {
    /* background: #f7fafc; */
    transform: translateY(-2px);
  }
  .own-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
  }
  .own-service-item:hover .own-service-icon {
    transform: scale(1.1);
  }
  .own-service-icon.chat {
    background: linear-gradient(135deg, #48bb78, #38a169);
  
  }
  .own-service-icon.video {
    background: linear-gradient(135deg, #4299e1, #3182ce);
  
  }
  .own-service-icon.voice {
    /* background: linear-gradient(135deg, #ed8936, #dd6b20); */
    background: var(--gradient);
  }
  .own-service-details {
    text-align: center;
  }
  .own-service-name {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 2px;
  }
  .own-service-price {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
  }
  
  /* Medium screens (tablets) */
  @media (max-width: 768px) {
    .talkTo-main {
      gap: 1.5rem;
    }
  
    .own-container {
      max-width: 100%;
    }
  
  
  
    .own-name {
      font-size: 22px;
    }
  
    .own-title {
      font-size: 13px;
    }
  
    
  
    .own-service-item {
      padding: 12px 6px;
    }
  
    .own-service-icon {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
  
    .own-service-name {
      font-size: 11px;
    }
  
    .own-service-price {
      font-size: 13px;
    }
  }
  
  /* Small screens (phones) */
  @media (max-width: 480px) {
    .talkTo-main {
      flex-direction: column;
      gap: 1rem;
     
    }
  
    .own-profile-info {
      gap: 12px;
    }
  
    .own-avatar {
      width: 60px;
      height: 60px;
    }
  
    .own-name {
      font-size: 20px;
    }
  
    .own-title {
      font-size: 12px;
    }
  
    .own-rating-count {
      font-size: 13px;
    }
  
    .own-info-label {
      font-size: 12px;
    }
  
    .own-info-value {
      font-size: 14px;
    }
  
    .own-service-item {
      padding: 10px 4px;
    }
  
    .own-service-icon {
      width: 36px;
      height: 36px;
      font-size: 14px;
    }
  
    .own-service-name {
      font-size: 10px;
    }
  
    .own-service-price {
      font-size: 12px;
    }
  }
  
  /* inner astrologer page */
  .inner-Icon{
    color: var(--secondary-orange);
    margin-right: 5px;
    margin-left: 10px;
  }
  
  /* Profile Card */
  .astrologers-profile-card {
    /* background-color: #FCFAF2; */
    background: var(--front-section);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 67, 67, 0.125);
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .astrologers-profile-header {
    padding: 24px;
    display: flex;
    gap: 34px;
    justify-content: center;
    align-items: flex-start;
  }
  
  .astrologers-profile-image-container {
    flex-shrink: 0;
    position: relative;
  }
  
  .astrologers-profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .astrologers-status {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
   
    border: 3px solid var(--white);
    border-radius: 50%;
    
  }
  
  .astrologer-online{
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    background: #4CAF50;
  }
  /* Additional ripple animation */
  .astrologer-online::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
  }
  
  @keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
  }
  .astrologer-busy {
    animation: pulse-busy 2s infinite;
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7); /* orange */
    background: #FF9800;
   
  }
  
  .astrologer-busy::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
  }
  
  .astrologer-offline {
    animation: pulse-offline 2s infinite;
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7); /* red */
    background: #F44336;
   
  }
  
  .astrologer-offline::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(244, 67, 54, 0.3); /* light red border */
    border-radius: 50%;
    animation: ripple 2s infinite;
  }
  
  
  
  
  @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
  }
  
  @keyframes pulse-busy {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
  }
  @keyframes pulse-offline {
    0% {
      box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7); 
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
  }
  
  
  
  .astrologers-profile-info {
    flex: 1;
    min-width: 0;
    
  }
  
  .astrologers-name-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .astrologers-astrologer-name {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--gold-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   
  }
  
  .astrologers-verified-badge {
    background: var(--green-verified);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  
  }
  
  .astrologers-specializations {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
 
  }
  
  .astrologers-spec-tag {
    background: var(--light-orange);
    color: var(--dark-text);
    padding: 4px 15px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--secondary-orange);
  }
  
  .astrologers-basic-info {
    margin-bottom: 20px;
    display: flex;
    gap: 24px;
  }
  
  .astrologers-info-item {
    display: flex;
    gap: 4px;
    font-size: 14px;
  }
  
  .astrologers-info-label {
    color: var(--medium-text);
    font-weight: 500;
  }
  
  .astrologers-info-value {
    color: var(--dark-text);
    font-weight: 600;
  }
  
  .astrologers-consultation-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .astrologers-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    border: none;
    padding: 12px 50px;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   
    min-width: 120px;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .astrologers-consult-btn i {
    display: inline-block;
    vertical-align: middle !important;
    font-size: 20px;
  }
  
  .astrologers-consult-btn:hover {
    transform: scale(1.1);
   
   
  
  }
  
  .astrologers-call-btn{
    background: var(--gradient);
  
    
  }
  .astrologers-chat-btn{
  
    background: var(--gradient);
    background: linear-gradient(135deg, #48bb78, #38a169);
   
  }
  .astrologers-video-btn{
  
    background: var(--gradient);
    background: linear-gradient(135deg, #4299e1, #3182ce);
  }
  
  
  .astrologers-consult-btn:active {
    transform: translateY(0);
  }
  
  /* About Section */
  .astrologers-about-section {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(67, 67, 67, 0.125);
   
    padding-top: 20px;
    text-align: center;
  }
  
  .astrologers-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
   
  }
  
  .astrologers-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
    text-align: justify;
  }
  
  .astrologers-about-text:last-child {
    margin-bottom: 0;
  }
  
  /* Bottom Section */
  .astrologers-bottom-section {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 20px;
  }
  
  /* Reviews Card */
  .astrologers-reviews-card {
    /* background-color: #FCFAF2; */
    background: var(--front-section);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 67, 67, 0.125);
  }
  
  .astrologers-rating-summary {
    display: flex;
    gap: 32px;
    margin-top: 30px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .astrologers-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
  }
  
  .astrologers-score-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1;
  }
  
  .astrologers-rating-stars {
    display: flex;
    gap: 2px;
    margin: 8px 0;
  }
  
  .astrologers-star {
    font-size: 16px;
    color: #DDD;
  }
  
  .astrologers-star.astrologers-filled {
    color: var(--star-color);
  }
  
  .astrologers-star.astrologers-half {
    background: linear-gradient(90deg, var(--star-color) 50%, #DDD 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .astrologers-total-reviews {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--medium-text);
    font-weight: 500;
  }
  
  .astrologers-rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .astrologers-rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .astrologers-bar-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    min-width: 12px;
  }
  
  .astrologers-bar-container {
    flex: 1;
    height: 6px;
    background: #F0F0F0;
    border-radius: 3px;
    overflow: hidden;
  }
  
  
  
  .astrologers-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.8s ease;
  }
  
  /* Reviews List */
  .astrologers-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
  
    
  }



.review_height_Set::-webkit-scrollbar {
    width: 7px;
}
  
  
  
  .astrologers-review-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    /* background: #FAFAFA; */
  }
  
  .astrologers-reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .astrologers-avatar-initial {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
  }
  
  .astrologers-review-content {
    flex: 1;
    min-width: 0;
  }
  
  .astrologers-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
  }
  
  .astrologers-reviewer-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-text);
  }
  
  .astrologers-review-stars {
    display: flex;
    gap: 1px;
  }
  
  .astrologers-review-stars .astrologers-star {
    font-size: 12px;
  }
  
  .astrologers-review-date {
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
  }
  
  .astrologers-review-text {
    font-size: 14px;
    color: var(--medium-text);
    line-height: 1.4;
  }
  
  /* Blogs Card */
  .astrologers-blogs-card {
    /* background-color: #FCFAF2; */
    background: var(--front-section);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 67, 67, 0.125);
    padding: 24px;
    height: fit-content;
  }
  
  .astrologers-blogs-header {
    margin-bottom: 20px;
  }
  
  .astrologers-blogs-title {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
  }
  
  .astrologers-blog-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .astrologers-blog-item:last-child {
    border-bottom: none;
  }
  
  .astrologers-blog-item:hover {
    background: #FCFAF2;
    margin: 0 -12px;
    padding: 12px;
    border-radius: 8px;
  }
  
  .astrologers-blog-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .astrologers-blog-content {
    flex: 1;
    min-width: 0;
  }
  
  .astrologers-blog-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
    line-height: 1.3;
  }
  
  .astrologers-blog-date {
    font-size: 12px;
    color: #999999;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .astrologers-bottom-section {
        grid-template-columns: 1fr;
    }
  
    .astrologers-blogs-card {
        order: -1;
    }
  }
  
  @media (max-width: 768px) {
    
    .astrologers-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
  
    .astrologers-profile-image-container {
      margin: 0 auto;
    }
    .astrologers-online-status {
      width: 16%;
      height: 16%;
      bottom: 4%;
      right: 12%;
    }
    .astrologers-profile-image {
        width: 130px;
        height: 130px;
    }
  
    .astrologers-name-section {
        justify-content: center;
    }
  
    .astrologers-basic-info {
        justify-content: center;
        flex-wrap: wrap;
    }
  
    .astrologers-consultation-buttons {
        justify-content: center;
    }
  
    .astrologers-rating-summary {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
  
    .astrologers-astrologer-name {
        font-size: 20px;
    }

    .astrologers-specializations {
    
      justify-content: center;
    }
    .astrologers-status {
      position: absolute;
      bottom: 5px;
      right: 15px;
      width: 17px;
      height: 17px;
     
      border: 3px solid var(--white);
      border-radius: 50%;
      
    }
  }
  
  @media (max-width: 480px) {
    .astrologers-consultation-buttons {
        flex-direction: column;
    }
  
    .astrologers-consult-btn {
        min-width: 100%;
        font-size: 15px;
        
    }
  
    .astrologers-specializations {
        justify-content: center;
    }
  
    .astrologers-profile-card,
    .astrologers-reviews-card,
    .astrologers-blogs-card {
        padding: 10px;
    }
  
    .astrologers-about-section {
        padding: 0px;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .astrologers-profile-card,
  .astrologers-reviews-card,
  .astrologers-blogs-card {
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .astrologers-reviews-card {
    animation-delay: 0.1s;
  }
  
  .astrologers-blogs-card {
    animation-delay: 0.2s;
  }
  
  /* Interactive Elements */
  
  .astrologers-review-item:hover {
    border-color: var(--primary);
    
  }
  
  
  
  
  /* blog page */
  
  .blog-Page{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  
  
  }
  
  .blog-card-shadow{
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  }
  
      /* Responsive grid */
      @media (min-width: 768px) {
        .blog-Page {
          grid-template-columns: repeat(2, 1fr);
        }
      }
  
      @media (min-width: 1024px) {
        .blog-Page {
          grid-template-columns: repeat(3, 1fr);
        }
      }
  
      /* shop page */
  
  
      .shop-container {
      display: flex;
  
      gap: 30px;
  }
  
  /* Sidebar Styles */
  .shop-sidebar {
      width: 350px;
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: fit-content;
      position: sticky !important;
      top: 20px;
  }
  
  .shop-search-section {
      margin-bottom: 30px;
  
  }
  
  .shop-search-container {
      position: relative;
      display: flex;
      align-items: center;
  }
  
  .shop-search-input {
      width: 100%;
      padding: 12px 50px 12px 16px;
      border: 2px solid #e1e5e9;
      border-radius: 12px;
      font-size: 14px;
      transition: all 0.3s ease;
      background: #f8f9fa;
  }
  
  .shop-search-input:focus {
      outline: none;
      border-color: var(--primary);
      background: white;
     
  }
  
  .shop-search-btn {
      position: absolute;
      right: 0px;
      background: var(--gradient);
      border: 1px solid var(--primary);
      padding: 11px 15px;
      border-radius: 8px;
      color: white;
      cursor: pointer;
      transition: all 0.4s ease;
  }
  
  .shop-search-btn:hover {
    background: #f8f9fa;
    color: var(--primary);
    
  }
  
  .shop-filter-section {
      margin-bottom: 20px;
     
  }
  
  .shop-filter-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #2d3748;
      position: relative;
  }
  
  .shop-filter-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 3px;
      background:var(--gradient);
      border-radius: 2px;
  }
  
  .shop-filter-options {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  
  .shop-filter-option {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 8px 0px;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
  }
  
  .shop-filter-option:hover {
      background: #f7fafc;
  
  }
  
  .shop-filter-option input {
      display: none;
  }
  
  .shop-checkmark, .shop-checkbox {
      width: 18px;
      height: 18px;
      border: 2px solid #cbd5e0;
      margin-right: 12px;
      position: relative;
      transition: all 0.3s ease;
  }
  
  .shop-checkmark {
      border-radius: 50%;
  }
  
  .shop-checkbox {
      border-radius: 4px;
  }
  
  .shop-filter-option input:checked + .shop-checkmark,
  .shop-filter-option input:checked + .shop-checkbox {
      background: var(--gradient);
      border-color: var(--primary);
  }
  
  .shop-filter-option input:checked + .shop-checkmark::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 10px;
      height: 10px;
      background: white;
      border-radius: 50%;
  }
  
  .shop-filter-option input:checked + .shop-checkbox::after {
      content: '✓';
      position: absolute;
      top: -2px;
      left: 2px;
      color: white;
      font-size: 12px;
      font-weight: bold;
  }
  
  .shop-reset-btn {
      width: 100%;
      padding: 12px 20px;
      background: linear-gradient(135deg, #ef4444, #dc2626);
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }
  
  .shop-reset-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
  }
  
  /* Products Section */
  .shop-products-section {
      flex: 1;
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  
  }
  
  .shop-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
  }
  
  .shop-product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      height: fit-content;
  }
  
  
  
  .shop-product-image {
      position: relative;
      overflow: hidden;
      height: 220px;
  }
  
  .shop-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
  }
  
  .shop-product-card:hover .shop-product-image img {
      transform: scale(1.1);
  }
  
  .shop-product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
  }
  
  .shop-product-card:hover .shop-product-overlay {
      opacity: 1;
  }
  
  .shop-quick-view-btn {
      background: white;
      color: #333;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .shop-quick-view-btn:hover {
      background: var(--gradient);
      color: white;
  }
  
  .shop-product-info {
      padding: 20px;
  }
  
  .shop-product-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #2d3748;
      line-height: 1.4;
  }
  
  .shop-product-price {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 15px;
  }
  
  .shop-Icon{
    color: var(--primary);
    margin-right: 5px;
  }
  
  .shop-buy-now-btn {
      width: 100%;
      padding: 12px 20px;
      background: var(--gradient);
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .shop-buy-now-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
      .shop-container {
          flex-direction: column;
          padding: 15px;
      }
  
      .shop-sidebar {
          width: 100%;
          position: static !important;
      }
  
      .shop-products-grid {
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
          gap: 20px;
      }
  }
  
  @media (max-width: 768px) {
      .shop-products-grid {
          grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
          gap: 15px;
      }
  
      .shop-sidebar {
          padding: 20px;
      }
  
      .shop-product-card {
          border-radius: 15px;
      }
  
      .shop-product-image {
          height: 180px;
      }
  }
  
  @media (max-width: 480px) {
      .shop-container {
          padding: 10px;
      }
  
      .shop-products-grid {
          grid-template-columns: 1fr;
      }
  
      .shop-sidebar {
          padding: 15px;
      }
  }
  
  /* free kundali page */
  
  .body-kundliPage {
    
    background: linear-gradient(135deg, var(--light-orange) 0%, #fff5f5 50%, #fef7ed 100%);
    position: relative;
    overflow-x: hidden;
    color: var(--foreground);
  }
  
  /* Decorative floating elements */
  .free-Kundli-floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
  }
  
  .free-Kundli-float-1 {
    top: 30rem;
    left: 5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary));
    animation: free-Kundli-pulse 3s infinite;
  }
  
  .free-Kundli-float-2 {
    top: 30rem;
    right: 5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--astro-indigo), var(--star-color));
    opacity: 0.5;
    animation: free-Kundli-bounce 2s infinite;
  }
  
  .free-Kundli-float-3 {
    bottom: 35rem;
    left: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--astro-gold), var(--gold-accent));
    opacity: 0.7;
    animation: free-Kundli-pulse 2.5s infinite;
  }
  
  .free-Kundli-float-4 {
    bottom: 35rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary));
    opacity: 0.4;
    animation: free-Kundli-bounce 3s infinite;
  }
  
  @keyframes free-Kundli-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
  }
  
  @keyframes free-Kundli-bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(-25px);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
  }
  
  @keyframes free-Kundli-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .free-Kundli-container {
   
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
  }
  
  .free-Kundli-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
  }
  
  .free-Kundli-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .free-Kundli-icon-blur {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.3;
    animation: free-Kundli-pulse 3s infinite;
  }
  
  .free-Kundli-icon-container {
    position: relative;
    background: var(--gradient);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(238, 90, 36, 0.3);
  }
  
  .free-Kundli-main-icon {
    width: 3rem;
    height: 3rem;
    color: var(--white);
    animation: free-Kundli-spin 10s linear infinite;
  }
  
  .free-Kundli-main-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .free-Kundli-title-divider {
    width: 8rem;
    height: 3px;
    background: var(--gradient);
    margin: 0 auto 1.5rem;
    border-radius: var(--radius);
  }
  
  .free-Kundli-subtitle {
    color: var(--dark-text);
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .free-Kundli-main-card {
    background: var(--white);
    border-radius: 1.5rem;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); */
    box-shadow: 0 20px 60px rgba(238, 90, 36, 0.1);
    overflow: hidden;
    /* border: 2px solid var(--border-color); */
  }
  
  .free-Kundli-card-header {
    background: linear-gradient(135deg, var(--light-orange), #fff5f5);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
  
  .free-Kundli-header-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .free-Kundli-header-icon-wrapper {
    padding: 0.75rem;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(238, 90, 36, 0.15);
  }
  
  .free-Kundli-header-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
  }
  
  .free-Kundli-card-title {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--gold-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .free-Kundli-card-description {
    color: var(--medium-text);
    font-size: 1.125rem;
  }
  
  .free-Kundli-card-content {
    padding: 2rem;
  }
  
  .free-Kundli-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 1024px) {
    .free-Kundli-form-grid {
        grid-template-columns: 1fr 1fr;
    }
  }
  
  .free-Kundli-form-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .free-Kundli-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .free-Kundli-form-label {
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text);
    
    letter-spacing: 0.05em;
  }
  
  .free-Kundli-label-icon {
    /* width: 1rem;
    height: 1rem; */
    color: var(--primary);
    margin-right: 5px;
  
  }
  
  .free-Kundli-form-input, .free-Kundli-form-select {
    width: 100%;
    height: 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius)!important;
    padding: 0 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-text);
  }
  
  .free-Kundli-form-input:focus, .free-Kundli-form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(238, 90, 36, 0.1);
  }
  
  .free-Kundli-form-input::placeholder {
    color: var(--medium-text);
  }
  
  .free-Kundli-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
  }
  
  .free-Kundli-form-select option {
    background: var(--white);
    color: var(--dark-text);
    padding: 0.5rem;
  }
  
  .free-Kundli-generate-btn {
    background: var(--gradient);
    color: var(--white);
    font-weight: bold;
    padding: 1rem 3rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(238, 90, 36, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2.5rem auto 0;
    position: relative;
    overflow: hidden;
  }
  
  .free-Kundli-generate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }
  
  .free-Kundli-generate-btn:hover::before {
    left: 100%;
  }
  
  .free-Kundli-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(238, 90, 36, 0.4);
  }
  
  .free-Kundli-btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    animation: free-Kundli-pulse 2s infinite;
  }
  
  .free-Kundli-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .free-Kundli-info-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  .free-Kundli-info-card {
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    transition: var(--transition);
  }
  
  .free-Kundli-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.1);
  }
  
  .free-Kundli-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    background: var(--gradient);
  }
  
  .free-Kundli-info-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
  }
  
  .free-Kundli-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--medium-text);
  }
  
  .free-Kundli-footer-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .free-Kundli-footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
  }
  
  .free-Kundli-footer-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-text);
  }
  
  .free-Kundli-footer-small {
    font-size: 0.875rem;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .free-Kundli-main-title {
        font-size: 2rem;
    }
  
    .free-Kundli-card-content {
        padding: 1rem;
    }
  
    .free-Kundli-card-header {
        padding: 1.5rem 1rem;
    }
  
    .free-Kundli-generate-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
  
    .free-Kundli-header-icons {
        gap: 1rem;
    }
  
    .free-Kundli-floating-element{
      display: none;
    }
  }
  
  /* Enhanced focus styles for better accessibility */
  
  
  
  /* matching kundli page */
  
  .maTching-container {
   
    margin: 40px 0;
    /* background: var(--white); */
   
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(238, 90, 36, 0.1);
    overflow: hidden;
    position: relative;
  }
  /* .maTching-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient);
  } */
  .maTching-header {
    text-align: center;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 220, 0.5) 100%);
  }
  .maTching-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
  }
  .maTching-header p {
    color: var(--medium-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .maTching-form-container {
    padding: 40px;
  }
  .maTching-language-section {
    margin-bottom: 40px;
    text-align: center;
  }
  .maTching-language-section h3 {
    color: var(--dark-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .maTching-language-select {
    position: relative;
    display: inline-block;
    min-width: 500px;
  }
  .maTching-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .maTching-details-section {
    /* background: linear-gradient(135deg, rgba(255, 248, 220, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%); */
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 2px solid rgba(238, 90, 36, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .maTching-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
  }
  /* .maTching-details-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.15);
    border-color: var(--primary);
  } */
  .maTching-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
  }
  .maTching-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
  }
  .maTching-boy-section .maTching-section-title {
    color: var(--primary);
  }
  .maTching-girl-section .maTching-section-title {
    color: var(--astro-indigo);
  }
  .maTching-form-group {
    margin-bottom: 25px;
  }
  .maTching-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
  }
  .maTching-form-input, .maTching-form-select {
    width: 100%;
    /* padding: 14px 16px; */
    padding: 0 1rem;
    height: 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-text);
  }
  .maTching-form-input:focus, .maTching-form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(238, 90, 36, 0.1);
    
  
  }
  .maTching-form-input::placeholder {
    color: var(--medium-text);
  }
  .maTching-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
  }
  .maTching-submit-section {
    text-align: center;
    /* padding-top: 20px;/ */
    /* border-top: 2px solid var(--border-color); */
  }
  .maTching-submit-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    position: relative;
    overflow: hidden;
  }
  .maTching-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }
  .maTching-submit-btn:hover::before {
    left: 100%;
  }
  .maTching-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
  }
  .maTching-submit-btn:active {
    transform: translateY(-1px);
  }
  .maTching-icon {
    display: inline-block;
    margin-left: 8px;
    font-size: 1.2rem;
  }
  @media (max-width: 768px) {
    .maTching-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .maTching-form-container {
        padding: 20px;
    }
    .maTching-header h1 {
        font-size: 2rem;
    }
    .maTching-details-section {
        padding: 20px;
    }
    .maTching-language-select {
     
      min-width: 200px;
    }
  }
  @media (max-width: 480px) {
   
    .maTching-header {
        padding: 30px 15px 15px;
    }
    .maTching-header h1 {
        font-size: 1.8rem;
    }
    .maTching-form-container {
        padding: 15px;
    }
  }
  
  @media (max-width: 1024px) {
    .maTching-language-select {
      min-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .maTching-details-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .maTching-form-container {
      padding: 20px;
    }
    .maTching-header h1 {
      font-size: 2rem;
    }
    .maTching-details-section {
      padding: 20px;
    }
    .maTching-language-select {
      min-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .maTching-header {
      padding: 30px 15px 15px;
    }
    .maTching-header h1 {
      font-size: 1.6rem;
    }
    .maTching-header p {
      font-size: 1rem;
    }
    .maTching-form-container {
      padding: 15px;
    }
    .maTching-form-input,
    .maTching-form-select {
      font-size: 0.95rem;
      padding: 12px 14px;
    }
    .maTching-submit-btn {
      padding: 14px 30px;
      font-size: 1rem;
    }
  }
  
  
  /* services page */
  
  .services-container {
   
    margin: 40px 0;
    display: flex;
    min-height: 100vh;
    gap: 0;
  }
  
  .services-sidebar {
    width: 320px;
    background: var(--white);
    border-right: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-radius: 16px;
  }
  
  .services-sidebar-header {
    padding: 30px 25px 20px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 101;
  }
  
  .services-sidebar h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .services-sidebar-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
  }
  
  .services-sidebar-content {
    padding: 25px 0;
  }
  
  .services-category-list {
    /* list-style: none; */
    padding: 0 10px;
  }
  .services-category-list li {
    margin-bottom: 8px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid transparent;
    background: linear-gradient(90deg, rgba(238, 90, 36, 0.1), rgba(255, 107, 107, 0.05));
    border-left-color: var(--primary);
    color: var(--dark-text);
  }

  .services-category-list li a:hover {
    color: var(--primary) !important;
   
    transform: translateX(8px);
  }
  .services-category-list li:hover {
    color: var(--primary) !important;
   
    transform: translateX(8px);
  }
  
  .services-category-item {
    margin-bottom: 8px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    
    
  }
  
  .services-category-item a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid transparent;
    background: linear-gradient(90deg, rgba(238, 90, 36, 0.1), rgba(255, 107, 107, 0.05));
    border-left-color: var(--primary);
    color: var(--dark-text);
  }
  
  .services-category-item:hover a {
    
    color: var(--primary);
   
    transform: translateX(8px);
  }
  
  .services-category-item.active a {
    background: var(--gradient);
    color: var(--white);
    border-left-color: var(--astro-gold);
    font-weight: 600;
  }
  
  
  
  .services-main-content {
    flex: 1;
    padding: 0 20px;
    background: transparent;
    overflow-y: auto;
  }
  
  
  .services-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 30px;
    /* margin-top: 40px; */
  }
  
  .services-service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-color);
  }
  
  .services-service-card:hover {
   
    border-color: var(--primary);
  }
  
  .services-card-image {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  
  }
  
  
  .services-card-image img {
  object-fit: contain;
  }
  
  
  
  
  .services-card-content {
    padding: 15px;
    text-align: center;
  }
  
  .services-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
  }
  
  .services-card-description {
    color: var(--medium-text);
    font-size: 14px;
    line-height: 1.6;
  }
  
  .services-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--astro-gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
  }
  
  
  
  @media (max-width: 1024px) {
    .services-sidebar {
        width: 280px;
    }
  
    .services-main-content {
        padding: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
  
    .services-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
    }
  
    .services-sidebar-content {
        padding: 20px 0;
    }
  
    .services-category-list {
        display: flex;
        overflow-x: auto;
        padding: 0 20px;
        gap: 10px;
        scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    }

    .services-category-list li {
      flex-shrink: 0;
      margin-bottom: 0;
      white-space: nowrap;
      padding: 12px 20px;
    }
  
    .services-category-item {
        flex-shrink: 0;
        margin-bottom: 0;
    }
  
    .services-category-item a {
        white-space: nowrap;
        padding: 12px 20px;
    }
  
    .services-main-content {
        padding: 25px 0px;
    }
  
    .services-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
  
    .services-page-title {
        font-size: 32px;
    }
  }
  
  /* Scrollbar styling for sidebar */
  .services-sidebar::-webkit-scrollbar {
    width: 6px;
  }
  
  .services-sidebar::-webkit-scrollbar-track {
    background: var(--muted);
  }
  
  .services-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
  }
  
  .services-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--astro-indigo);
  }
  
  
  
  /* contact page */
  
  .contact-section-own {
    padding: 30px 0;
    display: flex;
    align-items: center;
  }
  
  .contact-section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-section-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
  }
  
  .contact-section-header p {
    font-size: 1rem;
    color: var(--medium-text);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
  }
  
  .contact-contact-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 20px;
  }
  
  .contact-contact-info {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    
  }
  
  .contact-info-header {
    margin-bottom: 40px;
  }
  
  .contact-info-header h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
  }
  
  .contact-info-header p {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    /* background: linear-gradient(135deg, var(--light-orange) 0%, #fff5f5 50%, #fef7ed 100%); */
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
  }
  
  .contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
  }
  
  .contact-info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
  }
  
  .contact-info-content p {
    color: var(--medium-text);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .contact-info-content a:hover{
    color: var(--medium-text);
  }
  
  .contact-contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    
  }
  
  .contact-form-header {
    margin-bottom: 40px;
  }
  
  .contact-form-header h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
  }
  
  .contact-form-header p {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .contact-form-group {
    position: relative;
  }
  
  .contact-form-group input,
  .contact-form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    /* background: var(--muted); */
    color: var(--dark-text);
  }
  
  .contact-form-group input:focus,
  .contact-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
  }
  
  .contact-form-group label {
    position: absolute;
    left: 18px;
    top: 16px;
    color: var(--muted-foreground);
    font-size: 1rem;
    transition: all 0.2s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
    font-weight: 400;
  }
  
  .contact-form-group input:focus + label,
  .contact-form-group textarea:focus + label,
  .contact-form-group input:not(:placeholder-shown) + label,
  .contact-form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 14px;
    font-size: 0.875rem;
    color: var(--primary);
    background: var(--white);
    font-weight: 500;
  }
  
  .contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
  }
  
  .contact-submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    font-family: inherit;
  }
  
  .contact-submit-btn:hover {
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  }
  
  .contact-submit-btn:active {
    transform: translateY(0);
  }
  
  .contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  /* Desktop optimized responsive design */
  @media (max-width: 768px) {
    .contact-contact-wrapper {
      grid-template-columns: 1fr;
    }
  
    .contact-section-header h1 {
      font-size: 1.8rem;
    }
  
    .contact-form-row {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .contact-contact-info,
    .contact-contact-form {
      padding: 32px;
    }
  }
  
  @media (max-width: 480px) {
    .contact-container {
      padding: 0 20px;
    }
  
    .contact-section-header h1 {
      font-size: 1.5rem;
    }
  
    .contact-contact-info,
    .contact-contact-form {
      padding: 24px;
    }
  
    .contact-info-card {
      padding: 20px;
    }
  
    .contact-form-header h2 {
      font-size: 1.3rem;
    }
  }
  
  /* Subtle animations */
  .contact-info-card,
  .contact-submit-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .contact-form-group input,
  .contact-form-group textarea {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  
  
  /* /* popup * */
  
  
  
  .cusTom-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 100000;
  }
  .cusTom-popup {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-40px);
    opacity: 0;
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
    
  }
  .cusTom-overlay.cusTom-show {
    opacity: 1;
    pointer-events: auto;
  }
  .cusTom-overlay.cusTom-show .cusTom-popup {
    transform: translateY(0);
    opacity: 1;
  }
  .cusTom-closeBtn {
  
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 15px;
  
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    background: #f0f0f0;
    color: #333 !important;
  }
  .cusTom-closeBtn i{ 
  
    color: #333 !important;
  }
  .cusTom-closeBtn:hover{
    background-color: red;
    color: white !important;
  }
  
  .cusTom-closeBtn i {
    color: #333 !important;
    transition: transform 0.3s ease;
  }
  
  .cusTom-closeBtn:hover {
    background-color: #ffcccc; /* light red */
    color: #333 !important;
  }
  
  .cusTom-closeBtn:hover i {
    transform: rotate(90deg);
  
  }
  
  
  
  
  
  
  /* App Icon */
  .astro-app-icon {
    width: 150px;
    /* height: 80px; */
   
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
  
  }
  /* Content Styling */
  .astro-popup-content h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .astro-popup-content .astro-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
  }
  .astro-popup-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
  }
  /* Play Store Button */
  .astro-playstore-btn {
    /* background: #000; */
    color: white;
    border: none;
    /* padding: 12px 24px; */
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .popup-fleX{
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  
  
  /* Responsive Design */
  @media (max-width: 480px) {
    .astro-popup {
        padding: 30px 20px;
        margin: 20px;
    }
  
    .astro-popup-content h2 {
        font-size: 20px;
    }
  
    .astro-main-button {
        padding: 14px 28px;
        font-size: 16px;
    }
  }
  


  .filter-BTn{
    background: var(--gradient);
    border-radius: 5px;
  }

  .accordion-button:focus {
    box-shadow: none;
    outline: none;
  }
.accordion-button {
  background-color: #ffffff; /* aap apna desired color yahan de */
  color: #444; /* optional: text color */
}

.accordion-button:not(.collapsed) {
  background-color: #ffffff; /* same color jab open ho */
  color:#444;
}
  
.search_box_astromall_new input {
  width: 100% !important;
  border-radius: 25px;
  padding: 12px 40px 12px 30px !important;
  /* border: 1px; */
  font-size: 16px;
  outline: none;
}

.search_box_astromall_new {
  position: absolute;
  top: 12px;
  right: 35px;
  font-size: 22px;
  opacity: 1;
  margin: 20px;
}

#loader-icon {
  text-align: center;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  background: var(--primary);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
      transform: scale(0);
  }

  100% {
      transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
      transform: scale(1);
  }

  100% {
      transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
      transform: translate(0, 0);
  }

  100% {
      transform: translate(24px, 0);
  }
}



.review_height_Set {
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 10px;
}


/* blog page */


/* Main Content Layout */
.blog-page-main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
/* Blog Post */
.blog-page-post {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.blog-page-post-header {
  margin-bottom: 30px;
}
.blog-page-post-title {

  font-size: 2rem;
  font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--gold-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 35px;
  line-height: 1.2;
}
.blog-page-post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.blog-page-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.blog-page-author-avatar img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-page-author-avatar2 {

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.blog-page-author-avatar2 img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-page-author-info a {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
  font-size: 18px;
  text-decoration: none;
}
.blog-page-author-info span {
  color: #718096;
  font-size: 0.9rem;
}
.blog-page-featured-image {
  width: 100%;
  /* height: 300px; */
  background: linear-gradient(135deg, #1a202c, #2d3748);
  border-radius: 15px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-page-post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
}
/* .blog-page-post-content p {
  margin-bottom: 20px;
} */
/* 
.blog-page-section-title {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
  display: inline-block;
}
.blog-page-highlight-box {
  background: linear-gradient(135deg, #667eea10, #764ba210);
  border-left: 4px solid #667eea;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 10px 10px 0;
}
.blog-page-highlight-box ul {
  list-style: none;
  padding-left: 0;
}
.blog-page-highlight-box li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.blog-page-highlight-box li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
} */
/* Sidebar */
.blog-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.blog-page-sidebar-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.blog-page-sidebar-title {

  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--gold-accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}
.blog-page-author-card {
  text-align: center;
}
.blog-page-author-card .blog-page-author-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  font-size: 2rem;
}
.blog-page-author-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}
.blog-page-author-card a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.blog-page-author-card p {
  color: #718096;
  font-size: 0.9rem;
}
.blog-page-latest-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-page-post-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-page-post-item:hover {
  background: #f7fafc;
  transform: translateY(-2px);
}
.blog-page-post-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.blog-page-post-thumbnail img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-page-post-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
  line-height: 1.3;
}
.blog-page-post-info span {
  font-size: 0.8rem;
  color: #718096;
}
/* Responsive Design */
@media (max-width: 768px) {
  .blog-page-container {
      padding: 15px;
  }
  .blog-page-header h1 {
      font-size: 2.5rem;
  }
  .blog-page-main-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  .blog-page-post {
      padding: 25px;
  }
  .blog-page-post-title {
      font-size: 2rem;
  }
  .blog-page-sidebar-card {
      padding: 20px;
  }
}
@media (max-width: 480px) {
  .blog-page-header h1 {
      font-size: 2rem;
  }
  .blog-page-post-title {
      font-size: 1.7rem;
  }
  .blog-page-post {
      padding: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.blog-page-post, .blog-page-sidebar-card {
  animation: fadeInUp 0.6s ease-out;
}
.blog-page-sidebar-card:nth-child(2) {
  animation-delay: 0.2s;
}


button:focus {
  outline: none;

}



/* genrated */
:root {

  --secondary: #fffaf0;
  --accent: #f7b32b;
  --surface: #ffffff;
  --text-main: #1a1a2e;
  --border-radius: 18px;
  --shadow: 0 5px 16px rgba(34, 34, 94, 0.11);
}

.neW-container h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
 
}
.neW-container h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  
}

.neW-astro-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}
.neW-astro-card {
  flex: 1 1 340px;
  background: var(--front-section);
  padding: 40px 30px 32px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 280px;
  transition: transform 0.18s;
  margin-bottom: 10px;
}

.neW-astro-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 16px;
  margin-bottom: 18px;
}
.neW-astro-info-table th, .neW-astro-info-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e4e3f7;
  text-align: left;
}
.neW-astro-info-table th {
  /* background: var(--secondary); */
  color: var(--primary);
  font-weight: 600;
}
.neW-astro-info-table tr:last-child td {
  border-bottom: none;
}
.neW-label {
  font-size: 14px;
  display: block;
  opacity: 0.66;
  margin-bottom: 1px;
}
@media (max-width: 900px) {
  .neW-astro-cards {
    flex-direction: column;
    gap: 16px;
  }
}
.neW-guna-table {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  background: var(--surface);

}
.neW-guna-table th, .neW-guna-table td {
  text-align: center;
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f4;
 
}
.neW-guna-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.7px;

}
.neW-guna-table tr:last-child td, .neW-guna-table tr:last-child th {
  border-bottom: none;
}
.neW-guna-row.neW-grad {
  background: var(--front-section);
}
.neW-guna-table .neW-text-center { text-align: center; }
.neW-guna-table .neW-text-large { font-size: 1.1em; font-weight: 600; }
.neW-planet-table {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  background: var(--surface);

}
.neW-planet-table th, .neW-planet-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e4e3f7;
  text-align: center;
}
.neW-planet-table th {
  background: var(--primary);
  color:white;
  font-weight: 700;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
.neW-planet-table tr:last-child td {
  border-bottom: none;
}

.neW-planet-table tbody tr:nth-child(odd) {
  /* background-color: var(--muted); */
  background: var(--front-section);
}
@media (max-width: 700px) {
  .neW-planet-table, .neW-guna-table, .neW-astro-info-table { font-size: 13px; }
  .neW-astro-card { padding: 18px 8px; }
}
@media (max-width: 480px) {
 
  .neW-container h2 { font-size: 1.17em; }
  .neW-container h3 { font-size: 1.17em; }
  .neW-astro-card { min-width: unset; }
}
.neW-highlight {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
}
.neW-guna-table .neW-desc {
  min-width: 150px;
  text-align: left;
  color: #3d386b;
  opacity: 0.93;
}

.neW-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--border-radius);

  box-shadow: var(--shadow);
  width: 100%;
  background: var(--surface);
  margin-bottom: 40px;
}

/* free kundali genrated */




.free-data-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
 
}

.free-data-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--border-radius);

  box-shadow: var(--shadow);
  width: 100%;
  background: var(--surface);
  margin-bottom: 2rem;
}

.free-data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.free-data-table th,
.free-data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border-color);
}

.free-data-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  text-transform: capitalize;
}

.free-data-table tbody tr:nth-child(odd) {
  /* background-color: var(--muted); */
  background: var(--front-section);
}

.free-data-section {
  margin-bottom: 3rem;
}

.free-data-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .free-data-table th,
  .free-data-table td {
    padding: 0.5rem;
    font-size: 0.85rem;
   
  }
  .free-data-table2 th,
  .free-data-table2 td {
   
    white-space: nowrap;
  }

  .free-data-heading {
    font-size: 1.5rem;
  }

  .free-data-section {
    padding: 0.5rem;
  }
}


/* service inner page */

/* Background and container */




/* Flex row for alignment */
.innerService-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Main article column */
.innerService-col-8 {
  flex: 0 1 800px;
  background: #ffffff;
  border-radius: var(--border-radius);

  box-shadow: var(--shadow);

  padding: 34px 34px 40px 34px;
  margin: 0 0px;
  transition: box-shadow 0.4s;
}


/* Image styling */
.innerService-article-img {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 16px;
  border: 1.5px solid #e6eaf3;
  transition: box-shadow 0.4s;
}

.innerService-detail-main-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
}
.innerService-detail-main-img:hover {
  transform: scale(1.03);
}

/* Title styling */
.innerService-article-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--gold-accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  margin-top: 0;
  margin-bottom: 18px;
  text-align: left;
}

.innerService-article-content {
  font-size: 1rem;

  color: #515c6f;
  line-height: 1.83;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
.innerService-article-content p {
  margin-bottom: 18px;
}
.innerService-article-content ul, 
.innerService-article-content ol {
  margin-left: 18px;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .innerService-col-8 {
      padding: 20px 7vw;
      flex-basis: 100%;
  }
  .innerService-container {
      max-width: 100vw;
      padding: 0 7vw;
  }
}
@media (max-width: 650px) {
  .innerService-col-8 {
      padding: 14px 4vw 28px 4vw;
  }
  .innerService-detail-main-img {
      height: 160px;
  }
  .innerService-article-title h2 {
    font-size: 1.2rem;
 
  }
  
  .innerService-article-content {
    font-size: 0.9rem;
  }
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-overlay .spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ff5e5e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* From Uiverse.io by Donewenfu */ 
.loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after {
  position: absolute;
  top: 0;
  content: '';
}

.jimu-primary-loading:before {
  left: -19.992px;
}

.jimu-primary-loading:after {
  left: 19.992px;
  -webkit-animation-delay: 0.32s !important;
  animation-delay: 0.32s !important;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading {
  background: var(--primary);
  -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  width: 13.6px;
  height: 32px;
}

.jimu-primary-loading {
  text-indent: -9999em;
  margin: auto;
  position: absolute;
  right: calc(50% - 6.8px);
  top: calc(50% - 16px);
  -webkit-animation-delay: 0.16s !important;
  animation-delay: 0.16s !important;
}

@-webkit-keyframes loading-keys-app-loading {

  0%,
  80%,
  100% {
    opacity: .75;
    box-shadow: 0 0 var(--primary);
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px var(--primary);
    height: 40px;
  }
}

@keyframes loading-keys-app-loading {

  0%,
  80%,
  100% {
    opacity: .75;
    box-shadow: 0 0 var(--primary);
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px var(--primary);
    height: 40px;
  }
}

.modal-content .modal-header {
  background: var(--gradient);
}
.modal-title {
  color: white !important;
  font-size: 1.25rem !important;
}
.close-btn {
  color: white !important;
  font-size: 25px;
}
.btn2:active {
  background:none !important;
  border:none !important;
}

.btn-check:checked + .btn {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  outline: none;
  width: 100%;
}

.btn-check .btn {
  outline: 1px solid var(--primary);
  color: black;
}

.sendotp {
  outline: none;
}

.sendotp:hover {
  background-color: var(--primary);
  outline: none;
}

.btn-group {
  width: 156%;
}

.iti {
  width: 100%;
}

/* vendor sidebar */

.sideProfiles {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid var(--border);
}

.profileSidebar {
  background: var(--muted);
  padding-bottom: 1.5rem;
  border-radius: var(--radius);
}

.topPros {
  background: var(--gradient);
  color: var(--white);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.userImges img {
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.userImges img:hover {
  transform: scale(1.05);
}

.userTitles h4 {
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}

.userTitles button {
  background: transparent;
  border: none;
  color: var(--gold-accent);
  font-size: 1rem;
  transition: var(--transition);
}

.userTitles button:hover {
  color: var(--white);
}

.userTitles p {
  font-size: 0.9rem;
  opacity: 0.95;
  color: var(--white);
}

.proMenuLists {
  background: var(--white);
  padding: 1.25rem;
}

.MenuLists .nav-item {
  margin-bottom: 0.75rem;
}

.MenuLists .nav-item p,
.MenuLists .nav-item .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  text-decoration: none;
  background: var(--muted);
  transition: var(--transition);
}

.MenuLists .nav-item p:hover,
.MenuLists .nav-item .nav-link:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateX(6px);
  box-shadow: 0 4px 14px rgba(255, 107, 107, 0.2);
}

.vendor-profile p {
  background: var(--astro-purple) !important;
  color: var(--white) !important;
}

@media (max-width: 991px) {
  .sideProfiles {
      border-radius: 12px;
  }

  .topPros {
      padding: 1rem 0.5rem;
  }

  .userImges img {
      width: 100px !important;
  }

  .MenuLists .nav-item p,
  .MenuLists .nav-item .nav-link {
      font-size: 0.85rem;
  }
}
.hover-nOne:hover {
  transform: translateY(0px);
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}
/*Active navbar*/
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
  }
  .nav-links a.active::before {
    width: 100%;
  }

/* vendor dashboardd */


/* vendor profile */

