* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= MAIN HEADER ================= */
.veborra-main-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

/* ================= TOP BAR ================= */
/* ================= 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 ================= */

/* ================= ABOUT PAGE HERO ================= */
.veborra-about-hero {
    background: url("images/hero-bg.png") center center no-repeat;
    background-size: cover;
    height: 50vh;
    padding: 140px 0 110px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay */
.veborra-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Content on top */
.veborra-about-hero .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.breadcrumb-nav i {
    font-size: 12px;
    margin: 0 6px;
}

/* Title */
.veborra-about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin: 0;
}

/* ================= SCROLL STRIP ================= */
.scroll-strip {
    background: #f8f9fa;
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 15px;
    color: #a100ff;
    /* star color */
}

.scroll-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroll-strip .black {
    color: #000;
    margin: 0 8px;
}

.scroll-strip .blue {
    color: #0d6efd;
    margin: 0 8px;
}
/* end section  */  

/* ================= BLOG SECTION ================= */
.blog-section {
    background: #f8f9fc;
    font-family: 'Inter', sans-serif;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #6f42c1;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Body */
.blog-body {
    padding: 18px 18px 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.blog-meta i {
    color: #6f42c1;
    margin-right: 4px;
}

.blog-body h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Author */
.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.blog-author img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

/* Sidebar */
.recent-blogs-box {
    background: #f1f3ff;
    border-radius: 16px;
    padding: 22px;
}

.recent-blogs-box h4 {
    font-weight: 700;
    margin-bottom: 18px;
}

.recent-blog-item {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.recent-blog-item:last-child {
    border-bottom: none;
}

.recent-blog-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.recent-blog-item span {
    font-size: 12px;
    color: #888;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, #1d4ed8, #6f42c1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.cta-banner h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-banner p {
    font-size: 14px;
    margin-bottom: 14px;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #1d4ed8;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    /* WhatsApp / Call button se upar */
    right: 25px;
    width: 46px;
    height: 46px;
    background: #3b5cff;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #1f3fff;
    transform: translateY(-3px);
}

/* Show button */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}