/* ================= FIXED TOPBAR ================= */
.alert-stack {
    position: fixed;
    top: 0px; /* navbar + topbar height */
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999; /* sabse upar */
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 400px;
    pointer-events: none;
}
.back-to-top {
    position: fixed;   /* 🔥 main fix */
    bottom: 30px;
    right: 30px;
    z-index: 9999;

    display: none; /* optional: scroll pe show karo */

    width: 45px;
    height: 45px;

    border-radius: 50%;
    background: linear-gradient(135deg, #c7af26, #f7e27a);
    color: #000;

    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: 0.3s;
}
section,
.about-section,
.premium-footer,
.hero,
.astro-hero-wrapper,
.zodiac-section,
.choose_services_row {
    background: transparent !important;
}
.alert-stack .alert {
    pointer-events: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}
@media (max-width: 576px) {
    .alert-stack {
        top: 70px;
        width: 95%;
    }
}
/* animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* track (background) */
::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}

/* thumb (scroll handle) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c7af26, #f7e27a);
    border-radius: 10px;
    
    box-shadow: 
        0 0 8px rgba(247,226,122,0.6),
        0 0 15px rgba(199,175,38,0.4);
    
    transition: 0.3s;
}

/* hover pe glow 🔥 */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f7e27a, #fff);
    
    box-shadow: 
        0 0 12px rgba(255,255,255,0.9),
        0 0 25px rgba(247,226,122,0.8);
}
::-webkit-scrollbar-thumb {
    animation: scrollGlow 3s infinite alternate;
}

@keyframes scrollGlow {
    from {
        box-shadow: 0 0 6px rgba(247,226,122,0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(247,226,122,1);
    }
}
html {
    scrollbar-width: thin;
    scrollbar-color: #f7e27a transparent;
}
body {
    background: radial-gradient(circle at top, #1a1f3a, #0d1225 80%);
}
.contact-box label {
    color: #000 !important;
    font-weight: 500;
}
.contact-box .form-control {
    color: #000 !important;
}
.contact-box ::placeholder {
    color: #666 !important;
}
.contact-box .form-control {
    background: #fff !important;
    border: 1px solid #ccc;
}
.contact-box form {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
/* sab headings white */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

/* paragraphs */
p {
    color: #ccc;
}
.text-dark {
    color: #fff !important;
}

.text-muted {
    color: #aaa !important;
}
.bg-white {
    background: rgba(255,255,255,0.05) !important;
    color: #fff !important;
}
a {
    color: #f1c40f;
}

a:hover {
    color: #fff;
}
.card {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ================= FIXED NAVBAR ================= */
.main-navbar {
   position: fixed;
   padding: 8px 0; 
    top: 0;
    width: 100%;
    z-index: 19999;
    background: transparent;
    transition: all 0.4s ease;
}
.main-navbar.sticky {
    position: fixed;
    top: 0;
    background: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    padding: 6px 0;
}
.topbar.hide {
    transform: translateY(-100%);
}

/* NAV LINK ANIMATION */
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 18px;
    padding: 12px 0;
    color: #fff;
    transition: 0.3s;
}

.main-navbar.sticky .nav-link {
    padding: 12px 0;
}

/* HOVER LINE EFFECT */
.navbar-dark .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #f1c40f;
    transition: 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover::before {
    width: 100%;
    left: 0;
}
@media (max-width: 768px) {
    .main-navbar {
        top: 0; /* 👈 IMPORTANT FIX */
    }
}
/* ================= BODY SPACE ================= */


/* ================= NAV TEXT FIX ================= */
.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
}

/* hover / active */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #f1c40f !important; /* thoda premium yellow */
}

/* ================= ICON FIX ================= */
.navbar i,
.navbar .fa,
.navbar .fab {
    color: #fff !important;
}

/* ================= DROPDOWN FIX ================= */
.dropdown-menu {
    background: #000;
    border-radius: 10px;
}

.dropdown-item {
    color: #fff;
}
.main-navbar {
    background: linear-gradient(90deg, #1a1a2e, #16213e);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.dropdown-item:hover {
    background: #222;
    color: #fff;
}

/* ================= ALERT FIX ================= */


.navbar-brand {
   display: flex;
    align-items: center;
    max-width: 60%; /* 🔥 full width mat lene do */
    flex-shrink: 1;
}

.navbar-brand img {
    height: clamp(28px, 4vw, 45px); /* 🔥 auto responsive height */
    width: auto;
    max-width: 100%
    object-fit: contain;
}
.navbar-toggler {
    flex-shrink: 0; /* 🔥 kabhi niche nahi jayega */
    margin-left: auto;
}
.main-navbar .container,
.main-navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* ❌ wrap band */
}
@media (max-width: 768px) {
    .main-navbar {
        position: fixed;
        top: 0;
        background: #000;
        padding: 10px 0;
    }
}
.main-navbar.sticky {
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 46, 0.8);
}
/*-------navbaar-----------------------*/
/* ===== HERO SECTION ===== */
/* =========================
   WRAPPER (FULL HERO BLOCK)
========================= */
.astro-hero-wrapper {
    position: relative;
    padding: 110px 20px 10px;
    background: radial-gradient(circle at top, #1c2245, #0f1530 80%);
    overflow: hidden;
}
.astro-hero-wrapper::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;

    background: linear-gradient(
        to bottom,
        rgba(5,8,22,0),
        #050816
    );
    z-index: 2;
}
.about-img {
    position: relative;
}

.about-img img {
    border-radius: 20px;
    z-index: 2;
    position: relative;
}

/* glow effect */
.about-img::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 25px;
    background: linear-gradient(45deg, gold, orange, transparent);
    filter: blur(25px);
    opacity: 0.4;
    z-index: 1;
}
.about-box {
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 30px;

    border: 1px solid rgba(255,215,0,0.15);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 0 30px rgba(255,215,0,0.05);
}
@media (max-width: 768px) {
    .astro-hero-wrapper {
        margin-top: 10px; /* 👈 navbar height ke equal */
        padding-top: 40px; /* 👈 reduce */
    }
}
@media (max-width: 480px) {
    .astro-form-header h3 {
        font-size: 16px;
        white-space: nowrap; /* ⚠️ careful use */
    }
}
/* =========================
   HERO INNER
========================= */
.hero-inner {
    min-height: 300px; /* 👈 IMPORTANT */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 120px; /* 👈 buttons ke niche space */
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    margin: auto;
}

/* =========================
   HEADING
========================= */
.hero-inner h1 {
    font-size: 3rem;
    font-weight: 700;
}
.about-section {
    background: linear-gradient(180deg, #0b0b1a 0%, #111133 100%);
    position: relative;
    z-index: 1;
}
.about-box {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.hero-inner h1 span {
    background: linear-gradient(90deg, #ffcc70, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
    .astro-form-header h3 {
        font-size: 16px; /* 👈 chhota */
        line-height: 1.3;
    }

    .astro-form-header p {
        font-size: 13px;
    }
}
/* =========================
   BUTTONS
========================= */
.btn-gold {
    background: linear-gradient(135deg, #ffcc70, #ff8c00);
    color: #000;
    border-radius: 50px;
    padding: 12px 25px;
    border: none;
}

.btn-glass {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    backdrop-filter: blur(10px);
}

/* =========================
   ZODIAC
========================= */
.zodiac {
    position: absolute;
    pointer-events: none;
    width: 500px;
    opacity: 0.08;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateZodiac 80s linear infinite;
}

@keyframes rotateZodiac {
    from { transform: translate(-50%, -50%) rotate(0); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =========================
   FORM FRAME (MAIN MAGIC)
========================= */
.astro-form-frame {
    position: relative;
    margin: 0px auto;
    margin-top: -80px;
    z-index: 3;
    max-width: 1200px;
    padding: 40px;
    border-radius: 25px;
    background: rgba(20, 25, 60, 0.75);
    border: 1px solid rgba(255, 204, 112, 0.4);
    box-shadow:
        0 0 0 2px rgba(255,204,112,0.15),
        0 20px 80px rgba(0,0,0,0.8),
        inset 0 0 40px rgba(255,204,112,0.05);
}
.hero-subtext {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
}
@media (max-width: 768px) {
    .hero-subtext {
        font-size: 14px;
        padding: 0 10px;
    }
}
.hero-subtext span {
    color: #f1c40f;
    font-weight: 600;
}
.trust {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 25px; /* 👈 buttons se gap */
    font-size: 15px;
}

.trust span {
    background: rgba(255, 215, 0, 0.1);
    color: #f1c40f;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.trust span:hover {
    background: #f1c40f;
    color: #000;
}
/* =========================
   GOLD GLOW BORDER
========================= */
.astro-form-frame::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(45deg, #ffcc70, transparent, #ff8c00);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

/* =========================
   TEMPLE CORNER ORNAMENTS
========================= */
.astro-form-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 0%, #ffcc70 2px, transparent 2px),
        radial-gradient(circle at 100% 0%, #ffcc70 2px, transparent 2px),
        radial-gradient(circle at 0% 100%, #ffcc70 2px, transparent 2px),
        radial-gradient(circle at 100% 100%, #ffcc70 2px, transparent 2px);
}
@media (max-width: 768px) {
    .hero-content h1 {
    font-size: clamp(24px, 5vw, 48px);
    width: 100%;
}
}
/* =========================
   FORM HEADER
========================= */
.astro-form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
}
.astro-form input::placeholder,
.astro-form select::placeholder {
    color: rgba(255,255,255,0.6); /* 🔥 light white */
}


.astro-form-header img {
    width: 70px;
    border-radius: 50%;
    border: 2px solid #ffcc70;
}
.hero-content {
    text-align: center;  /* 👈 sab kuch center */
    max-width: 1200px;
    margin: 0 auto;
}
/* =========================
   FORM
========================= */
.astro-form input,
.astro-form select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
}
.astro-form input:focus,
.astro-form select:focus {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
    border-color: #ffcc70;
    box-shadow: 0 0 8px rgba(255, 204, 112, 0.4);
}
.astro-form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-text-fill-color: #fff !important;
}
.astro-form input::placeholder {
    color: rgba(255,255,255,0.7);
}
.astro-form select {
    background: rgba(255,255,255,0.05) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.astro-form select option {
    background: #1a1a1a;
    color: #fff;
}
.astro-form .input-group select {
    background: #fff !important;
    color: #000 !important;
    font-weight: 500;
}
/* =========================
   SUBMIT BUTTON
========================= */
.astro-form button {
    background: linear-gradient(135deg, #ffcc70, #ff8c00);
    border: none;
    color: #000;
    border-radius: 50px;
    padding: 12px 40px;
    margin-top: 20px;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){
    .astro-form-frame {
        margin-top: -90px;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .hero-content p {
        font-size: 14px;
        padding: 0 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 768px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .zodiac {
        width: 300px;
        opacity: 0.05;
        top: 10%;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 0px; /* thoda kam */
    }
}
@media (max-width: 768px) {
    .astro-form-header {
        flex-direction: column;
        text-align: center;
    }
    .astro-form-header img {
        width: 60px;
    }
}
.knowmore {
    border-radius: 20px;
}
.hero {
    border-radius: 0 0 60px 60px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.pulse-img {
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@media (max-width: 768px) {
    .about-box {
        padding: 20px;
    }

    .about-img {
        margin-top: 30px;
    }

    .about-img::before {
        display: none; /* mobile pe glow heavy lagta hai */
    }
}
.about-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.2), transparent);
    top: -50px;
    right: 0;
    filter: blur(60px);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}
.pulse-img {
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6),
                0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2);
    transition: 0.3s;
}

.pulse-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.9),
                0 0 50px rgba(255, 215, 0, 0.6);
}

/* floating animation */
@keyframes pulse {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@media (max-width: 768px) {
    html {
        font-size: 14px; /* 👈 sab text automatically chhota */
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .contact-box .btn {
        margin-left: auto !important;
        margin-right: auto !important; /* 👈 center */
        display: block;
    }
}
/* ===== ZODIAC SECTION BACKGROUND ===== */
.choose_services_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* CARD */
.zodics_sign_tab {
    width: 150px;
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 215, 0, 0.2);

    transition: all 0.4s ease;
}

/* GLOW BORDER EFFECT */
.zodics_sign_tab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, #f1c40f, #6a11cb, #2575fc);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* HOVER EFFECT */
.zodics_sign_tab:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.zodics_sign_tab:hover::before {
    opacity: 1;
}

/* ICON */
.zodics_icon img {
    width: 70px;
    height: 70px;
    transition: 0.5s;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

/* ROTATE ON HOVER */
.zodics_sign_tab:hover .zodics_icon img {
    transform: rotate(360deg) scale(1.1);
}

/* TEXT */
.zodics_content p {
    margin-top: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    opacity: 1;
}
/* TEXT BASE */
.zodics_content p {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* UNDERLINE (hidden by default) */
.zodics_content p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #f1c40f, #6a11cb);
    transition: 0.4s ease;
    transform: translateX(-50%);
}
.zodics_sign_tab {
    background: rgba(0, 0, 0, 0.5);
}

.zodics_content p {
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.6);
}
/* HOVER EFFECT */
.zodics_sign_tab:hover .zodics_content p {
    color: #f1c40f;
    text-shadow: 0 0 8px rgba(241, 196, 15, 0.8),
                 0 0 15px rgba(241, 196, 15, 0.6);
}

/* UNDERLINE EXPAND */
.zodics_sign_tab:hover .zodics_content p::after {
    width: 100%;
}
.zodics_sign_tab.active .zodics_content p::after {
    width: 100%;
}

.zodics_sign_tab.active .zodics_content p {
    color: #f1c40f;
}

/* ACTIVE SIGN */
.zodics_sign_tab.active {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    box-shadow: 0 0 20px rgba(106,17,203,0.6);
}

/* ACTIVE ICON */
.zodics_sign_tab.active img {
    filter: drop-shadow(0 0 15px #fff);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .zodics_sign_tab {
        width: 45%;
        padding: 15px 10px;
    }

    .zodics_icon img {
        width: 55px;
        height: 55px;
    }

    .zodics_content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .zodics_sign_tab {
        width: 48%;
    }
}
.choose_services_row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Tablet */
@media (max-width: 992px) {
    .choose_services_row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .choose_services_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card full width */
.zodics_sign_tab {
    width: 100%;   /* 🔥 IMPORTANT FIX */
}
.zodics_content p {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #ffffff !important;
}

.zodiac-heading .main-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff; /* 👈 dark color (white bg pe visible) */
    position: relative;
}

/* Gradient part (Horoscope) */
.zodiac-heading .main-title span {
    background: linear-gradient(90deg, #f1c40f, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glow underline */
.zodiac-heading .main-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f1c40f, #6a11cb);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 10px;
    animation: glowLine 2s infinite alternate;
}

@keyframes glowLine {
    from { box-shadow: 0 0 5px #f1c40f; }
    to   { box-shadow: 0 0 20px #6a11cb; }
}
.shooting-star {
    position: fixed;
    top: 20%;
    left: -100px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    animation: shoot 6s linear infinite;
    z-index: -1;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(25deg);
        opacity: 1;
    }
    100% {
        transform: translateX(1500px) translateY(500px) rotate(25deg);
        opacity: 0;
    }
}
/* CARD */
.premium-product-card{
    position: relative;
    border-radius: 20px;
    overflow: hidden;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.12);

    transition: 0.4s ease;
    text-align: center;
}

/* HOVER LIFT */
.premium-product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* IMAGE */
.product-img-wrap{
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* IMAGE ZOOM */
.premium-product-card:hover img{
    transform: scale(1.1);
}

/* GOLD GLOW */
.product-img-wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(199,175,38,0.15),
        transparent 70%
    );
    opacity: 0;
    transition: 0.4s;
}

.premium-product-card:hover .product-img-wrap::after{
    opacity: 1;
}

/* CONTENT */
.product-content{
    padding: 18px;
}

/* TITLE */
.product-title{
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
}

/* PRICE */
.product-price{
    color: #f7e27a;
    font-weight: 600;
    margin-bottom: 12px;
}

/* BUTTON */
.product-btn{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;

    background: linear-gradient(135deg, #c7af26, #f7e27a);
    color: #000;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
    transition: 0.3s;
}

.product-btn:hover{
    background: #fff;
    color: #000;
}

/* OPTIONAL BADGE (if needed later) */
.product-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c7af26;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.premium-product-card{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* PREMIUM HEADING */
.premium-heading{
    max-width: 750px;
    position: relative;
}
/* CARD BASE */
.premium-card{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top, #0d1330, #050816 80%);
    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);
    transition: 0.4s ease;

    height: 100%;
}

/* 🔥 GLOW BORDER */
.premium-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    padding:1px;

    background: linear-gradient(45deg, #c7af26, transparent, #f7e27a);
    
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity:0.4;
    transition:0.4s;
}

/* HOVER BORDER GLOW */
.premium-card:hover::before{
    opacity:1;
    filter: blur(2px);
}

/* 🔥 INNER LIGHT EFFECT */
.premium-card::after{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 50% 0%, rgba(199,175,38,0.2), transparent 60%);
    opacity:0;
    transition:0.4s;
}

.premium-card:hover::after{
    opacity:1;
}

/* HOVER LIFT */
.premium-card:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(199,175,38,0.25);
}

/* ICON WRAP */
.icon-wrap{
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background: radial-gradient(circle, rgba(199,175,38,0.2), transparent);

    box-shadow: 
        0 0 15px rgba(199,175,38,0.6),
        0 0 30px rgba(199,175,38,0.3);

    transition:0.4s;
}

/* ICON IMAGE */
.icon-wrap img{
    width: 40px;
    height: 40px;
    filter: brightness(1.5) sepia(1) hue-rotate(20deg) saturate(3);
    transition:0.4s;
}

/* ICON HOVER */
.premium-card:hover .icon-wrap{
    transform: scale(1.1);
    box-shadow: 
        0 0 25px rgba(247,226,122,0.9),
        0 0 50px rgba(199,175,38,0.6);
}

/* TITLE */
.ast_service-title{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.ast_service-text{
    font-size: 14px;
    color: #f7c65c;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* MOBILE OPTIMIZATION */
@media (max-width:576px){
    .icon-wrap{
        width:60px;
        height:60px;
    }

    .icon-wrap img{
        width:30px;
        height:30px;
    }

    .ast_service-title{
        font-size:16px;
    }

    .ast_service-text{
        font-size:12px;
    }
}
/* Mobile view ke liye */
@media (max-width: 768px) {
    .main-title {
        font-size: 18px !important; /* apne hisaab se adjust kar sakte ho */
        line-height: 1.3;
    }
}
/* BACKGROUND IMAGE LAYER */
.premium-card {
    position: relative;
    overflow: hidden;
    display: flex;
}
.ast_service-item {
    height: 100%;
    display: flex;
}
.ast_service-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.ast_service-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}
.ast_service-title {
    margin-top: 10px;
    margin-bottom: 8px;
}

.ast_service-text {
    flex-grow: 1; /* 🔥 ye magic hai */
}
.service-row > [class*="col-"] {
    display: flex;
}
@media (max-width: 576px) {
    .service-row .premium-card {
        padding: 12px !important; /* pehle zyada hoga */
    }
}
@media (max-width: 576px) {
    .service-row .icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .service-row .icon-wrap img {
        width: 25px;
        height: 25px;
    }
}
@media (max-width: 576px) {
    .service-row .ast_service-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-row .ast_service-text {
        font-size: 11px;
        line-height: 1.3;
        -webkit-line-clamp: 2; /* 🔥 3 se 2 lines */
    }
}
@media (max-width: 576px) {
    .service-row .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}
.ast_service-item {
    display: flex;
    width: 100%;
}

.ast_service-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ast_service-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 🔥 Description grow karega */
.ast_service-text {
    flex-grow: 1;
}
/* 🔥 IMAGE HIDDEN BY DEFAULT */
.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: var(--bg) center/cover no-repeat;

    opacity: 0; /* hidden */
    transform: scale(1.1);
    transition: 0.5s ease;
    z-index: 0;
}

/* DARK OVERLAY (important for readability) */
.premium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: linear-gradient(
        to bottom,
        rgba(5,8,22,0.7),
        rgba(5,8,22,0.9)
    );

    z-index: 1;
}

/* 🔥 HOVER = IMAGE REVEAL */
.premium-card:hover::before {
    opacity: 0.35;  /* 👈 perfect premium level */
    transform: scale(1); /* zoom in effect */
}

/* CONTENT ABOVE */
.premium-card .ast_service-content {
    position: relative;
    z-index: 2;
}
/* SUBTITLE */
.premium-heading .subtitle{
    display: inline-block;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c7af26;

    margin-bottom: 10px;

    position: relative;
}

/* MAIN TITLE */
.premium-heading .main-title{
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* GRADIENT TEXT */
.premium-heading .main-title span{
    background: linear-gradient(90deg, #c7af26, #f7e27a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LINE UNDER */
.heading-line{
    width: 70px;
    height: 3px;
    margin: 15px auto 0;

    background: linear-gradient(90deg, #c7af26, transparent);

    border-radius: 10px;
    position: relative;
}

/* GLOW DOT */
.heading-line::after{
    content: "";
    position: absolute;
    right: 0;
    top: -2px;

    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #f7e27a;
    box-shadow: 0 0 10px #f7e27a;
}
.view-all-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 28px;
    border-radius: 50px;

    background: linear-gradient(135deg, #c7af26, #f7e27a);
    color: #000;

    font-weight: 600;
    font-size: 14px;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: 0.4s ease;
}

/* hover lift */
.view-all-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199,175,38,0.4);
    color: #000;
}

/* arrow animation */
.view-all-btn .arrow{
    transition: 0.3s;
}

.view-all-btn:hover .arrow{
    transform: translateX(5px);
}

/* subtle shine effect */
.view-all-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    transition: 0.6s;
}

.view-all-btn:hover::before{
    left: 100%;
}
/* POPUP BG */
.quick-view-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* SHOW */
.quick-view-popup.show{
    display: flex;
}

/* BOX */
.quick-view-box{
    background: #12121c;
    border-radius: 20px;
    width: 700px;
    max-width: 95%;
    padding: 20px;
    position: relative;

    animation: zoomIn 0.3s ease;
}

/* CLOSE */
.quick-close{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* CONTENT */
.quick-view-content{
    display: flex;
    gap: 20px;
    align-items: center;
}

/* IMAGE */
.quick-img img{
    width: 250px;
    border-radius: 15px;
}

/* TEXT */
.quick-info h3{
    color: #fff;
}

.qv-price{
    color: #f7e27a;
    margin: 10px 0;
}

/* MOBILE */
@media(max-width:768px){
    .quick-view-content{
        flex-direction: column;
        text-align: center;
    }

    .quick-img img{
        width: 100%;
    }
}

/* ANIMATION */
@keyframes zoomIn{
    from{ transform: scale(0.7); opacity:0; }
    to{ transform: scale(1); opacity:1; }
}
.quick-view-popup {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.quick-view-popup.show {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 576px){
    .product-title{
        font-size: 14px;
    }

    .product-price{
        font-size: 13px;
    }

    .product-btn{
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* =========================
   PREMIUM TESTIMONIAL
========================= */

.premium-testimonial-card{
    position: relative;
    background: #151933;
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    overflow: hidden;
    height: 100%;
}

/* glow effect */
.premium-testimonial-card::before{
    content:"";
    position:absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(199,175,38,0.15), transparent 70%);
    top: -40px;
    left: -40px;
    filter: blur(40px);
    opacity: 0;
    transition: 0.4s;
}

.premium-testimonial-card:hover::before{
    opacity: 1;
}

/* hover lift */
.premium-testimonial-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* quote icon */
.quote-icon{
    font-size: 40px;
    color: #c7af26;
    margin-bottom: 10px;
}

/* text */
.testimonial-text{
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* user */
.testimonial-user h5{
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.testimonial-user span{
    font-size: 12px;
    color: #c7af26;
}

/* MOBILE */
@media(max-width:768px){
    .premium-testimonial-card{
        padding:20px;
    }
}
/* GOOGLE BADGE */
.google-badge{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    background: #fff;
    color: #000;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* STARS */
.stars{
    margin-top: 10px;
    color: #f7e27a;
    font-size: 14px;
}

/* TEXT HEIGHT FIX */
.testimonial-text{
    min-height: 90px;
}

/* BETTER HOVER */
.premium-testimonial-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(199,175,38,0.2);
}

/* TEXT CLAMP (optional but sexy) */
.testimonial-text{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* CARD */
.premium-astro-card{
    background: #0b0b1a;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
    position: relative;
    max-width: 280px;
    width: 100%;
}

/* HOVER */
.premium-astro-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.25);
}

/* IMAGE */
.astro-img{
    position: relative;
    overflow: hidden;
}

.astro-img img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* IMAGE ZOOM */
.premium-astro-card:hover .astro-img img{
    transform: scale(1.1);
}

/* GOLD GLOW */
.astro-glow{
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(199,175,38,0.2), transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.premium-astro-card:hover .astro-glow{
    opacity: 1;
}

/* CONTENT */
.astro-content{
    padding: 20px;
}

.astro-content h4{
    color: #fff;
    margin-bottom: 5px;
}

.designation{
    color: #c7af26;
    font-size: 14px;
    margin-bottom: 5px;
}

.experience{
    color: #aaa;
    font-size: 13px;
}

/* BADGE */
.astro-badge{
    margin-top: 10px;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    background: linear-gradient(135deg, #c7af26, #f7e27a);
    color: #000;
    font-weight: 600;
}

/* FLOAT EFFECT */
.premium-astro-card:hover{
    animation: floatAstro 3s ease-in-out infinite;
}

@keyframes floatAstro{
    0%{ transform: translateY(0px); }
    50%{ transform: translateY(-8px); }
    100%{ transform: translateY(0px); }
}
.astro-img img{
    height: 220px;
}

@media (max-width: 576px){
    .astro-img img{
        height: 180px; /* mobile me chhota */
    }
}
/* ===== FOOTER MAIN ===== */
.premium-footer {
    position: relative;
    overflow: visible;
    background: rgba(20,25,50,0.7);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.premium-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;   /* 🔥 reflection area */
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.08) 30%,
        rgba(255,255,255,0.02) 60%,
        transparent 100%
    );
    pointer-events: none;
}
.footer-inner {
   position: relative;
    overflow: visible; /* 🔥 glow yaha free rahega */
    z-index: 2;
}
.footer-card {
    position: relative;
    background: #0b0b1a;
    border-radius: 18px;
    padding: 12px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    height: 100%;
    min-height: auto;
    gap: 6px;
}

/* 🔥 SAME AS TESTIMONIAL */
.footer-card::before{
    content:"";
    position:absolute;

    width: 140px;
    height: 140px;

    background: radial-gradient(
        circle,
        rgba(199,175,38,0.18),
        transparent 70%
    );
    z-index: -1;
    top: -40px;
    left: -40px;

    filter: blur(40px);
    opacity: 0;
    transition: 0.4s;
}
.premium-footer,
.premium-footer .row,
.premium-footer .col-md-4 {
    overflow: visible !important;
}
/* HOVER GLOW */
.footer-card:hover::before{
    opacity: -1;
}

/* 🔥 SAME SMOOTH HOVER */
.footer-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(199,175,38,0.2);
}

/* ===== ICON CIRCLE ===== */
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #f7e27a;
    border: 2px solid rgba(255,215,0,0.4);
    box-shadow: 0 0 15px rgba(255,215,0,0.5);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255,215,0,0.4); }
    50% { box-shadow: 0 0 25px rgba(255,215,0,0.9); }
    100% { box-shadow: 0 0 10px rgba(255,215,0,0.4); }
}

/* ===== TEXT ===== */
.footer-card h3,
.footer-card h4 {
    color: #f7e27a;
    margin-bottom: 10px;
}

.tagline {
    color: #ccc;
    font-size: 14px;
}
.footer-card h3 {
    margin-top: 15px;
    margin-bottom: 4px;
    font-size: 18px;
}

.footer-card h4 {
    font-size: 11px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.tagline {
    font-size: 12px;
}

.contact-item span {
    font-size: 11px;
}
/* ===== SYMBOL ===== */
.footer-symbol {
    font-size: 50px;
    margin-top: 0px;
    color: rgba(255,215,0,0.3);
}

/* ===== CONTACT ===== */
.contact-item {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    align-items: center;
}

.contact-item i {
    color: #f7e27a;
}

/* ===== LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 13px;
}

.footer-links a:hover {
    color: #f7e27a;
    transform: translateX(5px);
}

/* ===== SOCIAL ===== */
.social-icons a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin: 3px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #444;
    color: #fff;
    transition: 0.3s;
    position: relative;
    z-index: 3;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #c7af26, #f7e27a);
    color: #000;
    box-shadow: 0 0 15px rgba(255,215,0,0.7);
}

/* ===== BOTTOM ===== */
.premium-footer .row {
    display: flex;
    flex-wrap: wrap;
}

.premium-footer .col-md-4 {
    display: flex;
}

.footer-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
/* ===== MOBILE ===== */
@media(max-width:768px){
    .footer-card {
        text-align: center;
    }
}
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: #f7e27a;
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}
/* hide scrollbar (premium feel 😏) */
.premium-footer .row::-webkit-scrollbar {
    display: none;
}

.premium-footer .row {
    scrollbar-width: none;
}
.premium-footer .row {
    overflow-x: hidden; /* default */
}

@media (max-width: 768px) {
    .premium-footer .row {
        overflow-x: auto !important;
        scroll-behavior: smooth;
    }

    .premium-footer .row::-webkit-scrollbar {
        display: none;
    }
}
.footer-main-logo {
    width: 80px;   
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

/* hover thoda zoom */
.footer-main-logo:hover {
    transform: scale(1.1);
}
.footer-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 5px !important;
}

/* 🔥 GLOW CIRCLE BEHIND IMAGE */
.footer-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.4), transparent 70%);
    box-shadow: 
        0 0 20px rgba(255,215,0,0.6),
        0 0 40px rgba(255,215,0,0.4),
        0 0 60px rgba(255,215,0,0.2);
    animation: logoGlow 2.5s infinite ease-in-out;
    z-index: 1;
}

/* 🔥 ANIMATION (breathing glow) */
@keyframes logoGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}
@media (max-width: 768px) {
    .footer-main-logo {
        width: 80px;
        height: 80px;
    }
    .footer-logo::before {
        width: 80px;
        height: 80px;
    }
}
.footer-bottom {
    padding: 6px;
    font-size: 20px;
}
.footer-card * {
    margin-top: 0 !important;
}
/* one line control */
.footer-text {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(247,226,122,0.4);
    background: linear-gradient(
        90deg,
        #999,
        #fff,
        #f7e27a,
        #fff,
        #999
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
}

/* ✨ animation */
@keyframes shineText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* divider style */
.divider {
    opacity: 0.7;
    color: #f7e27a;
    text-shadow: 0 0 8px rgba(255,215,0,0.6);
}

/* 📱 mobile me thoda chota */
@media (max-width: 768px) {
    .footer-text {
        font-size: 12px;
        gap: 6px;
        background: none !important;
        -webkit-text-fill-color: #fff !important;
        color: #fff !important;
        animation: none !important;
        text-shadow: none !important;
    }
}
/* ❤️ heart ko normal red karo */
.heart {
    background: none !important;
    -webkit-text-fill-color: red !important;
    color: red !important;

    /* thoda glow bhi de dete hain 😏 */
    text-shadow: 0 0 8px rgba(255,0,0,0.6);
}
.heart {
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.2); }
    50%  { transform: scale(1); }
    75%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/* link inherits gradient */
.footer-link {
    text-decoration: none;
    position: relative;
    font-weight: 600;
}

/* hover effect 🔥 */
.footer-link:hover {
    text-shadow: 0 0 10px rgba(247,226,122,0.8);
}

/* underline animation */
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #f7e27a, #fff);
    transition: 0.4s;
}

.footer-link:hover::after {
    width: 100%;
}
.footer-link:active {
    transform: scale(0.95);
}
.dob-wrapper {
    position: relative;
}

.offer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.offer-popup.show {
    display: flex;
}

.offer-box {
    background: rgba(15,15,35,0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
    position: relative;
    animation: popupZoom 0.4s ease;
}

@keyframes popupZoom {
    from {transform: scale(0.7); opacity:0;}
    to {transform: scale(1); opacity:1;}
}

.offer-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.offer-box h3 {
    color: #fff;
    font-size: 18px;
}

.offer-box .price {
    color: #f7c873;
    font-weight: bold;
    margin-bottom: 10px;
}

.offer-close{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
}
.offer-slider {
    position: relative;
    overflow: hidden;
}

.offer-slide {
    display: none;
    text-align: center;
}

.offer-slide.active {
    display: block;
}

.offer-slide img {
    width: 100%;
    border-radius: 10px;
}
.stock-badge {
    background: #ff3b3b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin: 10px 0;
    display: inline-block;
}

.countdown {
    color: #f7c873;
    font-weight: bold;
    margin-bottom: 10px;
}

.offer-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.offer-actions .btn {
    flex: 1;
}
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff3b3b;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 20px;
    z-index: 2;
}

.offer-slide {
    position: relative;
}

.offer-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.offer-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 6px;
}
.offer-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.ad-btn {
    flex: 1;
    padding: 8px;
    font-size: 13px;
    border-radius: 8px;
    text-align: center;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: none;
}

.whatsapp-btn i {
    margin-right: 5px;
}

/* Mobile fix */
@media (max-width: 576px) {
    .offer-actions {
        flex-direction: column;
    }
}
.modal-backdrop {
    display: none !important;
}