
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border);
    padding: 0.6rem 1rem;
}
.floating-cta .cta-call {
    background: #c8a97e;
    color: #0a0a0a;
    margin-right: 0.5rem;
}
.floating-cta .cta-wa {
    background: #25D366;
    color: #fff;
    margin-left: 0.5rem;
}
.floating-cta a {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/****  Services    ***/
.services {
    padding: 30px 0;
    background: #080000;
}
.services h2 {
    text-align: center;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    text-transform: uppercase;
    font-weight: bold;
}
.services .services_container {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}
.services .services_container .services_box {
    flex: 10%;
    max-width: 15%;
    background: #b9a0fc;
    margin: 15px;
    border-radius: 30px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    min-width: 160px;
}
.services .services_container img {
    max-width: 100%;
}
.services .services_container .services_box .content_box {
    text-align: center;
    font-family: "Manrope", sans-serif;
    color: #ffeea4;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 16px;
}


/***  Services End   ***/


/***  Testimonial Start   ***/
.section-block {
    padding: 5rem 0;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a97e;
    margin-bottom: 0.5rem;
}
.section-divider {
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #c8a97e, transparent);
    margin: 0.75rem 0 0;
}
.testimonial-card {
    background: #141414;
    border: 1px solid #c8a97e26;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.testimonial-card .quote-mark {
    font-size: 3rem;
    color: #c8a97e;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.testimonial-card p {
    color: #a09a90;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}
.testimonial-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c8a97e;
}
.testimonial-card .stars {
    text-align: left;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}
@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/***  Testimonial End   ***/

/***   Faq Start   ***/

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-card);
    transition: var(--transition);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    user-select: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Answer box JS (jQuery) dwara smooth handle hoga */
.faq-answer {
    display: none; 
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/***   Faq End   ***/

.cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #1e1e24;
    color: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 9998;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
  }
  .cookie-bar p { margin: 0; line-height: 1.4; }
  .cookie-bar button {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .cookie-bar button:hover { background: #c2185b; }

  /* Age Overlay & Modal Styling */
  .age-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
  }
  .age-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #18181c;
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    font-family: Arial, sans-serif;
    border: 1px solid #2a2a32;
  }
  .age-modal-content h2 { margin-top: 0; color: #ff4757; font-size: 1.5rem; }
  .age-modal-content p { color: #ccc; font-size: 0.95rem; line-height: 1.5; margin-bottom: 1rem; }
  .age-modal-content .disclaimer { font-size: 0.8rem; color: #888; }
  .age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .btn-yes {
    background: #2ed573;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    transition: background 0.2s;
  }
  .btn-yes:hover { background: #26af5f; }
  .btn-no {
    background: #ff4757;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    flex: 1;
    transition: background 0.2s;
  }
  .btn-no:hover { background: #eccc68; color: #000; }

  



/*** Light BG Color ***/
.bg-primary-light {
    background: rgba(185, 160, 252, .2);
}

.bg-secondary-light {
    background: rgba(252, 226, 160, .2);
}

.bg-dark-light {
    background: rgba(0, 0, 0, .1);
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.btn-primary:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-secondary:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-light:hover {
    color: var(--bs-light);
    background: var(--bs-dark);
    border-color: var(--bs-dark);
}

.btn-dark:hover {
    color: var(--bs-dark);
    background: var(--bs-light);
    border-color: var(--bs-light);
}


/*** Top Bar ***/
.top-bar {
    height: 90px;
    padding: 0 90px;
}

.top-bar img {
    max-height: 50px;
}

@media (max-width: 991.98px) {
    .top-bar {
        padding: 0 30px;
    }
}


/*** Nav Bar ***/
.nav-bar {
    margin: 0 90px;
    border-radius: 50px;
    transition: .5s;
    z-index: 999;
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0 30px;
    }
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:focus {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-light);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Service ***/
.service-item .btn-square {
    width: 100px;
    height: 100px;
}


/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}


/*** Team ***/
.btn-social {
    display: flex;
    align-items: center;
    color: #6C6C6C;
    background: var(--bs-light);
    border-radius: 30px;
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: rgba(255, 255, 255, .7);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #6C6C6C;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-dark);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-dark);
    margin-right: 10px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .7);
}

.copyright a {
    color: var(--bs-dark);
}

.copyright a:hover {
    color: var(--bs-primary);
}