:root {
    --primary-maroon: #be1586;
    --gold-gradient: linear-gradient(45deg, #e8bf3a, #e2d955, #ebc033);
    --dark-bg: #1a1a1a;
    --soft-pink: #fef1f6;
    --secondary-gold: #f8c20f;
    --text-dark: #333;
    --text-light: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-pink);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* --- Animations --- */
.animate-fadeIn {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease-in-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-in-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-in-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Navbar Styling --- */
.navbar {
    background: linear-gradient(45deg, var(--primary-maroon), #c21594) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    background: #ffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.4);
}

.navbar-brand::after {
    content: '✿';
    color: var(--secondary-gold);
    font-size: 1rem;
    position: absolute;
    bottom: -5px;
    right: -10px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 800;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-gold) !important;
    transform: translateY(-2px);
}

/* White hamburger icon */
.navbar-toggler {
    border: none;
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 26px;
    height: 2px;
    background-color: #fff;
    box-shadow:
        0 7px 0 #fff,
        0 -7px 0 #fff;
}

/* Smooth animation */
.navbar-toggler:focus {
    box-shadow: none;
}

/* Hover effect */
.navbar-toggler:hover .navbar-toggler-icon {
    opacity: 0.8;
}

@media (max-width: 991px) {
    .navbar-brand {
        margin-top: 7px; /* adjust to navbar height */
    }
}


.btn-gold {
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: scale(1.05);
    color: #727272;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.rates-display {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

.rates-display span {
    color: var(--secondary-gold);
    font-weight: bold;
}

.carousel-item img {
    height: 500px;
    width: 100%;
    object-fit: cover;

    /* Visual quality */
    filter: brightness(1.15) contrast(1.1) saturate(1.2) sharpen(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;

    /* Premium styling */
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

    /* Smooth loading */
    transition: all 0.4s ease-in-out;
}


/* Mobile fix */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
        width: auto;           /* ❗ prevent full width */
        max-width: 100%;       /* keep inside screen */
        object-fit: contain;   /* show full image */
        margin: 0 auto;        /* center image */
        display: block;
    }
}


/* Hero Carousel - Full Width Background */
.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    bottom: auto;
    left: auto;
    z-index: 3;
    text-align: right;
    width: 45%;
    max-width: 600px;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 14px 12px rgba(0, 0, 0, 0.222);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.66);
}

/* Hide prev/next buttons */
.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

/* Indicators (dots) styling */
.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-gold);
    opacity: 0.6;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--secondary-gold);
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .carousel-item {
        height: 70vh;
    }

    .hero-section {
        min-height: 70vh;
    }

    .carousel-caption {
        width: 85%;
        right: 7.5%;
    }

    .carousel-caption h1 {
        font-size: 2.8rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }
}

/* Mobile: keep face & jewelry visible */
@media (max-width: 576px) {
    .carousel-item {
        background-position: center top;
    }
}
@media (max-width: 768px) {
    .carousel-item {
        padding: 0 14px;   /* space from screen edges */
    }

    .carousel-item img {
        height: 300px;
        width: auto;
        max-width: 100%;
        object-fit: cover;
        border-radius: 14px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 35vh;
    }

    .hero-section {
        min-height: 35vh;
    }

    .carousel-caption h1 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.7rem;
    }

   .btn-gold {
        padding: 0.4rem 1rem;   /* smaller height & width */
        font-size: 0.85rem;
        border-radius: 22px;
        min-height: auto;
        margin-bottom: 20px;
    }
    .carousel-caption {
        width: 90%;
        max-width: 200px;   /* 👈 controls words per line */
        margin: 0 auto;
    }

    .carousel-caption h1,
    .carousel-caption p {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
}

.jewelry-grid {
    display: flex;
    flex-wrap: wrap;
}

.jewelry-collection-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f9f6f2);
    border-radius: 28px 28px 60px 60px;
    /* Stone / oval bottom */
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1200px;
    overflow: hidden;
    height: 100%;
}

/* Facet shine */
.jewelry-collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 215, 160, 0.35),
            transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

/*  Light reflection */
.jewelry-collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right,
            rgba(255, 215, 160, 0.25),
            transparent 60%);
    pointer-events: none;
}

/* 🪄 3D hover */
.jewelry-collection-card:hover {
    transform:
        translateY(-12px) rotateX(6deg) rotateY(-5deg) scale(1.04);
    box-shadow:
        0 28px 60px rgba(173, 17, 121, 0.3),
        0 0 0 2px var(--secondary-gold);
}

.card-img-top {
    width: 100%;
    height: 320px;
    /* Fixed height for uniform look */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.jewelry-collection-card:hover .card-img-top {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(173, 11, 119, 0.83) 0%, rgba(173, 17, 121, 0.35) 50%, transparent 100%);
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 1.2rem;
}

.jewelry-collection-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h5 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 200px;
    font-size: 1.4rem;
    text-shadow: 0 22px 20px rgba(0, 0, 0, 0.6);
}

.card-overlay p {
    font-size: 0.95rem;
    opacity: 0.95;
}

@media (max-width: 576px) {
    .card-img-top {
        height: 280px;
    }
}

/* About Section - Enhanced Styling */
.section-badge .badge {
    background-color: var(--primary-maroon);
    color: var(--secondary-gold);
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
    letter-spacing: 0.5px;
}

@media (max-width: 576px) {
    .section-badge .badge {
        display: inline-block;
        font-size: 0.85rem;
        padding: 6px 14px;
        white-space: normal;
        /* allow wrap */
        text-align: center;
        line-height: 1.3;
    }
}

.title-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

.decor-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-gold), transparent);
}

.highlight-boxes .highlight-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    text-align: center;
}

.highlight-boxes .highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(173, 17, 121, 0.18);
}

.icon-gold {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    display: block;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(173, 17, 121, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.overlay-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-align: center;
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.overlay-content h4 {
    font-weight: 800;
    margin: 0;
    font-size: 1.8rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Content Wrapper - Equal Height + Sparkles */
.about-content-wrapper {
    min-height: 620px;
    position: relative;
}

.sparkle-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(173, 17, 121, 0.06) 0%, transparent 50%);
    pointer-events: none;
    overflow: hidden;
}

.sparkle-bg::before,
.sparkle-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 10%, transparent 60%);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

.sparkle-bg::before {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.sparkle-bg::after {
    bottom: -80px;
    right: -120px;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.1);
    }
}

/* Text inner wrapper */
.text-content-inner {
    padding-right: 1.5rem;
}

/* Highlight items */
.highlight-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(173, 17, 121, 0.18);
}

.icon-gold {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-gold);
    display: block;
}

/* Image container */
.about-image-container {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* Floating badge on image */
.overlay-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.years-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-gold), #f9f295);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.years-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary-maroon);
}

.quote-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .overlay-badge {
        width: 120px;
        height: 120px;
    }

    .years-circle {
        width: 50px;
        height: 50px;
    }

    .years-number {
        font-size: 1rem;
    }
}


/* --- Section Styling --- */
.section-title {
    color: var(--primary-maroon);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '✿✿✿✿✿';
    display: block;
    font-size: 1.5rem;
    color: var(--secondary-gold);
    margin-top: 10px;
}

.text-gold {
    color: #c20890;
}

/* --- Calculator & Rates Card --- */
.custom-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e0d5d8;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-header-maroon {
    background-color: var(--primary-maroon);
    color: var(--secondary-gold);
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.rate-box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.rate-box:hover {
    transform: scale(1.05);
}

.price-up {
    color: #28a745;
    font-size: 0.9rem;
}

.price-down {
    color: #dc3545;
    font-size: 0.9rem;
}

/* --- Jewelry Gallery --- */
/* --- Optimized Jewelry Gallery --- */
.jewelry-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    /* Critical for the image zoom effect */
    border: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.jewelry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image Container & Zoom */
.img-container {
    overflow: hidden;
    height: 320px;
    /* Increased height for elegance */
    background: #f8f8f8;
}

.jewelry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.jewelry-card:hover img {
    transform: scale(1.1);
}

/* Content Overlay */
.card-body {
    padding: 1.5rem;
    text-align: center;
    background: white;
    z-index: 2;
}

.jewelry-name {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.testimonial-card {
    background-color: #fed9f261;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card i {
    color: var(--secondary-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* --- Services Section --- */
.service-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-maroon);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--secondary-gold);
}

/* --- Contact Footer --- */
.contact-section {
     background: linear-gradient(45deg, var(--primary-maroon), #c21594) !important;
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-info i {
    color: var(--secondary-gold);
    margin-right: 15px;
    font-size: 1.5rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-gold);
    transform: rotate(360deg);
}

/* --- New FAQ Section --- */
.faq-accordion .accordion-button {
    color: var(--primary-maroon);
    font-weight: 600;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-item {
    border: 1px solid #e0d5d8;
    border-radius: 10px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    .navbar-brand {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .button-gold {
        font-size: 1.8rem;
    }
}

.icon-gold {
    font-size: 32px;
    background: linear-gradient(135deg,
            #9f1994a1,
            #f6c62b,
            #d8a012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Input & Select Base Style */
.form-control,
.form-select {
    border-radius: 14px;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    /* gold border */
    padding: 12px 14px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fffaf2;
}

/* Placeholder color */
.form-control::placeholder {
    color: #b9a98a;
}

/* Focus Effect (Luxury Gold Glow) */
.form-control:focus,
.form-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background-color: #ffffff;
}

/* Label styling */
.form-label {
    font-weight: 600;
    color: #5b1753;
    margin-bottom: 6px;
}

/* Mobile optimization */
@media (max-width: 576px) {

    .form-control,
    .form-select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Active underline */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hover underline */
.navbar .nav-link:hover::after {
    width: 100%;
}

/* HOME ACTIVE BY DEFAULT */
.navbar .nav-link[href="#"] {
    color: var(--gold-gradient);
    font-weight: 600;
}

.navbar .nav-link[href="#"]::after {
    width: 100%;
}

/* REMOVE HOME ACTIVE WHEN OTHER SECTION IS TARGETED */
body:has(:target) .navbar .nav-link[href="#"] {
    color: #333;
    font-weight: 600;
}

body:has(:target) .navbar .nav-link[href="#"]::after {
    width: 0;
}


/* ACTIVE STATE USING :target */
body:has(#about:target) .nav-link[href="#about"],
body:has(#calculator:target) .nav-link[href="#calculator"],
body:has(#services:target) .nav-link[href="#services"],
body:has(#faq:target) .nav-link[href="#faq"],
body:has(#contact:target) .nav-link[href="#contact"] {
    color: var(--gold-gradient);
    font-weight: 600;
}

body:has(#about:target) .nav-link[href="#about"]::after,
body:has(#calculator:target) .nav-link[href="#calculator"]::after,
body:has(#services:target) .nav-link[href="#services"]::after,
body:has(#faq:target) .nav-link[href="#faq"]::after,
body:has(#contact:target) .nav-link[href="#contact"]::after {
    width: 100%;
}

/* ===== Scroll To Top Button ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary-maroon);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;

    /* Glow */
    box-shadow:
        0 0 8px rgba(209, 55, 212, 0.6),
        0 0 15px rgba(212, 175, 55, 0.4),
        0 0 25px rgba(212, 55, 207, 0.3);

    animation: glowPulse 2s infinite ease-in-out;
    transition: transform 0.3s ease;
}

/* Hover effect */
#scrollTopBtn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow:
        0 0 12px rgba(212, 175, 55, 0.9),
        0 0 25px rgba(212, 175, 55, 0.7),
        0 0 45px rgba(212, 175, 55, 0.6);
}

/* Glow animation */
@keyframes glowPulse {
    0% {
        box-shadow:
            0 0 6px rgba(212, 175, 55, 0.5),
            0 0 14px rgba(212, 175, 55, 0.35),
            0 0 22px rgba(212, 175, 55, 0.25);
    }

    50% {
        box-shadow:
            0 0 12px rgba(212, 175, 55, 0.9),
            0 0 28px rgba(212, 175, 55, 0.6),
            0 0 50px rgba(212, 175, 55, 0.5);
    }

    100% {
        box-shadow:
            0 0 6px rgba(212, 175, 55, 0.5),
            0 0 14px rgba(212, 175, 55, 0.35),
            0 0 22px rgba(212, 175, 55, 0.25);
    }
}

/* Mobile */
@media (max-width: 576px) {
    #scrollTopBtn {
        width: 42px;
        height: 42px;
        font-size: 16px;
        bottom: 18px;
        right: 18px;
    }
}


/* Custom Pink Alert */
.alert-pink {
    color: #6f1c72;
    /* Text color */
    background-color: #f5d0f2;
    /* Light pink background */
    border: 1px solid #6e1d7b97;
    /* Pink border */
    border-radius: 0.375rem;
    /* Rounded corners, similar to Bootstrap */
    padding: 0.75rem 1.25rem;
    /* Padding like Bootstrap alerts */
    margin-bottom: 1rem;
    font-size: 0.875rem;
    /* Slightly smaller text */
}

/* Optional: make it dismissible like Bootstrap */
.alert-pink .btn-close {
    float: right;
    font-size: 1.2rem;
    line-height: 1;
    color: #551c72;
    opacity: 0.7;
    border: none;
    background: transparent;
}

.alert-pink .btn-close:hover {
    opacity: 1;
    color: #4d1c72;
}