:root {
    --primary-bg: #031424;
    --secondary-color: #ff6600;
    --navy-btn-color: #10334a;
    --white-color: #ffffff;
    --text-muted: #b5c3d0;
}
main.mt-5 {
    margin-top: 7%;
}
 /* Full-Screen Dark Outer Section */
    .product-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      padding: 80px 20px;
      background: radial-gradient(circle at 50% 20%, #171528 0%, #08080c 100%);
      overflow: hidden;
    }
 body {
      background-color: #0a0a0f;
      color: #f3f4f6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Ambient Glowing Ether / Star Energy Effect */
    .ether-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .ether-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.35;
      animation: floatOrb 12s infinite alternate ease-in-out;
    }

    .orb-1 {
      top: -10%;
      left: 10%;
      width: 400px;
      height: 400px;
      background: #7c3aed;
    }

    .orb-2 {
      bottom: -10%;
      right: 10%;
      width: 450px;
      height: 450px;
      background: #d4af37;
      animation-delay: -5s;
    }

    .orb-3 {
      top: 40%;
      left: 60%;
      width: 300px;
      height: 300px;
      background: #4f46e5;
      animation-delay: -8s;
    }

    @keyframes floatOrb {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(40px, 50px) scale(1.15); }
    }

    /* Container Structure */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Section Header */
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
    }

    .section-header p {
      color: #9ca3af;
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
    }

    /* Glassmorphic Product Card */
    .product-card {
      background: rgba(20, 20, 30, 0.65);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 16px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                  border-color 0.4s ease, 
                  box-shadow 0.4s ease;
    }

    .product-card:hover {
      transform: translateY(-8px);
      border-color: #d4af37;
      box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15), 
                  0 0 20px rgba(124, 58, 237, 0.2);
    }

    /* Image Wrapper */
    .product-image {
      position: relative;
      width: 100%;
      height: 240px;
      background: rgba(0, 0, 0, 0.4);
      overflow: hidden;
    }

    .product-image a {
      display: block;
      width: 100%;
      height: 100%;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      transition: transform 0.5s ease, opacity 0.3s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.08);
      opacity: 1;
    }

    /* Badges */
    .badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: linear-gradient(135deg, #d4af37, #b8860b);
      color: #000;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      padding: 5px 12px;
      border-radius: 20px;
      text-transform: uppercase;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    /* Card Info Content */
    .product-info {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .product-title a {
      text-decoration: none;
      color: #ffffff;
      transition: color 0.3s ease;
    }

    .product-title a:hover {
      color: #d4af37;
    }

    .product-desc {
      font-size: 0.875rem;
      color: #9ca3af;
      line-height: 1.5;
      margin-bottom: 24px;
      flex-grow: 1;
    }

    .product-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .price {
      font-size: 1.3rem;
      font-weight: 700;
      color: #ffd700;
    }

    /* Glow CTA Button */
    .add-to-cart-btn {
      display: inline-block;
      text-decoration: none;
      text-align: center;
      background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
      color: #000000;
      padding: 10px 18px;
      font-size: 0.85rem;
      font-weight: 700;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }

    .add-to-cart-btn:hover {
      background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
      box-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
      transform: scale(1.03);
    }
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
}

/* Banner Styling */
.as_banner_wrapper {
    /* background: radial-gradient(circle at center, #0a2336 0%, #031424 100%); */
    background-image: url(../image/bg1\ \(2\).jpg);
    padding: 60px 8%;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    margin-top: 60px;
}

.as_verticle_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row {
    width: 100%;
}

.col-lg-6 {
    width: 48%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .col-lg-6 {
        width: 100%;
        margin-bottom: 40px;
    }
}

/* Text Content & Slider Animation */
.as_banner_slider_container {
    position: relative;
    padding: 20px 0;
}

.as_banner_slides {
    min-height: 250px;
    position: relative;
}

.as_banner_detail {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.as_banner_detail.active {
    display: block;
    opacity: 1;
}

.as_orange {
    color: var(--secondary-color);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.as_banner_detail h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 10px 0 20px;
    font-weight: 700;
}

.as_banner_detail p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 30px;
}

/* Arrow Ribbon Buttons (Given CSS Logic) */
.as_btn {
    height: 48px;
    background-color: var(--secondary-color);
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    color: var(--white-color);
    border: none !important;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    display: none;
}

/* Side Angled Cuts for Buttons */
.as_btn:before, .as_btn:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
}

.as_btn:before {
    right: 100%;
    border-right: 15px solid var(--secondary-color);
}

.as_btn:after {
    left: 100%;
    border-left: 15px solid var(--secondary-color);
}

/* Slider Controls (Prev / Next) */
.prev_btn, .next_btn {
    background-color: var(--navy-btn-color);
    position: absolute;
    top: 40%;
    z-index: 10;
}

.prev_btn {
    left: -60px;
}

.next_btn {
    right: -60px;
}

.prev_btn:before { border-right-color: var(--navy-btn-color); }
.prev_btn:after { border-left-color: var(--navy-btn-color); }
.next_btn:before { border-right-color: var(--navy-btn-color); }
.next_btn:after { border-left-color: var(--navy-btn-color); }

/* Dots Pagination */
.slick-dots {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.slick-dots li.active {
    background: var(--secondary-color);
    width: 28px;
    border-radius: 10px;
}

/* Continuous Rotating Wheel */
.as_banner_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating_image {
    max-width: 100%;
    height: auto;
    width: 450px;
    animation: continuousRotate 35s linear infinite;
}

/* Keyframes for Rotation */
@keyframes continuousRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}








/* Padding Utilities */
.as_padderTop80 { padding-top: 80px; }
.as_padderBottom80 { padding-bottom: 80px; }

/* Main Wrapper */
.as_about_wrapper {
    background-color: #081a28;
    background-image: url(../image/bg2.jpg);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.as_about_wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.as_about_wrapper .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.as_about_wrapper .align-items-center {
    align-items: center;
}

.as_about_wrapper .col-lg-6 {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .as_about_wrapper .col-lg-6 {
        width: 100%;
        margin-bottom: 40px;
    }
}

/* --- Left Image Frame & Slider --- */
.as_about_slider_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.as_about_img_frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 440px;
    background: #0d2334;
    padding: 15px;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Bottom-Left Offset Orange Border */
.as_about_img_frame::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60%;
    height: 60%;
    border-left: 2px solid #ff6600;
    border-bottom: 2px solid #ff6600;
    z-index: 1;
    pointer-events: none;
}

.as_about_slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.as_aboutimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.as_aboutimg.active {
    opacity: 1;
}

.as_aboutimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Vertical Side Dots */
.as_slider_dots {
    list-style: none;
    padding: 0;
    margin: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.as_slider_dots li {
    width: 10px;
    height: 10px;
    background-color: #244258;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.as_slider_dots li.active {
    background-color: #ff6600;
    transform: scale(1.3);
}

/* --- Right Side Content --- */
.as_about_content .as_subheading {
    color: #ff6600;
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.as_about_content .as_heading {
    font-size: 36px;
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
}

.as_about_content .as_heading_line {
    width: 50px;
    height: 3px;
    background-color: #ff6600;
    margin-bottom: 20px;
}

.as_about_content p {
    color: #a0b3c6;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Custom Shaped Button */
.as_about_wrapper .as_btn {
    height: 48px;
    background-color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
    position: relative;
    color: #ffffff;
    border: none !important;
    outline: none;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 25px;
    cursor: pointer;
}

.as_about_wrapper .as_btn::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-right: 15px solid #ff6600;
}

.as_about_wrapper .as_btn::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 15px solid #ff6600;
}

/* Contact Expert Box */
.as_contact_expert {
    background-color: #0f2a3d;
    padding: 20px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 420px;
    margin-top: 10px;
}

.as_contact_expert .as_icon {
    width: 55px;
    height: 55px;
    background-color: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.as_contact_text .as_white {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: #ffffff;
    font-weight: 500;
}

.as_contact_text .as_orange {
    font-size: 22px;
    margin: 0;
    color: #ff6600;
    font-weight: 700;
}






/* Base Utilities */
.as_padderTop80 { padding-top: 80px; }
.as_padderBottom80 { padding-bottom: 80px; }

/* Main Wrapper with Deep Cosmic Gradient Background */
.as_service_wrapper {
    background: radial-gradient(ellipse at bottom, #0a1e30 0%, #031424 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Star Background Container */
.stars_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Star Layer 1 */
.stars_overlay .stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.5px 1.5px at 10% 15%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 25% 45%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.8), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 60% 20%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 75% 85%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 90% 35%, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 15% 80%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50% 10%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 85% 60%, rgba(255, 255, 255, 0.7), rgba(0,0,0,0));
    animation: starTwinkle 3s infinite alternate ease-in-out;
}

/* Star Layer 2 (Slightly Bigger & Offset Twinkle) */
.stars_overlay .stars2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 5% 60%, #ffcc00, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 20% 25%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 35% 90%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 55% 55%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2.5px 2.5px at 70% 15%, #ffcc00, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 80% 75%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 95% 10%, #ffffff, rgba(0,0,0,0));
    animation: starTwinkle2 4s infinite alternate ease-in-out;
}

/* Keyframes for Twinkling Stars */
@keyframes starTwinkle {
    0% { opacity: 0.3; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.4; transform: scale(1); }
}

@keyframes starTwinkle2 {
    0% { opacity: 0.8; }
    50% { opacity: 0.2; }
    100% { opacity: 0.9; }
}

/* Section Grid & Container */
.as_service_wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1; /* Keep content above stars */
}

.as_service_wrapper .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.as_service_wrapper .text-center {
    text-align: center;
}

.as_service_wrapper .col-lg-12 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.as_service_wrapper .col-lg-3 {
    width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .as_service_wrapper .col-lg-3 { width: 50%; }
}

@media (max-width: 575px) {
    .as_service_wrapper .col-lg-3 { width: 100%; }
}

/* Section Heading */
.as_service_wrapper .as_heading {
    font-size: 36px;
    text-transform: capitalize;
    margin: 0 0 10px 0;
    font-weight: 500;
    color: #ffffff;
}

.as_service_wrapper .as_heading_line {
    width: 50px;
    height: 2px;
    background-color: #ff6600;
    margin: 0 auto 15px auto;
}

.as_service_wrapper .as_font14 {
    font-size: 14px;
    color: #a0b3c6;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Service Box Cards */
.as_service_box {
    background-color: rgba(7, 39, 60, 0.85); /* Semi-transparent to let background stars subtly show */
    backdrop-filter: blur(4px);
    padding: 40px 20px;
    margin-top: 30px;
    transition: all 0.3s linear;
    border-radius: 6px;
    height: calc(100% - 30px);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.as_service_box:hover {
    transform: translateY(-6px);
    background-color: rgba(11, 49, 75, 0.95);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Dashed Icon Styling */
.as_service_box .as_icon {
    width: 80px;
    height: 80px;
    background-color: #10334a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: relative;
    transition: all 0.3s linear;
    margin-bottom: 20px;
}

.as_service_box .as_icon::after {
    border: 1px dashed #225170;
    content: '';
    position: absolute;
    left: -8px;
    top: -8px;
    bottom: -8px;
    right: -8px;
    border-radius: 100%;
}

.as_service_box .as_subheading {
    font-size: 20px;
    text-transform: capitalize;
    margin: 10px 0 15px;
    padding-bottom: 12px;
    position: relative;
    color: #ffffff;
    font-weight: 500;
}

.as_service_box .as_subheading::after {
    width: 40px;
    height: 2px;
    background-color: #ff6600;
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.as_service_box p {
    color: #a0b3c6;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Links */
.as_service_box .as_link {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 24px;
    border-bottom: 1px solid #ff6600;
    color: #ff6600;
    letter-spacing: 0.6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
}

.as_service_box .as_link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}



/* Base Utilities */
.as_padderTop80 { padding-top: 80px; }
.as_padderBottom80 { padding-bottom: 80px; }

/* Main Wrapper with Dark Background */
.as_zodiac_sign_wrapper {
	
    background: radial-gradient(ellipse at bottom, #0a1e30 0%, #031424 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
	display: none !important;
}

/* Star Background Effect Container */
.as_zodiac_sign_wrapper .stars_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.as_zodiac_sign_wrapper .stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.5px 1.5px at 10% 15%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 25% 45%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.8), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 60% 20%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 75% 85%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 90% 35%, rgba(255, 255, 255, 0.9), rgba(0,0,0,0));
    animation: starTwinkle 3s infinite alternate ease-in-out;
}

.as_zodiac_sign_wrapper .stars2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 5% 60%, #ffcc00, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 20% 25%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 35% 90%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2.5px 2.5px at 70% 15%, #ffcc00, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 80% 75%, #ffffff, rgba(0,0,0,0));
    animation: starTwinkle2 4s infinite alternate ease-in-out;
}

@keyframes starTwinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes starTwinkle2 {
    0% { opacity: 0.8; }
    100% { opacity: 0.2; }
}

/* Container & Header */
.as_zodiac_sign_wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.as_verticle_center {
    display: flex;
    align-items: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.as_zodiac_sign_wrapper .text-center { text-align: center; }
.as_zodiac_sign_wrapper .text-left { text-align: left; }

.as_zodiac_sign_wrapper .as_heading {
    font-size: 36px;
    text-transform: capitalize;
    margin: 0 0 10px 0;
    font-weight: 500;
    color: #ffffff;
}

.as_zodiac_sign_wrapper .as_heading_line {
    width: 50px;
    height: 2px;
    background-color: #ff6600;
    margin: 0 auto 15px auto;
}

.as_zodiac_sign_wrapper .as_font14 {
    font-size: 14px;
    color: #a0b3c6;
    line-height: 1.6;
    margin-bottom: 40px;
}

.as_zodiac_inner {
    margin-top: 20px;
}

/* Grid Columns */
.col-lg-3 { width: 25%; padding: 0 15px; box-sizing: border-box; }
.col-lg-6 { width: 50%; padding: 0 15px; box-sizing: border-box; }
.col-lg-12 { width: 100%; padding: 0 15px; box-sizing: border-box; }

/* Zodiac List Styling */
.as_sign_ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.as_sign_ul_right {
    align-items: flex-end;
}

/* Hexagon / Arrow Cut Box Design */
.as_sign_box {
    background-color: #0e344d;
    width: 100%;
    max-width: 230px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s linear;
    border-radius: 2px;
}

/* Left Side Arrow Cuts */
.as_sign_box::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-right: 16px solid #0e344d;
    transition: all 0.3s linear;
}

.as_sign_box::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 16px solid #0e344d;
    transition: all 0.3s linear;
}

/* Hover Effects */
.as_sign_box:hover {
    background-color: #ff6600;
    transform: translateY(-2px);
}

.as_sign_box:hover::before {
    border-right-color: #ff6600;
}

.as_sign_box:hover::after {
    border-left-color: #ff6600;
}

.as_sign_box > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
    padding-left: 5px;
}

/* Inner Icon Holder Box */
.as_sign_box .as_sign {
    background-color: #07273c;
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s linear;
    flex-shrink: 0;
}

/* Arrow Ends for Icon Box */
.as_sign_box .as_sign::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 10px solid #07273c;
}

.as_sign_box .as_sign::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 10px solid #07273c;
}

.as_sign_box h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #ffffff;
}

.as_sign_box p {
    font-size: 11px;
    margin: 0;
    color: #a0b3c6;
}

.as_sign_box:hover p {
    color: #ffffff;
}

/* Center Image Rotation */
.as_sign_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating_wheel {
    max-width: 100%;
    width: 480px;
    height: auto;
    animation: rotateWheel 40s linear infinite;
}

@keyframes rotateWheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .as_verticle_center {
        flex-direction: column;
    }

    .col-lg-3, .col-lg-6 {
        width: 100%;
    }

    .as_sign_ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
    }

    .as_sign_ul_right {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .as_sign_box {
        max-width: 45%;
    }
}

@media (max-width: 575px) {
    .as_sign_box {
        max-width: 80%;
    }
}




.testimonial-section {
  padding: 60px 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* Slider Outer Frame */
.testimonial-slider {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Slides Wrapper */
.slides-wrapper {
  position: relative;
  min-height: 220px; /* Adjust based on content height */
}

/* Individual Slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateX(20px);
}

.slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Inner Layout */
.slide-content {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.client-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  flex-shrink: 0;
}

.client-details {
  flex: 1;
}

.tagline {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.client-name {
  font-size: 1.1rem;
  color: #e67e22;
  font-weight: 600;
}

/* Prev / Next Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  transition: background 0.3s ease, color 0.3s ease;
}

.slider-btn:hover {
  background: #e67e22;
  color: #fff;
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* Navigation Dots */
.navigation-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background-color: #e67e22;
  transform: scale(1.25);
}

/* Responsive adjustments */
@media (max-width: 650px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-slider {
    padding: 30px 20px 20px;
  }

  .slider-btn {
    display: none; /* Hide arrows on mobile for cleaner view; use swipe or dots */
  }
}

/* Container Box Alignment */
.as_service_box {
  /* background: #ffffff; */
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover Effect for Card */
.as_service_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  /* border-color: #e67e22; */
}

/* Icon Wrapper Styling */
.as_service_box .as_icon {
  width: 70px;
  height: 70px;
  /* background-color: #fff4ec;  */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

/* Image/Icon Adjustment */
.as_service_box .as_icon img {
  width: 66px;       /* Fixed icon width */
  height: 66px;      /* Fixed icon height */
  object-fit: contain; /* Prevents distortion */
  display: block;
  transition: transform 0.3s ease;
}

/* Icon Hover Animation */
.as_service_box:hover .as_icon {
  /* background-color: #e67e22; */
}



/* Subheading Styling */
.as_service_box .as_subheading {
  font-size: 1.25rem;
  font-weight: 600;
  /* color: #2c3e50; */
  margin-bottom: 12px;
}

/* Description Text */
.as_service_box p {
  font-size: 0.95rem;
  line-height: 1.6;
  /* color: #666666; */
  margin-bottom: 20px;
}

/* Action Link Styling */
.as_service_box .as_link {
  font-size: 0.95rem;
  font-weight: 600;
  /* color: #e67e22; */
  text-decoration: none;
  transition: color 0.3s ease;
}

.as_service_box .as_link:hover {
  /* color: #d35400; */
  text-decoration: underline;
}




/* Footer Layout */
.site-footer {
    background: linear-gradient(180deg, #0d0f18 0%, #080910 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    color: #f8f9fa;
}

/* Background Glowing Effect */
.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.08) 0%, rgba(251, 133, 0, 0) 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
}

/* Titles */
.footer-title {
    color: #f8f9fa;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #ffb703, #fb8500);
    border-radius: 2px;
}

/* About Column */
.footer-about p {
    color: #a0a5b5;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Social Buttons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a5b5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 133, 0, 0.3);
}

/* Link Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #a0a5b5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a i {
    font-size: 0.75rem;
    color: #ffb703;
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: #ffb703;
    transform: translateX(4px);
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

/* Address List */
.address-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: #a0a5b5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.address-item i {
    color: #ffb703;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Bottom Copyright Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    background: #080910;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #71778d;
}

.footer-bottom a {
    color: #ffb703;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #fb8500;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: #71778d;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}




   /* ==========================================
           2. HEADER CONTAINER & GLASSMORPHISM
           ========================================== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: #fff;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-bottom-color: rgba(255, 183, 3, 0.25);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: padding 0.3s ease;
        }

        .site-header.scrolled .header-container {
            padding: 0.6rem 2rem;
        }

        /* ==========================================
           3. BRAND LOGO
           ========================================== */
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 700;
            color: #f8f9fa;
        }

        .brand-logo img {
            height: 75px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .brand-logo:hover img {
            transform: scale(1.05) rotate(-3deg);
        }

        .text-accent {
            color: #ffb703;
        }

        /* ==========================================
           4. NAVIGATION MENU
           ========================================== */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            font-size: 1rem;
            color: #a0a5b5;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-link:hover,
        .nav-item.active .nav-link {
            color: #b88920;
        }

        /* Animated Indicator Line */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffb703, #fb8500);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::after,
        .nav-item.active .nav-link::after {
            width: 100%;
        }

        /* ==========================================
           5. DROPDOWN MENU
           ========================================== */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dropdown-toggle i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 240px;
            background: #151824;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0.5rem 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.75rem 1.25rem;
            color: #a0a5b5;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .dropdown-item i {
            color: #ffb703;
            width: 18px;
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #ffb703;
            padding-left: 1.5rem;
        }

        /* ==========================================
           6. CTA & EXTRA BUTTONS
           ========================================== */
        .whatsapp-btn {
            font-size: 1.4rem;
            color: #25d366;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: scale(1.2) rotate(10deg);
        }

        .btn-glow {
            background: linear-gradient(135deg, #ffb703, #fb8500);
            color: #ffffff;
            padding: 0.6rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(251, 133, 0, 0.3);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-glow:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(251, 133, 0, 0.5);
        }

        /* Mobile Hamburger Icon */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: #f8f9fa;
            font-size: 1.5rem;
        }

        /* ==========================================
           7. MEDIA QUERIES (RESPONSIVE)
           ========================================== */
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 70px);
                background: #151824;
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
                transition: right 0.3s ease;
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                border: none;
                display: none;
                padding-left: 1rem;
            }

            .dropdown.open .dropdown-menu {
                display: block;
            }

            .nav-link {
                width: 100%;
            }
        }

           

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

 /* Starry Background Canvas */
    #starfield {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Section Header */
    .header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .header h2 {
      /* font-family: 'Cinzel', serif; */
      font-size: 2.8rem;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 3px;
      text-shadow: 0 0 20px var(--gold-glow);
      margin-bottom: 0.8rem;
    }

    .header p {
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 650px;
      margin: 0 auto;
    }

    /* Course Cards Grid */
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      perspective: 1000px;
    }

    /* Individual Card Style */
    .course-card {
      background: var(--card-bg);
      border: 1px solid rgba(255, 215, 0, 0.2);
      border-radius: 20px;
      padding: 2.5rem 1.5rem 2rem;
      position: relative;
      backdrop-filter: blur(14px);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .course-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
      transition: 0.6s;
    }

    .course-card:hover::before {
      left: 100%;
    }

    .course-card:hover {
      transform: translateY(-12px) rotateX(2deg);
      border-color: var(--gold-primary);
      box-shadow: 0 15px 40px var(--purple-glow), 0 0 25px var(--gold-glow);
    }

    /* Highlight Featured Card */
    .course-card.popular {
      border: 2px solid var(--gold-primary);
      background: linear-gradient(180deg, rgba(45, 20, 75, 0.85) 0%, var(--card-bg) 100%);
    }

    .badge {
      position: absolute;
      top: 15px;
      right: 20px;
      background: linear-gradient(135deg, #ffd700, #b45309);
      color: #000;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 0 10px var(--gold-glow);
    }

    /* Icon & Title */
    .card-icon {
      font-size: 3.2rem;
      margin-bottom: 1rem;
      text-shadow: 0 0 12px var(--gold-glow);
    }

    .course-title {
      font-family: 'Cinzel', serif;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .tagline {
      font-size: 0.85rem;
      color: var(--gold-primary);
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    /* Price Section */
    .price-box {
      margin-bottom: 1.5rem;
    }

    .price {
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
    }

    .currency {
      font-size: 1.2rem;
      color: var(--gold-primary);
      margin-right: 2px;
    }

    /* Features List */
    .features-list {
      list-style: none;
      margin-bottom: 2rem;
    }

    .features-list li {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
    }

    .features-list li::before {
      content: '✦';
      color: var(--gold-primary);
      margin-right: 10px;
      font-size: 0.8rem;
    }

    /* Call To Action Button */
    .cta-btn {
      width: 100%;
      padding: 0.85rem;
      border: 1px solid var(--gold-primary);
      background: transparent;
      color: var(--gold-primary);
      font-family: 'Cinzel', serif;
      font-size: 0.95rem;
      font-weight: 700;
      border-radius: 10px;
      cursor: pointer;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background: var(--gold-primary);
      color: #000;
      box-shadow: 0 0 20px var(--gold-glow);
    }

    /* Modal Overlay */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      background: #120b1f;
      border: 1px solid var(--gold-primary);
      padding: 2.5rem;
      border-radius: 15px;
      max-width: 450px;
      width: 90%;
      text-align: center;
      position: relative;
      box-shadow: 0 0 35px var(--purple-glow);
    }

    .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      color: var(--text-muted);
      font-size: 1.5rem;
      cursor: pointer;
    }

    .modal-content h3 {
      font-family: 'Cinzel', serif;
      color: var(--gold-primary);
      margin-bottom: 1rem;
    }

    .modal-content p {
      color: var(--text-light);
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }
    



/* Floating WhatsApp Button */

.whatsapp-float-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:99999;

    display:flex;
    align-items:center;
    gap:12px;

    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    text-decoration:none;

    padding:14px 20px;
    border-radius:60px;

    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    transition:.35s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float-btn:hover{
    transform:translateY(-5px) scale(1.05);
    color:#fff;
    box-shadow:0 18px 40px rgba(37,211,102,.45);
}

.whatsapp-float-btn svg{
    width:30px;
    height:30px;
    flex-shrink:0;
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media(max-width:768px){

    .whatsapp-float-btn{
        width:60px;
        height:60px;
        border-radius:50%;
        padding:0;
        justify-content:center;
        right:15px;
        bottom:15px;
    }

    .whatsapp-float-btn span{
        display:none;
    }
}




/*==============================
Reading Section
==============================*/

.mystic-reading-section{
    padding:90px 0;
    background:#f8fafc;
}

.reading-container{
    width:92%;
    max-width:1250px;
    margin:auto;
}

.reading-heading{
    text-align:center;
    margin-bottom:55px;
}

.reading-heading span{
    display:inline-block;
    color:#8b5cf6;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.reading-heading h2{
    font-size:32px;
    color:#1f2937;
    margin-bottom:18px;
    font-weight:700;
}

.reading-heading p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

/* Cards */

.reading-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.reading-box{
    position:relative;
    min-height:470px;
    border-radius:22px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    background-size:cover;
    background-position:center;
    transition:.45s;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.reading-box:hover{
    transform:translateY(-10px);
}

.tarot-reading-card{
    background-image:url("https://images.unsplash.com/photo-1518562180175-34a163b1a9a6?auto=format&fit=crop&w=1200&q=80");
}

.akashic-reading-card{
    background-image:url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=1200&q=80");
}

.reading-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(10,10,20,.88),
    rgba(10,10,20,.25),
    rgba(10,10,20,.05));
}

.reading-content{
    position:relative;
    z-index:2;
    padding:40px;
    width:100%;
}

.reading-tag{
    display:inline-block;
    background:#ffffff;
    color:#7c3aed;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.reading-content h3{
    color:#fff;
    font-size:34px;
    margin-bottom:18px;
    font-weight:700;
}

.reading-content p{
    color:#f2f2f2;
    line-height:1.8;
    font-size:16px;
    margin-bottom:30px;
}

.reading-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-learn,
.btn-book{
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.btn-learn{
    background:#ffffff;
    color:#222;
}

.btn-learn:hover{
    background:#8b5cf6;
    color:#fff;
}

.btn-book{
    background:#8b5cf6;
    color:#fff;
}

.btn-book:hover{
    background:#6d28d9;
}

/* Responsive */

@media(max-width:991px){

.reading-grid{
    grid-template-columns:1fr;
}

.reading-heading h2{
    font-size:34px;
}

.reading-box{
    min-height:430px;
}

}

@media(max-width:576px){

.mystic-reading-section{
    padding:70px 0;
}

.reading-content{
    padding:28px;
}

.reading-content h3{
    font-size:28px;
}

.reading-buttons{
    flex-direction:column;
}

.btn-learn,
.btn-book{
    width:100%;
    text-align:center;
}

.reading-heading h2{
    font-size:28px;
}

.reading-heading p{
    font-size:15px;
}

}

.testimonial-section {
        padding: 60px 20px;
        text-align: center;
    }

    .testimonial-section h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .testimonial-section p.subtitle {
        color: #777;
        margin-bottom: 35px;
    }

    .testimonial-slider {
        max-width: 1200px;
        margin: auto;
        position: relative;
        overflow: hidden;
    }

    .testimonial-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testimonial-slide {
        min-width: 33.333%;
        padding: 15px;
    }

    .testimonial-card {
        background: #fff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .testimonial-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }

    .testimonial-content {
        padding: 18px 10px 10px;
    }

    .stars {
        color: #f5b400;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .testimonial-content h3 {
        margin: 5px 0;
        font-size: 20px;
    }

    .testimonial-content p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin: 8px 0 0;
    }

    /* Buttons */
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 50%;
        background: #111;
        color: #fff;
        font-size: 25px;
        cursor: pointer;
        z-index: 5;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .slider-btn:hover {
        background: #444;
    }

    /* Dots */
    .slider-dots {
        margin-top: 25px;
    }

    .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }

    .dot.active {
        background: #111;
    }

    /* Tablet */
    @media (max-width: 900px) {
        .testimonial-slide {
            min-width: 50%;
        }
    }

    /* Mobile */
    @media (max-width: 600px) {
        .testimonial-section {
            padding: 40px 15px;
        }

        .testimonial-section h2 {
            font-size: 26px;
        }

        .testimonial-slide {
            min-width: 100%;
        }

        .testimonial-card img {
            height: 280px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
    }