

/* =========================
HERO SECTION
========================= */

.hero-slider{
    position:relative;
    width:100%;
    height:40vh;
    overflow:hidden;

}

/* SLIDES */

.slide{
    position:absolute;
    top:0;
    left:100%;
    width:100%;
    height:50vh;

    transition:right 1s ease-in;
}

.slide.active{
    left:0;
    z-index:2;
}

.slide.prev{
    left:-100%;
    z-index:1;
}

/* CONTENT */

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:3;
    max-width:800px;
    text-align:center;
}

/* IMAGES */

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */

.slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

/* TEXT */

.slide-content h1{
    color:rgb(253, 241, 10);
    font-size:30px;
    margin-bottom:20px;
}

.slide-content p{
    color:white;
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:25px;
}

/* BUTTON */

.menu-toggle{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
    gap: 3px;
}



.hero-btn{
    display:inline-block;
    background:#f4c430;
    color:black;
    text-decoration:none;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    transition:all 0.3s ease;
}

.hero-btn:hover{
    background:white;
    transform:scale(1.08);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}


/* =========================
   TABLET  769px - 1024px
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .hero-slider,
    .slide {
        height: 25vh;
    }

    .slide-content {
        width: 85%;
        bottom: 10%;
    }

    .slide-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}


/* =========================
   MOBILE  max 768px
========================= */
@media (max-width: 768px) {

    .hero-slider,
    .slide {
        height: 30vh;
    }

    .slide-content {
        width: 88%;
        bottom: 8%;
        padding: 0;
    }

    .slide-content h1 {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 18px;
        letter-spacing: 0;
    }

    .slide-content p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
        margin: 4px;
        border-radius: 50px;
    }
}




/* =========================
TRUST SECTION
========================= */

.trust-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:70px 8%;
    background:#fff;
}

.trust-image{
    flex:1;
    display:flex;
    flex-direction:column; /* stack images vertically */
    gap:10px; /* space between images */
}

.trust-image img{
    width:100%;
  
    display:block;
}

.trust-content{
    flex:1;
}

.trust-content{
    flex:1;
}
@media (max-width: 768px){

    .trust-section{
        flex-direction:column;
    }

    .trust-image{
        width:100%;
        flex-wrap:wrap;
    }

    .trust-image img{
        width:100%;
        flex:1 1 100%;
    }
}


.section-tag{
color: #fb8601;
font-weight:700;
letter-spacing:2px;
font-size:14px;
}

.trust-content h2{
font-size:50px;
margin:15px 0 20px;
color:#222;
line-height:1.3;
}

.trust-content p{
color:#000000;
line-height:1.8;
margin-bottom:15px;
}

.trust-points{
margin-top:25px;
}

.trust-points div{
margin-bottom:12px;
font-weight:600;
color:#222;
}

/* =========================
   TRUST SECTION - TABLET
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .trust-section {
        flex-direction: column;
        padding: 50px 6%;
        gap: 30px;
        text-align: center;
    }

    .trust-image {
        width: 100%;
    }

    .trust-image img {
        max-width: 100%;
        border-radius: 10px;
    }

    .trust-content {
        width: 100%;
    }

    .section-tag {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .trust-content h2 {
        font-size: 30px;
        margin: 10px 0 16px;
    }

    .trust-content p {
        font-size: 15px;
        text-align: center;
    }

    .trust-points {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}


/* =========================
   TRUST SECTION - MOBILE
========================= */
@media (max-width: 768px) {

    .trust-section {
        flex-direction: column;
        padding: 40px 5%;
        gap: 20px;
        text-align: center;
    }

    /* ORDER: tag → heading → image → paragraph → points */
    .trust-image {
        order: 2;                  /* image after heading */
        width: 100%;
    }

    .trust-content {
        order: 1;                  /* content (tag + heading) first */
        width: 100%;
    }

    .trust-image img {
        max-width: 100%;
        border-radius: 10px;
    }

    .section-tag {
        display: block;
        text-align: center;
        margin-bottom: 8px;
    }

    .trust-content h2 {
        font-size: 22px;
        line-height: 1.35;
        margin: 8px 0 0;          /* no bottom margin — image comes next */
    }

    .trust-content p {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
        margin-top: 16px;         /* space after image */
    }

    .trust-points {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
    }

    .trust-points div {
        font-size: 14px;
    }

    .hero-btn {
        margin-top: 10px;
        display: inline-block;
    }
}







/**/

/* =========================
TRAINING SECTION
========================= */

.training-section{
background-image:url( "training24.jpg");
background-size:cover;
background-position:center;
background-attachment:fixed;
padding:70px 8%;
position:relative;
}




.training-overlay{
background:rgba(0,0,0,0.65);
padding:50px 30px;
border-radius:12px;
color:white;
}

.training-overlay h2{
text-align:center;
font-size:45px;
margin-bottom:40px;
}

.training-cards{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
}

.training-card{
background:white;
color:black;
padding:25px;
width:280px;
border-radius:12px;
text-align:center;
transition:0.3s ease;
}

.training-card:hover{
transform:translateY(-10px);
}

.training-btn{
    display:block;
    width:fit-content;
    margin:15px auto 0;
    padding:10px 18px;
    background:#f4c430;
    color:black;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

.training-btn:hover{
background:black;
color:white;
}

/* =========================
INVEST SECTION
========================= */

.invest-section{
padding:70px 8%;
background:#edb88c;
text-align:center;
}

.invest-section h2{
font-size:40px;
margin-bottom:35px;
color:rgb(0, 0, 0);
}

.invest-cards{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.invest-card{
background:rgb(230, 224, 224);
padding:25px;
width:250px;
border-radius:12px;
transition:0.3s ease;
}

.invest-card:hover{
transform:translateY(-10px);
background:#ffb803;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.invest-card h3{
margin-bottom:10px;
color:rgb(46, 24, 24);
}

.invest-card p{
color:rgb(0, 0, 0);
line-height:1.6;
}

/* =========================
BEE VENOM SECTION
========================= */

.venom-section{
padding:70px 8%;
background:#fff;
}

.venom-container{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.venom-text{
flex:1;
}

.venom-text h2{
font-size:38px;
color:#222;
margin-bottom:20px;
}

.venom-text p{
color:#555;
line-height:1.8;
margin-bottom:15px;
}

.venom-btn{
display:inline-block;
margin-top:20px;
padding:14px 28px;
background:#f4c430;
color:black;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:0.3s ease;
}

.venom-btn:hover{
transform:scale(1.08);
background:black;
color:white;
}

.venom-image{
flex:1;
}

.venom-image img{
width:100%;
border-radius:12px;
object-fit:cover;
}



/* =========================
   VENOM SECTION - TABLET
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .venom-section {
        padding: 50px 6%;
    }

    .venom-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .venom-text h2 {
        font-size: 28px;
    }

    .venom-text p {
        font-size: 15px;
    }

    .venom-image img {
        max-width: 100%;
    }
}


/* =========================
   VENOM SECTION - MOBILE
========================= */
@media (max-width: 768px) {

    .venom-section {
        padding: 40px 5%;
    }

    .venom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* ORDER: heading → image → text → button */
    .venom-text {
        order: 1;
        width: 100%;
    }

    .venom-image {
        order: 2;
        width: 100%;
    }

    .venom-text h2 {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 0;
    }

    .venom-text p {
        font-size: 14px;
        line-height: 1.7;
        margin-top: 16px;
        text-align: center;
    }

    .venom-image img {
        width: 100%;
        border-radius: 10px;
    }

    .venom-btn {
        padding: 11px 24px;
        font-size: 14px;
        margin-top: 16px;
    }
}


/* =========================
   INVEST SECTION - TABLET
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .invest-section {
        padding: 50px 6%;
    }

    .invest-section h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .invest-cards {
        gap: 20px;
    }

    .invest-card {
        width: calc(50% - 20px);   /* 2 cards per row on tablet */
    }
}


/* =========================
   INVEST SECTION - MOBILE
========================= */
@media (max-width: 768px) {

    .invest-section {
        padding: 40px 5%;
    }

    .invest-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.35;
    }

    .invest-cards {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .invest-card {
        width: 100%;
        max-width: 400px;
        padding: 20px;
    }

    .invest-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .invest-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* =========================
SHOP SECTION
========================= */

/* =========================
SHOP SECTION
========================= */

.shop-section{
    padding:70px 1%;
    background:#f9f9f9;
    text-align:center;
    width:100%;
}

.shop-section h2{
    font-size:42px;
    margin-bottom:10px;
}

.shop-subtitle{
    color:#666;
    margin-bottom:35px;
}

/* =========================
SHOP CAROUSEL
========================= */

.shop-carousel-wrapper{
    overflow:hidden;
    padding:10px 0;
}

.shop-carousel{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:10px 20px;
}

.shop-carousel::-webkit-scrollbar{
    display:none;
}

.shop-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
 max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}
/* =========================
SHOP CATEGORY CARDS
========================= */

.shop-card{
    background:rgb(180, 56, 56);
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:black;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.shop-card:hover{
    transform:translateY(-10px);
}

.shop-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.shop-card h3{
    padding:15px;
    font-size:18px;
}

.shop-btn-container{
    margin-top:35px;
}

.shop-btn{
    display:inline-block;
    padding:14px 28px;
    background:#f4c430;
    color:black;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.shop-btn:hover{
    transform:scale(1.08);
    background:black;
    color:white;
}

/* =========================
HEADINGS
========================= */


@media (max-width: 768px){

    .top-bar{
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .top-left{
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

}


/* =========================
HOME BLOG CAROUSEL
========================= */

.home-blog-section {
    padding: 80px 5%;
    background:#e7e6e1
}

.home-blog-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.home-blog-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.home-blog-section .section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* CAROUSEL CONTAINER */

.blog-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    cursor: grab;
}

.blog-carousel:active {
    cursor: grabbing;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-carousel {
    scrollbar-width: none;
}

/* REUSE BLOG CARD DESIGN */

.blog-carousel .blog-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

/* VIEW ALL BUTTON */

.home-blog-btn {
    text-align: center;
    margin-top: 40px;
}

.home-blog-btn .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #f5b301;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.home-blog-btn .btn:hover {
    transform: translateY(-2px);
}


.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more-btn {
    padding: 10px 18px;
    background: #f5b301;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #d89b00;
}


/* MOBILE */

@media (max-width: 768px) {

    .home-blog-section {
        padding: 60px 20px;
    }

    .home-blog-section .section-header h2 {
        font-size: 2rem;
    }

    .blog-carousel .blog-card {
        min-width: 280px;
        max-width: 280px;
    }
}



/* =========================
PRODUCT GRID
========================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}
/* =========================
PRODUCT CATEGORY
========================= */

.product-card p{
    margin:0 12px 15px;
    color:#555;
    text-align:center;
    font-size:15px;
}

/* =========================
VIEW BUTTON
========================= */

.view-btn{
    display:block;
    width:calc(100% - 20px);

    margin-top:auto;
    margin-left:10px;
    margin-right:10px;
    margin-bottom:15px;

    padding:12px;
    border:none;
    border-radius:6px;

    background:#f5b301;
    color:#000;

    font-weight:600;
    font-size:16px;
    cursor:pointer;

    transition:0.25s ease;
}

.view-btn:hover{
    background:#000;
    color:#fff;
}


/* =========================
BEE VENOM VIDEO
========================= */

.venom-image{
    width:100%;
    height:100%;
}

.venom-image iframe{
    width:100%;
    height:100%;
    min-height:400px;
    border:none;
    border-radius:12px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width:1024px){

    .product-card{
        min-width:250px;
    }

    .product-card img{
        height:220px;
    }
}

@media (max-width:768px){

    .product-card{
        min-width:220px;
        height:390px;
    }

    .product-card img{
        height:200px;
    }

    .shop-section h2{
        font-size:32px;
    }
}

@media (max-width:480px){

    .product-card{
        min-width:200px;
        height:370px;
    }

    .product-card img{
        height:180px;
    }
}


.hb-product-section {
    padding: 40px 20px;
}

.hb-title {
    text-align: center;
    font-size: 28px;
}

.hb-subtitle {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.hb-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hb-product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);


    transition: transform 0.3s ease;
}


.hb-product-card:hover {
    transform: scale(1.05);
}

.hb-product-card img {
    width: 140%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.hb-product-card h3 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.hb-product-card p {
    color: #444;
    margin-bottom: 10px;
}

.hb-view-btn {
    display: inline-block;
    padding: 8px 12px;
    background: orange;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hb-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.hb-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

/* faster, smoother feel */
.hb-product-card {
    min-width: 240px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


/* =========================
   DROPDOWN - DESKTOP
========================= */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    padding: 8px 0;
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f4c430;
    color: #000;
}


/* =========================
   HAMBURGER - DESKTOP HIDDEN
========================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}


/* =========================
   MOBILE — max 768px
========================= */
@media (max-width: 768px) {

    /* HIDE TOP BAR */
    .top-bar {
        display: none;
    }

    /* NAVBAR */
    .navbar {
        padding: 0 20px;
        height: 70px;
    }

    .logo img {
        height: 50px;
        width: auto;
    }
    .logo span {
    margin-bottom: 5px;

    font-size: 10px;
    color: #ffd501;
    font-style: italic;
}

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: flex;
    }

    /* MOBILE MENU PANEL */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 50vh;

        background: rgba(0, 0, 0, 0.97);
        border-radius: 0 0 10px 10px;

        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        padding-top: 15px;
        padding-left: 0;
        padding-right: 0;
        gap: 2px;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links li a {
        font-size: 16px;
        font-weight: 500;
        padding: 10px 18px;
        color: white;
        display: inline-block;
        border-radius: 8px;
        transition: all 0.25s ease;
    }

    .nav-links li a:hover {
        background: rgba(255,255,255,0.08);
        transform: scale(1.05);
    }

    /* STAGGERED ANIMATION */
    .nav-links.active li:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.05s; }
    .nav-links.active li:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.10s; }
    .nav-links.active li:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.15s; }
    .nav-links.active li:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.20s; }
    .nav-links.active li:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.25s; }
    .nav-links.active li:nth-child(6) { opacity:1; transform:translateY(0); transition-delay:0.30s; }
    .nav-links.active li:nth-child(7) { opacity:1; transform:translateY(0); transition-delay:0.35s; }

    /* DROPDOWN MOBILE */
    .nav-links li.dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li.dropdown > a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 0;
        min-width: 100%;
        text-align: center;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #fff !important;
        display: block;
        text-align: center;
        padding: 6px 0;
    }

    .contact-btn {
        padding: 12px 24px !important;
        border-radius: 30px !important;
        font-size: 15px !important;
    }
}


/* ACTIVE line */
.nav-links a.active {
    color: #ffffff;           /* keep text white and visible */
    position: relative;
    padding: 7px 11px;
    border-radius: 20px;
    background: transparent;  /* ← no background */
}

/* ANIMATED OUTLINE ONLY */
.nav-links a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 2px solid #f4c430;
    animation: cycleOutline 1.5s linear infinite;
}

@keyframes cycleOutline {
    0% {
        clip-path: inset(0 100% 0 0);        /* starts from left */
    }
    25% {
        clip-path: inset(0 0 0 0);           /* fully visible */
    }
    50% {
        clip-path: inset(0 0 0 0);           /* hold */
    }
    75% {
        clip-path: inset(0 0 0 100%);        /* disappears to right */
    }
    100% {
        clip-path: inset(0 100% 0 0);        /* resets */
    }
}

/* REMOVE OLD UNDERLINE ON ACTIVE */
.nav-links a.active::after {
    display: none;
}
