.tp-offcanvas__social a:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #ffffff !important;
}

.tp-offcanvas-close:hover {
    background-color: var(--secondary) !important;
    color: #ffffff !important;
}

.tp-common-btn {
    background-color: var(--secondary) !important;
}

.tp-common-btn:hover {
    background-color: var(--primary) !important;
}

/* ========================================
   TRANSPARENT HEADER - TOP BLUR STRIP
   (nav contrast fix, image ke upar koi bhi color ho)
   ======================================== */
.transparent-header {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.transparent-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.30) 70%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1; /* header content ke peeche, par hero image ke upar */
    pointer-events: none;
}

/* Header ke andar content z-index pe rahe (links clickable) */
.tp-mp-header__main {
    position: relative;
    z-index: 2;
}
/* ========================================
   FULL SCREEN HERO - ONLY IMAGE
   ======================================== */

.hero-fullscreen {
    background: #FFFFFF !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-fullscreen .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    
}

.hero-fullscreen .row {
    margin: 0 !important;
    width: 100%;
}

.hero-fullscreen .col-12 {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center; /* ya right center agar right side important hai */
    display: block;
}
@media (max-aspect-ratio: 16/9) {
    .hero-image-wrapper img {
        object-fit: cover;
        object-position: center;
    }
}

@media (min-aspect-ratio: 16/9) {
    .hero-image-wrapper img {
        object-fit: contain;   /* sides cut nahi hogi */
        object-position: right center;
        background: #FFFFFF;  /* ya jo bhi bg color hai */
    }
}
.hero-image-wrapper img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* ========================================
   FIX 1: NAV CONTRAST OVERLAY (top strip)
   ======================================== */


/* ========================================
   FIX 2: BOTTOM PATTI - HEIGHT-AWARE SPACING
   Stats cards se overlap rokne ke liye
   ======================================== */
.hero-text-overlay {
    /* fixed top: 50% ki bajaye thoda upar shift, taake niche room bache */
    top: 46%;
}

.hero-stats-grid {
    margin-top: clamp(16px, 2.5vh, 35px);
}

.hero-bottom-services {
    bottom: clamp(15px, 3vh, 30px);
}

/* Mid-height screens (laptops with shorter viewport, ~700-820px tall) */
@media (max-height: 820px) and (min-width: 1025px) {
    .hero-text-overlay {
        top: 42%;
        padding: 12px 30px;
    }
    .hero-title {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .hero-desc {
        margin-bottom: 18px;
        line-height: 1.6;
    }
    .hero-stats-grid {
        margin-top: 14px;
        gap: 10px;
    }
    .hero-stat-card {
        padding: 10px 14px;
    }
    .hero-bottom-services {
        bottom: 12px;
    }
    .services-patti {
        padding: 12px 20px;
        gap: 8px;
    }
}

/* Very short viewports */
@media (max-height: 700px) and (min-width: 1025px) {
    .hero-stats-grid {
        display: none !important;
    }
    .hero-bottom-services {
        bottom: 16px;
    }
}

/* ========================================
   LEFT SIDE TEXT OVERLAY
   ======================================== */

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 580px;
    padding: 20px 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(49, 66, 127, 0.30);
    border-radius: 10px;
    z-index: -1;
}

.hero-desc {
    font-size: 17px;
    color: var(--primary);
    line-height: 1.8;
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    max-width: 520px;
}


/* ========================================
   BUTTONS GROUP
   ======================================== */

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #313E7F;
    color: #FFFFFF !important;
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.hero-btn-primary:hover {
    background: #24345f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(49, 66, 127, 0.30);
}

.hero-btn-primary span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.hero-btn-primary:hover span {
    transform: translateX(5px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    backdrop-filter: blur(8px);
    color: #FFFFFF !important;
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--secondary);
    cursor: pointer;
}

.hero-btn-secondary:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.hero-btn-secondary:hover span {
    transform: translateX(-5px);
}


/* ========================================
   STATS CARDS - With Icons
   ======================================== */

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 35px;
    max-width: 520px;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-light);
}

.hero-stat-card .stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.20);
    color: var(--primary);
}

.hero-stat-card .stat-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.hero-stat-card .stat-info p {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-card:hover .stat-info p {
    color: var(--primary);
}


/* ============================================================
   BOTTOM CENTER - SERVICE CARDS PATTI
   ============================================================ */

.hero-bottom-services {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 20;
}

.services-patti {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 18px;
    padding: 18px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-patti-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-patti-item:hover {
    background: rgba(var(--primary), 0.06);
    transform: translateY(-2px);
}

.service-patti-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.service-patti-item:hover .service-patti-icon {
    color: var(--primary);
}

.service-patti-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.service-patti-text p {
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    line-height: 1.3;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- TABLET LANDSCAPE (1025px - 1280px) --- */
@media (max-width: 1280px) and (min-width: 1025px) {
    .hero-text-overlay {
        left: 50px;
        max-width: 520px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats-grid {
        max-width: 480px;
    }
}

/* --- TABLET (768px - 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-fullscreen {
        height: 100vh;
    }

    .hero-text-overlay {
        left: 40px;
        max-width: 450px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Hide stats on tablet */
    .hero-stats-grid {
        display: none !important;
    }

    /* Service patti - adjust */
    .hero-bottom-services {
        width: 95%;
        bottom: 20px;
    }

    .services-patti {
        gap: 10px;
        padding: 14px 18px;
    }

    .service-patti-item {
        padding: 8px 10px;
        gap: 10px;
    }

    .service-patti-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .service-patti-text h4 {
        font-size: 14px;
    }

    .service-patti-text p {
        font-size: 12px;
    }
}

/* --- MOBILE (max 767px) --- */
@media (max-width: 767px) {

    /* Mobile image swap */
    .hero-image-wrapper img {
        content: url('pakcourierservice/assets/img/hero/heromobile.png');
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .hero-fullscreen {
        height: 100vh;
    }

    /* Text overlay - center bottom */
    .hero-text-overlay {
        top: auto;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.30);
    }

    .hero-title .highlight::after {
        height: 6px;
        bottom: 2px;
    }

    /* Hide desc and stats */
    .hero-desc,
    .hero-stats-grid {
        display: none !important;
    }

    /* Buttons - side by side */
    .hero-btn-group {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 13px 22px;
        font-size: 14px;
        border-radius: 10px;
        flex: 1;
        justify-content: center;
        max-width: 180px;
    }

    /* Hide service patti */
    .hero-bottom-services {
        display: none !important;
    }
}

/* --- SMALL MOBILE (max 480px) --- */
@media (max-width: 480px) {
    .hero-text-overlay {
        bottom: 80px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 16px;
        font-size: 13px;
        max-width: 160px;
    }
}

/* --- VERY SMALL (max 360px) --- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 21px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 11px 12px;
        font-size: 12px;
        max-width: 140px;
    }
}




/* ============================================================
   WHY CHOOSE US - RIGHT TABS + LEFT CONTENT
   ============================================================ */

.why-choose-tabs {
    padding: 80px 0;
    background: #F7F9FC;
    position: relative;
}

/* ===== Section Header ===== */
.tabs-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.tabs-badge {
    display: inline-block;
    background: rgba(133, 185, 198, 0.15);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.tabs-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 15px;
}

.tabs-title .highlight {
    color: var(--primary);
    position: relative;
}

.tabs-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(49, 66, 127, 0.12);
    border-radius: 10px;
    z-index: -1;
}

.tabs-desc {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
}

/* ===== Main Wrapper ===== */
.tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================================
   CONTENT ITEM - IMAGE FULL COVER
   ============================================================ */
/* Sab content hidden by default */
.tab-content-item {
    display: none !important;  /* Yeh important hai */
    animation: fadeInContent 0.5s ease;
}

/* Sirf active wala show ho */
.tab-content-item.active {
    display: block !important;
}

.tab-content-item {
    
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

/* ===== Image - Full Cover ===== */
.tab-content-item .content-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tab-content-item .content-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Dark Overlay for Readability ===== */
.tab-content-item .content-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* ===== Content Overlay (Text on Image) ===== */
.tab-content-item .content-overlay {
    position: relative;
    z-index: 2;
    padding: 35px 30px 30px;
    width: 100%;
    color: #FFFFFF;
}

/* ===== Heading ===== */
.tab-content-item .content-overlay h3 {
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}

/* ===== Paragraph ===== */
.tab-content-item .content-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 90%;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

/* ===== List ===== */
.tab-content-item .content-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-content-item .content-overlay ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 6px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.tab-content-item .content-overlay ul li i {
    color: #FFFFFF;
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================================
   ANIMATION - Fade In
   ============================================================ */

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-item.active {
    display: block;
    animation: fadeInContent 0.5s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .tab-content-item {
        min-height: 300px;
    }
    
    .tab-content-item .content-overlay {
        padding: 28px 24px 24px;
    }
    
    .tab-content-item .content-overlay h3 {
        font-size: 22px;
    }
    
    .tab-content-item .content-overlay p {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tab-content-item {
        min-height: 260px;
    }
    
    .tab-content-item .content-overlay {
        padding: 22px 18px 18px;
    }
    
    .tab-content-item .content-overlay h3 {
        font-size: 20px;
    }
    
    .tab-content-item .content-overlay p {
        font-size: 14px;
    }
    
    .tab-content-item .content-overlay ul li {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .tab-content-item {
        min-height: 220px;
    }
    
    .tab-content-item .content-overlay {
        padding: 18px 14px 14px;
    }
    
    .tab-content-item .content-overlay h3 {
        font-size: 18px;
    }
    
    .tab-content-item .content-overlay p {
        font-size: 13px;
    }
    
    .tab-content-item .content-overlay ul li {
        font-size: 12px;
    }
}

/* ============================================================
   RIGHT SIDE - Tabs Cards
   ============================================================ */

.tabs-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Tab Card */
.tab-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
}

.tab-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tab-card.active {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 8px 28px rgba(49, 66, 127, 0.10);
    transform: translateX(8px);
}

/* Tab Icon */
.tab-card .tab-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(133, 185, 198, 0.12);
    border-radius: 12px;
    color: var(--secondary);
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.tab-card.active .tab-card-icon {
    background: var(--primary);
    color: #FFFFFF;
}

/* Tab Info */
.tab-card .tab-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.tab-card .tab-card-info p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.2;
}

/* Tab Arrow */
.tab-card .tab-card-arrow {
    margin-left: auto;
    color: #D1D5DB;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tab-card.active .tab-card-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ============================================================
   ANIMATION
   ============================================================ */

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .why-choose-tabs {
        padding: 60px 20px;
    }
    
    .tabs-title {
        font-size: 36px;
    }
    
    .tabs-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tabs-left {
        padding: 35px 30px;
        min-height: 300px;
    }
    
    .tab-content-item h3 {
        font-size: 24px;
    }
    
    .tab-content-item .content-image img {
        width: 60px;
        height: 60px;
    }
    
    .tabs-right {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tabs-right::-webkit-scrollbar {
        display: none;
    }
    
    .tab-card {
        flex-shrink: 0;
        min-width: 180px;
        padding: 14px 18px;
        transform: none !important;
    }
    
    .tab-card.active {
        transform: none !important;
    }
    
    .tab-card .tab-card-arrow {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose-tabs {
        padding: 40px 15px;
    }
    
    .tabs-title {
        font-size: 28px;
    }
    
    .tabs-desc {
        font-size: 15px;
    }
    
    .tabs-left {
        padding: 25px 20px;
        min-height: 240px;
        border-radius: 16px;
    }
    
    .tab-content-item h3 {
        font-size: 20px;
    }
    
    .tab-content-item p {
        font-size: 15px;
        max-width: 100%;
    }
    
    .tab-content-item .content-image img {
        width: 50px;
        height: 50px;
    }
    
    .tab-card {
        min-width: 140px;
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .tab-card .tab-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .tab-card .tab-card-info h4 {
        font-size: 14px;
    }
    
    .tab-card .tab-card-info p {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .why-choose-tabs {
        padding: 30px 12px;
    }
    
    .tabs-title {
        font-size: 24px;
    }
    
    .tabs-left {
        padding: 20px 16px;
        min-height: 200px;
    }
    
    .tab-content-item h3 {
        font-size: 18px;
    }
    
    .tab-content-item p {
        font-size: 14px;
    }
    
    .tab-content-item .content-image img {
        width: 40px;
        height: 40px;
    }
}
























/* ============================================================
   HOW IT WORKS - PROCESS SECTION
   ============================================================ */

.how-it-works {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* ===== Background Decoration ===== */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(133, 185, 198, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== Section Header ===== */
.process-header {
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.process-badge {
    display: inline-block;
    background: rgba(133, 185, 198, 0.12);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 15px;
}

.process-title .highlight {
    color: var(--primary);
    position: relative;
}

.process-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(49, 66, 127, 0.12);
    border-radius: 10px;
    z-index: -1;
}

.process-desc {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
}

/* ============================================================
   PROCESS FLOW
   ============================================================ */

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== Process Step ===== */
.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #F7F9FC;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(49, 66, 127, 0.08);
    border-color: rgba(49, 66, 127, 0.06);
}

/* ===== Step Number ===== */
.process-step .step-number {
    position: absolute;
    top: -12px;
    right: 16px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(133, 185, 198, 0.30);
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    color: var(--secondary);
}

/* ===== Step Icon ===== */
.process-step .step-icon-wrapper {
    margin-bottom: 16px;
}

.process-step .step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    border-radius: 18px;
    color: var(--secondary);
    font-size: 30px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 12px 32px rgba(49, 66, 127, 0.15);
}

/* ===== Step Text ===== */
.process-step .step-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.process-step .step-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ===== Arrow Between Steps ===== */
.process-arrow {
    flex-shrink: 0;
    padding: 0 12px;
    color: #D1D5DB;
    font-size: 20px;
    transition: all 0.4s ease;
}

.process-step:hover + .process-arrow {
    color: var(--secondary);
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */

.process-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.process-cta p {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 28px rgba(49, 66, 127, 0.20);
}

.process-cta-btn:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(49, 66, 127, 0.30);
}

.process-cta-btn i {
    transition: transform 0.3s ease;
}

.process-cta-btn:hover i {
    transform: translateX(6px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .how-it-works {
        padding: 60px 20px;
    }
    
    .process-title {
        font-size: 36px;
    }
    
    .process-flow {
        flex-wrap: wrap;
        gap: 20px 0;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 10px);
        padding: 24px 16px;
        min-height: 180px;
    }
    
    .process-step:nth-child(3) {
        order: 3;
    }
    
    .process-step:nth-child(5) {
        order: 4;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-step .step-desc {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .how-it-works {
        padding: 40px 15px;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-desc {
        font-size: 15px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-step {
        flex: 1;
        width: 100%;
        padding: 22px 18px;
        min-height: auto;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 18px;
        border-radius: 16px;
    }
    
    .process-step .step-number {
        display: none;
    }
    
    .process-step .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .process-step .step-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 14px;
        margin: 0;
    }
    
    .process-step .step-title {
        font-size: 17px;
        margin-bottom: 2px;
    }
    
    .process-step .step-desc {
        font-size: 13px;
        max-width: 100%;
        margin: 0;
    }
    
    .process-step .step-text {
        flex: 1;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-cta {
        margin-top: 30px;
        padding: 20px;
    }
    
    .process-cta p {
        font-size: 17px;
    }
    
    .process-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .how-it-works {
        padding: 30px 12px;
    }
    
    .process-title {
        font-size: 24px;
    }
    
    .process-step {
        padding: 16px 14px;
        gap: 14px;
    }
    
    .process-step .step-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .process-step .step-title {
        font-size: 15px;
    }
    
    .process-step .step-desc {
        font-size: 12px;
    }
}
/* ============================================================
   HOW IT WORKS - PURE CSS BACKGROUND
   ============================================================ */

.how-it-works {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    
    /* ===== Solid Background ===== */
    background: #F0F4F8;
}

/* ===== Decorative Shapes - Pure CSS ===== */

/* Shape 1 - Circle */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(49, 66, 127, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* Shape 2 - Circle Inner */
.how-it-works::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(133, 185, 198, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== Additional Decorative Elements ===== */

/* Shape 3 - Dots Pattern */
.how-it-works .bg-dots {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    pointer-events: none;
    opacity: 0.4;
    background-image: radial-gradient(circle, rgba(49,66,127,0.08) 2px, transparent 2px);
    background-size: 12px 12px;
}

/* Shape 4 - Border Box */
.how-it-works .bg-border-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 80%;
    border: 1px solid rgba(49, 66, 127, 0.04);
    border-radius: 40px;
    pointer-events: none;
}

/* Shape 5 - Small Decorative Square */
.how-it-works .bg-square {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(133, 185, 198, 0.10);
    border-radius: 8px;
    transform: rotate(45deg);
    pointer-events: none;
}










/* ============================================================
   PARTNER LOGOS - DUAL ROW SLIDER
   ============================================================ */

.partners-slider-section {
    padding: 20px 0;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

/* Optional Border */
.partners-slider-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
}

/* ===== Each Row ===== */
.partners-slider-wrapper {
    padding: 12px 0;
}

.partners-swiper {
    overflow: hidden;
}

/* ===== Slides ===== */
.partners-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    padding: 0 24px;
}

/* ===== Logo ===== */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-width: 140px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .partner-logo img {
        max-width: 110px;
        max-height: 40px;
    }
    .partners-swiper .swiper-slide {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .partners-slider-section {
        padding: 12px 0;
    }
    .partners-slider-wrapper {
        padding: 8px 0;
    }
    .partner-logo img {
        max-width: 80px;
        max-height: 30px;
    }
    .partners-swiper .swiper-slide {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .partner-logo img {
        max-width: 60px;
        max-height: 25px;
    }
    .partners-swiper .swiper-slide {
        padding: 0 6px;
    }
}



 .ticker-wrapper {
    overflow: hidden;
    width: 100%;
    /* Edges fade smooth (Premium look) */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .ticker-track {
    display: flex;
    gap: 50px; /* Logos ke beech gap */
    width: max-content;
    /* ⚡ JS clone karne ke baad ye animation chalegi */
    animation: scrollRightToLeft 33s linear infinite;
  }

  /* Hover karo toh ruk jaye */
  .ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
  }

  .ticker-slide {
    flex: 0 0 auto;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
    padding: 5px;
  }

  .ticker-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Default: Black & White (Theme match) */
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Hover: Real Color + Zoom */
  .ticker-slide:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
  }

  /* ═══ Right to Left Animation ═══ */
  @keyframes scrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 50% move karega kyunki JS ne 2x kar diya */
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .ticker-slide { width: 100px; height: 50px; padding: 4px; }
    .ticker-track { gap: 30px; }
  }






/* ============================================================
   SIMPLE SECTION - CONTAINER + IMAGE
   ============================================================ */

/* ============================================================
   CONTACT SECTION - IMAGE AS BACKGROUND
   ============================================================ */

.contact-overlay {
    padding: 80px 0;
    background: #F7F9FC;
}

/* ===== Container with Background Image ===== */
.contact-overlay-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 60px 70px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    
    /* Full Background Image */
    background-image: url('assets/img/hero/contact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== Dark Overlay for Readability ===== */
.contact-overlay-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* ===== Content on Top of Image ===== */
.contact-overlay-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

/* ============================================================
   TEXT STYLING
   ============================================================ */

.contact-overlay-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.contact-overlay-title {
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-overlay-title span {
    color: var(--secondary);
    position: relative;
}

.contact-overlay-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(133, 185, 198, 0.25);
    border-radius: 10px;
    z-index: -1;
}

.contact-overlay-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 90%;
    margin-bottom: 20px;
}

.contact-overlay-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-overlay-note i {
    color: var(--primary);
    font-size: 16px;
}

.contact-overlay-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.contact-overlay-trust span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-overlay-trust span i {
    color: var(--secondary);
    font-size: 15px;
}
/* Container - row mein */
.contact-overlay-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.cb {
    position: relative;
    display: flex;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    text-decoration: none;
    overflow: hidden;
    transition: width 0.35s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
}

.cb:hover {
    width: 140px;
}

/* Icon always stays left-pinned via absolute */
.cb-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cb-label {
    position: absolute;
    left: 46px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease 0.15s;
}

.cb:hover .cb-label {
    opacity: 1;
}

.wa-btn { background: #25D366; }
.gm-btn { background: #EA4335; }
/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .contact-overlay {
        padding: 60px 20px;
    }
    
    .contact-overlay-container {
        padding: 45px 40px;
        min-height: 380px;
        border-radius: 24px;
    }
    
    .contact-overlay-title {
        font-size: 32px;
    }
    
    .contact-overlay-content {
        max-width: 65%;
    }
}

@media (max-width: 768px) {
    .contact-overlay {
        padding: 40px 15px;
    }
    
    .contact-overlay-container {
        padding: 35px 28px;
        min-height: auto;
        border-radius: 20px;
    }
    
    .contact-overlay-content {
        max-width: 100%;
        text-align: center;
    }
    
    .contact-overlay-title {
        font-size: 28px;
    }
    
    .contact-overlay-desc {
        max-width: 100%;
    }
    
    .contact-overlay-note {
        justify-content: center;
    }
    
    .contact-overlay-trust {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-overlay {
        padding: 30px 12px;
    }
    
    .contact-overlay-container {
        padding: 24px 18px;
        border-radius: 16px;
    }
    
    .contact-overlay-title {
        font-size: 24px;
    }
    
    .contact-overlay-desc {
        font-size: 15px;
    }
    
    .contact-overlay-trust {
        gap: 10px 14px;
    }
    
    .contact-overlay-trust span {
        font-size: 12px;
    }
    
    .contact-overlay-note {
        font-size: 13px;
    }
}
























































/* ============================================================
   FOOTER - COMPLETE
   ============================================================ */

.mp-footer.dark-bg {
    background: #0a0a1a !important;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Footer Widget Title ===== */
.tp-footer__widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.tp-footer__widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 4px;
}

/* ===== Footer Links ===== */
.tp-footer__widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-footer__widget ul li {
    margin-bottom: 12px;
}

.tp-footer__widget ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.tp-footer__widget ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

/* ===== Footer About Text ===== */
.footer-about-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 90%;
}

/* ===== Trust Badges ===== */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-badge i {
    color: var(--secondary);
    font-size: 12px;
}

/* ============================================================
   CONTACT ITEMS
   ============================================================ */

.footer-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: var(--secondary);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.footer-contact-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.footer-contact-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.footer-contact-text p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-text p a:hover {
    color: var(--secondary);
}

/* ============================================================
   FOOTER BOTTOM
   ============================================================ */

.tp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mp-footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.mp-footer-copyright a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.mp-footer-copyright a:hover {
    color: var(--secondary);
}
.footer-powered-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
}

.footer-powered-logo {
    height: 28px;
    width: auto;
    display: inline-block;
    transition: filter 0.3s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .tp-footer__main {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
    }
    
    .footer-about-text {
        max-width: 100%;
    }
    
    .tp-footer__widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .tp-footer__widget {
        text-align: center;
    }
    
    .footer-trust-badges {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .trust-badge {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .tp-footer__bottom .row > div {
        margin-bottom: 12px;
    }
    .tp-footer__bottom .row > div:last-child {
        margin-bottom: 0;
    }
}