/*Talk to astrologer--*/
/* --- Custom Premium CSS3 Reset & Variables --- */
      :root {
        --primary-orange: #ff7000;
        --primary-orange-hover: #e05e00;
        --secondary-indigo: #232b70;
        --dark-indigo: #13193a;
        --accent-gold: #ffb300;
        --text-main: #334155;
        --text-muted: #64748b;
        --bg-light: #ffffff;
        --bg-warm: #fcf8f8de;
        --bg-warm-accent: #fdf5eb;
        --success-green: #10b981;
        --danger-red: #ef4444;
        --offline-grey: #9ca3af;
        --border-color: #f1f5f9;
        --border-color-mid: #a3a5a6;
        --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
        --hover-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
        --transition-timing: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         --bg: #FBF1E3;
    --ink: #2B1C12;
    --ink-muted: #7C6F62;
    --accent: #DD8A2E;
    --orange-1: #F0A23E;
    --orange-2: #C9690F;
    --badge-bg: #2B1C12;
    --line: #E6D8C2;
    --card-ring: rgba(43,28,18,0.06);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Poppins', BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: var(--text-main);
        background-color: var(--bg-light);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-timing);
      }

      ul {
        list-style: none;
      }
      img {
    max-width: 100%;
    height: auto;
}

header#myHeader li.nav-item {
    border: none;
}

header#myHeader li.nav-item:hover {
    background: transparent;
}
.call-panel .astro-profile {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}
 .overlaycall .close{ color:#fff }
.hero-cta-btn{
  position:relative;
  overflow:hidden;
  padding:20px 35px;
  border-radius:14px;
  background:#ff7a00;
  color:#fff;
  text-decoration:none;
  font-size:22px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  box-shadow:0 14px 35px rgba(255,122,0,.35);
  transition:.35s ease;
}

/* Swipe Background */
.hero-cta-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#ffc400,#ff6a00);
  transform:translateX(-100%);
  transition:transform .45s ease;
  z-index:0;
}

/* Small light swipe */
.hero-cta-btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-40%;
  width:35%;
  height:100%;
  background:rgba(255,255,255,.35);
  transform:skewX(-25deg);
  transition:.55s ease;
  z-index:1;
}

.hero-cta-btn span{
  position:relative;
  z-index:2;
}

.hero-cta-btn:hover{
  transform:translateY(-5px);
  box-shadow:
    0 20px 45px rgba(255,130,0,.55),
    0 0 22px rgba(255,190,30,.55);
}

.hero-cta-btn:hover::before{
  transform:translateX(0);
}

.hero-cta-btn:hover::after{
  left:120%;
}

.hero-cta-btn .icon{
  font-size:28px;
  transition:.35s ease;
}

.hero-cta-btn:hover .icon{
  transform:translateX(8px) scale(1.15);
}

.hero-cta-btn:active{
  transform:scale(.97);
}


      /* Container Utility */
      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* --- Hero Section --- */
      .hero-image-side {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-image-side img
 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero {
       align-items: center;
    overflow: hidden;
    position: relative;
    padding: 0 60px;
    background: #010123 url('/astrovedspeaks/assets/images/bg-image.png') top center no-repeat;
}
.hero-content {
    padding: 30px 0px;
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(ellipse 80% 60% at 50% 0%, #111111 0%, transparent 70%), repeating-linear-gradient(45deg, transparent, transparent 60px, #111111 60px, #111111 61px); */
    pointer-events: none;
}
.hero-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-90deg, transparent 60%, #010123 100%);
    pointer-events: none;
}

      .hero-tag {
        display: inline-block;
        background: rgba(255, 112, 0, 0.15);
        color: var(--accent-gold);
        border: 1px solid rgba(255, 112, 0, 0.3);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 24px;
      }

      .hero h1 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
        color: #ffb300;
        text-transform: capitalize;
      }

      .hero p {
        font-size: 16px;
        color: #fff;
        margin-bottom: 10px;
        font-weight: 300;
      }

      .hero p strong {
        color: var(--accent-gold);
        font-weight: 500;
      }

      .hero-ctas {
        display: flex;
        gap: 16px;
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 28px;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        font-family: 'Poppins', BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      }

      .btn-primary {
        background-color: var(--primary-orange);
        color: #ffffff;
        box-shadow: 0 4px 14px rgba(255, 112, 0, 0.4);
      }
/* slide fill */
 .btn-primary::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#ff7a00,#ff9f1c);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .38s ease;
  z-index:-1;
}

/* shine swipe */
 .btn-primary::after{
  content:"";
  position:absolute;
  top:0;
  left:-80%;
  width:45%;
  height:100%;
  background:rgba(255,255,255,.35);
  transform:skewX(-22deg);
  transition:.55s ease;
}

 .btn-primary:hover{
  color:#fff;
  border-color:#ff7a00; border-radius: 10px;
  transform:translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 112, 0, 0.5);
  background-color: var(--primary-orange-hover);
}

 .btn-primary:hover::before{
  transform:scaleX(1);
}

 .btn-primary:hover::after{
  left:130%;
}

     

      .btn-outline {
            background-color: #ffffff;
    color: #ffffff;
    border: 2px solid #ff7000 !important;
    color: #ff7000;
      }

      .btn-outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
        transform: translateY(-2px);
      }

      /* Hero Floating Art */
      .hero-illustration {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      /* ========== STATS SECTION ========== */
        .stats-section {
            background: linear-gradient(135deg, #ff7000 0%, #ffb300 100%);
            padding: 10px 0;
            margin: -1px 0 0 0;
        }

        .stats-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 20px;
            color: white;
        }

        /*.stat-icon {
            font-size: 30px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 12px;
            flex-shrink: 0;
        }*/

        .stat-content h3 {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 0;
            color: #ffffff;
        }

        .stat-content p {
            font-size: 14px;
            opacity: 1;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
        }

      /* STATS SECTION */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin-bottom: 20px;
        }

        .stat-box {
            background: rgba(35, 43, 112, 0.6);
            border: 1px solid rgba(255, 179, 0, 0.2);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            background: rgba(35, 43, 112, 0.8);
            border-color: rgba(255, 179, 0, 0.4);
            transform: translateY(-4px);
        }

        .stat-label {
            font-size: 14px;
    color: rgb(255 255 255);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
        }

        .stat-value {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .stat-value.gold {
            color: #ffb300;
        }

        .stat-value.orange {
            color: #ff7000;
        }

        .stat-value.green {
            color: #1dd1a1;
        }

        .stat-value.purple {
            color: #d4a5ff;
        }


 /* --- Choose Concern Section --- */
        .concern-section {
            padding: 50px 0;
            background-color: var(--bg-warm);
        }

        .concerns-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .concern-card {
            background: #fff;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition-timing);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 160px;
            border: 1px solid var(--primary-orange);
        }

        .concern-card:hover {
            border-color: var(--primary-orange);
            background: linear-gradient(135deg, rgba(255, 112, 0, 0.15) 0%, rgba(35, 43, 112, 0.1) 100%);
            box-shadow: 0 8px 20px rgba(255, 112, 0, 0.15);
            transform: translateY(-4px);
        }

        .concern-icon {
            font-size: 36px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(255, 112, 0, 0.08) 0%, rgba(35, 43, 112, 0.05) 100%);
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 0.4s ease;
        }
        .concern-card:hover .concern-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #ff7000 0%, #ffb300 100%);
    box-shadow: 0 10px 25px rgba(255, 112, 0, 0.3);
}

        .concern-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary-indigo);
            word-break: break-word;
        }
      /* --- Section Common Header --- */
      .section-header {
        text-align: center;
        margin-bottom: 30px;
      }

      .section-header h2 {
        font-size: 32px;
        color: var(--secondary-indigo);
        font-weight: 700;
        margin-bottom: 12px;
        position: relative;
        display: inline-block; line-height: 1.4;
      }

      .section-header h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: var(--primary-orange);
        margin: 10px auto 0;
        border-radius: 3px;
      }

      .section-header p {
        font-size: 16px;
        color: var(--text-muted);
       
        margin: 0 auto;
      }

      /* --- Available Astrologers Section --- */
      .astrologers-section {
        padding: 20px 0 50px;
        background-color: var(--bg-warm);
      }

      /* Category Selection Tabs */
      .filters-container {
        margin-bottom: 32px;
      }

      .category-tabs {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 12px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-orange) transparent;
      }

      .category-tabs::-webkit-scrollbar {
        height: 5px;
      }

      .category-tabs::-webkit-scrollbar-thumb {
        background-color: rgba(255, 112, 0, 0.2);
        border-radius: 10px;
      }

      .tab-btn {
        background-color: #ffffff;
        color: var(--secondary-indigo);
        border: 1px solid var(--border-color);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        cursor: pointer;
        transition: var(--transition-timing);
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .tab-btn:hover, .tab-btn.active {
        background-color: var(--secondary-indigo);
        color: #ffffff;
        border-color: var(--secondary-indigo);
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(35, 43, 112, 0.1);
      }

      .tab-btn.active {
        background-color: var(--primary-orange);
        border-color: var(--primary-orange);
        box-shadow: 0 4px 10px rgba(255, 112, 0, 0.2);
      }

      /* Search and Sort Subbar */
      .search-sort-bar {
        display: flex;
        justify-content: right;
        align-items: center;
        gap: 20px;
        margin-bottom: 10px;
        flex-wrap: wrap;
      }
.search-sort-bar h1 {
    font-size: 21px;
    color: var(--secondary-indigo);
}
      .search-wrapper {
        position: relative;
        flex: 1;
        max-width: 400px;
      }

     .search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid var(--border-color-mid);
    border-radius: 8px;
    font-size: 15px;
    background-color: #ffffff;
    outline: none;
    transition: var(--transition-timing);
    color: var(--text-main);
    box-shadow: 0 0px 5px rgb(15 23 42 / 15%);
    margin: 0px 0 10px;
}

      .search-input:focus {
        border-color: var(--primary-orange);
        box-shadow: 0 0 0 3px rgba(255, 112, 0, 0.1);
      }

      .search-icon {
    position: absolute;
    left: 10px;
    top: 20px;
    transform: translateY(-50%);
    fill: none;
    stroke: var(--text-muted);
    width: 25px;
    height: 25px;
}

      .sort-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .sort-label {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-muted);
      }

      .sort-select {
        padding: 10px 16px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background-color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-main);
        outline: none;
        cursor: pointer;
        transition: var(--transition-timing);
      }

      .sort-select:focus {
        border-color: var(--primary-orange);
      }

      /* Astrologers Grid */
      .astrologers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
      }

      .astro-card {
        background-color: #ffffff;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        padding: 24px;
        position: relative;
        transition: var(--transition-timing);
        box-shadow: var(--card-shadow);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .astro-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--hover-shadow);
        border-color: rgba(255, 112, 0, 0.15);
      }
      .search-left-text h1 {
    font-size: 21px;
    color: var(--secondary-indigo);
}

      /* Tag Bag */
      .card-tag {
        position: absolute;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    color: #000;
    z-index: 2;
    left: 5px;
    top: 5px; border-radius: 20px;
      }
.offer-ribbon {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--danger-red);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 11px;
    border-radius: 20px;
    font-weight: 600;
    padding: 6px 10px;
}.offer-ribbon br {
    display: none;
}
      .tag-demand { background-color: var(--accent-gold); }
      .tag-new { background-color: #0284c7; }
      .tag-top { background-color: var(--accent-gold); color: var(--dark-indigo); }
      .tag-must { background-color: #7c3aed; }
      .tag-choice { background-color: var(--primary-orange); }

      /* Profile Block */
      .astro-profile {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-top: 15px;
      }

      .avatar-wrapper {
        position: relative;
        width: 84px;
        height: 84px;
        flex-shrink: 0;
      }

      .astro-avatar {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background-color: var(--bg-warm-accent);
      }

      .online-badge {
        position: absolute;
        bottom: 2px;
        right: 2px;
        width: 16px;
        height: 16px;
        background-color: var(--success-green);
        border: 3px solid #ffffff;
        border-radius: 50%;
      }

      .online-badge::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--success-green);
        border-radius: 50%;
        animation: pulse 1.8s infinite;
        opacity: 0.4;
        left: 0;
        top: 0;
      }

      @keyframes pulse {
        0% { transform: scale(1); opacity: 0.5; }
        100% { transform: scale(2.4); opacity: 0; }
      }

      .astro-meta {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .rating-orders {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 6px;
      }

      .rating-stars {
        display: flex;
        align-items: center;
        gap: 2px;
      }

      .star-icon {
        width: 14px;
        height: 14px;
        fill: var(--accent-gold);
      }

      .orders-count {
        font-weight: 500;
        color: var(--text-muted);
      }

      .astro-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--secondary-indigo);
        margin-bottom: 2px;
      }

      /* Astro Info Rows */
      .astro-details {
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex-grow: 1;
      }

      .detail-row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13.5px;
        color: var(--text-main);
      }

      .detail-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 3px;
        stroke: var(--text-muted);
        stroke-width: 2;
        fill: none;
      }

      .detail-label-bold {
        font-weight: 600;
        color: var(--secondary-indigo);
      }

      /* Price and Call Button Footer */
      .card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
        margin-top: auto;
      }

    
      .price-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
span.free-txt {
    color: #ff5900;
    font-size: 20px;
}

      .price-value {
        font-size: 19px;
        font-weight: 700;
        color: var(--secondary-indigo);
      }

      .price-unit {
        font-size: 11px;
        color: var(--text-muted);
        /* text-transform: uppercase; */
        letter-spacing: 0.5px;
      }

      .btn-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1.5px solid var(--success-green);
        color: var(--success-green);
        background-color: transparent;
        padding: 8px 20px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-timing);
      }

      .btn-call svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2.5;
        fill: none;
      }

      .btn-call:hover {
        background-color: var(--success-green);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
      }

      .btn-busy {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1.5px solid var(--danger-red);
        color: var(--danger-red);
        background-color: transparent;
        padding: 8px 20px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-timing);
      }

      .btn-busy svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2.5;
        fill: none;
      }

      .btn-busy:hover {
        background-color: var(--danger-red);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
      }

      .btn-offline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1.5px solid var(--offline-grey);
        color: var(--offline-grey);
        background-color: transparent;
        padding: 8px 20px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-timing);
      }

      .btn-offline svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2.5;
        fill: none;
      }

      .btn-offline:hover {
        background-color: var(--offline-grey);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(156, 163, 175, 0.2);
      }

      /* More Button */
      .view-more-container {
        text-align: center;
        margin-top: 48px; position: relative;
      }

      /* --- Why Talk to Astrologer Section --- */
      .why-section {
        padding: 50px 0;
        background-color: var(--bg-light);
      }

      .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
      }

      .why-card {
        background-color: var(--bg-warm-accent);
        border: 1px solid rgba(255, 112, 0, 0.08);
        border-radius: 12px;
        padding: 36px;
        transition: var(--transition-timing);
      }

      .why-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--card-shadow);
        border-color: rgba(255, 112, 0, 0.2);
      }

      .why-icon-box {
        width: 52px;
        height: 52px;
        background-color: #ffffff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        color: var(--primary-orange);
        box-shadow: 0 4px 10px rgba(255, 112, 0, 0.1);
      }

      .why-icon-box svg {
        width: 26px;
        height: 26px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
      }

      .why-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary-indigo);
        margin-bottom: 16px;
      }

      .why-card p {
        font-size: 14.5px;
        color: var(--text-main);
        line-height: 1.7;
      }

      /* --- Trust and Privacy Dual Banner --- */
      .trust-privacy-section {
        padding: 0 0 50px;
        background-color: #ffffff;
      }

      .trust-grid {
        display: grid;
        grid-template-columns:1fr 1fr 1fr 1fr;
        gap: 32px;
      }

      .trust-block {
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #ffffff73;
    border: 1px solid rgba(255, 112, 0, 0.1);
    color: var(--text-main);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    border-left: 2px solid #ff7000;
}
.trust-block.trust-block-left {
    background: var(--bg-warm-accent);
}
      .trust-block-primary {
        background-image: linear-gradient(135deg, var(--secondary-indigo) 0%, var(--dark-indigo) 100%);
        color: #ffffff;
      }

     
      .benefit-card.left-benefit-card {
    background: var(--bg-warm-accent);
}
      .trust-block-headline {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 10px;
      }

      .trust-block-heading {
        font-size: 19px;
        font-weight: 600;
      }

      .trust-block-primary .trust-block-heading {
        color: #ffffff;
      }

      .trust-block .trust-block-heading {
        color: var(--secondary-indigo);
      }

      .trust-block-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .trust-block-primary .trust-block-icon {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--accent-gold);
      }

      .trust-block .trust-block-icon {
        background-color: #ffffff;
        color: var(--primary-orange);
        box-shadow: 0 4px 10px rgba(255, 112, 0, 0.1);
      }

      .trust-block-icon svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
      }

      .trust-block p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 0;
      }

      .trust-block-primary p {
        color: rgba(255, 255, 255, 0.85);
      }
.trust-block:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
      /* --- How to start --- */
      .how-it-works {
        padding: 50px 0;
        background-color: var(--bg-warm-accent);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
      }

      .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        position: relative;
      }

      .step-item {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 32px 24px;
        text-align: center;
        border: 1px solid var(--border-color);
        position: relative;
        transition: var(--transition-timing);
        z-index: 2;
      }

      .step-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-shadow);
        border-color: rgba(255, 112, 0, 0.15);
      }

      .step-number {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 32px;
        background-color: var(--primary-orange);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        box-shadow: 0 3px 8px rgba(255, 112, 0, 0.3);
      }

      .step-icon {
        width: 48px;
        height: 48px;
        background-color: var(--bg-warm-accent);
        color: var(--primary-orange);
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        margin-top: 8px;
      }

      .step-icon svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
      }

      .step-item h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--secondary-indigo);
        margin-bottom: 10px;
      }

      .step-item p {
        font-size: 13.5px;
        color: var(--text-muted);
        line-height: 1.6;
      }
      
      /* --- Highlighted CTA Section --- */
      .cta-section {
        padding: 50px 0;
        background: #ffffff;
      }

      .cta-card {
        background-image: linear-gradient(135deg, rgba(35, 43, 112, 0.98) 0%, rgba(19, 25, 58, 0.96) 100%), url('./src/assets/images/astrology_hero_bg_1781065036714.png');
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        padding: 56px;
        text-align: center;
        color: #ffffff;
        box-shadow: 0 20px 50px rgba(35, 43, 112, 0.15);
        position: relative;
        overflow: hidden;
      }

      .cta-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(255, 112, 0, 0.25) 0%, transparent 70%);
        pointer-events: none;
      }

      .cta-card h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
      }

      .cta-card p {
        font-size: 16px;
        max-width: 750px;
        margin: 0 auto 36px;
        color: #fff;
        font-weight: 300;
        line-height: 1.7;
      }

      .btn-cta {
        background-color: var(--primary-orange);
        color: #ffffff;
        font-size: 16px;
        padding: 16px 36px;
        border-radius: 8px;
        font-weight: 700;
        box-shadow: 0 4px 18px rgba(255, 112, 0, 0.4);
      }

      .btn-cta:hover {
        background-color: var(--primary-orange-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(255, 112, 0, 0.5);
      }

      /* --- FAQ Section --- */
      .faq-section {
        padding: 50px 0;
        background-color: var(--bg-warm);
      }

      .faq-list {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      /* Custom Styled Details & Summary Accordion (CSS3 Only) */
      details {
        background-color: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        transition: var(--transition-timing);
        overflow: hidden;
      }

      details[open] {
        border-color: rgba(255, 112, 0, 0.3);
        box-shadow: var(--card-shadow);
      }

      summary {
        padding: 20px 24px;
        font-size: 16px;
        font-weight: 600;
        color: var(--secondary-indigo);
        cursor: pointer;
        outline: none;
        user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none; /* Hide default arrow */
      }

      summary::-webkit-details-marker {
        display: none; /* Hide webkit arrow */
      }

      summary::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23ff7000" stroke-width="3"><path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" /></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.2s ease;
      }

      details[open] summary::after {
        transform: rotate(45deg);
      }

      .faq-content {
        padding: 0 24px 20px;
        font-size: 14.5px;
        color: var(--text-main);
        line-height: 1.7;
        border-top: 1px solid transparent;
      }

      details[open] .faq-content {
        border-top-color: var(--border-color);
      }

      /*Chat with Astrologer--*/
      /*Ask section--*/
      .ask-section {
        background: var(--bg-warm-accent);
        padding: 50px 0;
      }
      .topics-circles {
      justify-content: center;
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 30px;
      align-items: center;
      margin: 0 auto;
      align-self: center;
      justify-content: center;
      justify-items: center;
    }
    .topic-circle {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
      max-width: 250px;
      background: var(--bg-light);
      box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      border-radius: 1rem;
      padding: 0.8rem;
      align-self: stretch;
    }
    .circle-icon {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: var(--bg-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      transition: all 0.2s;
      border: 1px solid #fff0dd;
    }
    .topic-circle:hover .circle-icon {
      /*background: var(--navy);
      border-color: var(--navy);*/
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(26,31,78,0.18);
    }
    .topic-label {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }

.topic-desc {
    color: var(--text-main);
    font-size: 15px;
}
      /* --- Responsive Mobile & Tablet Rules --- */
      @media (max-width: 1200px) {
        .hero-content {
          max-width: 600px;
          padding: 30px;
        }

        .hero-img {
          width: 400px;
          height: auto;
        }
      }
      @media (max-width: 992px) {
        .hero {
          grid-template-columns: 1fr;
          min-height: auto;
          background: #010123;
          padding: 0;
        }

        /*.hero-image-side { min-height: 320px; max-height: 360px; }*/
        .hero-image-side::after {
          background: linear-gradient(180deg, transparent 76% 87%, #000000 100%);
        }

        .hero-content {
          padding: 40px 24px;
          text-align: center;
        }

        .hero-image-side {
          order: 1;
        }

        .hero-content {
          order: 2;
          max-width: 100%;
        }

        /*.hero {
          padding-left: 0px;
        }*/

        .hero-image-side::after {
          background: linear-gradient(179deg, transparent 60%, #000022 100%);
        }
      }

      @media (max-width: 1024px) {
        .hero h1 {
          font-size: 36px;
        }
        .hero-grid {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 40px;
        }
        .hero-illustration {
          grid-row: 1;
        }
        .hero-ctas {
          justify-content: center;
        }
        .trust-grid {
          grid-template-columns: 1fr;
        }
        .steps-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 32px;
        }
      }

      @media (max-width: 768px) {
        .section-header h2 {
          font-size: 24px;
        }
        .astrologers-grid {
          grid-template-columns: 1fr;
        }
        .search-sort-bar {
          flex-direction: column;
          align-items: stretch;
        }
        .search-wrapper {
          max-width: 100%;
        }
        .sort-wrapper {
          justify-content: space-between;
        }
        .steps-grid {
          grid-template-columns: 1fr;
        }
        .step-item {
          padding-top: 40px;
        }
        .cta-card {
          padding: 36px 20px;
        }
        .cta-card h2 {
          font-size: 24px;
        }
        summary {
          padding: 16px;
          font-size: 15px;
        }
        .faq-content {
          padding: 0 16px 16px;
          font-size: 13px;
        }
        .trust-block-heading, .benefit-title{
              font-size: 18px !important;

        }
      }

/*Astrologer filter options*/
.hidden-nav {
    display: none;
}

.nav-scroll.expanded .hidden-nav {
    display: flex;
}
.more-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.more-btn span {
    font-weight: 600;
    font-size: 15px;
    text-decoration: underline;
}
   .nav-wrapper {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
    }
    .nav-container {
      display: flex;
      align-items: stretch;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      margin-bottom: 10px;
    }
    .nav-scroll {
      display: flex;
      align-items: stretch;
      /*overflow-x: auto;*/
      flex-wrap: wrap;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      width: 100%;
      justify-content: center;
    }

    .nav-scroll::-webkit-scrollbar {
      display: none;
    }
    .nav-item {
          display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    justify-content: center;
    border-radius: 6px;
    margin: 8px 4px;
    background: #fff;
    cursor: pointer;
    border: 1px solid #e7e7e7;
    }

    .nav-item:last-child {
      border-right: none;
    }

    .nav-item:hover {
      background: #ff700029;
    }

    .nav-item:focus {
      outline: 1px solid #ffc474;
      outline-offset: -2px;
    }
    .nav-item.active {
          background: #232b70;
    border-right: none;
    }

    .nav-item.active img {
      background: #fff;
      border-radius: 50%;
    }
    .nav-item.active .nav-text {
      color: #ffffff;
    }

    .nav-item.active .nav-icon svg {
      fill: #ffffff;
    }
    .nav-text {
      font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 1.3;
        padding: 9px 15px;
    }
    .fa-solid {
    margin-right: 5px;
    color: #232b70;
}
.button__wrapper .fa-solid { color:#fff }
    .nav-wrapper .nav-arrow {
      display: none;
      position: absolute;
    top: 34%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 2px;
    }
    .nav-item.active .fa-solid {
    color: #fff;
}
    .nav-wrapper .nav-arrow:focus{
      outline: none;
    }
    .nav-wrapper .nav-arrow:hover {
      background: #232b70;
    }

    .nav-wrapper .nav-arrow:hover svg {
      fill: #ffffff;
    }

    .nav-wrapper .nav-arrow svg {
      width: 16px;
      height: 16px;
      fill: #232b70;
      transition: fill 0.2s ease;
    }

    .nav-wrapper .nav-arrow.prev {
      left: -15px;
    }

    .nav-wrapper .nav-arrow.next {
      right: -15px;
    }
    .scroll-indicator {
      display: none;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;
    }

    .scroll-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
      transition: all 0.3s ease;
    }

    .scroll-dot.active {
      background: #232b70;
      width: 24px;
      border-radius: 4px;
    }
    .fade-edge {
      display: none;
      position: absolute;
      top: 0;
      bottom: 0;
      width: 40px;
      pointer-events: none;
      z-index: 5;
    }

    .fade-edge.left {
      left: 0;
      background: linear-gradient(to right, rgb(255 255 255 / 49%) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .fade-edge.right {
      right: 0;
      background: linear-gradient(to left, rgba(255 255 255 / 49%) 0%, rgba(255,255,255,0) 100%);
    }

    @media (max-width: 1200px) {

      .nav-text {
        font-size: 13px;
      }
    }
   @media (max-width: 1024px) {
      .nav-wrapper {
        padding: 0;
      }
      .nav-text {
        font-size: 12px;
      }
    }
@media(max-width:950px){
  .nav-item {
        flex-direction: column;
        text-align: center;
      }
}
@media(max-width:767px){
   .nav-wrapper .nav-arrow{
        display: flex;
      }
      i.fa-solid {
    display: block;
        margin-bottom:5px;
        font-size:15px;
}
span.nav-text {
    min-width: 90px;
}
      .scroll-indicator {
        display: flex;
      }
      .fade-edge {
        display: block;
      }
      .nav-scroll{
        overflow-x: auto;
        
      }
      button.nav-arrow.prev {
    display: none;
}

button.nav-arrow.next {
    display: none;
}

div#scrollIndicator {
    display: none;
}
.container.reveal.in-view {
    justify-content: left;
}
}

/* Specials Events Navbar End */

/*Testimonial*/
.pd-section {
          background: var(--bg-warm-accent);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    }
    .pd-section::before {
      content: '';
      position: absolute;
      inset: 0;
      b/*ackground:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(155,26,40,0.32) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 8%  50%, rgba(201,146,47,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 92% 50%, rgba(201,146,47,0.07) 0%, transparent 60%);*/
      pointer-events: none;
    }
    .pd-section-header {
      text-align: center;
      margin-bottom: 52px;
      position: relative;
      z-index: 2;
    }
    .pd-eyebrow {
      display: block;
      font-family: 'Rajdhani', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: #c9922f;
      margin-bottom: 14px;
    }
    .pd-wrap {
        background: #ffffff;
    border: 1px solid #f5e2c9;
    border-top: 1px solid #f5e2c9;
    padding: 44px 48px 36px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); */
    border-radius: 10px;
    }
    .pd-accent-bar {
      height: 2px;
      width: 30px;
      background: linear-gradient(90deg, #ff7000, #ff7000);
      margin-bottom: 32px;
      transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .pd-slider { position: relative; min-height: 230px; }
    .pd-slide { display: none; animation: pdIn 0.45s cubic-bezier(0.4,0,0.2,1) both; }
    .pd-slide.active { display: block; }
    @keyframes pdIn {
      from { opacity: 0; transform: translateX(28px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .pd-quote-mark {
      font-family: 'Cinzel', serif;
      font-size: 96px;
      line-height: 0.65;
      color: #9b1a28;
      opacity: 0.18;
      position: absolute;
      top: 0; left: -8px;
      user-select: none;
      pointer-events: none;
    }
    .pd-quote-text {
      font-size: 17px;
      font-style: italic;
      line-height: 1.78;
      color: #2e2c2c;
      padding-left: 28px;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .pd-author-name {
      font-size: 13px;
      font-weight: 600;
      color: #ff7000;
      padding-left: 28px;
      letter-spacing: 0.5px;
    }
    .pd-author-loc {
      font-size: 12px;
      color: #7a5a44;
      padding-left: 28px;
      margin-top: 4px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .pd-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0px;
      padding-top: 24px;
      border-top: 1px solid rgba(107,26,36,0.4);
    }
    .pd-dots { display: flex; align-items: center; gap: 8px; }
    .pd-dot {
      width: 20px; height: 2px;
      background: rgba(107,26,36,0.5);
      cursor: pointer;
      border: none; padding: 0;
      transition: background 0.25s, width 0.3s;
    }
    .pd-dot:hover { background: rgba(201,146,47,0.5); }
    .pd-dot.on { width: 38px; background: linear-gradient(90deg, #ff7000, #ff7000); }
    .pd-nav-right { display: flex; align-items: center; gap: 18px; }
    .pd-count {
      font-family: 'Rajdhani', sans-serif;
      font-size: 12px; font-weight: 600;
      color: #7a5a44; letter-spacing: 1px;
    }
    .pd-arrows { display: flex; gap: 8px; }
    .pd-btn {
      background: #ff7000;
    border: 1px solid #ff811e;
      border-radius: 6px;
      width: 38px; height: 38px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: #fff;
      transition: background 0.18s, border-color 0.18s, color 0.18s;
    }
    .pd-btn:hover { background: #232b70; border-color: #232b70; color: #fff; }
    .pd-btn:active { transform: scale(0.95); }

@media(max-width: 767px){
  div#pdDots {
    display: none;
}
span#pdCount {
    display: none;
}
.pd-nav{
  justify-content: center;
}
}

/*consultation Steps--*/
/* ---------- Steps ---------- */
  .steps{
    position:relative;
    display:grid;
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 50px;
  }
  @media(min-width: 450px){
    .steps{
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 768px){
    .steps{
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    /* connecting line threading through the icon centers */
    .steps::before{
      content:'';
      position:absolute;
      top: 42px;
      left: 11%;
      right: 11%;
      height:1px;
      background: var(--line);
      z-index:0;
    }
  }

  .step{
    position:relative;
    z-index:1;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .step-icon-wrap{
    position:relative;
    margin-bottom:22px;
    transition: .5s;
  }
  .step-icon-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 112, 0, 0.5);
    border-radius: 50%;
}

 .step-icon-wrap .icon{
    width:84px;
    height:84px;
    border-radius:50%;
    background: linear-gradient(150deg, var(--orange-1), #ff7000);
    box-shadow: 0 14px 26px -12px rgba(201,105,15,0.45);
    display:flex;
    align-items:center;
    justify-content:center;
    animation: steppulse 1.5s infinite;
  }
  @keyframes steppulse{
    0%{
        box-shadow: 0 0 0 0 rgba(255,107,0,.4);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(255,107,0,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(255,107,0,0);
    }
}

 .step-icon-wrap .icon svg{
    width:34px;
    height:34px;
    fill:none;
    stroke:#FFF8EF;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .num{
    position:absolute;
    top:-10px;
    right:-10px;
    width:30px;
    height:30px;
    border-radius:50%;
    background: #212a71;
    color:#FBF1E3;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.02em;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 0 0 4px var(--bg);
  }

  .step h3{
    font-weight:600;
    font-size: 16px;
    margin: 0 0 10px;
    color: var(--ink);
  }

  .step p{
    margin:0;
    font-size: 16px;
    line-height:1.65;
    color: var(--ink-muted);
    max-width: 300px;
    display: none;
  }

  @media (max-width: 480px){
    .icon{ width:72px; height:72px; border-radius:18px; }
    .icon svg{ width:29px; height:29px; }
    .num{ width:26px; height:26px; font-size:11px; }
  }

  /*consern wrap--*/
   .section{
    position:relative;
    background: #191953;
    padding:64px 24px 90px;
  }
  .eyebrow{
    display:flex;
    justify-content:center;
  }
  .eyebrow span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(245,166,35,0.12);
    border:1px solid rgba(245,166,35,0.4);
    color:var(--gold-2);
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:13px;
    letter-spacing:.06em;
    text-transform:uppercase;
  }
  h2.headline{
    text-align:center;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:clamp(28px,4vw,42px);
    color:#fff;
    margin:20px auto 10px;
    max-width:720px;
    line-height:1.2;
  }
  h2.headline em{
    font-style:normal;
    color:var(--gold);
  }

  p.sub{
    text-align:center;
    color:rgba(255,255,255,0.6);
    font-size:16px;
    max-width:560px;
    margin:0 auto 48px;
  }

  .grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .service-header{
    display: flex;
    align-items: center;
  }
  .card{
    background:#FFFFFF;
    border-radius:18px;
    padding:26px;
    display:flex;
    flex-direction:column;
    gap:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.06);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.35);
  }

  .icon-wrap{
    width:58px;
    height:58px;
    border-radius:14px;
    background:linear-gradient(135deg, var(--gold-2), var(--gold));
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .icon-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .icon-wrap.question{
    background:linear-gradient(135deg,#FFD9C9,#FFB199);
  }
  .icon-wrap.question span{
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:28px;
    color:#E1483C;
  }

  .card h3{
    font-family:'Poppins',sans-serif;
    font-size:19px;
    font-weight:700;
    margin:0;
    color: #232b70;
  }

  .card p{
    font-size:14px;
    line-height:1.55;
    color:var(--muted);
    margin:0;
    flex-grow:1;
  }

  .card .btn{
        align-self: flex-start;
    margin-top: 4px;
    padding: 7px 18px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .03em;
    text-decoration: none;
    border: 1.5px solid #ff7000;
    color: #ffffff;
    background: #ff7000;
    transition: all .2s ease;
  }
  .card .btn:hover{
     background: #ffffff;
    border: 1px solid #ff7000;
    color: #ff7000;
  }
  .btn.solid{
    background: #ff7000;
    border-color:var(--gold);
    color:#fff;
  }
  .btn.solid:hover{
    background:var(--navy);
    border-color:var(--navy);
  }

  @media(max-width:960px){
    .grid{grid-template-columns:repeat(2,1fr);}
  }
  @media(max-width:640px){
    .grid{grid-template-columns:1fr;}
  }
  @media(max-width: 350px){
    .service-header{
          flex-direction: column;
    }
  }

   /*Choose your concern---*/
      .concern-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.concerns-card{
    /*min-width: 200px;*/
    
    display: flex;
    align-items: center;
    gap: 12px;
    
}

.concerns-card a{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 25px;
  border:1px solid #ff9f64;
  border-radius:50px;
  background:#fff;
  color:#30323b;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  transition:all .35s ease;
  z-index:1;
}
.concerns-card svg {
    width: 25px;
}
/* slide fill */
.concerns-card a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#ff7a00,#ff9f1c);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .38s ease;
  z-index:-1;
}

/* shine swipe */
.concerns-card a::after{
  content:"";
  position:absolute;
  top:0;
  left:-80%;
  width:45%;
  height:100%;
  background:rgba(255,255,255,.35);
  transform:skewX(-22deg);
  transition:.55s ease;
}

.concerns-card a:hover{
  color:#fff;
  border-color:#ff7a00;
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(255,122,0,.28);
}
.concerns-card a:hover svg{
    stroke: #ffffff !important;
}
.concerns-card a:hover::before{
  transform:scaleX(1);
}

.concerns-card a:hover::after{
  left:130%;
}

.concerns-card a .emoji{
  display:inline-block;
  transition:.35s ease;
}

.concerns-card a:hover .emoji{
  transform:scale(1.25) rotate(-8deg);
}

/* Tablet */
@media (max-width: 768px) {
    .concerns-card {
        min-width: calc(20% - 8px);
        padding: 5px 5px;
        font-size: 15px;
    }

    
}

/* Mobile */
@media (max-width: 480px) {
    .concern-wrapper {
        gap: 6px;
        padding: 5px;
    }
    .concerns-card {
        min-width: 100%;
        justify-content: center;
        padding: 2px 5px;
        font-size: 14px;
    }
    .concerns-card a {
    font-size: 14px;
        width: 250px;
        padding: 10px;
}
}



/*CTA below to banner--*/
.cta-banner{
    background: #fdf5eb;
    padding: 10px 15px;
    text-align:center;
    /* max-width: 950px; */
    /* margin: 0 auto; */
}

.cta-content{
    /* max-width:1000px; */
    margin:0 auto;
    font-size: 17px;
    font-weight: 600;
    line-height:1.5;
    display: flex;
    justify-content: space-between;
    max-width: 950px;
    margin: 0 auto;
    align-items: center;
}

.cta-text{
    color: #232b70;
}

.cta-link{
    color: #ffffff;
    text-decoration:none;
    font-weight: 600;
    transition:0.3s;
    background: #ff7000;
    padding: 6px 15px;
    font-size: 15px;
    border-radius: 5px;
}

.cta-link:hover{
    color:#94446f;
}

.cta-tag{
    display:block;
    color:#000;
}
.cta-content .btn-primary {
    padding: 8px 12px;
    border-radius: 6px;
}
/* Tablet */
@media (max-width:768px){

    .cta-content{
        font-size:18px;
    }

    .cta-link{
        display:inline-block;
        margin-top:5px;
    }
}

/* Mobile */
@media (max-width:480px){

    .cta-banner{
        padding:16px 12px;
    }

    .cta-content{
        font-size:16px;
        line-height:1.6;
    }

    .cta-link{
        display:block;
        margin:6px 0;
    }
}


/*Stats--*/
.stats-simple {
  padding: 25px 0;
  background: #ffffff29;
  border: 1px solid #ff70004f;
  border-left: 0;
  border-right: 0;
}

.stats-simple .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a1a, #f7941d);
  color: #fff;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 2px;
  line-height: 1;
}

.stat-text p {
  font-size: 14px;
  font-weight: 500;
  color: #6b6b7b;
  margin: 0;
}

.divider {
  width: 1px;
  height: 40px;
  background: #e5e5ea;
}
.stats-simple.darkbg{ background:#191953 }
.stats-simple.darkbg h3, .stats-simple.darkbg p{ color:#fff; }
/* Responsive: stack nicely on smaller screens */
@media (max-width: 768px) {
  .stats-simple .container {
    gap: 24px;
  }
  .divider {
    display: none;
  }
}
@media(max-width:625px){
          .stat-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
          }
          .stats-simple .container {
            align-items: flex-start !important;
          }
          .container.reveal.in-view {
            gap: 5px;
            justify-content: space-around;
            padding: 0 10px;
          }
          .stat-text h3 {
            font-size: 20px !important;
          }
        }

    @media (max-width: 480px) {

      .nav-text {
        font-size: 12px;
                padding: 5px;
      }
     .nav-arrow {
        width: 32px;
        height: 32px;
      }
      .stat-icon {
    width: 38px !important;
    height: 38px !important;
  }
    }
    @media(max-width:400px){
          .stat-text p {
            max-width: 100px;
          }
        }


/*Why astroved--*/
.why-astroved{
  padding: 50px 0px;
}
 .why-astroved .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .why-astroved .card {
    background: #ffffff;
    border: 1px solid #ececf2;
    border-radius: 16px;
    padding: 10px 10px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    gap:5px; text-align: center;
  }

  .why-astroved .card:hover {
    transform: translateY(-4px);
    border-color: #f5900c;
    box-shadow: 0 10px 24px rgba(245, 144, 12, 0.12);
    background: #fff3e6;
  }

  .why-astroved .icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 5px;
    border-radius: 50%;
    background: #fff3e6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .why-astroved .card p {
    font-size: 16px;
    font-weight: 600;
    color: #1e1b4b;
    margin: 0;
    text-align: center;

  }

  @media (max-width: 800px) {
    .why-astroved .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .why-astroved .cards {
      grid-template-columns: 1fr;
    }
     .section-header h2 {
        font-size: 20px;
    }
  }


 /* Location section */
        .av-location-section {
            position: relative;
            overflow: hidden;
            padding: 50px 15px;
            background:
                radial-gradient(
                    circle at top left,
                    rgba(47, 115, 220, 0.09),
                    transparent 32%
                ),
                linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
        }

        .av-location-container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
        }

        /* Section heading */
        .av-location-heading {
            margin-bottom: 38px;
            text-align: center;
        }

        .av-location-heading .av-small-design {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 12px;
        }

        .av-location-heading .av-small-design span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #2f73dc;
        }

        .av-location-heading h2 {
            margin-bottom: 12px;
            font-size: clamp(28px, 4vw, 32px);
            line-height: 1.25;
            color: #172033;
        }

        .av-location-heading p {
           
            margin: 0 auto;
            color: #667085;
            font-size: 16px;
            line-height: 1.7;
        }

        /* Two-column grid */
        .av-location-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        /* Location card */
        .av-location-card {
            padding: 30px;
            border: 1px solid #e4eaf3;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 12px 35px rgba(31, 41, 55, 0.07);
        }

        .av-card-heading {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 22px;
        }

        .av-card-icon {
            display: inline-flex;
            flex-shrink: 0;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #eaf2ff;
            color: #2f73dc;
        }

        .av-card-icon svg {
            width: 23px;
            height: 23px;
        }

        .av-card-heading h3 {
            color: #202939;
            font-size: 21px;
            line-height: 1.3;
        }

        .av-card-heading p {
            margin-top: 4px;
            color: #7a8495;
            font-size: 13px;
        }

        /* Location links */
        .av-location-list {
            display: flex;
            flex-wrap: wrap;
            gap: 11px;
        }

        .av-location-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 9px 17px;
            border: 1px solid #dfe6f0;
            border-radius: 30px;
            background: #f9fbfe;
            color: #344054;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            text-decoration: none;
            transition:
                color 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease,
                transform 0.25s ease;
        }

        .av-location-link:hover {
            border-color: #2f73dc;
            background: #2f73dc;
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Hidden locations */
        .av-extra-location {
            display: none;
        }

        .av-location-list.is-expanded .av-extra-location {
            display: inline-flex;
            animation: avFadeIn 0.35s ease;
        }

        @keyframes avFadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* View more button */
        .av-view-more {
                display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 18px;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: #000;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

        .av-view-more:hover {
          text-decoration: underline;
        }

        .av-view-more svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .av-view-more[aria-expanded="true"] svg {
            transform: rotate(180deg);
        }

        .av-view-more:focus-visible,
        .av-location-link:focus-visible {
            outline: 3px solid rgba(47, 115, 220, 0.25);
            outline-offset: 3px;
        }

        /* Tablet */
        @media (max-width: 850px) {
            .av-location-section {
                padding: 40px 18px;
            }

            .av-location-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile */
        @media (max-width: 520px) {
            .av-location-section {
                padding: 30px 14px;
            }

            .av-location-heading {
                margin-bottom: 28px;
            }

            .av-location-heading p {
                font-size: 15px;
            }

            .av-location-card {
                padding: 23px 18px;
                border-radius: 15px;
            }

            .av-card-heading {
                align-items: flex-start;
            }

            .av-card-heading h3 {
                font-size: 19px;
            }

            .av-location-list {
                gap: 9px;
            }

            .av-location-link,
            .av-view-more {
                min-height: 39px;
                padding: 8px 14px;
                font-size: 13px;
            }
        }


  /* ---------------- Scroll reveal ---------------- */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in-view{ opacity:1; transform: translateY(0); }


/*--*/
/* Desktop connecting line */
@media (min-width: 768px){

  .steps{
    position: relative;
  }

  /* Background line */
  .steps::before{
    content:'';
    position:absolute;
    top:42px;
    left:11%;
    right:11%;
    height:2px;
    background:#e6e6e6;
    z-index:0;
  }

  /* Animated line */
  .steps::after{
    content:'';
    position:absolute;
    top:42px;
    left:11%;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#ff7000,#ff9c3f);
    z-index:1;
    transition:width 2.5s ease-in-out;
  }

  /* Trigger animation */
  .steps.animate-line::after{
    width:78%;
    z-index: 0;
  }
}
.step{
  opacity:0;
  transform:translateY(40px);
  transition:all .6s ease;
}

.steps.animate-line .step{
  opacity:1;
  transform:translateY(0);
}

.steps.animate-line .step:nth-child(1){
  transition-delay:.2s;
}

.steps.animate-line .step:nth-child(2){
  transition-delay:.6s;
}

.steps.animate-line .step:nth-child(3){
  transition-delay:1s;
}

.steps.animate-line .step:nth-child(4){
  transition-delay:1.4s;
}

.hero{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#1d2144,#2b1650);
}

/* Keep content above stars */
.hero .container{
    position: relative;
    z-index: 2;
}

/* Stars wrapper */
.stars{
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Individual star */
.star{
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 0 8px #fff,
        0 0 16px rgba(255,255,255,.8);
    animation: twinkle 4s ease-in-out infinite,
               floatStar 12s linear infinite;
}

/* Random positions */
.s1{top:10%; left:8%;}
.s2{top:20%; left:25%;}
.s3{top:12%; left:45%;}
.s4{top:30%; left:70%;}
.s5{top:15%; left:90%;}
.s6{top:55%; left:15%;}
.s7{top:70%; left:35%;}
.s8{top:65%; left:60%;}
.s9{top:80%; left:80%;}
.s10{top:45%; left:92%;}

/* Different speeds */
.s1,.s4,.s7{animation-duration:3s,14s;}
.s2,.s5,.s8{animation-duration:5s,18s;}
.s3,.s6,.s9,.s10{animation-duration:4s,16s;}

@keyframes twinkle{
    0%,100%{
        opacity:.3;
        transform:scale(1);
    }
    50%{
        opacity:1;
        transform:scale(1.8);
    }
}

@keyframes floatStar{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0);
    }
}

/* Mobile */
@media (max-width:768px){

    .star{
        width:3px;
        height:3px;
    }
}


.hero{
    position:relative;
    overflow:hidden;
    background: url("/astrovedspeaks/assets/images/bg-image.png") center center/cover no-repeat;
}

.hero-animations{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
}

.hero .container{
    position:relative;
    z-index:2;
}

.tw1{top:15%;left:10%;}
.tw2{top:25%;left:75%;}
.tw3{top:60%;left:30%;}
.tw4{top:40%;left:90%;}
.tw5{top:75%;left:65%;}


@keyframes twinkle{
    0%,100%{
        opacity:.2;
        transform:scale(1);
    }
    50%{
        opacity:1;
        transform:scale(2);
    }
}

.hero{
    position:relative;
    overflow:hidden;
}

.hero-animations{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
}

.hero .container{
    position:relative;
    z-index:2;
}

/* Star Image */
.twinkle{
    position:absolute;
    width:80px;
    height:80px;

    background-image:url('/astrovedspeaks/assets/images/star-image.png');
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    animation:twinkle 3s infinite ease-in-out;
}

/* Positions */
.tw1{top: 0%;left: 15%;}
.tw2{top:35%;left:75%;}
.tw3{top: 67%;left: 17%;}
.tw4{top:40%;left:90%;}
.tw5{top: 77%;left: 70%;}

@keyframes twinkle{
    0%,100%{
        transform:scale(1);
        opacity:.4;
    }
    50%{
        transform:scale(1.4);
        opacity:1;
    }
}

.shooting-star{
    position:absolute;
    width:80px;
    height:80px;

    background-image:url('/astrovedspeaks/assets/images/star-image.png');
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    transform:rotate(-35deg);
}

.ss1{
    top:10%;
    left:-10%;
    animation:shootingStar 50s linear infinite;
}

.ss2{
    top:25%;
    right:-20%;
    animation:shootingStar 60s linear infinite 3s;
}

.ss3{
    top:40%;
    left:-15%;
    animation:shootingStar 72s linear infinite 6s;
}

@keyframes shootingStar{
    0%{
        transform:translateX(0) translateY(0) rotate(-35deg);
        opacity:0;
    }
    5%{
        opacity:0.5;
    }
    100%{
        transform:translateX(2200px) translateY(500px) rotate(-35deg);
        opacity:0;
    }
}


/*Home page*/
:root{
    --bg-1:#0a0f2e;
    --bg-2:#14103a;
    --bg-3:#1c1250;
    --gold:#f0a94e;
    --gold-bright:#ffc772;
    --gold-dim:rgba(240,169,78,0.35);
    --white-star:#ffffff;
  }

  *{box-sizing:border-box;}

  .stars{
    position:fixed;
    inset:0;
    background-image:
      radial-gradient(1px 1px at 8% 15%, white, transparent),
      radial-gradient(1px 1px at 78% 8%, white, transparent),
      radial-gradient(1px 1px at 35% 65%, white, transparent),
      radial-gradient(1.5px 1.5px at 60% 82%, #ffc772, transparent),
      radial-gradient(1px 1px at 92% 55%, white, transparent),
      radial-gradient(1px 1px at 22% 88%, white, transparent),
      radial-gradient(1.5px 1.5px at 50% 30%, #b39ce8, transparent);
    background-repeat:repeat;
    background-size:420px 420px;
    opacity:0.7;
    pointer-events:none;
  }

  .wheel-wrap{
    position:relative;
    width: min(90vw, 400px);
    aspect-ratio:1/1;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .wheel-svg{
    width:100%;
    height:100%;
    overflow:visible;
    box-shadow: inset 0 0 0 42px rgba(255, 255, 255, .025), inset 0 0 0 92px rgba(255, 179, 26, .035);
    border-radius: 50%;
  }

  .spin-group{
    transform-origin: 297px 297px;
    animation:spin 80s linear infinite;
  }

  @keyframes spin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
  }

  .ring-line{
    fill:none;
    stroke:var(--gold-dim);
    stroke-width:1;
  }

  .ring-line-soft{
    fill:none;
    stroke:rgba(179,156,232,0.18);
    stroke-width:1;
  }

  .glyph-text{
    fill: #ffffffe0;
    font-size: 49px !important;
    font-weight: 500;
    text-anchor: middle;
    dominant-baseline: central;
    /* opacity: 0.85; */
    /* color: #f2e9ff; */
    background: linear-gradient(145deg, rgba(149, 104, 255, .92), rgba(77, 46, 161, .88));
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 12px 28px rgba(46, 25, 116, .32), inset 0 0 16px rgba(255, 255, 255, .15);
    width: 72px;
    /* border-radius: 15px; */
    /* display: grid; */
    place-items: center;
    font-size: 29px;
    padding: 14px;
  }

  .spoke-line{
    stroke:var(--gold-dim);
    stroke-width:0.8;
    opacity:0.5;
  }

  .center-glow{
    animation:pulse 2s ease-in-out infinite;
    transform-origin:300px 300px;
  }

  @keyframes pulse{
    0%,100%{opacity:0.85; transform:scale(1);}
    50%{opacity:1; transform:scale(1.12);}
  }

  .star-point{
    fill:var(--gold-bright);
  }

  .twinkle{
    animation:twinkle 3.2s ease-in-out infinite;
    transform-origin:center;
  }
  .twinkle.d2{animation-delay:0.6s;}
  .twinkle.d3{animation-delay:1.2s;}
  .twinkle.d4{animation-delay:1.8s;}
  .twinkle.d5{animation-delay:2.4s;}
  .twinkle.d6{animation-delay:0.9s;}

  @keyframes twinkle{
    0%,100%{opacity:0.25; transform:scale(0.8);}
    50%{opacity:1; transform:scale(1.3);}
  }

  .moon-glyph{
    fill:#f4e9d8;
    opacity:0.9;
  }

  .shooting-star{
    stroke:#ffe9c2;
    stroke-width:1.4;
    stroke-linecap:round;
    opacity:0;
    animation:shoot 6s ease-in infinite;
  }
  .shooting-star.delay2{animation-delay:3s;}

  @keyframes shoot{
    0%{opacity:0; transform:translate(-40px,-30px);}
    5%{opacity:1;}
    22%{opacity:0; transform:translate(120px,90px);}
    100%{opacity:0; transform:translate(120px,90px);}
  }

  .caption{
    position:absolute;
    left:50%;
    bottom:-6%;
    transform:translateX(-50%);
    color:rgba(255,231,196,0.75);
    font-size:clamp(11px,2.2vw,14px);
    letter-spacing:0.03em;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:500;
  }

  .caption .dots span{
    display:inline-block;
    width:5px;
    height:5px;
    border-radius:50%;
    margin-right:3px;
  }
  .caption .dots span:nth-child(1){background:var(--gold);}
  .caption .dots span:nth-child(2){background:var(--gold-bright);}
  .caption .dots span:nth-child(3){background:rgba(255,255,255,0.4);}

  @media (prefers-reduced-motion: reduce){
    .spin-group, .center-glow{
      animation:none;
    }
  }

  @media (max-width:480px){
    .glyph-text{font-size:16px;}
  }

.wheel-wrap:after {/* content: ""; *//* position: absolute; */width: 400px;height: 400px;left: 3px;top: 8px;border-radius: 50%;border: 1px solid rgba(255, 179, 26, .22);box-shadow: inset 0 0 0 42px rgba(255, 255, 255, .025), inset 0 0 0 92px rgba(255, 179, 26, .035);animation: rotateReverse 70s linear infinite;}

.hero-wrap {}

.cosmic-art {}

.hero-grid {
    display: grid;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
}

/*Zodiac--*/


/* Main Container */
.zodiac-container{
    position:relative;
    width: 450px;
    height: 450px;
    margin:auto;
}

/* Common Rings */
.zodiac-ring{
    position:absolute;
    border-radius:50%;
    top:50%;
    left: 50%;
    transform:translate(-50%,-50%);
}
.zodiac-ring span svg {
    width: 27px;
    height: 27px;
    
    padding: 4px;
    
    border-radius: 5px;
    opacity: 0.89;
}
/* OUTER RING */
.ring-outer{
    width: 60%;
    height: 60%;
    border:2px solid rgba(255,215,0,.35);
    animation:rotateClockwise 40s linear infinite;
    box-shadow:
    0 0 30px rgba(255,215,0,.2),
    inset 0 0 30px rgba(255,215,0,.1);
}

.ring-outer span{
    position:absolute;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffd700;
    font-size:24px;
    font-weight:bold;
    top: 44%;
    left: 45%;
    transform: rotate(calc(30deg * var(--i)))
    translateY(-190px)
    rotate(calc(-35deg * var(--i)));
    text-shadow:
    0 0 10px #ffd700,
    0 0 20px #ffd700;
}

/* MIDDLE RING */
.ring-middle{
    width:360px;
    height:360px;
    border:1px solid rgba(255,255,255,.15);
    animation:rotateAnti 28s linear infinite;
}

/* Constellation Stars */
.star{
    position:absolute;
    width:8px;
    height:8px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 0 12px #fff;
}

.s1{top:30px;left:50%;}
.s2{top:100px;right:40px;}
.s3{bottom:70px;right:70px;}
.s4{bottom:30px;left:50%;}
.s5{bottom:90px;left:40px;}
.s6{top:120px;left:50px;}

/* INNER RING */
.ring-inner{
    width:230px;
    height:230px;
    border:1px solid rgba(255,215,0,.4);
    animation:rotateClockwise 18s linear infinite;
}

.geometry{
    width:100%;
    height:100%;
    border-radius:50%;
    position:relative;
}

.geometry::before,
.geometry::after{
    content:"";
    position:absolute;
    inset:25px;
    border:1px solid rgba(255,215,0,.3);
    border-radius:50%;
}

.geometry::after{
    transform:rotate(45deg);
}

/* CENTER SUN */
.center-sun{
    position:absolute;
    width:90px;
    height:90px;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;
    color:#fff;

    background:
    radial-gradient(circle,
    #ffe98a 0%,
    #ffbf00 50%,
    #d08c00 100%);

    box-shadow:
    0 0 20px #ffd700,
    0 0 50px #ffd700,
    0 0 80px rgba(255,215,0,.6);

    animation:pulse 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes rotateClockwise{
    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }
}

@keyframes rotateAnti{
    from{
        transform:translate(-50%,-50%) rotate(360deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(0deg);
    }
}

@keyframes pulse{
    0%,100%{
        transform:translate(-50%,-50%) scale(1);
    }
    50%{
        transform:translate(-50%,-50%) scale(1.1);
    }
}

/* Floating Particles */
.zodiac-container::before,
.zodiac-container::after{
    content:"✦";
    position:absolute;
    color:#ffd700;
    font-size:20px;
    animation:floatStar 5s ease-in-out infinite;
}

.zodiac-container::before{
    top:40px;
    left:30px;
}

.zodiac-container::after{
    right:30px;
    bottom:50px;
    animation-delay:2s;
}

@keyframes floatStar{
    0%,100%{
        transform:translateY(0);
        opacity:1;
    }
    50%{
        transform:translateY(-20px);
        opacity:.5;
    }
}

/* RESPONSIVE */
@media(max-width:768px){

    .zodiac-container{
        width:300px;
        height:300px;
    }

    .ring-middle{
        width:230px;
        height:230px;
    }

    .ring-inner{
        width:150px;
        height:150px;
    }

    .ring-outer span{
        transform:
        rotate(calc(30deg * var(--i)))
        translateY(-124px)
        rotate(calc(-30deg * var(--i)));

        font-size:18px;
    }

    .center-sun{
        width:70px;
        height:70px;
        font-size:28px;
    }
}

@media(max-width: 600px){
  .hero-grid {
    gap: 5px;
  }
  .ring-outer span{
    top: 41%;
    left: 40%;
  }
}

.av-footer{
    background:#f8f9fc;
    border-top:1px solid #e5e7eb;
    font-family:Arial,sans-serif;
}

.av-footer-container{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
    display:grid;
    grid-template-columns:1fr .8fr 1fr;
    gap:25px;
}

.footer-col h3{
    color:#2f73dc;
    margin-bottom:20px;
    font-size:24px;
}

.footer-col p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.footer-link{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
    text-decoration:none;
    color:#222;
    transition:.3s;
}

.footer-link:hover{
    color:#2f73dc;
}

.footer-col .icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#191953;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.icon svg{
    width:20px;
    height:20px;
}

.social-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-icons a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#fff;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2f73dc;
    transition:.3s;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.social-icons a:hover{
    background:#2f73dc;
    color:#fff;
    transform:translateY(-3px);
}

.social-icons svg{
    width:20px;
    height:20px;
}

.footer-bottom{
    background:#191953;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:14px;
}
.footer-register-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:28px;

    padding:14px 24px;

    background:#ff7a00;
    color:#fff;
    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:.3s;
    box-shadow:0 10px 25px rgba(255,122,0,.25);
}

.footer-register-btn:hover{
    background:#e86c00;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,122,0,.35);
}

.footer-register-btn svg{
    flex-shrink:0;
}
@media(max-width:768px){

.av-footer-container{
    grid-template-columns:1fr;
    gap:35px;
    padding:40px 20px;
}

.footer-col{
    text-align:left;
}

}
.astro-header {
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #eeeeee;
            position: relative;
            z-index: 1000;
        }

        .astro-header-container {
            width: 100%;
            max-width: 1760px;
            min-height: 100px;
            margin: 0 auto;
            padding: 0 45px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo */

        .astro-logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .astro-logo img {
            width: 290px;
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Desktop Navigation */

        .astro-nav {
            display: flex;
            align-items: center;
            gap: 65px;
        }

        .astro-nav-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;

            color: #222222;
            text-decoration: none;
            font-size: 21px;
            font-weight: 400;
            white-space: nowrap;

            transition:
                color 0.25s ease,
                transform 0.25s ease;
        }

        .astro-nav-link:hover {
            color: #5e63f4;
            transform: translateY(-1px);
        }

        .astro-nav-link svg {
            width: 28px;
            height: 28px;
            stroke: currentColor;
            flex-shrink: 0;
        }

        /* Mobile Menu Button */

        .astro-menu-toggle {
            display: none;
            width: 44px;
            height: 44px;

            align-items: center;
            justify-content: center;

            background: transparent;
            border: 0;
            cursor: pointer;
        }

        .astro-menu-toggle span {
            position: relative;
            width: 26px;
            height: 2px;
            display: block;
            background: #222222;
            transition: 0.3s ease;
        }

        .astro-menu-toggle span::before,
        .astro-menu-toggle span::after {
            content: "";
            position: absolute;
            left: 0;
            width: 26px;
            height: 2px;
            background: #222222;
            transition: 0.3s ease;
        }

        .astro-menu-toggle span::before {
            top: -8px;
        }

        .astro-menu-toggle span::after {
            top: 8px;
        }

        .astro-menu-toggle.active span {
            background: transparent;
        }

        .astro-menu-toggle.active span::before {
            top: 0;
            transform: rotate(45deg);
        }

        .astro-menu-toggle.active span::after {
            top: 0;
            transform: rotate(-45deg);
        }

        /* Tablet */

        @media (max-width: 1200px) {
            .astro-header-container {
                min-height: 88px;
                padding: 0 28px;
            }

            .astro-logo img {
                width: 235px;
            }

            .astro-nav {
                gap: 32px;
            }

            .astro-nav-link {
                font-size: 17px;
                gap: 9px;
            }

            .astro-nav-link svg {
                width: 24px;
                height: 24px;
            }
        }

        /* Mobile */

        @media (max-width: 860px) {
            .astro-header-container {
                min-height: 72px;
                padding: 0 18px;
            }

            .astro-logo img {
                width: 185px;
            }

            .astro-menu-toggle {
                display: inline-flex;
            }

            .astro-nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;

                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;

                background: #ffffff;
                border-top: 1px solid #eeeeee;
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);

                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                pointer-events: none;

                transition:
                    opacity 0.25s ease,
                    visibility 0.25s ease,
                    transform 0.25s ease;
            }

            .astro-nav.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            .astro-nav-link {
                width: 100%;
                padding: 17px 22px;

                font-size: 16px;
                border-bottom: 1px solid #eeeeee;
            }

            .astro-nav-link:hover {
                background: #f7f7ff;
                transform: none;
            }
        }

        @media (max-width: 480px) {
            .astro-header-container {
                min-height: 66px;
                padding: 0 14px;
            }

            .astro-logo img {
                width: 155px;
            }

            .astro-menu-toggle {
                width: 40px;
                height: 40px;
            }
        }

        /* Tag Name */
.astro-card .celebrity::after {
  content: "Celebrity";
  color: #e11010;
}
.astro-card .in_demand::after {
  content: "In Demand";
  color: #22c1ccff;
}
.astro-card .must_try::after {
  content: "Must Try";
  color: #ff220c;
}
.astro-card .rising_star::after {
  content: "Rising Star";
   color: #5720a8;
}
.astro-card .top_choice::after {
  content: "Top Choice";
}
.avastro-card .top_rated::after {
  content: "Top Rated";
  color: #087c3e;
}
.astro-card .vip::after {
  content: "VIP";
  color: #087c3e;
}
.astro-card .certified::after {
  content: "Certified";
}
.astro-card .new::after {
    content: "NEW";
    color: #b02d66;
}