* {
    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 {
    background: #ffffff;
    padding: 6px 0;
    font-size: 14px;
}

.top-left span {
    margin-right: 15px;
    color: #000;
}

.top-left i {
    color: #000;
    margin-right: 5px;
}

.top-right a {
    color: #000;
    margin-left: 10px;
    font-size: 15px;
}

/* ================= NAVBAR ================= */

/* ================= ABOUT PAGE HERO ================= */
.veborra-about-hero {
    background: url("images/marketing.png") center center no-repeat;
    background-size: cover;
    padding: 240px 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;
}


/* ================= BRANDING SECTION ================= */

/* ================= BRANDING SECTION ================= */
/* ================= BRANDING SECTION ================= */
.branding-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #5b6bff;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a1a44;
}

.section-subtitle {
    /* max-width: 720px; */
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Grid */
.branding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card */
.branding-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 28px 70px;
    border: 1px solid #e6e9ff;
    transition: 0.3s ease;
}

.branding-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Check Icon */
.check-icon {
    position: absolute;
    left: 25px;
    top: 28px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7b00ff, #4b00ff);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Text */
.branding-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0a1a44;
}

.branding-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .branding-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Vertical Services Bar */
.vertical-services {
    position: absolute;
    left: -90px;
    top: 70%;
    transform: translateY(-50%);
    width: 50px;
    padding: 18px 0;
    background: linear-gradient(180deg, #7b00ff, #4b00ff);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(123, 0, 255, 0.4);
}

.vertical-services span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Hide on small screens */
@media (max-width: 768px) {
    .vertical-services {
        display: none;
    }
}

/* ================= BRANDING IMAGE SECTION ================= */
.branding-image-section {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.branding-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ================= BRANDING PROCESS SECTION ================= */
.branding-process-section {
    padding: 100px 0;
    background: #f6f8ff;
    font-family: 'Inter', sans-serif;
}

.process-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    color: #2f45ff;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-title {
    font-size: 34px;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 60px;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card */
.process-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(47, 69, 255, 0.15);
}

/* Number Circle */
.step-circle {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2f45ff, #7b00ff);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 20px rgba(47, 69, 255, 0.4);
}

/* Text */
.process-card h5 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #0a1a44;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Positioning for 4 & 5 */
.process-grid .process-card:nth-child(4) {
    grid-column: 1 / span 2;
}

.process-grid .process-card:nth-child(5) {
    grid-column: 3 / span 1;
}

/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid .process-card:nth-child(4),
    .process-grid .process-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-title {
        font-size: 26px;
    }
}

/* ================= CONTACT + REVIEW SECTION ================= */

.contact-review-section {
    padding: 100px 0;
    background: #f8f9ff url("images/bg-wave.png") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* LEFT FORM BOX */
.contact-box {
    background: linear-gradient(180deg, #7b00ff, #0033cc);
    padding: 40px 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-tag {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.contact-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0 25px;
}

.contact-box .form-control {
    background: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    padding: 10px 12px;
}

.contact-box textarea {
    resize: none;
}

.send-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.send-btn:hover {
    background: #111;
}

/* RIGHT REVIEW CONTENT */
.review-content {
    padding-left: 30px;
}

.review-tag {
    color: #0b5ed7;
    font-size: 13px;
    font-weight: 600;
}

.review-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 8px 0 10px;
    color: #0a1d56;
}

.review-subtitle {
    font-size: 14px;
    color: #555;
    max-width: 480px;
    margin-bottom: 30px;
}

/* Review Card */
.review-card {
    background: #fff;
    padding: 25px 25px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 520px;
}

.review-profile {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.review-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-profile h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.review-profile span {
    font-size: 12px;
    color: #777;
}

.stars {
    color: #f5b301;
    font-size: 13px;
}

.review-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.quote-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    color: #3b6cff;
    opacity: 0.2;
}

/* Nav Buttons */
.review-nav {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.review-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #3b6cff;
    background: transparent;
    color: #3b6cff;
    transition: 0.3s;
}

.review-nav button:hover {
    background: #3b6cff;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .review-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .contact-box {
        margin-bottom: 30px;
    }

    .review-content h2 {
        font-size: 28px;
    }
}

/* ================= CONTACT + REVIEW SECTION END ================= */

/* ================= RECENT CREATIONS ================= */
.recent-creations-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.recent-title {
    font-size: 34px;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 10px;
}

.recent-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 60px;
}

/* Grid */
.recent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Card */
.recent-card {
    height: 240px;
    background: #f2f4ff;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.recent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(47, 69, 255, 0.15);
}

/* Button */
.recent-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, #7b00ff, #4b00ff);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.recent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(75, 0, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .recent-grid {
        grid-template-columns: 1fr;
    }

    .recent-title {
        font-size: 26px;
    }
}