* {
    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;
}

/* ================= About  SECTION ================= */    

.veborra-services-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.veborra-title {
    font-size: 45px;
    font-weight: 500 !important;
    margin-bottom: 10px;
}

.veborra-subtitle {
    /* max-width: 760px; */
    margin: 0 auto 60px;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* Main Wrapper */
.veborra-services-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards Track */
.veborra-cards-track {
    display: flex;
    gap: 30px;
    z-index: 2;
}

/* Card */
.veborra-card {
    width: 290px;
    height: 430px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    background: #000;
    flex-shrink: 0;
}

.veborra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.veborra-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(60, 0, 120, 0.95), rgba(60, 0, 120, 0.2));
    color: #ffffff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.veborra-card-overlay h5 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.veborra-card-overlay p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
    text-align: left;

}

/* ================= CARD ANIMATIONS ================= */

/* Initial hidden state */
.veborra-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s ease;
}

/* When visible */
.veborra-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover effect */
.veborra-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

/* Image zoom on hover */
.veborra-card img {
    transition: transform 0.6s ease;
}

.veborra-card:hover img {
    transform: scale(1.1);
}

/* Overlay smooth lift */
.veborra-card-overlay {
    transition: all 0.5s ease;
}

.veborra-card:hover .veborra-card-overlay {
    background: linear-gradient(to top, rgba(60, 0, 120, 0.98), rgba(60, 0, 120, 0.3));
}

/* about section end */

/* ================= WHY VEBORRA SECTION ================= */

.why-veborra-section {
    padding: 100px 0;
    background: url("images/why-bg.png") center center / cover no-repeat;
    overflow: hidden;
}

.why-veborra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE PART */
.why-veborra-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-blob {
    /* width: 510px;
    height: 410px; */
    /* border-radius: 70% 70% 120% 45%; */
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.image-blob img {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
}


/* RIGHT CONTENT */
.why-veborra-content .small-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2bff;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.why-veborra-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #0a0a0a;
}

/* Feature Items */
.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: #eef0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1f2bff;
    flex-shrink: 0;
}

.why-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .why-veborra-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-item {
        justify-content: center;
        text-align: left;
    }

    .play-btn {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 576px) {
    .image-blob {
        width: 300px;
        height: 300px;
    }

    .why-veborra-content h2 {
        font-size: 28px;
    }
}

/* ================= WHY VEBORRA SECTION END ================= */

/* ================= PROCESS SECTION ================= */

.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-small-title {
    font-size: 12px;
    font-weight: 600;
    color: #1f2bff;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.process-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
}

/* Steps Wrapper */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

/* Single Step */
.process-step {
    max-width: 260px;
    text-align: center;
}

/* Circle Image */
.process-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px dashed #5b6cff;
    padding: 6px;
    margin: 0 auto 20px;
    position: relative;
}

.process-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 30px;
    height: 30px;
    background: #5b6cff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow */
.process-arrow {
    font-size: 28px;
    color: #c4c8ff;
    margin-top: 55px;
}

/* Text */
.process-step h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}


/* ================= ANIMATIONS ================= */

/* Arrow bounce */
.arrow-animate {
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Step hover effect */
.process-step {
    transition: 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

/* Pause rotation on hover */
.process-step:hover .process-circle {
    animation-play-state: paused;
}

/* ================= PROCESS SECTION END ================= */

/* ================= PORTFOLIO SECTION ================= */
.portfolio-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.portfolio-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #1e4bff;
    font-weight: 600;
}

.portfolio-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 6px;
}

/* Filter Area */
.filter-title {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.portfolio-filters {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid #1e4bff;
    background: transparent;
    color: #1e4bff;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1e4bff;
    color: #fff;
}

/* Cards */
.portfolio-card {
    height: 410px;
    background: #0b5ed7;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Brand Name */
.brand-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(6px);
}

/* Button */
.see-more-btn {
    display: inline-block;
    padding: 10px 26px;
    background: linear-gradient(90deg, #7b2cff, #b100ff);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 44, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 28px;
    }

    .filter-title {
        margin-top: 20px;
    }

    .portfolio-card {
        height: 220px;
    }
}
/* Image */
.portfolio-img {
    width: 100%;
    height: 370px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Button */
 .view-project-btn {
    padding: 10px 26px;
    border-radius: 30px;
    background: #0d6efd;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background: #084298;
    transform: translateY(-2px);
    color: #fff !important;
} 

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-img img,
.portfolio-card:hover .portfolio-img video {
    transform: scale(1.08);
} 

/* Responsive */
@media(max-width:768px) {
    .portfolio-img {
        height: 320px;
    }
}


.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= FIXED VIEW PROJECT ================= */

.view-project-btn,
.post-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
}

.view-project-btn:hover,
.post-link:hover {
    color: #ffffff !important;
}

/* Remove unwanted background */
.portfolio-card {
    background: none;
}

/* Fix image height conflict */
.portfolio-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Fix content position */
.portfolio-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
/* ================= PORTFOLIO SECTION END ================= */

/* ================= PARTNER SECTION ================= */
.partner-marquee-section {
    background: #DEECFE;
    /* background: #000; */
    padding: 30px 0 20px;
    overflow: hidden;
}

.partner-title {
    color: #140101;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
}

/* Marquee Wrapper */
.partner-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track */
.partner-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: partnerScroll 25s linear infinite;
}

/* Logos */
/* .partner-track img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: 0.3s ease;
} */
 /* .partner-track img {       
     height: 40px;
     width: auto;
     opacity: 0.95;
     transition: 0.3s ease;
 } */

 .partner-track img {
     max-height: 65px;
     /* max-width: 120px; */
     width: auto;
     height: 590px;
     object-fit: contain;
     display: block;
     opacity: 0.95;
     transition: 0.3s ease;
 }

.partner-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}
.partner-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}
/* Animation */
@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Fade edges (premium look) */
.partner-marquee::before,
.partner-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.partner-marquee::before {
    left: 0;
    /* background: linear-gradient(to right, #2b0bbf, transparent); */
}

.partner-marquee::after {
    right: 0;
    /* background: linear-gradient(to left, #3a0ca3, transparent); */
}

/* Responsive */
@media (max-width: 768px) {
    .partner-track {
        gap: 35px;
    }

    .partner-track img {
        height: 22px;
    }
}

/* ================= PARTNER SECTION END ================= */
/* ================= INDUSTRIES SECTION ================= */
.industries-section {
    padding: 100px 0;
    background: url("images/industries-bg.png") center center / cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Heading */
.industries-label {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 6px;
}

.industries-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Card */
.industry-card {
    background: #ffffff;
    color: #000000;
    border-radius: 16px;
    padding: 22px 20px 20px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* Text */
.industry-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.industry-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Image */
.industry-img {
    border-radius: 12px;
    overflow: hidden;
}

.industry-img img {
    width: 100%;
    height: 340px !important;
    object-fit: cover;
    transition: 0.4s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 991px) {
    .industries-title {
        font-size: 30px;
    }

    .industry-img img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .industries-section {
        padding: 70px 0;
    }

    .industries-title {
        font-size: 26px;
    }
}

/* ================= INDUSTRIES SECTION END ================= */

/* tech-section start */
.tech-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    font-family: "Segoe UI", sans-serif;
}

/* Heading */
.tech-heading {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.tech-heading .small-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #2b6df6;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.tech-heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #0b1b3f;
}

/* Slider */
.tech-slider {
    width: 100%;
}

.slider-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 35px;
}

.slider-track {
    display: flex;
    align-items: center;
    width: fit-content;
}

/* Logo style */
.slider-track img {
    height: 65px;
    width: auto;
    margin: 0 30px;
    object-fit: contain;
    opacity: 0.95;
    transition: 0.3s ease;
}

.slider-track img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Animations */
.slider-row.left .slider-track {
    animation: scrollLeft 30s linear infinite;
}

.slider-row.right .slider-track {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tech-heading h2 {
        font-size: 24px;
    }

    .slider-track img {
        height: 35px;
        margin: 0 18px;
    }
}
/* tech-section end */
/* ================= OUR VALUES SECTION ================= */

.our-values-section {
    padding: 100px 0;
    background: #f8faff;
    font-family: 'Inter', sans-serif;
}

.values-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-tag {
    color: #0b5ed7;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-top: 8px;
    color: #0a1d56;
}

/* Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.value-card {
    border: 1.5px solid #3b6cff;
    border-radius: 8px;
    padding: 22px 22px 26px;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(11, 94, 215, 0.15);
    border-color: #0b5ed7;
}

/* Icon */
.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1.5px solid #3b6cff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5ed7;
    font-size: 18px;
    margin-bottom: 12px;
}

/* Text */
.value-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0a1d56;
}

.value-card p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-header h2 {
        font-size: 28px;
    }
}

/* ================= OUR VALUES SECTION END ================= */

/* ================= 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;
}
.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.3px;
}

.custom-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    appearance: none;
    /* remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select option {
    color: #000;
    /* dropdown list text color */
}

/* Hover */
.custom-select:hover {
    border-color: #ffffff;
}

/* Focus */
.custom-select:focus {
    border-color: #7b2cff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(123, 44, 255, 0.3);
}

.send-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: none;
    background: #1e1e1e;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}


/* 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;
    }
}


.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
    display: block;
}

.contact-box .form-control {
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
}



/* ================= CONTACT + REVIEW SECTION END ================= */

/* ================= BLOG SECTION ================= */
.blog-section {
    padding: 100px 0;
    /* background: #f8f9ff; */
    background: #f8f9ff url("images/bg-blog.png") center/cover no-repeat;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-tag {
    font-size: 13px;
    color: #4f46e5;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.blog-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.view-all-btn {
    background: linear-gradient(135deg, #6a00ff, #b100ff);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.view-all-btn:hover {
    opacity: 0.85;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
}

/* LEFT */
.blog-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD BASE */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.blog-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DATE BADGE */
.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b100ff;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #4f46e5;
    margin-bottom: 8px;
}

.blog-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* AUTHOR */
.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author small {
    font-size: 12px;
    color: #777;
}

.blog-author p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

/* SIZES */
.small-card .blog-img img {
    height: 280px;
}

.large-card .blog-img img {
    height: 480px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ================= BLOG SECTION END ================= */

/* faq-section */
.veborra-faq-section {
    padding: 100px 0;
    /* background: #f8f9ff; */
    background: url("images/bg-faq.png") center/cover no-repeat;
}

.faq-label {
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.faq-heading {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
}

/* FAQ List */
/* .faq-list {
    max-width: 900px;
} */

/* Item */
.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 18px 24px;
    margin-bottom: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

/* Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h5 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.faq-question .arrow {
    font-size: 18px;
    color: #2563eb;
    transition: 0.3s;
}

/* Answer */
.faq-answer {
    display: none;
    padding-top: 12px;
}

.faq-answer p {
    font-size: 14px;
    color: #0d0d0d;
    line-height: 1.6;
    margin: 0;
}

/* Active */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* CTA BOX */
.veborra-cta-box {
    margin-top: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 16px;
    padding: 45px 30px;
    text-align: center;
    color: #fff;
    /* max-width: 900px; */
}

.veborra-cta-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.veborra-cta-box p {
    font-size: 14px;    
    opacity: 0.9;
    margin-bottom: 18px;
}

.cta-btn {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #134abf;
    color: #fff;
}

/* faq section end   */


/* 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;
}