:root {
    --primary-color: #df3145;
    --primary-light: #df314533;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: white;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.9;
}

.hero-section {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%); */
    background:#000;
    color: #fff;
    padding: 110px 0 80px 0;
    border-radius: 0 0 48px 48px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.stats-section {
    background: linear-gradient(90deg, #fff 60%, #ffe3ec 100%);
    border-radius: 32px;
    margin: 40px 0;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
}

.stats-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stats-section p {
    color: #888;
    font-size: 1.08rem;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.progress {
    height: 10px;
    border-radius: 5px;
}

.progress-bar {
    background-color: var(--primary-color);
}

.nav-link {
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Modern Navbar Styles */
.navbar-custom {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
    border-radius: 0 0 24px 24px;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    transition: box-shadow 0.3s;
}

.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--primary-color);
    letter-spacing: -1px;
    transition: color 0.2s;
}

.navbar-custom .navbar-brand:hover {
    color: var(--secondary-color);
}

.navbar-custom .navbar-nav .nav-link {
    position: relative;
    color: #2d1856;
    font-weight: 500;
    font-size: 1.08rem;
    margin: 0 0.7rem;
    padding: 0.5rem 0.2rem;
    transition: color 0.2s;
    border-radius: 8px;
    outline: none;
}

.navbar-custom .navbar-nav .nav-link.active,
.navbar-custom .navbar-nav .nav-link:focus {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    margin-top: 3px;
}

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

.navbar-custom .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(232,62,140,0.07);
}

.navbar-custom .navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    transition: transform 0.3s;
}

.navbar-custom .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color, #e83e8c);
}

.navbar-custom .navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 28px;
    position: relative;
    display: inline-block;
}

.navbar-custom .navbar-toggler-icon::before,
.navbar-custom .navbar-toggler-icon::after,
.navbar-custom .navbar-toggler-icon span {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: #e83e8c;
    border-radius: 2px;
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.navbar-custom .navbar-toggler-icon span {
    margin: 0;
}

/* Hamburger animation (open/close) */
.navbar-custom .navbar-toggler.collapsed .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}
.navbar-custom .navbar-toggler.collapsed .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .navbar-custom {
        border-radius: 0 0 16px 16px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .navbar-custom .navbar-nav .nav-link {
        margin: 0.2rem 0;
        padding: 0.7rem 1rem;
        font-size: 1.08rem;
        border-radius: 10px;
    }
    .navbar-custom .navbar-nav {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(44,62,80,0.07);
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }
}

/* Floating Decorative Elements for Home */
.floating-elements-home {
    position: fixed;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    top: 0;
    left: 0;
    overflow: hidden;
}

.floating-heart-home, .floating-ring-home, .floating-star-home {
    position: absolute;
    color: rgba(232, 62, 140, 0.13);
    font-size: 2.2rem;
    animation: floatHome 7s ease-in-out infinite;
    will-change: transform;
}

.floating-heart-home { top: 18%; left: 8%; animation-delay: 0s; }
.floating-ring-home { top: 60%; right: 12%; animation-delay: 2s; }
.floating-star-home { bottom: 20%; left: 25%; animation-delay: 4s; }

@keyframes floatHome {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(12deg); opacity: 0.8; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
}

/* Hero Section */
.hero-section .btn-lg {
    font-size: 1.15rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(232,62,140,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-section .btn-lg:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(232,62,140,0.13);
}
.hero-section img {
    max-width: 90%;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(44,62,80,0.13);
}

/* Trusted By Section */
.trusted-by-section {
    background: #fff;
    border-radius: 32px;
    margin-top: -40px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
    z-index: 2;
    position: relative;
}
.trusted-logo {
    height: 48px;
    opacity: 0.8;
    filter: grayscale(1) brightness(1.1);
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}
.trusted-logo:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.08) rotate(-2deg);
}

/* Feature Cards */
.feature-card.card {
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(232,62,140,0.07);
    border: none;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    z-index: 1;
}
.feature-card.card:hover {
    box-shadow: 0 8px 32px rgba(232,62,140,0.13);
    transform: translateY(-6px) scale(1.03);
}

/* How It Works */
section .rounded-circle {
    box-shadow: 0 2px 8px rgba(232,62,140,0.10);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Success Stories */
.bg-light {
    background: #f8f9fa !important;
}
.card {
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
    border: none;
    transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
    box-shadow: 0 8px 32px rgba(232,62,140,0.13);
    transform: translateY(-6px) scale(1.03);
}
.card .rounded-circle {
    border: 2px solid var(--primary-color);
}

/* App CTA Section */
.app-cta-section {
    background: linear-gradient(90deg, #fff 60%, #ffe3ec 100%);
    border-radius: 32px;
    margin: 40px 0;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
}
.app-cta-section img {
    max-width: 80%;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(232,62,140,0.10);
}
.app-cta-section .btn-lg {
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.08rem;
}

/* FAQ Section */
.faq-section .accordion-item {
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(232,62,140,0.07);
    border: none;
    overflow: hidden;
}
.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--primary-color);
    background: #fff;
    border: none;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
.faq-section .accordion-button:not(.collapsed) {
    background: #ffe3ec;
    color: #d81b60;
}
.faq-section .accordion-body {
    background: #fff;
    color: #444;
    font-size: 1.02rem;
}

/* Newsletter Section */
.newsletter-section {
    border-radius: 32px;
    margin: 40px 0;
    box-shadow: 0 4px 24px rgba(232,62,140,0.07);
    background: linear-gradient(90deg, var(--primary-color) 60%, #ff6b6b 100%) !important;
    position: relative;
    overflow: hidden;
}
.newsletter-form input[type="email"] {
    border-radius: 12px;
    border: none;
    font-size: 1.08rem;
    padding: 0.85rem 1rem;
    box-shadow: 0 2px 8px rgba(232,62,140,0.08);
}
.newsletter-form .btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(232,62,140,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.newsletter-form .btn:hover {
    background: #d81b60;
    color: #fff;
}

/* Contact Teaser Section */
.contact-teaser-section {
    border-radius: 32px;
    margin: 40px 0;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
}
.contact-teaser-section .btn-lg {
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.08rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        border-radius: 0 0 24px 24px;
        padding: 60px 0 40px 0;
    }
    .trusted-by-section, .stats-section, .app-cta-section, .newsletter-section, .contact-teaser-section {
        border-radius: 18px;
        margin: 20px 0;
    }
    .feature-card.card, .card {
        border-radius: 14px;
    }
    .newsletter-section {
        padding: 2rem 0;
    }
    .floating-elements-home {
        display: none;
    }
}

/* Hero Section Upgrades */
.hero-section {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%); */
   
    background: url('/assets/images/madhur-milan-hero-image.webp');
    background-size: cover;
    color: #fff;
    padding: 110px 0 80px 0;
    border-radius: 0 0 48px 48px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:#000;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
    /* animation: heroGradientMove 8s linear infinite alternate; */
}
@keyframes heroGradientMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 40px 60px, 60px 40px, 80px 120px; }
}

.glass-card {
    background: rgba(255,255,255,0.18);
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(44,62,80,0.13);
    padding: 2.5rem 2rem 2rem 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.25);
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #fff 60%, #ffe3ec 100%);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.02rem;
    border-radius: 999px;
    padding: 0.4rem 1.2rem 0.4rem 1rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 12px rgba(232,62,140,0.08);
    letter-spacing: 0.5px;
    border: 1.5px solid #fff3;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 0.5s;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 0.8; transform: scale(1.05); }
    70% { opacity: 0.9; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-gradient-text {
    background: linear-gradient(90deg, #fff 60%, #ffe3ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    z-index: 2;
}
.hero-highlight {
    color: var(--primary-color);
    background: linear-gradient(90deg, #e83e8c 60%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.hero-highlight-2 {
    color: #fff;
    background: linear-gradient(90deg, #fff 60%, #ffe3ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.hero-underline {
    display: block;
    width: 120px;
    height: 7px;
    background: linear-gradient(90deg, #e83e8c 60%, #ff6b6b 100%);
    border-radius: 8px;
    margin-top: -12px;
    margin-bottom: 18px;
    animation: underlineWobble 2.5s infinite alternate;
}
@keyframes underlineWobble {
    0% { transform: scaleX(1) rotate(-2deg); }
    50% { transform: scaleX(1.15) rotate(2deg); }
    100% { transform: scaleX(1) rotate(-2deg); }
}
.hero-btn {
    box-shadow: 0 2px 12px rgba(232,62,140,0.08);
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 0.85rem 2.1rem;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
    opacity: 0;
}

.pulse-animation {
    animation: pulse 2s infinite, fadeIn 0.8s ease-out forwards;
    animation-delay: 0s, 0.7s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-btn i {
    font-size: 1.1em;
}

.hero-btn:hover, .hero-btn:focus {
    box-shadow: 0 6px 24px rgba(232,62,140,0.13);
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px) scale(1.05);
}
.hero-img {
    max-width: 95%;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(44,62,80,0.13);
    margin-top: 1.5rem;
    z-index: 2;
    position: relative;
}
.scroll-down-indicator {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.scroll-down-indicator:hover {
    opacity: 1;
}

.scroll-down-indicator .arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(45deg);
    animation: floatArrow 2s ease-in-out infinite;
}

@keyframes floatArrow {
    0%, 100% { transform: translate(0, 0) rotate(45deg); }
    50% { transform: translate(0, -5px) rotate(45deg); }
}

.scroll-down-indicator .arrow-container {
    position: relative;
    width: 30px;
    height: 50px;
    margin-bottom: 5px;
}

.scroll-down-indicator .line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, rgba(223, 49, 69, 0) 100%);
    transform: translateX(-50%);
    animation: lineGrow 2s infinite;
}

@keyframes lineGrow {
    0% { height: 0; opacity: 0; }
    50% { height: 30px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

@media (max-width: 991.98px) {
    .glass-card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        border-radius: 18px;
    }
    .hero-section {
        border-radius: 0 0 24px 24px;
        padding: 60px 0 40px 0;
    }
    .hero-img {
        border-radius: 18px;
        margin-top: 1rem;
    }
    .scroll-down-indicator {
        bottom: 8px;
    }
}

/* Dashboard Glassmorphism Sidebar */
.dashboard-sidebar.glass-card {
    background: rgba(255,255,255,0.18);
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(44,62,80,0.13);
    padding: 2.2rem 1.2rem 2rem 1.2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.25);
    position: relative;
    z-index: 2;
    min-height: 420px;
    margin-bottom: 1.5rem;
}
.dashboard-avatar-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.dashboard-avatar {
    border: 4px solid #fff;
    box-shadow: 0 2px 16px 0 rgba(232,62,140,0.18), 0 0 0 8px rgba(232,62,140,0.07);
    width: 120px;
    height: 120px;
    object-fit: cover;
    background: #f8f9fa;
    transition: box-shadow 0.3s;
}
.dashboard-avatar:hover {
    box-shadow: 0 4px 32px 0 rgba(232,62,140,0.28), 0 0 0 12px rgba(232,62,140,0.13);
}
.dashboard-status-badge {
    position: absolute;
    bottom: 12px;
    right: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.dashboard-username {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d1856;
}
.dashboard-age {
    font-size: 1.05rem;
    color: #bbaadd;
}
.dashboard-btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(232,62,140,0.06);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.7);
    border: 1.5px solid #e5e5e5;
}
.dashboard-btn:hover, .dashboard-btn:focus {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 24px rgba(232,62,140,0.13);
    transform: translateY(-2px) scale(1.04);
    border-color: var(--primary-color);
}

/* Dashboard Main Cards */
.dashboard-card {
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
    border: none;
    background: linear-gradient(120deg, #fff 80%, #ffe3ec 100%);
    transition: box-shadow 0.3s, transform 0.3s;
    margin-bottom: 1.5rem;
}
.dashboard-card:hover {
    box-shadow: 0 8px 32px rgba(232,62,140,0.13);
    transform: translateY(-4px) scale(1.01);
}
.dashboard-card .card-title {
    font-weight: 700;
    font-size: 1.18rem;
    color: #2d1856;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dashboard-progress .progress-bar {
    border-radius: 8px;
    background: linear-gradient(90deg, var(--primary-color) 60%, #ff6b6b 100%);
    box-shadow: 0 2px 8px rgba(232,62,140,0.10);
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
    animation: progressBarGrow 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes progressBarGrow {
    from { width: 0; }
    to { width: 100%; }
}
.dashboard-quicksearch-form .form-control, .dashboard-quicksearch-form .form-select {
    border-radius: 10px;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(232,62,140,0.04);
    border: 1.5px solid #e5e5e5;
    transition: border-color 0.2s;
}
.dashboard-quicksearch-form .form-control:focus, .dashboard-quicksearch-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(232,62,140,0.08);
}
.dashboard-btn-cta {
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 0.85rem 2.1rem;
    box-shadow: 0 2px 12px rgba(232,62,140,0.08);
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.dashboard-btn-cta i {
    font-size: 1.1em;
}
.dashboard-btn-cta:hover, .dashboard-btn-cta:focus {
    background: var(--primary-color);
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(232,62,140,0.13);
    transform: translateY(-2px) scale(1.05);
}
.dashboard-matches-row .card {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(232,62,140,0.07);
    border: none;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
}
.dashboard-matches-row .card:hover {
    box-shadow: 0 8px 32px rgba(232,62,140,0.13);
    transform: translateY(-4px) scale(1.03);
}

@media (max-width: 991.98px) {
    .dashboard-sidebar.glass-card {
        border-radius: 18px;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        min-height: unset;
    }
    .dashboard-card {
        border-radius: 14px;
    }
    .dashboard-matches-row .card {
        border-radius: 10px;
    }
}

/* Profile Completion Circular Meter */
.profile-completion-meter-wrap {
    min-width: 140px;
    max-width: 180px;
    margin: 0 auto;
}
.profile-completion-meter {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-completion-meter svg {
    width: 110px;
    height: 110px;
    display: block;
}
.meter-bg {
    fill: none;
    stroke: #f3e6f9;
    stroke-width: 10;
}
.meter-fg {
    fill: none;
    stroke: url(#profileMeterGradient);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 282.743;
    stroke-dashoffset: 282.743;
    filter: drop-shadow(0 2px 8px #e83e8c33);
    transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1);
}
.profile-completion-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 8px #e83e8c22;
    letter-spacing: -1px;
}
.profile-completion-label {
    font-size: 1.08rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* SVG Gradient for Meter */
.profile-completion-meter svg defs {
    /* fallback for gradient */
}

@media (max-width: 991.98px) {
    .profile-completion-meter {
        width: 90px;
        height: 90px;
    }
    .profile-completion-meter svg {
        width: 90px;
        height: 90px;
    }
    .profile-completion-percent {
        font-size: 1.5rem;
    }
} 