* {
    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;
    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;
}


/* ================= CONTACT SECTION ================= */  
.contact-map-section {
    position: relative;
    padding: 120px 0 300px;
    background: #f6f9ff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    padding-top: 150px;
}

/* ===== Info Cards ===== */
.info-cards-wrapper {
    position: relative;
    z-index: 3;
    margin-bottom: 30px;
}

.info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 28px;
    color: #2f49ff;
    margin-bottom: 8px;
}

.info-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ===== Map ===== */
.map-wrapper {
    width: 100%;
    height: 480px;
    /* border-radius: 20px; */
    overflow: hidden;
    margin-top: 40px;
}

/* ===== Contact Form Box ===== */
.contact-form-box {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    /* padding-top: 40px !important; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    z-index: 5;
    /* margin-bottom: 60px ; */
    /* margin-top: 30px; */
}

.contact-form-box h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Inputs */
.contact-form-box .form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
}

.contact-form-box textarea.form-control {
    height: auto;
    resize: none;
}

/* Button */
.submit-btn {
    background: #2f49ff !important;
    color: #ffffff !important;
    padding: 10px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1f35d8;
    color: #fff;
}

/* 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;
}