*{
    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 ================= */
.nav-wrapper {
    margin-top: 15px;
}

.custom-navbar {
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo img {
    height: 38px;
}

/* Menu */
.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);
}

/* ================= ABOUT PAGE HERO ================= */
.veborra-about-hero {
    background: url("images/hero-bg.png") center center no-repeat;
    height: 50vh;
    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;
}


/* ================= EXPERTISE SECTION ================= */
.veborra-expertise-section {
    padding: 100px 0 80px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Tag */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 10px;
}

/* Title */
.expertise-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #0a1a44;
}

/* Stats */
.expertise-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    text-align: justify;
}

/* Right points */
.expertise-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.point-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b00ff, #4b00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.point-text h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0a1a44;
}

.point-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Image */
.expertise-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-title {
        font-size: 28px;
    }

    .expertise-stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* EXPERTISE SECTION end */

/* ================= WHO WE ARE SECTION ================= */
.veborra-who-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Tag */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 8px;
}

/* Title */
.who-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a1a44;
}

/* Tabs */
.who-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    padding-bottom: 6px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.tab-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    transition: 0.3s;
}

.tab-btn.active {
    color: #000;
}

.tab-btn.active::after {
    width: 100%;
}

/* Content Box */
.who-content {
    background: #eef1ff;
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a1a44;
}

.tab-content p {
    font-size: 16px;
    text-align: justify !important;
    color: #212121;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .who-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .who-content {
        padding: 25px;
    }
}
/* WHO WE ARE 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 ================= */

/* ================= TEAM SECTION ================= */
.veborra-team-section {
    padding: 100px 0;
    background: #eef1ff;
    font-family: 'Inter', sans-serif;
}

/* Header */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.team-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a1a44;
}

.team-header p {
    font-size: 14px;
    color: #666;
    max-width: 500px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #7b00ff;
    margin-bottom: 6px;
}

/* Button */
.team-btn {
    background: linear-gradient(135deg, #7b00ff, #4b00ff);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.team-btn:hover {
    transform: translateY(-2px);
}

/* Card */
.team-card {
    background: transparent;
    text-align: center;
    padding: 10px;
}

/* .team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%; 
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} */
 .team-card img {
     width: 210px;
     height: 210px;
     border-radius: 50%;
     object-fit: cover;
     object-position: top center;
     display: block;
     margin: 0 auto 15px;
     background: #fff;
     padding: 4px;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
 }
.team-card img {
    animation: bounceIn 3s ease-in-out infinite;
}

 @keyframes bounceIn {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-10px) scale(1.05);
    }

    50% {
        transform: translateY(0) scale(1);
    }

    70% {
        transform: translateY(-6px) scale(1.03);
    }

    100% {
        transform: translateY(0) scale(1);
    }
} 

.team-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #0a1a44;
}

.team-card .role {
    font-size: 13px;
    color: #7b00ff;
    font-weight: 500;
}

.team-card p {
    font-size: 13px;
    color: #666;
    margin: 8px 0 10px;
    line-height: 1.5;
}

/* Social Icons */
.team-social a {
    color: #999;
    margin: 0 5px;
    font-size: 14px;
    transition: 0.3s;
}

.team-social a:hover {
    color: #7b00ff;
}

/* Responsive */
@media (max-width: 768px) {
    .team-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-header h2 {
        font-size: 30px;
    }
}
/* TEAM 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;
}