* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-inter: 'Inter', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
    --font-mulish: 'Mulish', sans-serif;
}

/* ================= HEADER BACKGROUND ================= */
.veborra-header {
    background: url("images/hero-bg.png") center center no-repeat;
    background-size: cover;
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #ffffff;
    padding: 6px 0;
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 400;
    color: #000;
}

/* LEFT SIDE */
.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.top-left i {
    color: #0d6efd;
    font-size: 14px;
}

.top-left a {
    text-decoration: none;
    color: inherit;
}

.top-left a:hover {
    color: #0d6efd;
}

/* RIGHT SIDE SOCIAL ICONS */
.top-right a {
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
}

.top-right a:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

.top-right i {
    display: inline-block;
}
/* ================= NAVBAR ================= */
.nav-wrapper {
    margin-top: 15px;
}

.custom-navbar {
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 38px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu li a.active,
.nav-menu li a:hover {
    background: #0d6efd;
    color: #ffffff;
}

/* Button */
.nav-btn a {
    background: linear-gradient(135deg, #7b00ff, #4b00ff);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-btn a:hover {
    transform: translateY(-2px);
}

/* ================= HERO CONTENT ================= */
.hero-content {
    margin-top: 60px;
    color: #ffffff;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 5px;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: var(--font-jakarta);
    line-height: 1.2;
    /* margin-bottom: 20px; */
}

.hero-btn {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
    text-decoration: none;
}

/* ================= VIDEO BOX ================= */
/* .hero-video-box {
    width: 450px;
    height: 230px;
    background: #ffffff;
    border-radius: 16px;
    margin: 60px auto 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* Play Button */
/* .play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7b00ff, #4b00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
} */

.hero-video-box {
    width: 450px;
    height: 230px;
    background: #000;
    border-radius: 16px;
    margin: 60px auto 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* ================= SCROLL STRIP ================= */
.scroll-strip {
    background: #f8f9fa;
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-jakarta);
}

.scroll-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Colors */
.scroll-strip .black {
    color: #000;
    margin: 0 8px;
}

.scroll-strip .blue {
    color: #0d6efd;
    margin: 0 8px;
}

/* Star Color */
.scroll-strip {
    color: #a100ff;
}

/* Responsive */