/* Main Slider */
#tb-slider .color-animate-img {
    filter: grayscale(100%);
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: colorCycle 4s ease-in-out infinite;
}

#tb-slider .carousel-item:hover .color-animate-img {
    animation: none;
    filter: grayscale(0%);
}

@keyframes colorCycle {
    0% {
        filter: grayscale(100%);
    }
    50% {
        filter: grayscale(0%);
    }
    100% {
        filter: grayscale(100%);
    }
}

#tb-slider .carousel-item {
    overflow: hidden;
}

#tb-slider .zoom-img {
    transition:
        transform 6s ease-in-out,
        filter 0.4s ease-in-out;
}

#tb-slider .carousel-item.active .zoom-img {
    transform: scale(1.08);
}

#tb-slider .carousel-indicators [data-bs-target] {
    background-color: #fe9400;
    width: 40px;
    height: 4px;
    border-radius: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

#tb-slider .carousel-indicators .active {
    opacity: 1;
    background-color: #fe9400;
}

#tb-slider .carousel-control-prev-icon,
#tb-slider .carousel-control-next-icon {
    background-color: #fe9400;
    border-radius: 50%;
    padding: 25px;
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#tb-slider .carousel-control-prev-icon:hover,
#tb-slider .carousel-control-next-icon:hover {
    opacity: 1;
    transform: scale(1.05);
    background-color: #fe9400;
}

#tb-slider .carousel-control-prev,
#tb-slider .carousel-control-next {
    opacity: 1;
    width: 8%;
}

#tb-slider .zoom-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#tb-slider .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s ease;
}

@media (max-width: 768px) {
    #tb-slider .carousel-control-prev-icon,
    #tb-slider .carousel-control-next-icon {
        padding: 15px;
    }

    #tb-slider .carousel-indicators [data-bs-target] {
        width: 25px;
        height: 3px;
    }

    #tb-slider .color-animate-img {
        animation-duration: 3s;
    }
}
/* ============================================
   TECHBINGE - GLOBAL STYLES & SCROLLBAR
   ============================================ */

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
}

body > * {
    max-width: 100%;
}

/* ============================================
   TECHBINGE - SCROLL PROGRESS BAR
   ============================================ */

#tb-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #fe9400, #f97316);
    z-index: 99999;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ============================================
   TECHBINGE - SCROLL TO TOP BUTTON
   ============================================ */

#tb-scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d1f4e;
    color: #fff;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

#tb-scroll-to-top.visible {
    display: flex;
    opacity: 1;
}

#tb-scroll-to-top:hover {
    background: #fe9400;
    transform: translateY(-4px);
    color: #fff;
}

/* ============================================
   TECHBINGE - ACTIVE NAVIGATION STYLES
   ============================================ */

.main-menu__list > li > a.tb-active-nav {
    color: #ffffff !important;
}

.main-menu__list li ul li a {
    color: inherit !important;
}

.main-menu__list li ul li a:hover {
    color: #000000 !important;
}

/* ============================================
   TECHBINGE - CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fe9400, #f97316);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

/* ============================================
   TECHBINGE - ANIMATION KEYFRAMES
   ============================================ */

@keyframes tbSectionGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0.35);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(254, 148, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0);
    }
}

section:target {
    animation: tbSectionGlow 0.9s ease-out;
}

@keyframes tbFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.tb-cta-btn-primary {
    animation: tbFloat 3s ease-in-out infinite;
}

@keyframes tbPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(254, 148, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0);
    }
}

.tb-portfolio-tab.active {
    animation: tbPulse 2s infinite;
}

@keyframes tbShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: tbShimmer 1.5s infinite;
}

/* ============================================
   TECHBINGE - RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    #tb-scroll-progress {
        height: 2px;
    }
    #tb-scroll-to-top {
        bottom: 20px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
}
/* ============================================
   TECHBINGE - SECTION HEADING WITH GRADIENT BORDER
   Prefix: tb-
   ============================================ */

.tb-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.tb-section-heading h2,
.tb-section-heading .tb-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.tb-section-heading h2::before,
.tb-section-heading .tb-heading::before {
    content: "";
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #fe9400);
}

.tb-section-heading h2::after,
.tb-section-heading .tb-heading::after {
    content: "";
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(to left, transparent, #fe9400);
}

.tb-section-heading p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 12px auto 0;
}

@media (max-width: 768px) {
    .tb-section-heading h2,
    .tb-section-heading .tb-heading {
        font-size: 26px;
    }
}

/* ============================================
   TECHBINGE - BUTTONS
   ============================================ */

.tb-btn {
    display: inline-block;
    background: #fe9400;
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tb-btn:hover {
    background: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    color: #fff;
}

.tb-btn-outline {
    background: transparent;
    border: 2px solid #fe9400;
    color: #fe9400;
}

.tb-btn-outline:hover {
    background: #fe9400;
    color: #fff;
}

/* ============================================
   TECHBINGE - GRID SYSTEMS
   ============================================ */

.tb-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tb-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tb-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* ============================================
   TECHBINGE - CARDS
   ============================================ */

.tb-card {
    background: #fff;
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.tb-card:hover {
    transform: translateY(-8px);
    border-color: #fe9400;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.tb-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fff5e8, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #fee0b5;
}

.tb-card:hover .tb-card-icon {
    background: #fe9400;
    border-color: #fe9400;
}

.tb-card-icon i,
.tb-card-icon img {
    font-size: 36px;
    color: #fe9400;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.tb-card:hover .tb-card-icon i,
.tb-card:hover .tb-card-icon img {
    color: #fff;
    filter: brightness(0) invert(1);
}

.tb-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.tb-card-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   TECHBINGE - HERO SECTION
   ============================================ */

.tb-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
    overflow: hidden;
}

.tb-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.tb-hero-content {
    flex: 1;
}

.tb-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fe9400, #f97316);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tb-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #0d1f4e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tb-hero-title span {
    color: #fe9400;
}

.tb-hero-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tb-hero-image {
    flex: 1;
    text-align: center;
}

.tb-hero-image img {
    max-width: 100%;
    height: auto;
    animation: tbFloat 3s ease-in-out infinite;
}

@keyframes tbFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   TECHBINGE - CTA SECTION
   ============================================ */

.tb-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1f4e 0%, #1a2f5e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tb-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(254, 148, 0, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.tb-cta::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(254, 148, 0, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.tb-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.tb-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.tb-cta-text {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ============================================
   TECHBINGE - BACKGROUND COLORS
   ============================================ */

.tb-bg-white {
    background: #fff;
}

.tb-bg-light {
    background: #f8faff;
}

.tb-bg-gray {
    background: #f6f8ff;
}

.tb-bg-dark {
    background: #0d1f4e;
}

/* ============================================
   TECHBINGE - SECTION PADDING
   ============================================ */

.tb-py-60 {
    padding: 60px 0;
}

.tb-py-80 {
    padding: 80px 0;
}

.tb-py-100 {
    padding: 100px 0;
}

/* ============================================
   TECHBINGE - WEBSITE PROCESS DEPLOYMENT SECTION
   Prefix: tb-wps-
   ============================================ */

#tb-website-process-section {
    font-family: "Poppins", sans-serif;
    background: #f8faff;
    padding: 80px 24px 72px;
    overflow: hidden;
}

#tb-website-process-section .tb-wps-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1160px;
    margin: 0 auto;
}

#tb-website-process-section .tb-wps-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 152px;
    opacity: 0;
    transform: translateY(32px);
    animation: tbWpsRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#tb-website-process-section .tb-wps-card:nth-child(1) {
    animation-delay: 0.08s;
}

#tb-website-process-section .tb-wps-card:nth-child(3) {
    animation-delay: 0.2s;
}

#tb-website-process-section .tb-wps-card:nth-child(5) {
    animation-delay: 0.32s;
}

#tb-website-process-section .tb-wps-card:nth-child(7) {
    animation-delay: 0.44s;
}

#tb-website-process-section .tb-wps-card:nth-child(9) {
    animation-delay: 0.56s;
}

#tb-website-process-section .tb-wps-card:nth-child(11) {
    animation-delay: 0.68s;
}

@keyframes tbWpsRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#tb-website-process-section .tb-wps-halo {
    position: relative;
    width: 108px;
    height: 108px;
    margin-bottom: 16px;
}

#tb-website-process-section .tb-wps-halo::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1.5px dashed;
    animation: tbWpsSpin 14s linear infinite;
}

@keyframes tbWpsSpin {
    to {
        transform: rotate(360deg);
    }
}

#tb-website-process-section .tb-wps-badge {
    position: absolute;
    top: -5px;
    right: -13px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 4;
    white-space: nowrap;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(0);
    animation: tbWpsPop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

#tb-website-process-section .tb-wps-card:nth-child(1) .tb-wps-badge {
    animation-delay: 0.28s;
}

#tb-website-process-section .tb-wps-card:nth-child(3) .tb-wps-badge {
    animation-delay: 0.4s;
}

#tb-website-process-section .tb-wps-card:nth-child(5) .tb-wps-badge {
    animation-delay: 0.52s;
}

#tb-website-process-section .tb-wps-card:nth-child(7) .tb-wps-badge {
    animation-delay: 0.64s;
}

#tb-website-process-section .tb-wps-card:nth-child(9) .tb-wps-badge {
    animation-delay: 0.76s;
}

#tb-website-process-section .tb-wps-card:nth-child(11) .tb-wps-badge {
    animation-delay: 0.88s;
}

@keyframes tbWpsPop {
    to {
        transform: scale(1);
    }
}

#tb-website-process-section .tb-wps-circle {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition:
        transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s;
    cursor: default;
}

#tb-website-process-section .tb-wps-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

#tb-website-process-section .tb-wps-circle:hover::after {
    transform: scale(1);
}

#tb-website-process-section .tb-wps-circle:hover {
    transform: translateY(-8px) scale(1.06);
}

#tb-website-process-section .tb-wps-icon {
    font-size: 40px;
    position: relative;
    z-index: 1;
    transition:
        color 0.22s,
        transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#tb-website-process-section .tb-wps-circle:hover .tb-wps-icon {
    color: #fff !important;
    transform: scale(1.15) rotate(-5deg);
}

#tb-website-process-section .tb-wps-label {
    font-size: 14px;
    font-weight: 600;
    color: #0d1f4e;
    text-align: center;
    position: relative;
}

#tb-website-process-section .tb-wps-label::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    margin: 5px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

#tb-website-process-section .tb-wps-card:hover .tb-wps-label::after {
    width: 60%;
}

#tb-website-process-section .tb-wps-h-conn {
    display: flex;
    align-items: center;
    padding-bottom: 52px;
    flex: 0 0 auto;
    gap: 4px;
    opacity: 0;
    animation: tbWpsFade 0.3s ease forwards;
}

#tb-website-process-section .tb-wps-h-conn:nth-child(2) {
    animation-delay: 0.26s;
}

#tb-website-process-section .tb-wps-h-conn:nth-child(4) {
    animation-delay: 0.38s;
}

#tb-website-process-section .tb-wps-h-conn:nth-child(6) {
    animation-delay: 0.5s;
}

#tb-website-process-section .tb-wps-h-conn:nth-child(8) {
    animation-delay: 0.62s;
}

#tb-website-process-section .tb-wps-h-conn:nth-child(10) {
    animation-delay: 0.74s;
}

@keyframes tbWpsFade {
    to {
        opacity: 1;
    }
}

#tb-website-process-section .tb-wps-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: tbWpsDot 2.2s ease-in-out infinite;
}

#tb-website-process-section .tb-wps-dot:nth-child(1) {
    animation-delay: 0s;
}

#tb-website-process-section .tb-wps-dot:nth-child(2) {
    animation-delay: 0.28s;
}

#tb-website-process-section .tb-wps-dot:nth-child(3) {
    animation-delay: 0.56s;
}

#tb-website-process-section .tb-wps-dot:nth-child(4) {
    animation-delay: 0.84s;
}

#tb-website-process-section .tb-wps-arr {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

#tb-website-process-section .tb-wps-v-conn {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

#tb-website-process-section .tb-wps-vdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: tbWpsDot 2.2s ease-in-out infinite;
}

#tb-website-process-section .tb-wps-vdot:nth-child(1) {
    animation-delay: 0s;
}

#tb-website-process-section .tb-wps-vdot:nth-child(2) {
    animation-delay: 0.28s;
}

#tb-website-process-section .tb-wps-vdot:nth-child(3) {
    animation-delay: 0.56s;
}

#tb-website-process-section .tb-wps-vdot:nth-child(4) {
    animation-delay: 0.84s;
}

#tb-website-process-section .tb-wps-varr {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    margin-top: 2px;
}

#tb-website-process-section .s1 .tb-wps-halo::before {
    border-color: rgba(136, 135, 128, 0.35);
}

#tb-website-process-section .s1 .tb-wps-badge {
    background: #5f5e5a;
}

#tb-website-process-section .s1 .tb-wps-circle {
    border-color: #888780;
}

#tb-website-process-section .s1 .tb-wps-circle::after {
    background: #888780;
}

#tb-website-process-section .s1 .tb-wps-circle:hover {
    box-shadow: 0 20px 40px rgba(136, 135, 128, 0.28);
}

#tb-website-process-section .s1 .tb-wps-icon {
    color: #888780;
}

#tb-website-process-section .s1 .tb-wps-label::after {
    background: #888780;
}

#tb-website-process-section .c1 .tb-wps-dot,
#tb-website-process-section .c1 .tb-wps-vdot {
    background: #b4b2a9;
}

#tb-website-process-section .c1 .tb-wps-arr {
    border-left: 8px solid #b4b2a9;
}

#tb-website-process-section .c1 .tb-wps-varr {
    border-top: 8px solid #b4b2a9;
}

@keyframes tbWpsDotC1 {
    0%,
    100% {
        background: #b4b2a9;
        transform: scale(1);
    }
    50% {
        background: #888780;
        transform: scale(1.6);
    }
}

#tb-website-process-section .c1 .tb-wps-dot,
#tb-website-process-section .c1 .tb-wps-vdot {
    animation-name: tbWpsDotC1;
}

#tb-website-process-section .s2 .tb-wps-halo::before {
    border-color: rgba(55, 138, 221, 0.3);
}

#tb-website-process-section .s2 .tb-wps-badge {
    background: #185fa5;
}

#tb-website-process-section .s2 .tb-wps-circle {
    border-color: #378add;
}

#tb-website-process-section .s2 .tb-wps-circle::after {
    background: #378add;
}

#tb-website-process-section .s2 .tb-wps-circle:hover {
    box-shadow: 0 20px 40px rgba(55, 138, 221, 0.25);
}

#tb-website-process-section .s2 .tb-wps-icon {
    color: #378add;
}

#tb-website-process-section .s2 .tb-wps-label::after {
    background: #378add;
}

#tb-website-process-section .c2 .tb-wps-dot,
#tb-website-process-section .c2 .tb-wps-vdot {
    background: #85b7eb;
}

#tb-website-process-section .c2 .tb-wps-arr {
    border-left: 8px solid #85b7eb;
}

#tb-website-process-section .c2 .tb-wps-varr {
    border-top: 8px solid #85b7eb;
}

@keyframes tbWpsDotC2 {
    0%,
    100% {
        background: #85b7eb;
        transform: scale(1);
    }
    50% {
        background: #378add;
        transform: scale(1.6);
    }
}

#tb-website-process-section .c2 .tb-wps-dot,
#tb-website-process-section .c2 .tb-wps-vdot {
    animation-name: tbWpsDotC2;
}

#tb-website-process-section .s3 .tb-wps-halo::before {
    border-color: rgba(127, 119, 221, 0.3);
}

#tb-website-process-section .s3 .tb-wps-badge {
    background: #534ab7;
}

#tb-website-process-section .s3 .tb-wps-circle {
    border-color: #7f77dd;
}

#tb-website-process-section .s3 .tb-wps-circle::after {
    background: #7f77dd;
}

#tb-website-process-section .s3 .tb-wps-circle:hover {
    box-shadow: 0 20px 40px rgba(127, 119, 221, 0.25);
}

#tb-website-process-section .s3 .tb-wps-icon {
    color: #7f77dd;
}

#tb-website-process-section .s3 .tb-wps-label::after {
    background: #7f77dd;
}

#tb-website-process-section .c3 .tb-wps-dot,
#tb-website-process-section .c3 .tb-wps-vdot {
    background: #afa9ec;
}

#tb-website-process-section .c3 .tb-wps-arr {
    border-left: 8px solid #afa9ec;
}

#tb-website-process-section .c3 .tb-wps-varr {
    border-top: 8px solid #afa9ec;
}

@keyframes tbWpsDotC3 {
    0%,
    100% {
        background: #afa9ec;
        transform: scale(1);
    }
    50% {
        background: #7f77dd;
        transform: scale(1.6);
    }
}

#tb-website-process-section .c3 .tb-wps-dot,
#tb-website-process-section .c3 .tb-wps-vdot {
    animation-name: tbWpsDotC3;
}

#tb-website-process-section .s4 .tb-wps-halo::before {
    border-color: rgba(29, 158, 117, 0.3);
}

#tb-website-process-section .s4 .tb-wps-badge {
    background: #0f6e56;
}

#tb-website-process-section .s4 .tb-wps-circle {
    border-color: #1d9e75;
}

#tb-website-process-section .s4 .tb-wps-circle::after {
    background: #1d9e75;
}

#tb-website-process-section .s4 .tb-wps-circle:hover {
    box-shadow: 0 20px 40px rgba(29, 158, 117, 0.25);
}

#tb-website-process-section .s4 .tb-wps-icon {
    color: #1d9e75;
}

#tb-website-process-section .s4 .tb-wps-label::after {
    background: #1d9e75;
}

#tb-website-process-section .c4 .tb-wps-dot,
#tb-website-process-section .c4 .tb-wps-vdot {
    background: #5dcaa5;
}

#tb-website-process-section .c4 .tb-wps-arr {
    border-left: 8px solid #5dcaa5;
}

#tb-website-process-section .c4 .tb-wps-varr {
    border-top: 8px solid #5dcaa5;
}

@keyframes tbWpsDotC4 {
    0%,
    100% {
        background: #5dcaa5;
        transform: scale(1);
    }
    50% {
        background: #1d9e75;
        transform: scale(1.6);
    }
}

#tb-website-process-section .c4 .tb-wps-dot,
#tb-website-process-section .c4 .tb-wps-vdot {
    animation-name: tbWpsDotC4;
}

#tb-website-process-section .s5 .tb-wps-halo::before {
    border-color: rgba(239, 159, 39, 0.35);
}

#tb-website-process-section .s5 .tb-wps-badge {
    background: #854f0b;
}

#tb-website-process-section .s5 .tb-wps-circle {
    border-color: #ef9f27;
}

#tb-website-process-section .s5 .tb-wps-circle::after {
    background: #ef9f27;
}

#tb-website-process-section .s5 .tb-wps-circle:hover {
    box-shadow: 0 20px 40px rgba(239, 159, 39, 0.28);
}

#tb-website-process-section .s5 .tb-wps-icon {
    color: #ef9f27;
}

#tb-website-process-section .s5 .tb-wps-label::after {
    background: #ef9f27;
}

#tb-website-process-section .c5 .tb-wps-dot,
#tb-website-process-section .c5 .tb-wps-vdot {
    background: #fac775;
}

#tb-website-process-section .c5 .tb-wps-arr {
    border-left: 8px solid #fac775;
}

#tb-website-process-section .c5 .tb-wps-varr {
    border-top: 8px solid #fac775;
}

@keyframes tbWpsDotC5 {
    0%,
    100% {
        background: #fac775;
        transform: scale(1);
    }
    50% {
        background: #ef9f27;
        transform: scale(1.6);
    }
}

#tb-website-process-section .c5 .tb-wps-dot,
#tb-website-process-section .c5 .tb-wps-vdot {
    animation-name: tbWpsDotC5;
}

#tb-website-process-section .s6 .tb-wps-halo::before {
    border-color: rgba(99, 153, 34, 0.35);
}

#tb-website-process-section .s6 .tb-wps-badge {
    background: #3b6d11;
}

#tb-website-process-section .s6 .tb-wps-circle {
    border-color: #639922;
}

#tb-website-process-section .s6 .tb-wps-circle::after {
    background: #639922;
}

#tb-website-process-section .s6 .tb-wps-circle:hover {
    box-shadow: 0 20px 40px rgba(99, 153, 34, 0.28);
}

#tb-website-process-section .s6 .tb-wps-icon {
    color: #639922;
}

#tb-website-process-section .s6 .tb-wps-label::after {
    background: #639922;
}

@media (max-width: 1100px) {
    #tb-website-process-section .tb-wps-card {
        width: 120px;
    }
    #tb-website-process-section .tb-wps-halo,
    #tb-website-process-section .tb-wps-circle {
        width: 88px;
        height: 88px;
    }
    #tb-website-process-section .tb-wps-icon {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    #tb-website-process-section {
        padding: 48px 20px 52px;
        background: #fff;
    }
    #tb-website-process-section .tb-wps-track {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
    }
    #tb-website-process-section .tb-wps-card {
        width: 100%;
        max-width: 220px;
    }
    #tb-website-process-section .tb-wps-halo,
    #tb-website-process-section .tb-wps-circle {
        width: 104px;
        height: 104px;
    }
    #tb-website-process-section .tb-wps-icon {
        font-size: 38px;
    }
    #tb-website-process-section .tb-wps-label {
        font-size: 15px;
    }
    #tb-website-process-section .tb-wps-h-conn {
        display: none;
    }
    #tb-website-process-section .tb-wps-v-conn {
        display: flex;
    }
    #tb-website-process-section .tb-wps-card:nth-child(1) {
        animation-delay: 0.05s;
    }
    #tb-website-process-section .tb-wps-card:nth-child(3) {
        animation-delay: 0.15s;
    }
    #tb-website-process-section .tb-wps-card:nth-child(5) {
        animation-delay: 0.25s;
    }
    #tb-website-process-section .tb-wps-card:nth-child(7) {
        animation-delay: 0.35s;
    }
    #tb-website-process-section .tb-wps-card:nth-child(9) {
        animation-delay: 0.45s;
    }
    #tb-website-process-section .tb-wps-card:nth-child(11) {
        animation-delay: 0.55s;
    }
}
/* ============================================
   TECHBINGE - SERVICES SECTION
   ============================================ */

#techbinge-services {
    background: url("https://staging.techbinge.org/storage/media/1780155643_1uqZeeduUB.jpg")
        center/cover no-repeat fixed;
    padding: 80px 0;
    position: relative;
}

#techbinge-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

#techbinge-services .container {
    position: relative;
    z-index: 2;
}

#techbinge-services .section-title {
    text-align: center;
    margin-bottom: 50px;
}

#techbinge-services .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

#techbinge-services .section-title p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

#techbinge-services .service-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#techbinge-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#techbinge-services .service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin: 0;
}

#techbinge-services .service-content {
    padding: 20px 25px 25px;
}

#techbinge-services .service-title {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 10px;
    color: #1e293b;
}

#techbinge-services .service-desc {
    font-size: 14px;
    color: #121212;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 0 20px;
}
/* ============================================
   TECHBINGE - WHY CHOOSE TECHBINGE SECTION
   ============================================ */

#why-techbinge {
    padding: 80px 0;
    background: #fff;
}

#why-techbinge .video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}

#why-techbinge .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

#why-techbinge .why-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#why-techbinge .why-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

#why-techbinge .why-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

#why-techbinge .why-content p strong {
    color: #1e293b;
    font-weight: 700;
}

#why-techbinge a.thm-btn.whychoose-btn {
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    #why-techbinge .why-content {
        padding-left: 0;
        padding-top: 30px;
    }
    #why-techbinge .why-content h2 {
        font-size: 26px;
    }
}
/* ============================================
   TECHBINGE - EXPLORE BRANDS SECTION
   ============================================ */

#tb-explore-brands {
    padding: 80px 0;
    background: #f8faff;
}

#tb-explore-brands .tb-brand-card {
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

#tb-explore-brands .tb-brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

#tb-explore-brands .tb-brand-card.dark {
    background: #0f172a;
}

#tb-explore-brands .tb-brand-card.yellow {
    background: #fef9e7;
}

#tb-explore-brands .tb-brand-card.teal {
    background: #e0f7f4;
}

#tb-explore-brands .tb-brand-card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

#tb-explore-brands .tb-brand-card.dark p {
    color: #e2e8f0;
}

#tb-explore-brands .tb-brand-card.yellow p,
#tb-explore-brands .tb-brand-card.teal p {
    color: #1e293b;
}

#tb-explore-brands .tb-brand-highlight {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
}

#tb-explore-brands .tb-highlight-green {
    background: #d9f99d;
    color: #1e293b;
}

#tb-explore-brands .tb-highlight-orange {
    background: #f97316;
    color: #fff;
}

#tb-explore-brands .tb-highlight-teal {
    background: #2dd4bf;
    color: #fff;
}

#tb-explore-brands .tb-brand-logo {
    width: auto;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 24px auto;
    display: block;
}

#tb-explore-brands .tb-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: opacity 0.2s;
    margin-top: auto;
}

#tb-explore-brands .tb-brand-link:hover {
    opacity: 0.75;
}

#tb-explore-brands .tb-brand-card.dark .tb-brand-link {
    color: #e2e8f0;
}

#tb-explore-brands .tb-brand-card.yellow .tb-brand-link {
    color: #1e293b;
}

#tb-explore-brands .tb-brand-card.teal .tb-brand-link {
    color: #0f766e;
}

#tb-explore-brands .tb-brand-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    #tb-explore-brands .tb-brand-card {
        margin-bottom: 20px;
    }
}
/* ============================================
   TECHBINGE - PORTFOLIO SECTION
   ============================================ */

#tb-portfolio {
    padding: 80px 0;
    background: #fff;
}

#tb-portfolio .tb-portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 36px;
    padding-bottom: 0;
}

#tb-portfolio .tb-portfolio-tab {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    padding-bottom: 14px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition:
        color 0.2s,
        border-color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

#tb-portfolio .tb-portfolio-tab.active {
    color: #f97316;
    border-bottom-color: #f97316;
    animation: tbPortfolioPulseGlow 2s infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes tbPortfolioPulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    #tb-portfolio .tb-portfolio-tab.active {
        animation: none;
    }
}

#tb-portfolio .tb-portfolio-tab:hover:not(.active) {
    color: #1e293b;
}

#tb-portfolio .tb-portfolio-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

#tb-portfolio .tb-portfolio-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

#tb-portfolio .tb-portfolio-slide {
    min-width: calc(33.333% - 14px);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

#tb-portfolio .tb-portfolio-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

#tb-portfolio .tb-portfolio-slide:hover img {
    transform: scale(1.05);
}

#tb-portfolio .tb-portfolio-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    padding: 20px 16px 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

#tb-portfolio .tb-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition:
        background 0.2s,
        box-shadow 0.2s;
    color: #1e293b;
    font-size: 18px;
}

#tb-portfolio .tb-carousel-btn:hover {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}

#tb-portfolio .tb-carousel-btn.prev {
    left: -20px;
}

#tb-portfolio .tb-carousel-btn.next {
    right: -20px;
}

#tb-portfolio .tb-carousel-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
}

#tb-portfolio .tb-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

#tb-portfolio .tb-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition:
        background 0.2s,
        width 0.2s;
    border: none;
}

#tb-portfolio .tb-carousel-dot.active {
    background: #f97316;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    #tb-portfolio .tb-portfolio-slide {
        min-width: calc(100% - 0px);
    }
    #tb-portfolio .tb-carousel-btn.prev {
        left: 4px;
    }
    #tb-portfolio .tb-carousel-btn.next {
        right: 4px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #tb-portfolio .tb-portfolio-slide {
        min-width: calc(50% - 10px);
    }
}
/* ============================================
   TECHBINGE - TOOLS WE USE SECTION
   ============================================ */

#tb-tools-we-use {
    padding: 80px 0;
    background: #f8faff;
}

#tb-tools-we-use .tb-tools-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
    padding-bottom: 0;
    flex-wrap: wrap;
}

#tb-tools-we-use .tb-tools-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    padding: 10px 20px 14px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition:
        color 0.2s,
        border-color 0.2s;
    position: relative;
    will-change: auto;
}

#tb-tools-we-use .tb-tools-tab i {
    font-size: 18px;
}

#tb-tools-we-use .tb-tools-tab.active {
    color: #f97316;
    border-bottom-color: #f97316;
    animation: tbToolsPulseGlow 2s infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes tbToolsPulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0.4);
        text-shadow: 0 0 0 rgba(254, 148, 0, 0);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(254, 148, 0, 0);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(254, 148, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0);
        text-shadow: 0 0 0 rgba(254, 148, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    #tb-tools-we-use .tb-tools-tab.active {
        animation: none;
        transition: box-shadow 0.2s ease;
    }
    #tb-tools-we-use .tb-tools-tab.active:hover {
        box-shadow: 0 0 0 4px rgba(254, 148, 0, 0.3);
    }
}

#tb-tools-we-use .tb-tools-tab:hover:not(.active) {
    color: #1e293b;
}

#tb-tools-we-use .tb-tools-panel {
    display: none;
}

#tb-tools-we-use .tb-tools-panel.active {
    display: block;
}

#tb-tools-we-use .tb-tools-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 60px;
}

#tb-tools-we-use .tb-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 110px;
    transition: transform 0.25s ease;
    cursor: default;
}

#tb-tools-we-use .tb-tool-item:hover {
    transform: translateY(-6px);
}

#tb-tools-we-use .tb-tool-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

#tb-tools-we-use .tb-tool-item span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 576px) {
    #tb-tools-we-use .tb-tools-grid {
        gap: 30px 30px;
    }
    #tb-tools-we-use .tb-tool-item {
        width: 80px;
    }
    #tb-tools-we-use .tb-tool-item img {
        width: 60px;
        height: 60px;
    }
    #tb-tools-we-use .tb-tools-tab {
        padding: 8px 12px 12px;
        font-size: 13px;
    }
    @keyframes tbToolsPulseGlow {
        0% {
            box-shadow: 0 0 0 0 rgba(254, 148, 0, 0.3);
        }
        70% {
            box-shadow: 0 0 0 6px rgba(254, 148, 0, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(254, 148, 0, 0);
        }
    }
}
/* ============================================
   TECHBINGE - TESTIMONIALS SECTION
   ============================================ */

#tb-testimonials-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

#tb-testimonials-section .testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 50px;
}

#tb-testimonials-section .testimonials-slider {
    overflow: hidden;
    width: 100%;
}

#tb-testimonials-section .testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    align-items: stretch;
}

#tb-testimonials-section .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #f8faff;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#tb-testimonials-section .testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #fe9400;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

#tb-testimonials-section .testimonial-rating {
    margin-bottom: 20px;
    color: #fe9400;
    flex-shrink: 0;
}

#tb-testimonials-section .testimonial-rating i {
    font-size: 16px;
    margin-right: 4px;
}

#tb-testimonials-section .testimonial-text-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#tb-testimonials-section .testimonial-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

#tb-testimonials-section .testimonial-read-more-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    text-align: left;
    width: fit-content;
    flex-shrink: 0;
}

#tb-testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

#tb-testimonials-section .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

#tb-testimonials-section .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#tb-testimonials-section .author-info {
    flex-grow: 1;
}

#tb-testimonials-section .author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

#tb-testimonials-section .author-info span {
    font-size: 13px;
    color: #6b7280;
}

#tb-testimonials-section .testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eef2f6;
    color: #fe9400;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tb-testimonials-section .testimonial-nav:hover {
    background: #fe9400;
    color: #fff;
    border-color: #fe9400;
}

#tb-testimonials-section .prev-btn {
    left: 0;
}

#tb-testimonials-section .next-btn {
    right: 0;
}

#tb-testimonials-section .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

#tb-testimonials-section .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

#tb-testimonials-section .dot.active {
    background: #fe9400;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    #tb-testimonials-section .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    #tb-testimonials-section {
        padding: 60px 0;
    }
    #tb-testimonials-section .testimonials-wrapper {
        padding: 0 40px;
    }
    #tb-testimonials-section .testimonial-card {
        flex: 0 0 100%;
    }
}
/* ============================================
   TECHBINGE - CTA SECTION
   ============================================ */

#tb-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d1f4e 0%, #1a2f5e 100%);
    position: relative;
    overflow: hidden;
}

#tb-cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(254, 148, 0, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

#tb-cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(254, 148, 0, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

#tb-cta-section .tb-cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

#tb-cta-section .tb-cta-content {
    flex: 1;
    text-align: left;
}

#tb-cta-section .tb-cta-badge {
    display: inline-block;
    background: rgba(254, 148, 0, 0.2);
    color: #fe9400;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(254, 148, 0, 0.3);
}

#tb-cta-section .tb-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

#tb-cta-section .tb-cta-title span {
    color: #fe9400;
}

#tb-cta-section .tb-cta-text {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

#tb-cta-section .tb-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#tb-cta-section .tb-cta-btn-primary {
    display: inline-block;
    background: #fe9400;
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

#tb-cta-section .tb-cta-btn-primary:hover {
    background: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    color: #fff;
}

#tb-cta-section .tb-cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fe9400;
    cursor: pointer;
    font-size: 14px;
}

#tb-cta-section .tb-cta-btn-secondary:hover {
    background: #fe9400;
    color: #fff;
    transform: translateY(-2px);
}

#tb-cta-section .tb-cta-stats {
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#tb-cta-section .tb-stat-item {
    text-align: center;
}

#tb-cta-section .tb-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #fe9400;
    margin-bottom: 5px;
}

#tb-cta-section .tb-stat-label {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0;
}

@media (max-width: 992px) {
    #tb-cta-section .tb-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    #tb-cta-section .tb-cta-content {
        text-align: center;
    }
    #tb-cta-section .tb-cta-text {
        max-width: 100%;
    }
    #tb-cta-section .tb-cta-buttons {
        justify-content: center;
    }
    #tb-cta-section .tb-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    #tb-cta-section {
        padding: 40px 0;
    }
    #tb-cta-section .tb-cta-title {
        font-size: 24px;
    }
    #tb-cta-section .tb-cta-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    #tb-cta-section .tb-stat-number {
        font-size: 24px;
    }
}
/* ============================================
   TECHBINGE - BLOG SECTION
   ============================================ */

#tb-blog-section {
    padding: 80px 0;
    background: #f8faff;
}

#tb-blog-section .tb-blog-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 50px;
}

#tb-blog-section .tb-blog-carousel {
    overflow: hidden;
    width: 100%;
}

#tb-blog-section .tb-blog-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

#tb-blog-section .tb-blog-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

#tb-blog-section .tb-blog-card:hover {
    transform: translateY(-8px);
    border-color: #fe9400;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

#tb-blog-section .tb-blog-image {
    position: relative;
    overflow: hidden;
    background: #f8faff;
}

#tb-blog-section .tb-blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#tb-blog-section .tb-blog-card:hover .tb-blog-image img {
    transform: scale(1.05);
}

#tb-blog-section .tb-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fe9400;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

#tb-blog-section .tb-blog-content {
    padding: 25px;
}

#tb-blog-section .tb-blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

#tb-blog-section .tb-blog-meta span {
    font-size: 13px;
    color: #6b7280;
}

#tb-blog-section .tb-blog-meta span i {
    margin-right: 5px;
    color: #fe9400;
}

#tb-blog-section .tb-blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

#tb-blog-section .tb-blog-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

#tb-blog-section .tb-blog-title a:hover {
    color: #fe9400;
}

#tb-blog-section .tb-blog-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

#tb-blog-section .tb-blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fe9400;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#tb-blog-section .tb-blog-readmore:hover {
    gap: 12px;
    color: #f97316;
}

#tb-blog-section .tb-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eef2f6;
    color: #fe9400;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tb-blog-section .tb-carousel-btn:hover {
    background: #fe9400;
    color: #fff;
    border-color: #fe9400;
}

#tb-blog-section .prev-btn {
    left: 0;
}

#tb-blog-section .next-btn {
    right: 0;
}

#tb-blog-section .tb-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

#tb-blog-section .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

#tb-blog-section .dot.active {
    background: #fe9400;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    #tb-blog-section .tb-blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    #tb-blog-section {
        padding: 60px 0;
    }
    #tb-blog-section .tb-blog-carousel-wrapper {
        padding: 0 40px;
    }
    #tb-blog-section .tb-blog-card {
        flex: 0 0 100%;
    }
    #tb-blog-section .tb-blog-title {
        font-size: 18px;
    }
    #tb-blog-section .tb-blog-image img {
        height: 200px;
    }
}

/* Inquiry Modal */
#cdh-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(50, 50, 50, 0.75);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 70px 16px;
}
#cdh-modal-overlay.cdh-active {
    display: flex;
}
#cdh-modal-box {
    background: #ffffff;
    border-radius: 20px;
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(50, 50, 50, 0.4);
    animation: cdh-modal-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cdh-modal-in {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
#cdh-modal-hero {
    position: relative;
    height: 170px;
    overflow: hidden;
}
#cdh-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
#cdh-modal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(50, 50, 50, 0.15) 0%,
        rgba(50, 50, 50, 0.55) 100%
    );
}
#cdh-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #323232;
    transition:
        background 0.2s,
        transform 0.2s;
}
#cdh-modal-close:hover {
    background: #fff;
    transform: rotate(90deg);
}
#cdh-modal-body {
    padding: 20px 24px 18px;
}
#cdh-modal-body h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
    text-align: center;
}
#cdh-modal-body p.cdh-sub {
    font-size: 13px;
    color: #666666;
    text-align: center;
    margin: 0 0 14px;
    line-height: 1.5;
}
.cdh-field {
    margin-bottom: 9px;
}
.cdh-field select,
.cdh-field input {
    width: 100%;
    box-sizing: border-box;
    height: 42px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 13.5px;
    color: #323232;
    background: #fafafa;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    font-family: inherit;
}
.cdh-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}
.cdh-field select option[value=""] {
    color: #aaaaaa;
}
.cdh-field input::placeholder {
    color: #aaaaaa;
}
.cdh-field select:focus,
.cdh-field input:focus {
    border-color: #fe9400;
    box-shadow: 0 0 0 3px rgba(254, 148, 0, 0.15);
    background: #fff;
}
.cdh-field-wa {
    position: relative;
}
.cdh-field-wa input {
    padding-left: 44px;
}
.cdh-wa-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
}
#cdh-btn-submit {
    width: 100%;
    height: 44px;
    margin-top: 4px;
    border: none;
    border-radius: 12px;
    background: #fe9400;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        background 0.2s,
        transform 0.15s;
    font-family: inherit;
}
#cdh-btn-submit:hover {
    background: #e08500;
}
#cdh-btn-submit:active {
    transform: scale(0.98);
}
#cdh-btn-submit svg {
    flex-shrink: 0;
}
.cdh-privacy {
    text-align: center;
    font-size: 12px;
    color: #aaaaaa;
    margin: 8px 0 0;
}
/* Our Team */
.abtus-team-page {
    padding: 80px 0;
    background: #fff;
}

.abtus-team-one__single {
    margin-bottom: 30px;
}

.abtus-team-one__img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.abtus-team-one__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.abtus-team-one__single:hover .abtus-team-one__img img {
    transform: scale(1.05);
}

.abtus-team-one__social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.abtus-team-one__single:hover .abtus-team-one__social {
    opacity: 1;
    transform: translateY(0);
}

.abtus-team-one__social li {
    display: inline-block;
    margin: 0 5px;
}

.abtus-team-one__social li a {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fe9400;
    transition: all 0.3s ease;
}

.abtus-team-one__social li a:hover {
    background: #fe9400;
    color: #fff;
}

.abtus-team-one__content-box {
    text-align: center;
    margin-top: 20px;
}

.abtus-team-one__name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.abtus-team-one__name a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.abtus-team-one__name a:hover {
    color: #fe9400;
}

.abtus-team-one__title {
    font-size: 14px;
    color: #fe9400;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .abtus-team-one__img img {
        height: 250px;
    }
}
.img-radius
{
    border-radius: 10px;
}