@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 90px; /* exact header height */
    font-family: "Lexend", sans-serif;
    background: #000000;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}


@media (max-width: 576px) {
    body {
            padding-top: 60px;
    }
}
p {
    font-family: "Rockwell", serif;
    text-align: justify;
    font-size: 20px;
}

@media (max-width: 576px) {
    p {
    font-size: 16px;
}

}

/* Header Styles - Exact from image */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
    background: #050418;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 180, 0, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 75px;
    width: auto;
    margin-right: 15px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    font-size: 14px;
    margin: 0 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 6px 26px;
    position: relative;
    letter-spacing: 0.3px;
}

/* .desktop-nav a:hover {
    color: #ffb400;
} */

/* REMOVE OLD LINE */
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* NEW COIN + LINE IMAGE */
.desktop-nav a:not(.btn-register):hover::after,
.desktop-nav a:not(.btn-register).active::after {
    width: 45px;              /* adjust to image size */
    height: 45px;
    opacity: 1;

    background-image: url("../images/home/header/current.png"); /* YOUR IMAGE */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transform: translateX(-50%) translateY(10px);
}

/* .desktop-nav a:not(.btn-register)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffb400;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
} */

.desktop-nav a:not(.btn-register):hover::after {
    width: 100%;
}

.btn-register {
    background: linear-gradient(90deg, #FFC700 0%, #F5C037 100%);
    padding: 10px 45px !important;
    border-radius: 20px;
    color: #000 !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.2);
}

.btn-register img {
    height: 35x;
    width: 35px;
}

.btn-register:hover {
    background: linear-gradient(135deg, #f5c037 0%, #926c2d 100%);
    /* transform: translateY(-2px); */
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 150vh;
    background: #020414;
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav a.active {
    color: #ffb400;
    font-weight: 600;
    position: relative;
}

.mobile-nav a.active::after {
    content: "";
    position: absolute;
    left: 150px;
    bottom: 9px;
    width: 60px;
    height: 42px;
    background: url("../images/home/header/current.png") no-repeat center;
    background-size: contain;
}

.mobile-nav a:hover {
    color: #ffb400;
}

.mobile-nav .btn-register {
    margin-top: 20px;
    text-align: center;
    border: none;
    justify-content: center;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Active overlay */
.overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


@media (min-width: 1900px) {
    .desktop-nav a {
        font-size: 25px;
    }
    .desktop-nav {
        gap: 40px;
    }
}

@media (max-width: 1900px) {
    .desktop-nav a {
        font-size: 25px;
    }
    .desktop-nav {
        gap: 40px;
    }
}

@media (max-width: 1600px) {
    .desktop-nav a {
        font-size: 21px;
    }
    .desktop-nav {
        gap: 20px;
    }
}

@media (max-width: 1400px) {
    .desktop-nav a {
        font-size: 19px;
    }
    .desktop-nav {
        gap: 4px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    /* .swiper-slide {
            padding: 120px 40px 40px;
        }
        
        .hero-content h1 {
            font-size: 42px;
        }
        
        .hero-image img {
            max-width: 500px;
        } */

        .btn-register {
        padding: 10px 20px !important;
    }
        .desktop-nav a {
        font-size: 15px;
    }
    .logo img {
        height: 60px;
        width: auto;
        /* margin-right: 15px; */
    }
}

@media (max-width: 992px) {
    header {
        padding: 15px 30px;
        justify-content: space-between;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    header {
        padding: 12px 20px;
    }

    .logo img {
        height: 32px;
    }

    .mobile-nav {
        width: 250px;
    }
}

/* -------------------------------------------
HERO BASE
-------------------------------------------- */
/* 
/* Section */
.ws-section {
    color: #fff;
    position: relative;
    padding: 60px 0;
}

/* Title Wrapper & Ribbon */
.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.title {
    height: 56px;                 /* ðŸ”¥ FIXED HEIGHT */
    min-width: 260px;
    padding: 0 60px;              /* horizontal only */

    display: flex;                /* vertical centering */
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
    white-space: nowrap;

    background-image: url("../images/home/about/ribbon.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;

    border-radius: 8px;
    z-index: 1;
}


/* Coin bag and coin */
.ws-coinbag {
    position: absolute;
    right: -18px;
    top: -60px;
    width: 100px;
    z-index: 5;
}

@media (max-width: 768px) {
    .ws-coinbag {
        width: 90px;
        right: -20px;
        top: -55px;
    }
}

.ws-coin {
    position: absolute;
    right: 125px;
    width: 120px;
    z-index: 500;
    top: 10px;
}
@media (min-width: 1900px) {
    .ws-coin {
        right: 300px;
        width: 170px;
    }
}

@media (max-width: 1900px) {
    .ws-coin {
        right: 300px;
        width: 170px;
    }
}

@media (max-width: 1600px) {
    .ws-coin {
        right: 180px;
    }
}

@media (max-width: 1400px) {
    .ws-coin {
        right: 120px;
    }
}

@media (max-width: 1200px) {
    .ws-coin {
        right: 120px;
        width: 150px;
    }
}

@media (max-width: 768px) {
    .ws-coin {
        display: none;
    }
}


.title-img {
    margin-bottom: 40px;
}

.title-img img {
    max-width: 420px;    /* control title size */
    width: 100%;
    height: auto;
    display: block;
}
/* Description */
.ws-desc {
    font-family: "Rockwell", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 10px;
}

/* Cards */
.ws-card {
    position: relative;
    border-radius: 14px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    z-index: 0;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

/* Gradient Border */
.ws-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    padding: 3px;
    background: linear-gradient(180deg, #ffc700 0%, #99792d 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Zig-zag pattern */
.company-card > .col-12:nth-child(odd) .ws-card {
    transform: translateY(-25px);
}

.company-card > .col-12:nth-child(even) .ws-card {
    transform: translateY(25px);
}

/* Hover effect */
.ws-card:hover {
    background-color: #fec046;
    color: #000;
    transform: translateY(-5px);
}

.ws-card:hover h6 {
    color: #000;
}

/* Logo */
.ws-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Text */
.ws-card h6 {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
}

/* Button */
.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-top: 15px;
    border-radius: 6px;
    background: #ffc700;
    color: #1e1e1e;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

/* Button hover â†’ black bg, white text */
.ws-card:hover .ws-btn {
    background-color: #000;
    color: #fff;
}

/* Arrow */
.ws-btn .arrow {
    display: inline-block;
    transform: rotate(0deg); /* default pointing upward-right */
    transition: 0.7s ease;
    margin-left: 6px;
}

/* Hover â†’ arrow rotates like 2 o'clock */
.ws-card:hover .ws-btn .arrow {
    transform: rotate(-45deg) translateY(-2px);
}

@media (max-width: 992px) {
    .company-card > .col-12:nth-child(odd) .ws-card,
    .company-card > .col-12:nth-child(even) .ws-card {
        transform: translateY(0);
    }
    .ws-coin {
        position: absolute;
        right: 50px;
        top: 10px;
    }
}

@media (max-width: 575px) {
    .ws-card {
        padding: 25px 15px;
    }
    .ws-card h6 {
        font-size: 14px;
        height: auto;
        min-height: 50px;
    }
    .ws-logo {
        width: 65px;
        height: 65px;
    }
    .ws-btn {
        font-size: 13px;
        padding: 6px 15px;
    }
}

/* Fix ribbon on mobile */
@media (max-width: 576px) {
    .title-wrapper {
        text-align: center;
        width: 100%;
    }

    .title {
        padding: 12px 30px; /* reduce padding */
        font-size: 13px; /* smaller text */
        background-size: contain; /* ribbon scales correctly */
    }

    .ws-coinbag {
        width: 65px;
        right: -5px;
        top: -43px;
    }
}

/* Title Wrapper & Ribbon */
.title-wrapper-2 {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.title-2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 75px;
    color: #2b2b2b;
    border-radius: 8px;
    z-index: 1;
    background-image: url("../images/home/about/ribbon.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Coin bag and coin */
.ws-coinbag-2 {
    position: absolute;
    right: -18px;
    top: -60px;
    width: 100px;
    z-index: 5;
}

@media (max-width: 768px) {
    .ws-coinbag-2 {
        width: 90px;
        right: -20px;
        top: -55px;
    }
}

/* LEFT TEXT */
.reward-text {
    font-size: 18px;
    line-height: 1.6;
    color: #d6d6d6;
}

/* RIGHT IMAGE BOX */
.reward-img-wrapper {
    display: inline-block;
}

.reward-img {
    width: 80%;
    border-radius: 14px;
    display: block;
}

/* Floating coins top-right */
.reward-coins {
    position: absolute;
    top: -35px;
    right: -25px;
    width: 110px;
    z-index: 5;
}
@media (min-width: 1900px) {
    .reward-coins {
        right: 36px;
        width: 125px;
        top: -53px;
    }
}

@media (max-width: 1900px) {
    .reward-coins {
        right: 36px;
        width: 125px;
        top: -53px;
    }
}

@media (max-width: 1600px) {
    .reward-coins {
        right: 52px;
        width: 105px;
        top: -47px;
    }
}

@media (max-width: 1400px) {
    .reward-coins {
        top: -48px;
        right: 32px;
        width: 119px;
    }
}

 @media (max-width: 1200px) {
.reward-coins {
      top: -48px;
        right: -25px;
        width: 105px;
}

    .reward-img {
        width: 106%;
        border-radius: 14px;
        display: block;
    }
} 
@media (max-width: 992px) {
    .reward-coins {
        width: 87px;
        top: -34px;
        right: 95px;
    }
    
    .right-image{
        justify-content:center !important;
    }
}

@media (max-width: 768px) {
    .reward-coins {
        width: 79px;
        top: -15px;
        right: 137px;
    }
}

@media (max-width: 480px) {
    .reward-coins {
        top: -12px;
        right: 10px;
        width: 80px;
    }
    
    .reward-img {
        width: 97%;
    }
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .reward-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .reward-img-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .title-wrapper-2 {
        text-align: center;
        width: 100%;
    }

    .title-2 {
        padding: 12px 30px; /* reduce padding */
        font-size: 13px; /* smaller text */
        background-size: contain; /* ribbon scales correctly */
    }

    .ws-coinbag-2 {
        width: 68px;
        right: -7px;
        top: -37px;
    }
}

.core-business-section {
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Floating Coins */
.coins-left {
    position: absolute;
    left: 60px;
    bottom: 40px;
    width: 100px;
    opacity: 0.9;
}
.coins-right {
    position: absolute;
    right: 62px;
    top: 29px;
    width: 100px;
    opacity: 0.9;
}

.card-wrapper {
    position: relative; /* required for absolutely positioned pseudo-element */
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    overflow: visible; /* let glow overflow the card */
}

.card-wrapper::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    filter: none; /* sharp outside the card */
    z-index: 1; /* behind the card but above section bg */
    pointer-events: none;
}

.glow-1::before {
    background: radial-gradient(
        circle,
        #b7ff00 0%,
        #75d300 70%,
        rgba(0, 0, 0, 0) 100%
    );
    top: -20px;
    left: -20px;
}

.glow-2::before {
    background: radial-gradient(circle, #00e5ff, #0074ff);
    top: -25px;
    right: -18px;
}

.glow-3::before {
    background: radial-gradient(
        circle,
        #b7ff00 0%,
        #75d300 70%,
        rgba(0, 0, 0, 0) 100%
    );
    bottom: -18px;
    right: -16px;
}

.glow-4::before {
    background: radial-gradient(circle, #00e5ff, #0074ff);
    bottom: -20px;
    right: -20px;
}

.glow-5::before {
    background: radial-gradient(
        circle,
        #b7ff00 0%,
        #75d300 70%,
        rgba(0, 0, 0, 0) 100%
    );
    top: -22px;
    left: -22px;
}

.glow-6::before {
    background: radial-gradient(circle, #00e5ff, #0074ff);
    top: -20px;
    right: -20px;
}

.glow-7::before {
    background: radial-gradient(
        circle,
        #b7ff00 0%,
        #75d300 70%,
        rgba(0, 0, 0, 0) 100%
    );
    bottom: -20px;
    right: -15px;
}

/* The glass card */
.core-card {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 20px;
    height: 360px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid;
    border-image-source: radial-gradient(
            69.43% 69.43% at 50% 50%,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
        ),
        radial-gradient(
            60% 51.57% at 50% 50%,
            #17b384 0%,
            rgba(23, 179, 132, 0) 100%
        ),
        radial-gradient(
            54.8% 53% at 50% 50%,
            #151515 0%,
            rgba(21, 21, 21, 0) 100%
        );

    border-image-slice: 1;

    text-align: center;
    overflow: visible;
}

/* Glow behind the card */
.glow-ball {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #b7ff00, #75d300);

    top: -40px;
    left: -40px;

    z-index: 1; /* BELOW the card */
    pointer-events: none;
}

/* Make sure content is above glows */
.core-card img,
.core-card p {
    position: relative;
    z-index: 5;
}

.core-card .service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.core-desc {
    padding: 10px 11px;
    text-align: center;
    font-size: 15px;
}

/* Bottom text */
.core-bottom-text {
    font-size: 16px;
    max-width: 900px;
    margin: auto;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .core-ribbon {
        font-size: 16px;
        padding: 10px 30px;
    }

    .service-icon {
        width: 45px;
    }

    .card-content p {
        font-size: 13px;
    }

    .coins-left,
    .coins-right {
        width: 70px;
        opacity: 0.7;
    }

    .core-subtitle,
    .core-bottom-text {
        font-size: 14px;
    }
    
    .core-card .service-icon {
        width: 75%;
        height: auto;
        margin-bottom: 15px;
    }
}

@media (min-width: 1601px) {
    .coins-right {
        right: 150px;
        top: 29px;
        width: 100px;
    }
    .coins-left {
        left: 150px;
        bottom: 150px;
    }
}

@media (max-width: 1600px) {
    .coins-right {
        top: 12px;
    }
    .coins-left {
        left: 95px;
        bottom: 229px;
        width: 100px;
    }
}

@media (max-width: 1400px) {
    .coins-right {
        right: 10px;
        top: 8px;
        width: 80px;
    }

    .coins-left {
        left: 85px;
        bottom: 212px;
        width: 80px;
    }
}

/* @media (max-width: 1200px) {
.reward-coins {
    width: 110px;
    top: -48px;
}
} */
@media (max-width: 992px) {
    .reward-coins {
        width: 79px;
        top: -32px;
        right: 130px;
    }
}

@media (max-width: 768px) {
    .reward-coins {
        width: 79px;
        top: -15px;
        right: 137px;
    }
}

@media (max-width: 480px) {
    .reward-coins {
        top: -12px;
        right: 10px;
        width: 80px;
    }
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .reward-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .reward-img-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {

    .card-wrapper::before {
        width: 75px;
        height: 75px;
    }

    .coins-right {
        display: none;
    }

    .glow-1::before {
        top: -17px;
        left: -10px;
    }

    .glow-2::before {
        top: -23px;
        right: -6px;
    }

    .glow-3::before {
        bottom: -16px;
        right: -9px;
    }

    .glow-4::before {
        bottom: -29px;
        right: -5px;
    }

    .glow-5::before {
        bottom: -22px;
        left: -7px;
    }

    .glow-6::before {
        top: -16px;
        right: -6px;
    }

    .glow-7::before {
        bottom: -22px;
        right: -7px;
    }

    .coins-left {
        display:none;
    }
}

/* iPad Pro & large tablets â€“ 3 cards per row */
@media (min-width: 992px) and (max-width: 1024px) {

    .company-card > [class*="col-"] {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }

    .company-card .ws-card {
        transform: translateY(0) !important;
        padding: 25px 20px !important;
    }

    .card-wrapper {
        padding: 10px !important;
    }

    .core-desc {
        padding: 10px 0 !important;
        font-size: 14px;
    }

    .coins-right {
        right: 62px !important;
        width: 70px !important;
    }

    .coins-left {
        left: 60px !important;
        bottom: 203px !important;
        width: 70px !important;
    }

    .ws-logo {
        max-width: 120px !important;
    }
}


.stage-section {
    background: #f7c41c;
    padding: 100px 0 60px;
    background-image:  url("../images/home/cta/img-3.webp");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* FIXED TOP LIGHTS */
.lights-img {
    position: absolute;
    top: 0;
    right: -6%;
    transform: translateX(-50%);
    width: 30%;
    pointer-events: none;
    z-index: 10;
}

.stage-img {
    width: 80%;
    max-width: 500px;
    position: relative;
    z-index: 5;
}

/* Gifts */
.gift-img {
    width: 70%;
    max-width: 260px;
    margin-bottom: 20px;
}

/* Title */
.stage-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
}

/* Subtext */
.stage-sub {
    font-size: 20px;
    margin-top: 10px;
    color: #000000;
    font-weight: 400;
}

@media (min-width: 1800px) {
    .lights-img {
        position: absolute;
        top: 0;
        right: 8%;
        transform: translateX(-53%);
        width: 21%;
    }
}
/* Responsive Fix */
@media (max-width: 768px) {
    .lights-img {
        display: none;
    }

    .stage-img {
        width: 95%;
    }

    .gift-img {
        width: 55%;
    }

    .stage-title {
        font-size: 25px;
    }

    .stage-sub {
        font-size: 16px;
    }
}



.ws-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 10px;
}

/* Newsletter */
.ws-newsletter {
    text-align: center;
}

.ws-newsletter h2 {
    font-family: "Rockwell", serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3px;
}

.ws-newsletter h4 {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
    letter-spacing: 3px;
    font-family: "Rockwell", serif;
}

.ws-newsletter-form {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
}

.ws-input-group {
    text-align: left;
}

.ws-input-group label {
    font-size: 25px;
    font-family: "Rockwell", serif;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}

.ws-input-group input {
    width: 400px;
    height: 42px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #f5c400;
    outline: none;
    padding: 0 15px;
    color: #fff;
}

.ws-newsletter-new {
    background: #000;
    padding: 25px 5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row !important;
    flex-direction: column;
    gap:20px;
    border-radius: 6px;
}
.ws-btn-footer {
    background: #f4c400;
    color: #000;
    padding: 10px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ws-footer {
    color: #fff;
    padding: 40px 0 20px;
}

.ws-footer-logo {
    max-width: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items:center;
    justify-content:center;
}



.ws-tagline {
    color: #f4c400;
    font-weight: 600;
    margin-bottom: 10px;
    margin-bottom: 15px !important;
    letter-spacing: 1px;
    line-height: normal;
    font-size: 13px;
}

.ws-footer-title {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: flex;
}

.ws-footer-links {
    list-style: none;
    padding: 0;
}

.ws-footer-links li {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: "Rockwell", serif;
}



@media (max-width: 576px) {
    .ws-footer-links li {
        font-size: 15px;
    }
}
.ws-footer-links li:hover {
    color: #f4c400;
}

.ws-social {
    margin-top: 0px;
    display: flex;
}

.ws-social a {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.ws-arrow {
    width: 14px;
}

.ws-footer-links li:hover .ws-arrow {
    transform: rotate(-35deg); /* 2 oâ€™clock direction */
}

.ws-social img {
    width: 20px;
    height: auto;
}

.ws-social a:hover {
    transform: translateY(-3px);
}

.ws-icon {
    width: 18px;
    margin-top: 4px;
}

.ws-address {
    list-style: none;
    padding: 0;
}

.ws-address li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size:13px;
    margin-bottom: 7px;
    color: #fff;
    text-align: left;
    font-family: "Rockwell", serif;
}


.ws-address span {
    color: #f4c400;
    margin-right: 8px;
}

.ws-footer-line {
    border: 1px solid #FFFFFF;
    margin: 10px 0 10px;
    height:1px;
}

.ws-footer-bottom {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.ws-footer-bottom span {
    color: #fff;
}

.ws-footer-links li a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Arrow animation */
.ws-footer-links li a:hover .ws-arrow {
    transform: rotate(-35deg);
}

.ws-address-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ws-address-link:hover {
    color: #f4c400; /* gold */
}

.ws-address-link:hover .ws-icon {
    filter: brightness(0) saturate(100%) invert(70%) sepia(80%) saturate(400%) hue-rotate(5deg);
}


@media (max-width: 1900px) {
    .ws-footer-title {
        font-size: 18px !important;
    }
    
    .ws-address li {
        font-size: 15px !important;
    }
    .ws-tagline {
        font-size: 15px;
    }
}

@media (max-width: 1400px) {
    .ws-footer-title {
        font-size: 16px !important;
    }
    
    .ws-address li {
        font-size: 15px !important;
    }
    
}


.ws-footer-bottom {
    display: flex;
    justify-content: space-between; /* left & right */
    align-items: center;
    padding: 10px 0;
}

/* Links */
.freshora-link {
    color: #f4c400;
    text-decoration: none;
}
.freshora-link:hover {
    color: #be9800;
}

.ws-terms-link {
    color: #FFC700;
    text-decoration: none;
    margin-right:10px;
    font-size:15px;
}
.ws-terms-link:hover {
    text-decoration: underline;
}

.rights-by {
    margin-left: 10px;
    font-size: 15px;

}

/* ✅ Mobile view */
@media (max-width: 767px) {
    .ws-footer-bottom {
        flex-direction: column;   /* stack */
        text-align: center;
        gap: 8px;
    }

    .rights-by,
    .ws-terms-link {
        margin: 0;
        text-align: center;
    }
}


.freshora-hero,
.heroSwiper,
.swiper-wrapper,
.swiper-slide {
    width: 100% !important;
}

    /* Background + Grid Overlay */
.freshora-hero {
    padding: 70px 0;
    background: #0d0b07 url("../images/home/header/banner-lines.png") center/cover no-repeat;
    position: relative;
}

/* SLIDE LAYOUT */
.hero-slide {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    padding: 40px 5vw; 
    min-height: 520px;
}

/* LEFT SIDE */
.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 35px;
    line-height: 1.25;
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    font-family: "Lexend", sans-serif;
}

.gold {
    background: linear-gradient(90deg, #FDCB6A, #A07A47);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.hero-content p {
    color: rgba(255,255,255,0.88);
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #FDCB6A;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}
.hero-btn:hover {
    background: #d9a95a;
}

/* RIGHT SIDE IMAGE */
.hero-image img {
    width: 425px;
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

/* Clean floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: #FDCB6A;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: #FDCB6A;
    opacity: 1;
}

/* TABLET */
@media (max-width: 992px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .hero-image img {
        width: 280px;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-image img {
        width: 220px;
    }
}



/* FLOATING ELEMENTS */
.float-hero {
    position: absolute;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.hero-blue {
    width: 125px;
    top: 64%;
    left: 47%;
    animation-delay: 0s;
}

.up-ticket {
    width: 124px;
    top: 1%;
    right: 27px;
    animation-delay: 1s;
}

.pouch {
    width: 120px;
    bottom: -20px;
    left: 40%;
    animation-delay: 2s;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@media (min-width: 1900px) {
    .hero-blue {
        width: 162px;
        top: 64%;
        left: 53%;
        animation-delay: 0s;
    }

    .up-ticket {
        width: 165px;
        top: 1%;
        right: 70px;
        animation-delay: 1s;
    }

    .hero-pouch {
        width: 118px;
        top: 30%;
        left: 35%;
    }

    .hero-bag {
        width: 135px;
        top: 30%;
        left: 47%;
    }
}

@media (max-width: 1900px) {
    .hero-blue {
        width: 162px;
        top: 64%;
        left: 53%;
        animation-delay: 0s;
    }

    .up-ticket {
        width: 165px;
        top: 1%;
        right: 70px;
        animation-delay: 1s;
    }

    .hero-pouch {
        width: 112px;
        top: 26%;
        left: 36%;
    }

    .hero-bag {
        width: 121px;
        top: 33%;
        left: 46%;
    }
}

@media (max-width: 1600px) {
    .hero-blue {
        width: 162px;
        top: 64%;
        left: 53%;
        animation-delay: 0s;
    }
    .up-ticket {
        width: 165px;
        top: 1%;
        right: 70px;
        animation-delay: 1s;
    }

    .hero-pouch {
        width: 110px;
        top: 30%;
        left: 37%
    }

    .hero-bag {
        width: 118px;
        top: 28%;
        left: 43%;
    }
}

@media (max-width: 1400px) {
     .hero-blue {
        width: 140px;
        top: 63%;
        left: 46%;
        animation-delay: 0s;
    }
    .up-ticket {
        width: 140px;
        top: 1%;
        right: 70px;
        animation-delay: 1s;
    }

    .hero-pouch {
        width: 111px;
        top: 31%;
        left: 38%;
    }
    .hero-bag {
        width: 118px;
        top: 24%;
        left: 45%;
    }
    .hero-image img {
        width: 317px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
     .hero-blue {
        width: 140px;
        top: 73%;
        left: 44%;
        animation-delay: 0s;
    }
    .up-ticket {
        width: 140px;
        top: -2%;
        right: 25px;
        animation-delay: 1s;
    }

    .hero-pouch {
        width: 103px;
        top: 26%;
        left: 43%;
    }
    .hero-bag {
        width: 103px;
        top: 24%;
        left: 49%;
    }
    .hero-image img {
        width: 317px;
    }
}

@media (max-width: 992px) {
    .hero-content p {
        font-size: 20px;
    }
    /*.hero-content h1{*/
    /*    font-size: 33px;*/
    /*}*/

    .hero-blue{
        width: 130px;
        top: 83%;
        left: 14%;
    }

    .up-ticket{
        width: 139px;
        top: 43%;
        right: 86px;
    }

    .hero-pouch {
        width: 104px;
        top: 39%;
        left: 73%;
    }
    .hero-bag {
        width: 125px;
        top: 36%;
        left: 9%;
    }
}

@media (max-width: 576px) {
    .hero-blue {
        width: 112px;
        top: 88%;
        left: 4%;
    }

    .up-ticket{
        width: 96px;
        top: 59%;
        right: 25px;
    }
    .hero-pouch {
        width: 77px;
        top: 54%;
        left: 78%;
    }
    .hero-bag {
        width: 109px;
        top: 49%;
        left: -3%;
    }

    .hero-image img {
        width: 254px;
    }
    
    .freshora-hero{
        padding:0px;
    }
}


@media (max-width: 576px) {
    .ws-newsletter-new {
        gap: 15px;
        flex-direction: column !important;
        padding: 30px 3px;
    }

    .ws-newsletter h2 {
        font-size: 25px;
    }
    .ws-newsletter h4 {
        font-size: 20px;
        }
    .footer-content{
        display: flex !important;
        flex-direction: column;
    }
}

.hero-btn-img {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hero-btn-img img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-btn-img .btn-text {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    pointer-events: none;
    font-family: "Lexend", sans-serif;
}

.arrow-wrap{
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

/* ARROW */
.arrow-heading{
    display: inline-flex;
    align-items: center;
    background:#ffcc00;
    color:#000;
    font-weight:600;
    font-size:20px;
    padding:14px 44px 14px 25px;
    font-family: "Lexend", sans-serif;
    letter-spacing:1px;
    white-space: nowrap;

    clip-path: polygon(
        0 50%,
        25px 0,
        calc(100% - 25px) 0,
        100% 50%,
        calc(100% - 25px) 100%,
        25px 100%,
        0 50%
    );
}

/* BORDER */
.arrow-heading::before{
    content:'';
    position:absolute;
    inset:-6px;
    border:2px dotted #000;
    clip-path:inherit;
    z-index:-1;
}

/* 🎯 COIN — LOCKED TO ARROW TIP */
.arrow-icon{
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(19%, -58%);
    height: 70px;
    width: 71px;
    z-index: 3;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px){
    .arrow-heading{
        font-size:16px;
        padding:12px 42px 12px 20px;
    }

    .arrow-icon{
        /*height:36px;*/
        transform: translate(27%, -55%);
    }
}


/* PRELOADER WRAPPER */
#preloader {
    position: fixed;
    inset: 0;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* LOADER RING */
.loader-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GOLD ROTATING BORDER */
.loader-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top: 5px solid #f7d774;
    border-right: 5px solid #d4af37;
    border-bottom: 5px solid #b8962e;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 15px rgba(212,175,55,0.6);
}

/* LOGO */
.loader-ring img {
    width: 65px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
}

/* SPIN ANIMATION */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* FADE OUT */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}


/* ================= RIGHT SIDE CTA ================= */
/* Default position */
.floating-cta-right {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    transition: bottom 0.3s ease;
}

@media (max-width: 576px) {
    .floating-cta-right.push-up {
        bottom: 110px;
    }
}
/* ================= LEFT SIDE SCROLL UP ================= */
.floating-scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;

    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;

    background: linear-gradient(135deg, #ffcc00, #ffb700);
    color: #000;
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    opacity: 0;
    pointer-events: none;
}

/* SHOW WHEN SCROLL */
.floating-scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* ================= CTA BUTTON COMMON ================= */
.cta-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    color: #fff;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.cta-btn:hover,
.floating-scroll-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.cta-btn.whatsapp i {
    font-size: 30px;   /* try 32px or 34px if needed */
}


/* COLORS */
.cta-btn.whatsapp { background: #25d366; }
.cta-btn.call { background: #ffcc00; color: #000; }

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    .floating-cta-right {
        bottom: 16px;
        right: 16px;
    }

    .floating-scroll-top {
        bottom: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
    }

    .cta-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

