* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html 
{
    scroll-behavior: smooth;
}

body 
{
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background-color: #fafaf8;
}

:root 
{
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --dark: #1a1a1a;
    --light: #fafaf8;
    --cream: #f5f1eb;
}

/* ===== NAVIGATION ===== */
.navbar 
{
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar-brand 
{
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-link 
{
    color: #fff !important;
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after 
{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after 
{
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero 
{
    margin: 20;
    padding: 20;
    overflow: hidden;
}

.hero-content 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 
{
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle 
{
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--gold);
}

.btn-gold 
{
    background-color: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.btn-gold:hover 
{
    background-color: var(--dark-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold 
{
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-gold:hover 
{
    background-color: var(--gold);
    color: var(--dark);
}

@keyframes fadeInUp 
{
    from 
    {
        opacity: 0;
        transform: translateY(30px);
    }

    to 
    {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTIONS ===== */
.about-image 
{
    width: 90%;
    height: 550px;
    object-fit: cover;
}

section 
{
    padding: 4rem 0;
}

.section-title 
{
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-subtitle 
{
    color: #666;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.divider 
{
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 0 2rem 0;
}

/* ===== PRODUCT CARD ===== */
.product-card 
{
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.product-image-wrapper 
{
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #f0f0f0;
}

.product-image-wrapper img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img 
{
    transform: scale(1.05);
}

.product-body 
{
    padding: 1.5rem;
    text-align: center;
}

.product-name 
{
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-category 
{
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price 
{
    font-size: 1.3rem;
    color: var(--dark-gold);
    font-weight: 700;
    margin-top: 0.5rem;
}

/* ===== WHY CHOOSE US CARDS ===== */
.why-choose-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card 
{
    background: white;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.why-choose-card::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before 
{
    transform: scaleX(1);
}

.why-choose-card:hover 
{
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.card-icon 
{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon 
{
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card h4 
{
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-choose-card p 
{
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.card-accent 
{
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.why-choose-card:hover .card-accent 
{
    bottom: -30px;
    right: -30px;
}

@media (max-width: 768px) 
{
    .why-choose-grid 
    {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .why-choose-card 
    {
        padding: 2rem 1.5rem;
    }
}

/* ===== STORIES/REELS CAROUSEL ===== */
#stories 
{
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1eb 100%);
    overflow: hidden;
    position: relative;
}

.stories-wrapper 
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-top: 2rem;
}

.stories-carousel 
{
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card 
{
    position: absolute;
    width: 300px;
    height: 480px;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.story-card:hover 
{
    border-color: var(--gold);
}

.story-inner 
{
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.gallery-video 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CARD POSITIONS */
.story-card[data-index="0"] 
{
    transform: translateX(-320px) scale(0.75) rotateY(5deg);
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.7);
}

.story-card[data-index="1"] 
{
    transform: translateX(-180px) scale(0.85) rotateY(3deg);
    z-index: 2;
    opacity: 0.8;
    filter: brightness(0.85);
}

.story-card[data-index="2"],
.story-card.active {
    transform: translateX(0) scale(1) rotateY(0);
    z-index: 5;
    opacity: 1;
    filter: brightness(1);
}

.story-card[data-index="3"] 
{
    transform: translateX(180px) scale(0.85) rotateY(-3deg);
    z-index: 2;
    opacity: 0.8;
    filter: brightness(0.85);
}

.story-card[data-index="4"] 
{
    transform: translateX(320px) scale(0.75) rotateY(-5deg);
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.7);
}

/* BUTTONS */
.story-nav 
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(100, 100, 100, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.story-nav:hover 
{
    background: var(--gold);
    transform: translateY(-50%) scale(1.15);
}

.story-prev 
{
    left: 20px;
}

.story-next 
{
    right: 20px;
}

/* RESPONSIVE */
@media (max-width: 1200px) 
{
    .story-card 
    {
        width: 250px;
        height: 420px;
    }

    .story-card[data-index="0"] 
    {
        transform: translateX(-280px) scale(0.75);
    }

    .story-card[data-index="1"] 
    {
        transform: translateX(-150px) scale(0.85);
    }

    .story-card[data-index="3"] 
    {
        transform: translateX(150px) scale(0.85);
    }

    .story-card[data-index="4"] 
    {
        transform: translateX(280px) scale(0.75);
    }
}

@media (max-width: 991px) 
{
    .stories-carousel 
    {
        height: 450px;
    }

    .story-card 
    {
        width: 220px;
        height: 380px;
    }

    .story-card[data-index="0"] 
    {
        transform: translateX(-240px) scale(0.7);
        opacity: 0.5;
    }

    .story-card[data-index="1"] 
    {
        transform: translateX(-130px) scale(0.82);
    }

    .story-card[data-index="3"] 
    {
        transform: translateX(130px) scale(0.82);
    }

    .story-card[data-index="4"] 
    {
        transform: translateX(240px) scale(0.7);
        opacity: 0.5;
    }

    .story-nav 
    {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .story-prev 
    {
        left: 10px;
    }
    
    .story-next 
    {
        right: 10px;
    }
}

@media (max-width: 767px) 
{
    #stories 
    {
        padding: 40px 20px !important;
    }

    .stories-carousel 
    {
        height: 400px;
    }

    .story-card 
    {
        width: 200px;
        height: 340px;
        border-radius: 20px;
    }

    .story-card[data-index="0"],
    .story-card[data-index="4"] 
    {
        display: none;
    }

    .story-card[data-index="1"] 
    {
        transform: translateX(-110px) scale(0.8);
    }

    .story-card[data-index="3"] 
    {
        transform: translateX(110px) scale(0.8);
    }

    .story-nav 
    {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .story-prev 
    {
        left: 5px;
    }

    .story-next 
    {
        right: 5px;
    }
}

@media (max-width: 576px) 
{
    .stories-carousel 
    {
        height: 380px;
    }

    .story-card 
    {
        width: 180px;
        height: 300px;
    }

    .story-card[data-index="1"] 
    {
        transform: translateX(-95px) scale(0.78);
    }

    .story-card[data-index="3"] 
    {
        transform: translateX(95px) scale(0.78);
    }
}


/* ===== KNOWLEDGE SECTION (We Know Jewellery) ===== */
.knowledge-images-grid 
{
    position: relative;
    height: 500px;
    width: 100%;
}

.knowledge-img 
{
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.knowledge-img:hover 
{
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.knowledge-img img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.knowledge-img:hover img 
{
    transform: scale(1.05);
}

.knowledge-img-top-right 
{
    width: 280px;
    height: 220px;
    top: 0;
    right: 0;
    border-radius: 8px;
}

.knowledge-img-bottom-left 
{
    width: 270px;
    height: 240px;
    bottom: 0;
    left: 0;
    border-radius: 8px;
}

@media (max-width: 1200px) 
{
    .knowledge-images-grid 
    {
        height: 450px;
    }

    .knowledge-img-top-right 
    {
        width: 260px;
        height: 200px;
    }

    .knowledge-img-bottom-left 
    {
        width: 250px;
        height: 220px;
    }
}

@media (max-width: 768px) 
{
    .knowledge-images-grid 
    {
        height: 400px;
        margin-top: 2rem;
    }

    .knowledge-img-top-right 
    {
        width: 220px;
        height: 170px;
    }

    .knowledge-img-bottom-left 
    {
        width: 210px;
        height: 190px;
    }
}

@media (max-width: 576px) 
{
    .knowledge-images-grid 
    {
        height: 320px;
        margin-top: 2rem;
    }

    .knowledge-img-top-right {
        width: 160px;
        height: 130px;
        top: 10px;
        right: 5px;
    }

    .knowledge-img-bottom-left {
        width: 150px;
        height: 140px;
        bottom: 10px;
        left: 5px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 0;
}

/* BRAND */
.footer-logo {
    max-width: 180px;
    margin-bottom: 12px;
}

.footer-caption {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* TITLES */
.footer-title {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

/* QUICK LINKS HORIZONTAL */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.footer-nav a {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--gold);
}

/* SOCIAL */
.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom .divider {
    margin: 0 8px;
    color: #555;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .footer-brand {
        text-align: left;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-social {
        text-align: left;
    }

    .footer-social .social-icons {
        justify-content: flex-start;
    }
}


/* ===== FORM ===== */
.form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.was-validated .form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

/* ===== VALUES SECTION ===== */
.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== COLLECTION PAGE ===== */
.filter-section {
    background-color: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.filter-btn {
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    border: 2px solid #ddd;
    background: transparent;
    color: var(--dark);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.filter-btn:hover {
    border-color: var(--gold);
}

.sort-select {
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 0.5rem;
    color: var(--dark);
    background-color: white;
    cursor: pointer;
}

.search-box input {
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 0.7rem 1rem;
    width: 100%;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #999;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    width: 100%;
    padding: 25px;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-radius: 0;
    border: none;
    margin-top: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 0;
    border: none;
    margin-top: 1rem;
}

/* ===== MAP ===== */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background-color: var(--cream);
    padding: 1rem 0;
    border-radius: 0;
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item a {
    color: var(--dark);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* ===== UTILITIES ===== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* .... */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 16px;
    }
}

/* Remove dot / underline / extra decoration */
.footer-social .social-icons,
.footer-social .social-icons a {
    list-style: none;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Make sure icons are clean */
.footer-social .social-icon {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Optional: clean focus outline */
.footer-social .social-icon:focus {
    outline: none;
}

/* ===== MOBILE HEADING CENTERING (SAFE) ===== */
@media (max-width: 768px) {
    /* Only affects "Celebrate Tradition..." and "Where Tradition..." sections */
    .about-intro-section .section-title,
    .about-intro-reversed-section .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the dividers */
    .about-intro-section .divider,
    .about-intro-reversed-section .divider {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the paragraph text */
    .about-intro-section .about-intro,
    .about-intro-section > p,
    .about-intro-reversed-section .about-intro,
    .about-intro-reversed-section > p {
        text-align: center;
    }
}

/* ===== MOBILE OUR STORY HEADING CENTERING ===== */
@media (max-width: 768px) {
    .our-story-section .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .our-story-section .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .our-story-section > .container > .row > .col-lg-6:last-child {
        text-align: center;
    }

    .our-story-section > .container > .row > .col-lg-6:last-child p {
        text-align: center;
    }
}

/* ===== MOBILE NAVBAR UNDERLINE ADJUSTMENT ===== */
@media (max-width: 991px) {
    
   .nav-link:hover::after,
   .nav-link.active::after {
   width: 20% !important;
   }

}

