
        :root {
            --brand-color: #f94c2a;
            --brand-dark: #d83b1e;
            --brand-soft: rgba(249, 76, 42, 0.1);
            --dark-navy: #0f172a;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            color: #334155;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
    
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            
            
        }
        
        h6 {
            font-size: 16px !important;
        }
        
        
    
     p  {
            font-size: 16px !important;
        }
        
        a {
            text-decoration: none !important;
        }

        
        .bg-brand { background-color: var(--brand-color) !important; }
        .text-brand { color: var(--brand-color) !important; }
        .btn-brand { 
            background-color: var(--brand-color); 
            color: white; 
            border: none; 
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-brand:hover { 
            background-color: var(--brand-dark); 
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(249, 76, 42, 0.2);
        }

        
        .navbar { padding: 20px 0; background: white; border-bottom: 1px solid #f1f5f9; }
        .navbar-brand { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }

        
        .hero { 
            padding: 100px 0; 
            background: linear-gradient(135deg, #fff 0%, #fef2f0 100%);
            position: relative;
        }

        
        .intro-section { 
            padding: 100px 0; 
            position: relative; 
            background: #f6f9fc;
            overflow: hidden;
        }
        .experience-badge {
            background: var(--brand-color);
            color: white;
            padding: 20px;
            border-radius: 20px;
            display: inline-block;
            transform: rotate(-3deg);
            box-shadow: 0 15px 30px rgba(249, 76, 42, 0.3);
        }

        .experience-badge h2 {
            font-size: 35px;
        }
        
        .icon-box {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: var(--brand-soft);
            color: var(--brand-color);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }


        
.ls-2 { letter-spacing: 2px; }

.feature-card {
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9 !important;
}

.feature-card .icon-box i {
    font-size: 26px;
}

.feature-card:hover {
    background: #f94c2a;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 76, 42, 0.15) !important;
}

/* Change text to white on hover */
.feature-card:hover h2, 
.feature-card:hover p {
    color: #ffffff !important;
}

/* Change icon box on card hover */
.feature-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.2);
}
.feature-card:hover .icon-box i {
    color: #ffffff !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(249, 76, 42, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.transition-up {
    transition: transform 0.3s ease;
}



.process-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: #f94c2a;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #f94c2a;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    border: 2px solid #f94c2a;
    font-size: 16px;
}

.process-card .icon-box-large {
    width: 80px;
    height: 80px;
    background: rgba(249, 76, 42, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 20px;
    transition: 0.3s;
}

.process-card:hover .icon-box-large {
    /* background: #f94c2a; */
    color: #ffffff;
    transform: rotate(10deg);
}

.process-card h5 {
    color: white;
    font-size: 20px;
}

.process-card p {
    color: white;
    font-size: 14px;
}



.highlight-card-sp {
    background: linear-gradient(220deg, #f9c62f 0%, #f0797d 40%, #9385b6 84%, #5797d7 100%);
}

/* Connecting Line */
.process-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, #f94c2a 0, #f94c2a 10px, transparent 10px, transparent 20px);
    z-index: 1;
    opacity: 0.2;
}

@media (max-width: 991px) {
    .mt-lg-5 {
        margin-top: 2rem !important;
    }
}

/* Color & Utilities */
.text-brand { color: #f94c2a !important; }



.bento-card {
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

/* .highlight-card {
    background: linear-gradient(135deg, #f94c2a 0%, #ff7a5e 100%);
} */

.bento-card.highlight-card {
    background: linear-gradient(135deg, #f94c2a 0%, #ff7a5e 100%);
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 76, 42, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

/* Icon Design */
.icon-wrap-modern {
    width: 60px;
    height: 60px;
    background: rgba(249, 76, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 25px;
}

.badge-modern {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.status-indicator {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.status-indicator .dot {
    height: 8px;
    width: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; transform: scale(1.2); }
}

/* Big 18+ Circle */
.brand-circle {
    width: 100px;
    height: 100px;
    background: #f94c2a;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
}



/* Avatar styling */
.client-avatar {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #334155;
    border: 2px solid rgba(249, 76, 42, 0.1);
}

.avatar-letter {
    font-size:14px;
    letter-spacing: 1px;
}

/* Custom Button */
.btn-brand-outline {
    border: 2px solid #f94c2a !important;
    color: #f94c2a !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    transition: 0.3s !important;
    padding: 8px 24px !important;
}

.btn-brand-outline:hover {
    background: #f94c2a !important;
    color: white !important;
}

/* Desktop spacing adjustment for the middle "Pop" card */
@media (max-width: 991px) {
    .testimonial-card {
        transform: scale(1) !important;
        margin-bottom: 1rem;
    }
}



.text-brand { color: #f94c2a !important; }
.opacity-05 { opacity: 0.03; }


.industry-card {
    background: rgb(0 0 0 / 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.industry-card:hover {
    background: rgba(249, 76, 42, 0.1);
    border-color: #f94c2a;
    transform: translateY(-5px);
}


.active-industry {
    background: rgba(249, 76, 42, 0.15);
    border-color: #f94c2a;
}

.industry-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #f94c2a;
    font-size: 24px;
    transition: 0.3s;
}

.industry-card:hover .industry-icon {
    background: #f94c2a;
    color: white;
    transform: scale(1.1);
}

.industry-card h5 {
    font-size: 17px;
    margin-bottom: 8px;
}

.industry-card p {
    line-height: 1.4;
}

@media (max-width: 991px) {
    .industry-grid .col-lg-3 {
        width: 50%;
    }
}
@media (max-width: 576px) {
    .industry-grid .col-lg-3 {
        width: 100%;
    }
}



/* Styling & Variables */
.text-brand { color: #f94c2a !important; }
.ls-3 { letter-spacing: 3px; }
.opacity-05 { opacity: 0.05; }

/* Box Layout */
.process-box {
    min-height: 220px;
    transition: all 0.3s ease;
}

.bg-brand-gradient {
    background: linear-gradient(135deg, #f94c2a 0%, #ff7a5e 100%);
}

/* Background Number Effect */
.step-num-bg {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    user-select: none;
    transition: 0.5s ease;
}

.process-box:hover .step-num-bg {
    transform: translateY(-20px) scale(1.1);
    color: rgba(249, 76, 42, 0.05);
}

/* Content Positioning */
.content-overlay {
    position: relative;
    z-index: 2;
}

/* Hover Glow Effect */
.hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(249, 76, 42, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s ease;
}

.process-box:hover .hover-glow {
    opacity: 1;
}

.process-box:hover {
    background-color: #fefefe;
}

/* Responsive Grid Border Fix */
@media (max-width: 991px) {
    .border-end { border-end: none !important; border-bottom: 1px solid #f1f5f9 !important; }
}


section#advantages {
    background: #2d3e50;
}

section#industries {
    position: relative;
    background-image: url('../img/ind-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    z-index: 1;
}

#industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1; /* Place behind the content */
}

/* Ensure container content sits above the overlay */
#industries .container {
    position: relative;
    z-index: 2;
}

/* --------------- */


:root {
    --brand-blue: #5797d7;
    --brand-purple: #9385b6;
    --brand-red: #f0797d;
    --brand-yellow: #f9c62f;
}

.ls-3 { letter-spacing: 3px; }
.opacity-05 { opacity: 0.05; }

.tech-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgb(0 0 0 / 12%);
}

.tech-card h5 {
    font-size: 20px;
}

.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.ecommerce-gradient-card {
    background: linear-gradient(135deg, #f94c2a, #f0797d);
    box-shadow: 0 15px 35px rgba(249, 76, 42, 0.25);
}

.border-top-blue { border-top: 5px solid var(--brand-blue); }
.border-top-purple { border-top: 5px solid var(--brand-purple); }

.icon-circle-main {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
}
.bg-blue-grad { background: linear-gradient(135deg, var(--brand-blue), #8dc6ff); }
.bg-purple-grad { background: linear-gradient(135deg, var(--brand-purple), #cbbcf6); }
.bg-red-grad { background: linear-gradient(135deg, var(--brand-red), #ff9a9e); }
.bg-yellow-grad { background: linear-gradient(135deg, var(--brand-yellow), #ffe08a); }

.tech-pill-img {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    transition: 0.3s ease;
}

.tech-pill-img img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.tech-pill-img span {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.active-pill-blue { border-color: var(--brand-blue); background: #f0f7ff; }
.active-pill-purple { border-color: var(--brand-purple); background: #f5f3ff; }
.active-pill-red { border-color: var(--brand-red); background: #fff1f2; }
.active-pill-yellow { border-color: var(--brand-yellow); background: #fefce8; }
.active-pill-white { background: white !important; }
.active-pill-white span { color: #000 !important; }
.active-pill-white img { filter: none !important; }

.dark-pill { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.dark-pill img { filter: brightness(0) invert(1); }
.dark-pill span { color: #fff; }

.glass-effect { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(250,250,250,0.85)); }

@media (min-width: 768px) {
    .border-end-custom { border-right: 1px solid #eef2f6; }
}



.tech-floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    background: transparent;
    perspective: 1000px; 
}


.vbn-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3); */

    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.2), 0 5px 15px rgb(0 0 0 / 12%);
    
    padding: 15px; 
    opacity: 0.7; 
    transition: all 0.3s ease;
    animation: vbn-bubble-orbit 25s infinite ease-in-out;
}

/* Individual 3D Depth & Positioning */
.vbn-icon-1 { top: 10%; left: 5%; animation-duration: 22s; transform: translateZ(-100px); }
.vbn-icon-2 { top: 65%; left: 8%; animation-duration: 28s; transform: translateZ(-50px); }
.vbn-icon-3 { top: 15%; right: 10%; animation-duration: 25s; transform: translateZ(-150px); }
.vbn-icon-4 { bottom: 10%; right: 5%; animation-duration: 30s; transform: translateZ(50px); }
.vbn-icon-5 { top: 40%; left: 45%; animation-duration: 35s; transform: translateZ(-200px); width: 120px; height: 120px; }
.vbn-icon-6 { bottom: 5%; left: 20%; animation-duration: 24s; transform: translateZ(-80px); }
.vbn-icon-7 { bottom: 25%; left: 3%; animation-duration: 18s; transform: translateZ(20px); }

/* 3D Keyframes: Modifying perspective during movement */
/* @keyframes vbn-bubble-orbit {
    0% {
        transform: translate(0, 0) translateZ(0);
    }
    33% {
        transform: translate(40px, -60px) translateZ(50px);
    }
    66% {
        transform: translate(-30px, 30px) translateZ(-50px);
    }
    100% {
        transform: translate(0, 0) translateZ(0);
    }
} */

@keyframes vbn-bubble-orbit {
    0% {
        
        transform: translate(0, 0) translateZ(0);
    }
    33% {
        
        transform: translate(10px, -15px) translateZ(20px);
    }
    66% {
        
        transform: translate(-10px, 10px) translateZ(-20px);
    }
    100% {
        
        transform: translate(0, 0) translateZ(0);
    }
}

/* Ensure content stays on top */
.z-index-2 {
    position: relative;
    z-index: 10 !important;
}

/* ----------------- */



#portfolio-monitor-slider {
    background-color: #f8f9fb;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.text-accent { color: #f94c2a; }


.background-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 30;
    z-index: 0;
}

.background-vector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,76,42,0.1) 0%, rgba(249,76,42,0) 70%);
    border-radius: 50%;
    z-index: -1; /* Sits behind the grid */
    pointer-events: none; /* Ensures it doesn't block mouse clicks */
}

/* --- VECTOR LINE ELEMENT --- */
.background-vector-line {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 4px;
    background-image: linear-gradient(90deg, #f94c2a 0%, #f94c2a 50%, transparent 50%, transparent 100%);
    background-size: 20px 4px; /* Creates a dashed line effect */
    opacity: 0.2;
    transform: rotate(-45deg);
    z-index: 0; /* Layered with the grid */
    pointer-events: none;
}

.background-vector-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    /* Soft radial gradient to create a gentle glow */
    background: radial-gradient(circle, rgba(249,76,42,0.1) 0%, rgba(249,76,42,0) 70%);
    border-radius: 50%;
    z-index: 1; /* Sits behind the grid */
    pointer-events: none; /* Ensures it doesn't block mouse clicks */
}

.monitor-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
}

.monitor-screen {
    width: 100%;
    background: #1a1a1a;
    border-radius: 15px 15px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    position: relative;
}

.screen-content {
    background: #1a1a1a;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    height: 250px;
    position: relative; 
}

@media (max-width: 768px) {
    .screen-content {
         height: 170px;
    }
}

.screen-content img {
    width: 101%;
    height: auto;
    margin-left: 0%;
    margin-top: -1%; 
    object-fit: cover;
    object-position: top;
    display: block;
}

/* --- HOVER EFFECT FOR ACTIVE SLIDE ONLY --- */

/* Show overlay ONLY on hover AND if the slide is active */
.swiper-slide-active .screen-content:hover .monitor-screen-overlay {
    opacity: 1;
}

/* Button animation ONLY if the slide is active */
.swiper-slide-active .screen-content:hover .btn-visit {
    transform: translateY(0);
}

/* --- Keep the rest of your button styling as is --- */
.monitor-screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
    transition: all 0.3s ease;
    z-index: 5;
}

.monitor-screen-overlay .btn-visit {
    background: #f94c2a;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(249, 76, 42, 0.3);
}

.monitor-screen-overlay .btn-visit:hover {
    background: #fff;
    color: #f94c2a;
}


.monitor-wrapper:hover .btn-visit {
    transform: translateY(0);
}

.monitor-bottom-bar {
    background: #e0e0e0; 
    height: 30px;
    width: 100%;
    border-radius: 0 0 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d1d1d1;
    /* border-top: none; */
}

.monitor-logo {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
}


.monitor-neck {
    width: 50px;
    height: 30px;
    background: #d1d1d1;
    margin-top: -1px;
    background: linear-gradient(to right, #bdbdbd, #e0e0e0, #bdbdbd);
}

.monitor-base {
    width: 140px;
    height: 8px;
    background: #c2c2c2;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.monitor-details {
    margin-top: 25px;
    text-align: center;
}

.monitor-details h4 { 
    font-weight: 700; 
    color: #333; 
    margin-bottom: 5px; 
    font-size: 23px;
}


.swiper-slide {
    transition: all 0.6s ease;
    opacity: 0.4;
    transform: scale(0.85);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}


.monitor-next, .monitor-prev {
    color: #333 !important;
    background: #fff;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.monitor-next:after, .monitor-prev:after { font-size: 1rem !important; font-weight: bold; }

.swiper.monitor-swiper .swiper-pagination-bullet-active {
    background: #f94c2a !important;
    width: 25px;
    border-radius: 5px;
}

.swiper.monitor-swiper .swiper-pagination {
    position: unset;
}


/* ---------- */



.owl-carousel.testimonial-owl-carousel.owl-loaded .owl-stage {
    padding-bottom: 40px;
}

.testimonial-owl-carousel .item .testimonial-card {
    background: #ffffff !important;
    color: #475569 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
    /* Increased duration and added cubic-bezier for a "premium" feel */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.85);
    opacity: 0.8;
    /* filter: grayscale(100%); */
}

/* 2. Side card text color */
.testimonial-owl-carousel .item .testimonial-card p,
.testimonial-owl-carousel .item .testimonial-card h6 {
    color: #475569 !important;
    transition: color 0.4s ease;
}

/* 3. CENTER CARD HIGHLIGHT EFFECT with Pulse Animation */
.testimonial-owl-carousel .owl-item.center .testimonial-card {
    background: linear-gradient(135deg, #f94c2a 0%, #ff7a5e 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(249, 76, 42, 0.4) !important;
    transform: scale(1.05);
    opacity: 1;
    z-index: 10;
    filter: grayscale(0%);
    animation: vbn-card-reveal 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 4. Center card text and avatar transitions */
.testimonial-owl-carousel .owl-item.center .testimonial-card p,
.testimonial-owl-carousel .owl-item.center .testimonial-card h6 {
    color: #ffffff !important;
}

.testimonial-owl-carousel .owl-item.center .client-avatar {
    background: #ffffff !important;
    border-color: #ffffff !important;
    transition: all 0.5s ease;
    transform: rotate(360deg); 
}

.testimonial-owl-carousel .owl-item.center .client-avatar span {
    color: #f94c2a !important;
}

/* 5. Entrance Animation Keyframes */
@keyframes vbn-card-reveal {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.05);
    }
}


/* ----------------- */

   :root {
    --color-yellow: #f9c62f;
    --color-red: #f0797d;
    --color-purple: #9385b6;
    --color-blue: #5797d7;
}

.digital-step {
    background-color: #fcfcfc;
    padding: 120px 0 60px;
    font-family: sans-serif;
    color: #333;
}

.d-step-container {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.process-title {
    color: #f94c2a;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
}

.infographic-main {
    position: relative;
    height: 600px; /* Adjust based on step content height */
    width: 100%;
}

/* --- Central Hub Styling --- */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
}

.hub-content {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.hub-content img.hub-logo {
    width: 70%;
}

/* Optional: Dashed Circle Background */
.infographic-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 2px dashed #ddd;
    border-radius: 50%;
    z-index: 1;
}

/* --- Step Items Positioning --- */
.step-item {
    position: absolute;
    width: 500px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 5;
}

/* .step-content {
    text-align: left;
} */

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-item p {
    font-size: 13px !important;
    color: #666;
    margin: 0;
}

/* Positioning the 4 corners */
.step-1 { top: 60px; left: 50px;  text-align: right;}
.step-2 { bottom: 260px; left: -10px; text-align: right;}
.step-3 { bottom: 90px; left: 50px; text-align: right;}
.step-4 { bottom: 90px; right: 50px; text-align: left; flex-direction: row-reverse;}
.step-5 { bottom: 260px; right: -10px; text-align: left; flex-direction: row-reverse;}
.step-6 { top: 60px; right: 50px; text-align: left; flex-direction: row-reverse;}

/* --- Step Badge (The Streak Effect) --- */
.step-badge {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 28px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* The Streak Streaks using CSS Gradients & Pseudo-elements */
.step-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}


.step-1 .step-badge,
.step-1 .step-badge::before { 
    background: linear-gradient(135deg, #f9c62f 0%, #f0797d 100%); 
}

.step-2 .step-badge,
.step-2 .step-badge::before { 
    background: linear-gradient(135deg, #f0797d 0%, #9385b6 100%); 
}

.step-3 .step-badge,
.step-3 .step-badge::before { 
    background: linear-gradient(135deg, #9385b6 0%, #5797d7 100%); 
}

.step-4 .step-badge,
.step-4 .step-badge::before { 
    background: linear-gradient(135deg, #5797d7 0%, #f0797d 100%); 
}

.step-5 .step-badge,
.step-5 .step-badge::before { 
    background: linear-gradient(135deg, #f0797d 0%, #f9c62f 100%); 
}

.step-6 .step-badge,
.step-6 .step-badge::before { 
    background: linear-gradient(135deg, #f9c62f 0%, #5797d7 100%); 
}


/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .infographic-main { height: auto; display: flex; flex-direction: column; align-items: center; }
    .central-hub { position: relative; top: auto; left: auto; transform: none; margin-bottom: 50px; }
    .infographic-main::before { display: none; }
    .steps-wrapper { position: relative; width: 100%; display: flex; flex-direction: column; gap: 40px; }
    .step-item { position: relative; width: 100%; left: auto; right: auto; top: auto; bottom: auto; justify-content: center; text-align: center; flex-direction: column; }
    .step-content { text-align: center; order: 2; }
    .step-badge { order: 1; margin-bottom: 15px; }
}

/* ------------------ */

    #lux-services { background: #2d3e50; padding: 100px 0; color: #fff; }

    /* Title Styling */
    .tagline { color: #f94c2a; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem; margin-bottom: 10px; }
    .title-display { font-size: clamp(32px, 5vw, 53px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 50px; }
    .title-display span { color: transparent; -webkit-text-stroke: 1px #fff; opacity: 0.7; }


    #lux-services .bento-card {
        padding: 40px;
        border-radius: 30px;
        height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
    }

   
    .bg-orange { background: #f94c2a; color: #fff; }
    .bg-dark { background: #161618; color: #fff; border: 1px solid #222; }
    .bg-white { background: #ffffff; color: #000; }

    .bento-icon { font-size: 2.5rem; margin-bottom: 30px; }
    .bento-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 15px; }
    .bento-card h4 { font-size: 24px; }
    .bento-card h5 { font-size: 20px; }
    .bento-card p { opacity: 0.8; font-size: 1rem; line-height: 1.6; }

    #lux-services .bento-icon {
        font-size: 40px;
    }
    
    .bento-btn {
        text-decoration: none;
        color: inherit;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
        border-bottom: 2px solid transparent;
        width: fit-content;
        font-size: 16px;
    }

    .bento-card:hover { transform: scale(0.97); }
    .bento-card:hover .bento-btn { border-color: currentColor; gap: 15px; color: unset; }

    
    .owl-theme .owl-dots .owl-dot span { background: #333; height: 4px; width: 40px; border-radius: 0; }
    .owl-theme .owl-dots .owl-dot.active span { background: #f94c2a; }


    /* ----------------- */


    .text-orange { color: #f94c2a; }
    .fw-black { font-weight: 900; }
    .ls-2 { letter-spacing: 2px; }

    /* Standard Card Logic */
    .standard-card {
        background: #ffffff;
        border: 1px solid #eee;
        border-radius: 16px;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .standard-card span{
        font-size: 80px;
        line-height: 1.2;
    }
    
    .standard-card h5 {
        font-size: 20px;
    }

    .standard-card:hover {
        transform: translateY(-5px);
        border-color: #f94c2a;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
    }

    .hero-card { border-left: 6px solid #f94c2a; }

    .icon-wrap-standard {
        width: 50px; height: 50px;
        background: #fff5f2; color: #f94c2a;
        border-radius: 10px;
        display: grid; place-items: center;
        font-size: 19px;
    }
    
    .icon-wrap-standard i {
        font-size: 19px !important;
    }
    
    .standard-card i {
        font-size: 16px;
    }

    .border-bottom-orange { border-bottom: 4px solid #f94c2a; }
    .bg-orange-soft { background-color: #fffaf9; border-color: #ffe4de; }

    /* Interactions */
    .hover-dark:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
    .hover-dark:hover p { color: #ccc !important; }

    /* Pulse for 24/7 */
    .pulse-dot {
        width: 10px; height: 10px;
        background: #28a745; border-radius: 50%;
        animation: pulse-standard 2s infinite;
    }

    @keyframes pulse-standard {
        0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
        100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
    }

/* ---------------- */
    .fw-black { font-weight: 900 !important; }
    .text-orange { color: #f94c2a; }
    .ls-2 { letter-spacing: 2px; }

    .cta-box {
        background: #ffffff;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(0,0,0,0.06);
        border: 1px solid #f0f0f0;
    }

    .bg-dark-modern { background: #121214; }

    /* Buttons */
    .btn-modern-primary {
        background: #f94c2a;
        color: #fff;
        padding: 18px 35px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(249, 76, 42, 0.2);
    }
    .btn-modern-primary:hover { background: #1a1a1a; transform: translateY(-3px); color: #fff; }

    .btn-modern-outline {
        border: 2px solid #eee;
        color: #1a1a1a;
        padding: 16px 35px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s;
    }
    .btn-modern-outline:hover { border-color: #f94c2a; color: #f94c2a; }

    /* Contact Nodes */
    .contact-node {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    .node-icon {
        width: 45px; height: 45px;
        background: rgba(249, 76, 42, 0.15);
        color: #f94c2a;
        border-radius: 12px;
        display: grid; place-items: center;
        flex-shrink: 0;
    }
    .node-icon.secondary { background: rgba(255,255,255,0.05); color: #fff; }
    
    .node-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 2px; }
    .node-link { color: #fff; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: 0.3s; }
    .node-link:hover { color: #f94c2a; }
    .node-text { color: #fff; margin: 0; font-weight: 500; }

    /* Pulse Dot */
    .pulse-dot {
        width: 8px; height: 8px; background: #28a745; border-radius: 50%;
        animation: pulse-green 2s infinite;
    }
    @keyframes pulse-green {
        0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
        100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
    }

    @media (max-width: 991px) {
        .cta-box { border-radius: 24px; }
    }


    /* ------------ */

    

section#process {
    overflow: hidden;
}

.cta-gradient {
    position: relative;
    padding: 80px 0;
    background-image: url(../img/cta2.png);
    background-size: contain;
    background-position: center;
    /* max-height: 500px; */
    display: flex;
    align-items: center;
    /* border-radius: 0 100px 100px 0; */
    overflow: hidden;
    background-repeat: no-repeat;
}

.cta-content {
    padding: 20px 30px;
    margin-left: 10px;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-title span {
    color: #1a1a1a;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 600px;
}

/* Contact Pills Section */
.cta-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.contact-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-pill:hover {
    background: rgba(255, 255, 255, 0.25);
}


.contact-pill .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white; 
}

.contact-pill a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.contact-pill a:hover {
    color: white; 
}

/* Action Buttons */
.cta-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-button-gradient {
    display: inline-block;
    padding: 16px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size:14px;
}

.cta-button-gradient:hover {
    background-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-link-white {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border 0.3s;
}

.cta-link-white:hover {
    border-bottom: 2px solid white;
}

/* Responsive */
@media (max-width: 992px) {
    
    .cta-content {
    padding: 50px 0px 15px;
    margin-left: 0px;
}
    
    .cta-gradient {
        text-align: center;
        border-radius: 0;
        padding: 60px 20px;
        background-size: cover;
    }
    .cta-contact-grid {
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .cta-title { font-size: 2.2rem; }
}

/* --------- */

    .fw-black { font-weight: 900; }
    .text-orange { color: #f94c2a; }
    .ls-tight { letter-spacing: -2px; }

    .badge-modern {
        background: #1a1a1a; color: #fff;
        padding: 5px 15px; border-radius: 50px;
        font-size: 12px; font-weight: 700; text-transform: uppercase;
        display: inline-block;
    }

    /* FAQ Nexus Logic */
    .faq-nexus { border-top: 1px solid #eee; }
    .faq-node { border-bottom: 1px solid #eee; transition: 0.3s; }
    
    .faq-btn {
        width: 100%; border: none; background: none;
        padding: 25px 0; display: flex; align-items: center;
        justify-content: space-between; text-align: left;
        cursor: pointer;
    }

    .faq-node .q-text { font-size: 18.5px; font-weight: 700; color: #1a1a1a; transition: 0.3s; padding-right: 20px; }
    
    /* Custom Icon */
    .faq-node .q-icon {
        width: 24px; height: 24px; position: relative;
        flex-shrink: 0;
    }
    .faq-node .q-icon::before, .q-icon::after {
        content: ''; position: absolute; background: #1a1a1a;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .faq-node .q-icon::before { width: 100%; height: 2px; top: 11px; left: 0; }
    .faq-node .q-icon::after { width: 2px; height: 100%; left: 11px; top: 0; }

    /* Open State */
    .faq-panel {
        max-height: 0; overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }
    .faq-panel p, .faq-panel li { color: #666; line-height: 1.7; font-size: 15.2px; margin-bottom: 15px; }
    .faq-panel ul { padding-left: 20px; margin-bottom: 20px; list-style: disc;}

    .faq-node.active .q-text { color: #f94c2a; }
    .faq-node.active .q-icon::after { transform: rotate(90deg); opacity: 0; }
    .faq-node.active .q-icon::before { background: #f94c2a; }
    .faq-node.active .faq-panel { max-height: 1000px; padding-bottom: 20px; }

    @media (max-width: 991px) {
        .sticky-top { position: relative !important; top: 0 !important; }
        .display-5 { font-size: 2.2rem; }
    }
    
    
    section#why-choose-us {
        padding: 80px 0 0 0;
    }
    
    section#process {
    padding: 80px 0;
    background: #f7f7f7;
}


section#advantages {
    padding: 60px 0;
}

section#tech-stack {
    padding: 120px 0;
}

@media (max-width: 768px) {
    section#tech-stack {
        padding: 80px 0;
    }
}

section#testimonials {
    padding: 70px 0;
}

section#industries {
    padding: 70px 0;
}

section#authority-section {
    padding: 60px 0;
}

section#comprehensive-faq {
    padding: 70px 0;
    position: relative;
    z-index: 1;
    /*overflow: hidden;*/
}

@media (max-width: 768px) {
    
    section#comprehensive-faq {
        overflow: hidden;
    }
    
}


/* -------------------
-----Inner Page----
------------------- */


    .vib-bg-mesh {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: radial-gradient(circle at 10% 15%, rgba(249, 76, 42, 0.03) 0%, transparent 30%),
                    radial-gradient(circle at 90% 85%, rgba(58, 123, 255, 0.02) 0%, transparent 30%);
        z-index: -1;
        opacity: 0.8;
        overflow: hidden;
    }

    .vib-hero { padding: 140px 0 80px; }
    
    .vib-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -2px;
        background: linear-gradient(to right, #1a202c 0%, #4a5568 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .vib-section-header h2 { 
        font-weight: 800; 
        font-size: 44px;
        color: white; 
    }

    .vib-section-header p {
        color: white;
    }

    .vib-glass-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 28px;
        padding: 45px 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        transition: 0.4s;
        height: 100%;
    }

    .vib-glass-card:hover {
        border-color: #f94c2a;
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(249, 76, 42, 0.1);
    }

    .vib-glass-card i {
        font-size: 48px;
    }

    .vib-glass-card h5 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .vib-img-wrapper {
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 20px;
        background: #eee;
        aspect-ratio: 16/9;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .vib-step-container { 
        position: relative; 
        padding: 40px 0; 
    }

    .vib-step-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 32px;
        padding: 45px 30px;
        height: 100%;
        position: relative;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 2;
    }
    
    .vib-step-card h5 {
        font-size: 20px;
        font-weight: 700;
    }

    .vib-step-card:hover {
        transform: translateY(-12px);
        border-color: #f94c2a;
        background: #fff;
        box-shadow: 0 20px 40px rgba(249, 76, 42, 0.1);
    }

    .vib-step-num {
        width: 45px; 
        height: 45px;
        background: #f94c2a;
        color: white;
        border-radius: 50%;
        display: flex; 
        align-items: center; 
        justify-content: center;
        font-weight: 800;
        position: absolute;
        top: -20px; 
        left: 50%; 
        transform: translateX(-50%);
        box-shadow: 0 8px 15px rgba(249, 76, 42, 0.3);
        font-size: 17px;
    }

    .vib-step-icon {
        width: 80px; height: 80px;
        background: #fff5f2;
        border-radius: 24px;
        display: flex; 
        align-items: center; 
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 29px;
        color: #f94c2a;
        transform: rotate(-6deg);
        transition: 0.4s;
        
    }

    .vib-step-card:hover .vib-step-icon {
        transform: rotate(0deg) scale(1.1);
        background: #f94c2a;
        color: white;
    }

    /* @media (min-width: 992px) {
        .vib-step-row::before {
            content: '';
            position: absolute;
            top: 50%; left: 15%; right: 15%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff5f2, transparent);
            z-index: 1;
        }
    } */


    .vib-modern-list { 
        list-style: none; 
        padding: 0; 
    }

    .vib-modern-list li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .vib-modern-list i {
        color: #f94c2a;
        margin-right: 12px;
        font-size: 1.2rem;
    }

    .vib-pill {
        display: inline-block; 
        background: #f94c2a; 
        color: white;
        padding: 8px 20px; 
        border-radius: 50px; 
        font-size: 0.8rem;
        font-weight: 700; 
        text-transform: uppercase; 
        margin-bottom: 15px;
    }

    .vib-btn-brand {
        background: #f94c2a; 
        color: white; 
        padding: 15px 40px;
        border-radius: 12px; 
        font-weight: 700; 
        text-decoration: none;
        display: inline-block; 
        transition: 0.3s;
    }

    .vib-btn-brand:hover { 
        transform: scale(1.05); 
        color: white; 
        filter: brightness(1.1); 
    }

    .vib-btn-modern {
        background: white;
        color: #f94c2a;
        padding: 15px 40px;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
        border: none;
    }

    .vib-btn-modern:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .vib-banner-modern {
        background: #1a202c;
        border-radius: 24px;
        padding: 30px 40px;
        margin-top: 60px;
        color: white;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .vib-banner-modern::after {
        content: '\f0eb';
        font-family: 'Font Awesome 6 Free'; 
        font-weight: 900;
        position: absolute; 
        right: -10px; 
        bottom: -20px;
        font-size: 120px; 
        color: rgba(255,255,255,0.03);
    }

    /* CTA Box */
    .vib-cta-box {
        background: linear-gradient(135deg, #f94c2a 0%, #d63a1a 100%);
        border-radius: 35px; 
        padding: 60px; 
        color: white; 
        text-align: center;
        box-shadow: 0 20px 40px rgba(249, 76, 42, 0.2);
    }

    .vib-hero-section { padding: 100px 0; position: relative; overflow: hidden;}
        
        .vib-floating-badge {
            background: white;
            padding: 12px 24px;
            border-radius: 100px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
            border: 1px solid #e2e8f0;
        }

        .vib-hero-section .vib-h1 { 
            font-weight: 800; 
            font-size: clamp(40px, 6vw, 50px); 
            line-height: 1; 
        }
        .vib-hero-section .vib-text-gradient {
            background: linear-gradient(45deg, #0f172a, #ff5e3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vib-btn-main {
            background: #0f172a;
            color: white;
            padding: 18px 40px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            font-size: 16px;
        }

        .vib-btn-main:hover {
            background: #ff5e3a;
            color: white;
            box-shadow: 0 20px 40px rgb(255 94 58 / 10%);
        }

        .vib-breadcrumb-banner {
            position: relative;
            padding: 230px 0 60px;
            background: linear-gradient(rgb(15 23 42 / 80%), rgb(15 23 42 / 83%)), url(../img/dom-bg.png);
            background-size: cover;
            background-position: center;
            border-bottom: 4px solid #ff5e3a;
            clip-path: ellipse(150% 100% at 50% 0%);
        }

        .vib-breadcrumb-banner h1{
            font-size: 56px;
            margin-bottom: 16px;
            font-weight: 500;
        }
        
        
        @media (max-width: 991px) {
            .vib-breadcrumb-banner h1 {
                font-size: 30px;
                margin-bottom: 16px;
                font-weight: 500;
            }
            
            .vib-breadcrumb-banner {
                position: relative;
                padding: 100px 0 60px;
            }
        }
        

        .vib-breadcrumb-banner .breadcrumb-item + .breadcrumb-item::before { 
            content: "→"; 
            color: #ff5e3a; 
            font-size: 16px;
        }
        .vib-breadcrumb-banner .breadcrumb-item a { 
            color: #cbd5e1; 
            text-decoration: none; 
            font-weight: 500; 
            font-size: 16px;
        }
        .vib-breadcrumb-banner .breadcrumb-item.active { 
            color: white; 
            font-weight: 700; 
            font-size: 16px;
        }

        .inner-process-section {
            padding-top: 120px;
            padding-bottom: 120px;
            overflow: hidden;
            background: linear-gradient(rgb(0 0 0 / 25%), rgb(0 0 0 / 72%)), url(../img/how-to-reg-a-domain.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            /* background-attachment: fixed; */
        }

        .inner-local-section {
            padding-top: 100px;
            padding-bottom: 80px;
        }

        .inner-features-section {
            padding-top: 90px;
            padding-bottom: 90px;
            background: #2d3e50;
        }

        .inner-features-section h2 {
            /*margin-bottom: 25px;*/
            font-weight: 700;
            font-size: 35px;
            color: white;
        }

        .inner-intro-section {
            padding-top: 100px;
            padding-bottom: 100px;
        }


        .vib-hero-section img {
            height: 550px;
            object-fit: cover;
        }

        @media (max-width: 991px) {
            .vib-hero-section img {
                height: 400px;
            }
        }

        /* ------------ */

      
    
    .inner-intro-section {
        background-color: #f6f9fc;
        padding-top: 120px;
        padding-bottom: 120px;
        position: relative;
        overflow: hidden;
    }

    
    .inner-intro-section::after {
        content: '?';
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 70vh;
        font-weight: 900;
        color: rgb(249 76 42 / 6%);
        z-index: 0;
        pointer-events: none;
        user-select: none;
        line-height: 1;
    }

    
    .inner-intro-section::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 600px;
        height: 600px;
        /* background: radial-gradient(circle, rgba(249, 76, 42, 0.05) 0%, transparent 70%); */
        background: radial-gradient(circle, rgb(249 76 42 / 12%) 0%, transparent 70%);
        filter: blur(50px);
        z-index: 0;
    }

   
    .inner-intro-section .vib-modern-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 48px;
        padding: 60px;
        border: 1px solid rgba(15, 23, 42, 0.05);
        /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.006); */
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 15%), 0 2px 25px -10px rgb(0 0 0 / 11%);
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        height: 100%;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    @media (max-width: 991px) {
        .inner-intro-section .vib-modern-card {
            padding: 50px 30px;
        }
        
        .inner-intro-section .vib-modern-card.dark-cus-card {
            margin-top: 30px !important;
        }
    }

    .inner-intro-section .vib-modern-card.dark-cus-card {
        background: black;
        margin-top: 80px;
    }

    .inner-intro-section .vib-modern-card.dark-cus-card:hover {
        background: #1e1e1e;
    }

    
    .inner-intro-section .vib-modern-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.08);
        border-color: rgba(249, 76, 42, 0.3);
        background: #ffffff;
    }

    
    .inner-intro-section .card-index {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #f94c2a;
        background: rgba(249, 76, 42, 0.08);
        width: fit-content;
        padding: 6px 16px;
        border-radius: 100px;
        margin-bottom: 32px;
        letter-spacing: 1px;
    }

    
    .inner-intro-section .inner-intro-h3 {
        font-weight: 800;
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -1.5px;
        color: #0f172a;
        margin-bottom: 28px;
    }

    
    .inner-intro-section .inner-intro-p {
        color: #475569;
        /* font-size: 20px; */
        line-height: 1.7;
        font-weight: 400;
        margin-bottom: 0;
    }

    
    .inner-intro-section .inner-intro-p strong {
        color: #0f172a;
        font-weight: 600;
        border-bottom: 2px solid rgba(249, 76, 42, 0.2);
    }


    .inner-intro-section .card-accent-blur {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(249, 76, 42, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        transition: transform 0.6s ease;
    }

    .inner-intro-section .vib-modern-card:hover .card-accent-blur {
        transform: scale(1.5);
    }


    /* ------------------ */

    
    .inner-local-section {
        background-color: #ffffff; /* Light Mode */
        color: #0f172a;
        /*padding-top: 150px;*/
        /*padding-bottom: 150px;*/
        position: relative;
        overflow: hidden;
    }

    
    .inner-local-section::before {
        content: '';
        position: absolute;
        top: 10%;
        left: -10%;
        width: 300px;
        height: 300px;
        background: rgba(249, 76, 42, 0.05);
        border-radius: 50%;
        filter: blur(80px);
        z-index: 0;
    }

    
    .vib-depth-wrapper {
        position: relative;
        z-index: 1;
    }

    /* Abstract Shape Behind Image */
    /* .vib-shape-behind {
        position: absolute;
        top: -30px;
        left: -30px;
        width: 100%;
        height: 100%;
        background: #0f172a;
        border-radius: 40px;
        z-index: -1;
    } */

    .vib-shape-behind {
        position: absolute;
        top: -30px;
        left: -30px;
        width: 100%;
        height: 100%;
        background: #2d3e50;
        border-radius: 40px;
        z-index: -1;
        /*filter: blur(10px);*/
    }

    
    .vib-depth-img {
        border-radius: 40px;
        width: 100%;
        height: 550px;
        object-fit: cover;
        display: block;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    
    @media (max-width: 991px) {
        .vib-depth-img {
            height: auto;
        }
    }

    
    .inner-local-h2 {
        font-size: 35px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -2px;
        color: #0f172a;
        margin-bottom: 30px;
    }

    .inner-local-p {
        margin-bottom: 30px;
    }

    .inner-local-accent {
        font-weight: 600;
        color: #f94c2a;
        font-size: 19px;
        background: #fff5f2; /* Very light red background */
        padding: 20px;
        border-radius: 20px;
        border-left: 4px solid #f94c2a;
    }

    /* ---------------- */

    
    .expert-guidance-section {
        background-color: #0a0c10;
        color: #ffffff;
        padding-top: 120px;
        padding-bottom: 120px;
        overflow: hidden;
    }

    
    .guidance-header-h2 {
        font-size: 56px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -2px;
        margin-bottom: 25px;
    }

    @media (max-width: 991px) {
        .guidance-header-h2 {
            font-size: 45px;
            font-weight: 700;
        }
    }

    .guidance-header-p {
        /* font-size: 20px; */
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 300;
    }

    
    .cv-text-highlight {
        color: #f94c2a;
    }

    
    .cust-vib-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 32px;
        padding: 40px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    
    .cust-vib-card:hover {
        border-color: rgba(249, 76, 42, 0.4);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    
    .cust-vib-card::after {
        content: "";
        position: absolute;
        bottom: 0; 
        left: 0; 
        width: 100%; 
        height: 2px;
        background: linear-gradient(90deg, transparent, #f94c2a, transparent);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .cust-vib-card:hover::after {
        opacity: 1;
    }

    
    .c-feature-tag {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 14px;
        color: #f94c2a;
        background: rgba(249, 76, 42, 0.1);
        padding: 6px 14px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    
    .cus-v-card-title-lg {
        font-size: 25px !important;
        font-weight: 600;
        line-height: 1.3;
    }

    
    .cv-card-flex-row {
        padding: 30px 40px;
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        gap: 20px;
    }

    @media (max-width: 991px) {
        .cv-card-flex-row {
           
            align-items: flex-start;
            flex-direction: column;
        }
    }

    .cv-card-flex-row .c-feature-tag {
        margin-bottom: 0;
    }


    
    .footer-callout-box {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 32px;
        padding: 50px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    @media (max-width: 991px) {
        .footer-callout-box {
       
            padding: 30px;
            
        }
    }

    .footer-callout-text {
        font-size: 21px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 300;
    }

    .footer-callout-text .brand-bold {
        color: #f94c2a;
        font-weight: 700;
    }

    /* -------------- */


    
    .cta-section-vib {
        padding-top: 120px;
        padding-bottom: 120px;
        background-color: #fcfcfd;
        position: relative;
        overflow: hidden;
    }

    
    .cta-blob-vib {
        position: absolute;
        top: -100px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(249, 76, 42, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 500px;
        filter: blur(80px);
        z-index: 0;
    }

    
    .content-card-vib {
        background: #ffffff;
        border-radius: 48px;
        padding: 60px;
        box-shadow: 0px 40px 80px rgba(26, 32, 44, 0.05);
        border: 1px solid rgba(26, 32, 44, 0.03);
        position: relative;
        z-index: 1;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @media (max-width: 991px) {
        .content-card-vib {
        padding: 30px;
    }

    .cta-title-vib {
        font-weight: 700 !important;
        font-size: 38px !important;
    }

    }
    
    .content-card-vib:hover {
        transform: translateY(-5px);
    }

   
    .vib-pill {
        display: inline-flex;
        align-items: center;
        background: rgba(249, 76, 42, 0.06);
        color: #f94c2a;
        padding: 10px 24px;
        border-radius: 100px;
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 30px;
        border: 1px solid rgba(249, 76, 42, 0.1);
    }

    .cta-title-vib {
        font-weight: 800;
        font-size: 48px;
        line-height: 1.1;
        letter-spacing: -1.5px;
        color: #111827;
        margin-bottom: 25px;
    }

    .cta-text-vib {
        color: #4b5563;
        font-size: 19px;
        line-height: 1.8;
        margin-bottom: 35px;
        font-weight: 400;
    }

    
    .highlight-box-vib {
        background: #f9fafb;
        border-radius: 24px;
        padding: 30px;
        border-left: 6px solid #f94c2a;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    }

    
    .sidebar-card-vib {
        background: #111827;
        background-image: radial-gradient(at top right, #1f2937 0%, #111827 100%);
        border-radius: 48px;
        padding: 60px;
        text-align: center;
        color: #ffffff;
        position: relative;
        overflow: hidden;
        box-shadow: 0px 30px 60px rgba(249, 76, 42, 0.15);
    }

    
    .sidebar-card-vib::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(249, 76, 42, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .sidebar-icon-bg {
        position: absolute;
        bottom: -30px;
        right: -30px;
        font-size: 180px;
        color: rgba(255,255,255,0.03);
        transform: rotate(-15px);
    }

    
    .btn-vib-primary {
        background-color: #ffffff;
        color: #111827;
        border-radius: 100px;
        padding: 20px 45px;
        font-weight: 700;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        text-decoration: none !important;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .btn-vib-outline {
        background: rgba(255,255,255,0.05);
        color: #ffffff;
        border: 1px solid rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border-radius: 100px;
        padding: 20px 45px;
        font-weight: 700;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        transition: all 0.3s ease;
    }

    .btn-vib-primary:hover {
        background-color: #f94c2a;
        color: #ffffff;
        transform: scale(1.03);
    }

    .btn-vib-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: #ffffff;
        transform: scale(1.03);
    }
    
    
    /*------- About --------*/
    
    .about-inner-main-section {
            padding: 100px 0;
            overflow: hidden;
        }

        
        .about-inner-bento-card {
            background: #ffffff;
            border-radius: 40px;
            padding: 50px;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        /*.about-inner-bento-card:hover {*/
        /*    box-shadow: 0 30px 60px rgba(249, 76, 42, 0.1);*/
        /*    border-color: #f94c2a;*/
        /*}*/
        
        .about-inner-bento-card2 {
            box-shadow: 0 30px 60px rgba(249, 76, 42, 0.1);
            border-color: #f94c2a;
        }

        .about-inner-img-modern {
            border-radius: 40px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        
        .about-inner-process-section {
            background: #0f172a;
            padding: 120px 0;
            color: white;
            position: relative;
            margin: 50px 0;
            overflow: hidden;
        }

        .about-inner-step-pill {
            background: rgba(249, 76, 42, 0.1);
            color: #f94c2a;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 20px;
        }

        .about-inner-vib-step-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 40px 15px;
            transition: 0.4s;
            text-align: center;
            height: 270px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-inner-vib-step-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #f94c2a;
        }

        .about-inner-vib-step-num {
            font-size: 80px;
            font-weight: 900;
            color: rgb(255 255 255 / 8%);
            position: absolute;
            top: 10px;
            right: 10px;
            line-height: 1;
        }

        .about-inner-vib-step-icon {
            width: 70px; height: 70px;
            background: #f94c2a;
            color: white;
            border-radius: 20px;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            font-size: 25px;
            box-shadow: 0 10px 20px rgba(249, 76, 42, 0.3);
        }

        
        .about-inner-cta-box-modern {
            background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
            border-radius: 50px;
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .about-inner-btn-vib-glow {
            background: #f94c2a;
            color: white;
            padding: 20px 50px;
            border-radius: 100px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 15px 30px rgba(249, 76, 42, 0.3);
            transition: 0.3s;
            font-size: 16px;
        }

        .about-inner-btn-vib-glow:hover {
            transform: scale(1.05);
            color: white;
            box-shadow: 0 20px 40px rgba(249, 76, 42, 0.5);
        }

        .about-inner-cta {
            margin: 90px 0;
        }

        .about-inner-cta h2 {
            font-size: 56px;
            font-weight: 600;
            margin-bottom: 23px;
            color: white;
        }

        .about-inner-cta p {
            font-size: 16px;
            margin-bottom: 40px;
            color: white;
            opacity: .75;
        }

        .about-inner-process-section h2 {
            font-size: 48px;
            font-weight: 600;
        }

        .about-inner-vib-step-card h5 {
            font-size: 20px;
            font-weight: 600;
        }
        
        .about-inner-bento-card h2 {
            font-size: 45px; 
            letter-spacing: -2px; 
            font-weight: 700;
        }

        .about-inner-bento-card h3 {
            font-size: 30px; 
            font-weight: 700;
        }
    
    
        @media (max-width: 991px) {
            .about-inner-bento-card {
                padding: 40px 25px;
            }
            
            .about-inner-process-section h2 {
                font-size: 38px;
            }
            
            .about-inner-cta h2 {
                font-size: 35px;
            }
            
            .about-inner-cta-box-modern {
                padding: 80px 30px;
                border-radius: 30px;
            }
            
            .about-inner-main-section {
                padding: 60px 0;
            }
            
            .about-inner-bento-card h2 {
                font-size: 38px;
            }
            
            .about-inner-cta {
                margin: 50px 0;
            }
        }
        
        .main-menu nav ul li ul li a:before {
            background: none;
            content: "";
        }
        
        .main-menu nav ul li ul li a:before {
            background: none;
            content: "";
        }
        
        .main-menu nav ul li ul li a:hover:before {
            background: #ff3a13 none repeat scroll 0 0;
            content: "";
        }
        
        .main-menu nav ul li.active a, .main-menu nav ul li a:hover {
            color: #ff3a13;
        }
        
        #main-menu.stick img {
            width: 55%;
        }
        
        #main-menu.stick {
            padding: 20px 20px;
        }


.main-menu nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    padding: 20px 0;
    z-index: 999;
    list-style: none;
    border-radius: 15px;
}


.main-menu nav ul li:hover > ul {
    display: block;
}


.main-menu nav ul li ul li {
    width: 100%;
    padding: 0;
}

.main-menu nav ul li ul li a {
    display: block;
    padding: 10px 25px;
    color: #333 !important;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0;
}


.main-menu nav ul li ul li a:hover {
    background: #f8f8f8;
    /*color: #ffcc00;*/
    padding-left: 25px;
}


.main-menu nav ul li {
    position: relative;
    display: inline-block;
}

.main-menu nav ul li a i {
    transition: transform 0.3s ease; 
}


.main-menu nav ul li:hover > a i {
    transform: rotate(180deg);
}

.main-menu nav ul li a:before {
    bottom: 8px;
}

.main-menu nav ul li ul li a:before {
    bottom: -3px;
}

.mobile-menu nav ul li ul {
    display: none;
}


.mobile-menu nav ul li.active > ul {
    display: block;
}

.main-menu nav ul li a {
    padding: 15px 0;
}

.mean-container .mean-nav ul li li a {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 1;
    padding: 1em 10%;
    text-shadow: none !important;
    visibility: visible;
    width: 80%;
    font-weight: normal;
    text-transform: capitalize;
    color: black;
}

/*.mean-container .mean-nav ul li a.mean-expand {*/
/*    line-height: .5;*/
/*}*/

.mean-container .mean-expand {
    font-size: 0 !important;
    background: transparent !important;
}


.mean-container .mean-expand::after {
    content: "\f078"; 
    font-family: FontAwesome;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
}