 *,
 *::before,
 *::after {
     box-sizing: border-box
 }

 .page-body {
     font-family: 'Inter', sans-serif;
     background: #fff;
     color: #1A0F00;
     overflow-x: hidden
 }

 .font-poppins {
     font-family: 'Poppins', sans-serif
 }

 .gradient-text {
     background: #ff8f4d;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text
 }

 .section-heading {
     font-size: clamp(1.5rem, 4vw, 2.8rem);
     color: #1A0F00;
     line-height: 1.2
 }

 .hero-heading {
     font-size: clamp(1.75rem, 6vw, 3.5rem);
     color: #1A0F00;
     line-height: 1.18
 }

 .text-muted-warm {
     color: #6B5747
 }

 .lh-relaxed {
     line-height: 1.7
 }

 .bg-soft {
     background: #FFF8F4 !important
 }

 .bg-trusted {
     background: repeating-radial-gradient(circle at center, rgba(255, 255, 255, .04) 0, rgba(255, 255, 255, .04) 1px, rgba(0, 0, 0, .04) 2px, rgba(0, 0, 0, .04) 3px), repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 3px), radial-gradient(circle at center, #ff9b4a 0, #e07032 15%, #b65427 48%, #8a3f1f 100%)
 }

 .bg-grad-orange {
     background: linear-gradient(135deg, #FF8A4C, #E06830)
 }

 .bg-grad-red {
     background: linear-gradient(135deg, #FF5722, #D84315)
 }

 .bg-grad-fire {
     background: linear-gradient(135deg, #f97316, #dc2626)
 }

 .bg-grad-green {
     background: linear-gradient(135deg, #22c55e, #16a34a)
 }

 .bg-grad-blue {
     background: linear-gradient(135deg, #3b82f6, #06b6d4)
 }

 .bg-grad-purple {
     background: linear-gradient(135deg, #a855f7, #ec4899)
 }

 .btn-primary-custom {
     background: #ff8f4d;
     color: #fff;
     border: none;
     border-radius: 7px;
     font-weight: 500;
     transition: all .3s ease;
     font-size: 15px;
 }

 .btn-primary-custom:hover {
     background: #ff8f4d;
     color: #fff
 }

 .btn-outline-custom {
     border: 2px solid #e2d5cc;
     background: transparent;
     color: #1A0F00;
     border-radius: 12px;
     font-weight: 600;
     transition: all .3s ease;
     width: 40%
 }

 .btn-outline-custom:hover {
     border-color: #FF8A4C;
     color: #FF8A4C
 }

 .sticky-header {
     position: sticky;
     top: 0;
     z-index: 1030;
     background: rgba(255, 255, 255, .97);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid #f5ede7
 }

 .nav-min-h {
     min-height: 64px
 }

 .nav-logo-img {
     height: 36px;
     width: auto;
     max-width: 120px;
     object-fit: contain
 }

 .nav-link-custom {
     color: #6b5747;
     font-weight: 500;
     text-decoration: none;
     transition: color .2s;
     padding: 6px 2px;
     border-bottom: 2px solid transparent
 }

 .nav-link-custom:hover {
     color: #FF8A4C;
     border-bottom-color: #FF8A4C
 }

 #mobileNav {
     background: #fff;
     border-top: 1px solid #f5ede7
 }

 #mobileNav .nav-link-custom {
     display: block;
     padding: 5px 15px;
     border-radius: 10px;
     border-bottom: none;
     font-size: .95rem
 }

 #mobileNav .nav-link-custom:hover {
     background: #FFF0E8;
     color: #FF8A4C
 }

 .nav-toggle {
     color: #1A0F00;
     background: transparent;
     border: none;
     padding: 6px
 }

 .nav-toggle-icon {
     font-size: 1.5rem
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-10px)
     }
 }

 @keyframes slideIn {
     from {
         opacity: 0;
         transform: translateY(20px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 @keyframes scrollLoop {
     0% {
         transform: translateX(0)
     }

     100% {
         transform: translateX(-50%)
     }
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1
     }

     50% {
         opacity: .3
     }
 }

 @keyframes pulseRing {
     0% {
         transform: scale(1);
         opacity: 1
     }

     100% {
         transform: scale(1.3);
         opacity: 0
     }
 }

 .anim-pulse-ring {
     animation: pulseRing 2s ease-out infinite
 }

 .anim-float {
     animation: float 3s ease-in-out infinite
 }

 .anim-slide-in {
     animation: slideIn .6s ease-out forwards
 }

 .anim-scroll {
     animation: scrollLoop 28s linear infinite
 }

 .hero-section {
     background: linear-gradient(160deg, #fff 0%, #fff8f4 55%, #fff0e8 100%);
     position: relative;
     overflow: hidden
 }

 .hero-blob {
     position: absolute;
     border-radius: 50%;
     filter: blur(80px);
     opacity: .12;
     pointer-events: none
 }

 .hero-blob-1 {
     width: 300px;
     height: 300px;
     background: #FF8A4C;
     top: -80px;
     left: -80px
 }

 .hero-blob-2 {
     width: 250px;
     height: 250px;
     background: #FF5722;
     bottom: -60px;
     right: -60px
 }

 .badge-pill {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #FFF0E8;
     border-radius: 999px;
     padding: 7px 14px;
     font-size: .82rem;
     font-weight: 600;
     color: #FF8A4C
 }

 .dot-live {
     width: 8px;
     height: 8px;
     background: #FF5722;
     border-radius: 50%;
     animation: blink 1.5s infinite;
     flex-shrink: 0
 }

 .stat-number {
     font-family: 'Poppins', sans-serif;
     font-weight: 700
 }

 .avatar {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
     color: #fff;
     flex-shrink: 0;
     overflow: hidden
 }

 .avatar-lg {
     width: 46px;
     height: 46px
 }

 .section-tag {
     display: inline-block;
     background: #FFF0E8;
     color: #FF8A4C;
     border-radius: 999px;
     padding: 5px 14px;
     font-size: .82rem;
     font-weight: 600
 }

 .logo-slider {
     overflow: hidden
 }

 .logo-slider:hover .anim-scroll {
     animation-play-state: paused
 }

 .logo-track {
     display: flex;
     gap: 2rem;
     align-items: center;
     width: max-content
 }

 .logo-box {
     width: 120px;
     height: 52px;
     background: white;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 6px
 }

 .logo-box img {
     width: 100%;
     height: 100%;
     object-fit: contain
 }

 /* HOW IT WORKS */
 .opt1 {
     background: #fff;
     padding: 72px 0
 }

 .opt1 .section-heading {
     font-size: clamp(1.5rem, 4vw, 2.4rem)
 }

 .timeline-rail {
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 52px
 }

 .timeline-rail::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 5%;
     right: 5%;
     height: 2px;
     background: linear-gradient(90deg, #FF8A4C, #FF5722);
     transform: translateY(-50%);
     z-index: 0
 }

 .tl-node {
     position: relative;
     z-index: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     flex: 1
 }

 .tl-card {
     background: #fff;
     border: 1px solid #f0e8e0;
     border-radius: 14px;
     padding: 16px 12px;
     text-align: center;
     width: 150px;
     box-shadow: 0 4px 20px rgba(255, 138, 76, .10);
     transition: transform .3s, box-shadow .3s
 }

 .tl-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 32px rgba(255, 138, 76, .18)
 }

 .tl-card-top {
     margin-bottom: 14px
 }

 .tl-card-bot {
     margin-top: 14px
 }

 .tl-connector {
     width: 2px;
     height: 22px;
     background: linear-gradient(180deg, #FF8A4C, #FF5722)
 }

 .tl-bubble {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: #ff8f4d;
     color: #fff;
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     font-size: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 0 0 5px #fff, 0 0 0 7px rgba(255, 138, 76, .25)
 }

 .tl-icon {
     font-size: 1.3rem;
     color: #FF8A4C;
     margin-bottom: 6px;
     display: block
 }

 .tl-title {
     font-family: 'Poppins', sans-serif;
     font-weight: 600;
     font-size: .78rem;
     color: #1A0F00;
     margin-bottom: 3px
 }

 .tl-desc {
     font-size: .7rem;
     color: #6B5747
 }

 /* ═══════════════════════════════════════
       MOBILE STEPS — Numbered Pill Timeline
       Only on ≤767px
    ═══════════════════════════════════════ */
 .steps-pill-timeline {
     display: none
 }

 @media(max-width:767px) {
     .opt1 {
         padding: 44px 0
     }

     .steps-pill-timeline {
         display: block;
         padding: 24px 20px 8px
     }

     .spt-wrap {
         position: relative;
         padding-left: 54px
     }

     .spt-wrap::before {
         content: '';
         position: absolute;
         left: 19px;
         top: 30px;
         bottom: 30px;
         width: 2px;
         background: linear-gradient(180deg, #FF8A4C, #FF5722);
         border-radius: 2px;
         opacity: .2;
     }

     .spt-row {
         position: relative;
         display: flex;
         align-items: flex-start;
         gap: 12px;
         margin-bottom: 18px
     }

     .spt-row:last-child {
         margin-bottom: 0
     }

     .spt-pill {
         position: absolute;
         left: -54px;
         top: 25px;
         width: 38px;
         height: 38px;
         border-radius: 50%;
         background: #ff8f4d;
         color: #fff;
         font-family: 'Poppins', sans-serif;
         font-weight: 800;
         font-size: .88rem;
         display: flex;
         align-items: center;
         justify-content: center;
         box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(255, 138, 76, .18);
         flex-shrink: 0;
     }

     .spt-row:last-child .spt-pill {
         background: linear-gradient(135deg, #FF5722, #ff8f4d);
         box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(255, 87, 34, .18);
     }

     .spt-body {
         background: #fff;
         border: 1.5px solid #f0e8e0;
         border-radius: 14px;
         padding: 11px 13px;
         flex: 1;
         display: flex;
         align-items: center;
         gap: 12px;
     }

     .spt-row:last-child .spt-body {
         border-color: rgba(255, 87, 34, .2)
     }

     .spt-icon {
         width: 34px;
         height: 34px;
         border-radius: 9px;
         background: #FFF0E8;
         color: #FF8A4C;
         font-size: .95rem;
         display: flex;
         align-items: center;
         justify-content: center;
         flex-shrink: 0;
     }

     .spt-row:last-child .spt-icon {
         background: rgba(255, 87, 34, .1);
         color: #FF5722
     }

     .spt-title {
         font-family: 'Poppins', sans-serif;
         font-weight: 700;
         font-size: .84rem;
         color: #1A0F00;
         line-height: 1.25;
         margin-bottom: 2px
     }

     .spt-desc {
         font-size: .74rem;
         color: #6B5747;
         line-height: 1.5
     }
 }

 /* FEATURES */
 .features-section {
     background: #FFF8F4;
     padding: 64px 0
 }

 .feature-card {
     background: #fff;
     border: 1px solid #f5ede7;
     border-radius: 18px;
     padding: 28px;
     transition: all .3s;
     height: 100%
 }

 .feature-card:hover {
     box-shadow: 0 20px 40px rgba(255, 138, 76, .15);
     transform: translateY(-3px)
 }

 .feature-icon {
     width: 56px;
     height: 56px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-size: 1.6rem;
     color: #fff
 }

 .feature-title {
     color: #1A0F00;
     font-size: 1rem
 }

 .feature-desc {
     color: #6B5747;
     font-size: .9rem
 }

 /* DASHBOARD */
 .dashboard {
     padding-top: 80px;
 }

 .dash-preview-wrap {
     padding: 90px 16px 16px;
 }

 .check-circle {
     width: 22px;
     height: 22px;
     background: #ff8f4d;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0
 }

 .check-icon-sm {
     color: #fff;
     font-size: .7rem
 }

 .check-label {
     color: #1A0F00;
     font-size: .95rem
 }

 /* CATEGORIES */
 .cat-section {
     background: #fff8f4;
     padding-top: 60px
 }

 .carousel-wrapper {
     position: relative;
     padding: 0 44px
 }

 .c-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #fff;
     border: 1px solid #ddd;
     color: #333;
     font-size: .9rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
     transition: background .2s, color .2s
 }

 .c-arrow:hover {
     background: #FF8A4C;
     color: #fff
 }

 .c-arrow:disabled {
     opacity: .3;
     cursor: default
 }

 .c-arrow-left {
     left: 0
 }

 .c-arrow-right {
     right: 0
 }

 .c-viewport {
     overflow: hidden
 }

 .c-track {
     display: flex;
     gap: 14px;
     transition: transform .45s cubic-bezier(.4, 0, .2, 1);
     will-change: transform;
     cursor: grab;
     user-select: none
 }

 .c-track.dragging {
     cursor: grabbing;
     transition: none
 }

 .c-slide {
     flex: 0 0 calc(20% - 11px)
 }

 @media(max-width:1199px) {
     .c-slide {
         flex: 0 0 calc(25% - 11px)
     }
 }

 @media(max-width:991px) {
     .c-slide {
         flex: 0 0 calc(33.33% - 10px)
     }
 }

 @media(max-width:767px) {
     .c-slide {
         flex: 0 0 calc(50% - 7px)
     }
 }

 @media(max-width:575px) {
     .c-slide {
         flex: 0 0 calc(48% - 6px)
     }
 }

 @media(max-width:400px) {
     .c-slide {
         flex: 0 0 calc(85%)
     }
 }

 .c-card {
     background: #fff;
     border-radius: 18px;
     padding: 16px 12px;
     text-align: center;
     border: 1px solid rgba(0, 0, 0, .06);
     transition: box-shadow .3s, transform .3s;
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center
 }

 .c-card:hover {
     box-shadow: 0 12px 36px rgba(255, 138, 76, .18);
     transform: translateY(-4px)
 }

 .job-img {
     width: 100px;
     height: 120px;
     background-color: #efeefe;
     border-radius: 140px 0 140px 140px;
     margin: 0 auto 14px;
     background-size: cover;
     background-position: top;
     background-repeat: no-repeat;
     flex-shrink: 0
 }

 .c-label {
     font-weight: 600;
     font-size: .88rem;
     color: #1a1a2e;
     margin-bottom: 4px;
     line-height: 1.3
 }

 .c-count {
     font-size: .75rem;
     color: #888
 }

 .c-dots {
     display: flex;
     justify-content: center;
     gap: 7px;
     margin-top: 24px;
     padding-bottom: 40px
 }

 .c-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #ccc;
     border: none;
     padding: 0;
     cursor: pointer;
     transition: all .3s
 }

 .c-dot.active {
     width: 24px;
     border-radius: 4px;
     background: #FF8A4C
 }


 /* TESTIMONIALS */
 .testi-section {
     overflow: hidden
 }

 .testi-outer {
     position: relative;
     padding: 0 48px
 }

 .testi-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #fff;
     border: 1px solid #e8ddd6;
     color: #6B5747;
     font-size: .9rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
     transition: background .2s, color .2s, box-shadow .2s
 }

 .testi-arrow:hover {
     background: #FF8A4C;
     color: #fff;
     box-shadow: 0 4px 20px rgba(255, 138, 76, .35)
 }

 .testi-arrow:disabled {
     opacity: .3;
     cursor: default;
     box-shadow: none
 }

 .testi-arrow-left {
     left: 0
 }

 .testi-arrow-right {
     right: 0
 }

 .testi-viewport {
     overflow: hidden
 }

 .testi-track {
     display: flex;
     gap: 0;
     transition: transform .45s cubic-bezier(.4, 0, .2, 1);
     will-change: transform;
     cursor: grab;
     user-select: none
 }

 /* FIX 1: 991 → 768 — tablet pe bhi gap dikhega */
 @media(min-width:768px) {
     .testi-track {
         gap: 20px;
     }
 }

 .testi-track.dragging {
     cursor: grabbing;
     transition: none
 }

 .testi-slide {
     flex: 0 0 calc(33.33% - 14px)
 }

 @media(max-width:991px) {
     .testi-slide {
         flex: 0 0 calc(50% - 10px)
     }
 }

 @media(max-width:639px) {
     .testi-slide {
         flex: 0 0 100%;
     }
 }

 .testimonial-card {
     background: #fff;
     border: 1px solid #f5ede7;
     border-radius: 18px;
     padding: 24px;
     transition: all .3s;
     height: 100%
 }

 .testimonial-card:hover {
     box-shadow: 0 20px 40px rgba(255, 138, 76, .12);
     transform: translateY(-3px)
 }

 .star-icon {
     color: #fbbf24;
     font-size: .9rem
 }

 .testi-text {
     color: #6B5747;
     line-height: 1.65;
     font-size: .92rem
 }

 .testi-name {
     color: #1A0F00;
     font-size: .95rem
 }

 .testi-role {
     color: #6B5747;
     font-size: .8rem
 }

 .testi-dots {
     display: flex;
     justify-content: center;
     gap: 7px;
     margin-top: 24px
 }

 .testi-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #ddd;
     border: none;
     padding: 0;
     cursor: pointer;
     transition: all .3s
 }

 .testi-dot.active {
     width: 24px;
     border-radius: 4px;
     background: #FF8A4C
 }

 @media(max-width:639px) {
     .testi-outer {
         padding: 0 36px
     }

     .testi-arrow {
         width: 32px;
         height: 32px;
         font-size: .78rem
     }

     .faq-item span {
         font-size: 12px;
     }
 }

 /* FAQ */
 .faq-max {
     max-width: 760px
 }

 .faq-item {
     border: 1px solid #f0e5de;
     border-radius: 14px;
     overflow: hidden
 }

 .faq-btn {
     width: 100%;
     padding: 18px 20px;
     text-align: left;
     background: #fff;
     border: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     font-size: .95rem;
     color: #1A0F00;
     transition: background .2s;
     gap: 12px
 }

 .faq-btn:hover {
     background: #fff8f4
 }

 .faq-btn .bi {
     transition: transform .3s;
     flex-shrink: 0;
     color: #6B5747;
     font-size: .9rem
 }

 .faq-content {
     display: none;
     padding: 0 20px 18px;
     color: #6b5747;
     font-size: .9rem;
     line-height: 1.65
 }

 .faq-content.open {
     display: block
 }

 .faq-btn.active .bi {
     transform: rotate(180deg)
 }

 /* CTA */
 .cta-section {
     background: #ff8f4d;
     position: relative;
     overflow: hidden
 }

 .cta-blobs {
     position: absolute;
     inset: 0;
     overflow: hidden;
     pointer-events: none
 }

 .cta-blob-left {
     position: absolute;
     top: 40px;
     left: 40px;
     width: 250px;
     height: 250px;
     background: #fff;
     border-radius: 50%;
     filter: blur(80px);
     opacity: .1
 }

 .cta-blob-right {
     position: absolute;
     bottom: 40px;
     right: 40px;
     width: 250px;
     height: 250px;
     background: #fff4e0;
     border-radius: 50%;
     filter: blur(80px);
     opacity: .15
 }

 /* PRE-FOOTER */
 .prefooter {
     background: #fff;
     border-top: 1px solid #f0e8e0;
     padding: 48px 0 40px
 }

 .pf-group-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 18px
 }

 .pf-group-icon {
     width: 34px;
     height: 34px;
     border-radius: 9px;
     background: #FFF0E8;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .95rem;
     color: #ff8f4d !important;
     flex-shrink: 0
 }

 .pf-group-title {
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     font-size: .9rem;
     color: #1A0F00;
     margin: 0
 }

 .pf-divider {
     border: none;
     border-top: 1px solid #f5ede7;
     margin: 32px 0
 }

 .pf-links {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 4px 14px
 }

 @media(max-width:991px) {
     .pf-links {
         grid-template-columns: repeat(3, 1fr)
     }
 }

 @media(max-width:767px) {
     .pf-links {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 .pf-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     color: #6B5747;
     text-decoration: none;
     font-size: .82rem;
     font-weight: 500;
     padding: 5px 0;
     transition: color .2s, gap .2s;
     overflow: hidden;
     text-overflow: ellipsis
 }

 .pf-link::before {
     content: '';
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: #ddd0c8;
     flex-shrink: 0;
     transition: background .2s, transform .2s
 }

 .pf-link:hover {
     color: #FF8A4C;
     gap: 9px
 }

 .pf-link:hover::before {
     background: #FF8A4C;
     transform: scale(1.4)
 }

 .pf-toggle {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     background: none;
     border: 1px solid #e8ddd6;
     color: #6B5747;
     border-radius: 999px;
     padding: 5px 14px;
     font-size: .76rem;
     font-weight: 600;
     cursor: pointer;
     margin-top: 14px;
     transition: all .2s
 }

 .pf-toggle:hover {
     border-color: #FF8A4C;
     color: #FF8A4C;
     background: #FFF0E8
 }

 .pf-toggle .bi {
     font-size: .68rem;
     transition: transform .3s
 }

 .pf-toggle.open .bi {
     transform: rotate(180deg)
 }

 .pf-extra {
     display: none
 }

 .pf-extra.show {
     display: inline-flex
 }

 /* FOOTER */
 footer {
     background: #1A0F00
 }

 .footer-tagline {
     color: #b9aca3
 }

 .footer-copy {
     color: #6b5747
 }

 .footer-divider {
     border-color: #2a1a0a !important
 }

 .footer-link {
     color: #9e8878;
     text-decoration: none;
     font-size: .875rem;
     transition: color .2s
 }

 .footer-link:hover {
     color: #fff
 }

 .social-btn {
     width: 38px;
     height: 38px;
     background: rgba(255, 255, 255, .1);
     border-radius: 9px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #9e8878;
     text-decoration: none;
     transition: all .2s;
     font-size: .95rem
 }

 .social-btn:hover {
     background: #FF8A4C;
     color: #fff
 }

 .floating-cta {
     position: fixed;
     bottom: 24px;
     right: 24px;
     z-index: 1050;
 }

 @media(min-width:992px) {
     .py-lg-6 {
         padding-top: 5rem !important;
         padding-bottom: 5rem !important;
     }
 }

 .position-relative img {
     width: 110%;
 }

 .dashboard {
     padding-top: 0;
 }

 /* ══════════════════════════════════════════════════════
           TABLET RESPONSIVE — 768px to 991px
           Only affects tablet; desktop & mobile unchanged
        ══════════════════════════════════════════════════════ */
 @media (min-width: 768px) and (max-width: 991px) {

     /* NAV — show full nav links on tablet, hide toggle */
     .nav-toggle {
         display: none !important;
     }

     #mobileNav {
         display: none !important;
     }

     .d-none.d-lg-flex {
         display: flex !important;
         gap: 1.25rem !important;
     }

     .nav-link-custom {
         font-size: .85rem;
     }

     .btn-outline-custom {
         display: block !important;
         width: auto;
         padding: 6px 16px !important;
         font-size: .8rem !important;
     }

     /* HERO */
     .hero-section {
         padding-bottom: 12rem;
     }

     .hero-heading {
         font-size: clamp(1.6rem, 4vw, 2.4rem);
     }

     .hero-img {
         width: 480px;
         right: 10px;
         bottom: -9px;
     }

     .hero-section .btn {
         font-size: .92rem !important;
         padding: 11px 20px !important;
     }

     .stat-number {
         font-size: 1.5rem !important;
     }

     /* HOW IT WORKS — use the pill timeline on tablet too */
     .timeline-rail.d-none.d-md-flex {
         display: none !important;
     }

     .steps-pill-timeline {
         display: block !important;
         padding: 24px 20px 8px;
     }

     .spt-wrap {
         position: relative;
         padding-left: 54px;
         max-width: 680px;
         margin: 0 auto;
     }

     .spt-wrap::before {
         content: '';
         position: absolute;
         left: 19px;
         top: 30px;
         bottom: 30px;
         width: 2px;
         background: linear-gradient(180deg, #FF8A4C, #FF5722);
         border-radius: 2px;
         opacity: .2;
     }

     .spt-row {
         position: relative;
         display: flex;
         align-items: flex-start;
         gap: 12px;
         margin-bottom: 18px;
     }

     .spt-row:last-child {
         margin-bottom: 0;
     }

     .spt-pill {
         position: absolute;
         left: -54px;
         top: 25px;
         width: 38px;
         height: 38px;
         border-radius: 50%;
         background: #ff8f4d;
         color: #fff;
         font-family: 'Poppins', sans-serif;
         font-weight: 800;
         font-size: .88rem;
         display: flex;
         align-items: center;
         justify-content: center;
         box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(255, 138, 76, .18);
         flex-shrink: 0;
     }

     .spt-row:last-child .spt-pill {
         background: linear-gradient(135deg, #FF5722, #ff8f4d);
     }

     .spt-body {
         background: #fff;
         border: 1.5px solid #f0e8e0;
         border-radius: 14px;
         padding: 14px 18px;
         flex: 1;
         display: flex;
         align-items: center;
         gap: 14px;
     }

     .spt-row:last-child .spt-body {
         border-color: rgba(255, 87, 34, .2);
     }

     .spt-icon {
         width: 40px;
         height: 40px;
         border-radius: 10px;
         background: #FFF0E8;
         color: #FF8A4C;
         font-size: 1.1rem;
         display: flex;
         align-items: center;
         justify-content: center;
         flex-shrink: 0;
     }

     .spt-row:last-child .spt-icon {
         background: rgba(255, 87, 34, .1);
         color: #FF5722;
     }

     .spt-title {
         font-family: 'Poppins', sans-serif;
         font-weight: 700;
         font-size: .92rem;
         color: #1A0F00;
         margin-bottom: 3px;
     }

     .spt-desc {
         font-size: .8rem;
         color: #6B5747;
         line-height: 1.5;
     }

     /* FEATURES */
     .features-section {
         padding: 52px 0;
     }

     .feature-card {
         padding: 20px 16px;
         border-radius: 16px;
     }

     .feature-icon {
         width: 48px;
         height: 48px;
         font-size: 1.4rem;
         margin-bottom: 14px;
         border-radius: 12px;
     }

     .feature-title {
         font-size: .9rem;
         font-weight: 700;
         margin-bottom: 6px !important;
     }

     .feature-desc {
         font-size: .8rem;
         line-height: 1.5;
     }

     /* DASHBOARD */
     .dash-preview-wrap {
         padding: 0;
     }

     .check-label {
         font-size: .88rem;
     }

     .check-circle {
         width: 20px;
         height: 20px;
     }

     .check-icon-sm {
         font-size: .65rem;
     }

     /* CATEGORIES */
     .cat-section {
         padding-top: 48px;
     }

     .job-img {
         width: 80px;
         height: 96px;
     }

     .c-label {
         font-size: .82rem;
     }

     .c-count {
         font-size: .72rem;
     }

     /* TESTIMONIALS */
     .testimonial-card {
         padding: 18px;
         border-radius: 16px;
     }

     .testi-text {
         font-size: .86rem;
     }

     .testi-name {
         font-size: .9rem;
     }

     .testi-role {
         font-size: .76rem;
     }

     .testi-outer {
         padding: 0 40px;
     }

     /* FAQ */
     .faq-btn {
         font-size: .9rem;
         padding: 15px 18px;
     }

     .faq-content {
         font-size: .86rem;
         padding: 0 18px 16px;
     }

     /* CTA */
     .cta-section h2 {
         font-size: 1.6rem !important;
     }

     .cta-section p {
         font-size: .95rem !important;
     }

     .cta-section .btn {
         font-size: .92rem !important;
         padding: 11px 20px !important;
     }

     /* PRE-FOOTER */
     .prefooter {
         padding: 40px 0 32px;
     }

     .pf-divider {
         margin: 24px 0;
     }

     /* SECTION SPACING */
     .py-5 {
         padding-top: 3rem !important;
         padding-bottom: 3rem !important;
     }

     /* LOGO SLIDER */
     .logo-box {
         width: 100px;
         height: 44px;
     }

     /* SECTION HEADINGS */
     .section-heading {
         font-size: clamp(1.4rem, 3.5vw, 2.2rem);
     }

     .section-tag {
         font-size: .8rem;
         padding: 5px 13px;
     }

     /* GENERAL IMG FIX */
     .position-relative img {
         width: 100% !important;
     }

     /* BADGE PILL */
     .badge-pill {
         font-size: .78rem;
         padding: 6px 13px;
     }
 }

 /* GENERAL MOBILE OVERRIDES */
 @media(max-width:767px) {

     .outer-register {
         display: none !important;
     }

     .btn-outline-custom {
         width: 70%;
     }

     .py-5,
     .py-lg-6 {
         padding-top: 2.5rem !important;
         padding-bottom: 2.5rem !important
     }

     .mb-5 {
         margin-bottom: 1.75rem !important
     }

     .mb-4 {
         margin-bottom: 1.25rem !important
     }

     .section-tag {
         font-size: .75rem;
         padding: 4px 12px
     }

     .section-heading {
         font-size: 1.3rem;
         line-height: 1.25
     }

     .hero-heading {
         font-size: 1.55rem;
         line-height: 1.22
     }

     .hero-section {
         padding-bottom: 16rem;
     }

     .badge-pill {
         font-size: .75rem;
         padding: 6px 12px
     }

     .hero-section p {
         font-size: .9rem !important;
         line-height: 1.6
     }

     .hero-section .btn {
         width: 60%;
         justify-content: center;
         font-size: .9rem !important;
         padding: 12px 16px !important;
         margin: 0 auto;
     }

     .stat-number {
         font-size: 1.35rem !important
     }

     .feature-card {
         padding: 18px 14px;
         border-radius: 14px
     }

     .feature-icon {
         width: 46px;
         height: 46px;
         font-size: 1.3rem;
         margin-bottom: 12px;
         border-radius: 12px
     }

     .feature-title {
         font-size: .88rem;
         font-weight: 700;
         margin-bottom: 6px !important
     }

     .feature-desc {
         font-size: .78rem;
         line-height: 1.5
     }

     .check-label {
         font-size: .88rem
     }

     .check-circle {
         width: 20px;
         height: 20px
     }

     .check-icon-sm {
         font-size: .65rem
     }

     .dash-preview-wrap {
         padding: 0
     }

     .c-arrow {
         width: 30px;
         height: 30px;
         font-size: .75rem
     }

     .c-card {
         padding: 14px 10px;
         border-radius: 14px
     }

     .c-label {
         font-size: .82rem;
         font-weight: 700
     }

     .c-count {
         font-size: .7rem
     }

     .c-dots {
         margin-top: 18px;
         padding-bottom: 28px
     }

     .testi-arrow {
         width: 30px;
         height: 30px;
         font-size: .75rem
     }

     .testi-outer {
         padding: 0 32px
     }

     .testimonial-card {
         padding: 16px;
         border-radius: 14px
     }

     .testi-text {
         font-size: .84rem
     }

     .testi-name {
         font-size: .88rem;
         font-weight: 700
     }

     .testi-role {
         font-size: .74rem
     }

     .star-icon {
         font-size: .8rem
     }

     .faq-item {
         border-radius: 12px
     }

     .faq-btn {
         padding: 12px 16px;
         font-size: .88rem
     }

     .faq-content {
         padding: 0 16px 14px;
         font-size: .84rem
     }

     .cta-section h2 {
         font-size: 1.3rem !important
     }

     .cta-section p {
         font-size: .9rem !important
     }

     .cta-section .btn {
         width: 100%;
         font-size: .9rem !important;
         padding: 12px 16px !important
     }

     .prefooter {
         padding: 32px 0 28px
     }

     .pf-divider {
         margin: 20px 0
     }

     .pf-group-title {
         font-size: .85rem
     }

     .pf-group-icon {
         width: 30px;
         height: 30px;
         font-size: .85rem;
         border-radius: 8px
     }

     .pf-link {
         font-size: .78rem
     }

     .pf-toggle {
         font-size: .72rem
     }

     .pf-links {
         grid-template-columns: repeat(2, 1fr);
         gap: 2px 10px
     }

     .footer-link {
         font-size: .8rem
     }

     .footer-tagline {
         font-size: .8rem
     }

     .footer-copy {
         font-size: .75rem
     }

     .social-btn {
         width: 34px;
         height: 34px;
         font-size: .88rem
     }

     .logo-box {
         width: 90px;
         height: 40px
     }

     .position-relative img {
         width: 100% !important
     }

     .cat-section {
         padding-top: 44px
     }

     .cat-grid-wrap {
         padding: 0 16px
     }

     .cat-grid {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 10px
     }

     .cat-m-card {
         background: #fff;
         border-radius: 16px;
         border: 1.5px solid #f5ede7;
         overflow: hidden;
         opacity: 0;
         transform: scale(.95);
         position: relative;
         cursor: pointer;
         transition: all .3s
     }

     .cat-m-card.visible {
         opacity: 1;
         transform: scale(1)
     }

     .cat-m-img {
         width: 100%;
         height: 110px;
         background-size: cover;
         background-position: top center;
         background-repeat: no-repeat;
         background-color: #efeefe
     }

     .cat-m-body {
         padding: 10px 10px 12px
     }

     .cat-m-title {
         font-family: 'Poppins', sans-serif;
         font-weight: 700;
         font-size: .82rem;
         color: #1A0F00;
         margin-bottom: 3px
     }

     .cat-m-count {
         font-size: .7rem;
         color: #6B5747;
         display: flex;
         align-items: center;
         gap: 4px
     }

     .cat-m-count::before {
         content: '';
         width: 5px;
         height: 5px;
         border-radius: 50%;
         background: #FF8A4C;
         flex-shrink: 0
     }

     .cat-view-all-wrap {
         text-align: center;
         padding: 16px 0 32px
     }

     .cat-view-all {
         display: inline-flex;
         align-items: center;
         gap: 7px;
         background: #FF8A4C;
         color: #fff;
         border: none;
         border-radius: 12px;
         padding: 12px 28px;
         font-size: .9rem;
         font-weight: 600;
         font-family: 'Poppins', sans-serif;
         cursor: pointer;
         transition: background .2s;
         text-decoration: none
     }

     .cat-view-all:hover {
         background: #ff7a35;
         color: #fff
     }

     .features-section {
         padding: 44px 0
     }

     .feature-grid-mobile {
         display: none
     }

     .feature-tabs {
         display: flex;
         gap: 8px;
         overflow-x: auto;
         padding: 0 16px 12px;
         scrollbar-width: none
     }

     .feature-tabs::-webkit-scrollbar {
         display: none
     }

     .feature-tab {
         flex-shrink: 0;
         display: flex;
         align-items: center;
         gap: 6px;
         padding: 8px 14px;
         border-radius: 999px;
         border: 1.5px solid #f0e8e0;
         background: #fff;
         font-size: .8rem;
         font-weight: 600;
         color: #6B5747;
         cursor: pointer;
         transition: all .25s;
         white-space: nowrap
     }

     .feature-tab .tab-dot {
         width: 8px;
         height: 8px;
         border-radius: 50%;
         background: #ddd
     }

     .feature-tab.active {
         border-color: #FF8A4C;
         color: #FF8A4C
     }

     .feature-tab.active .tab-dot {
         background: #FF8A4C
     }

     .feature-detail-card {
         background: #fff;
         border-radius: 20px;
         border: 1.5px solid #f0e8e0;
         padding: 24px 20px;
         margin: 0 16px;
         box-shadow: 0 8px 32px rgba(255, 138, 76, .10);
         min-height: 180px
     }

     .feature-detail-header {
         display: flex;
         align-items: center;
         gap: 14px;
         margin-bottom: 14px
     }

     .feature-detail-icon {
         width: 52px;
         height: 52px;
         border-radius: 14px;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.5rem;
         color: #fff;
         flex-shrink: 0
     }

     .feature-detail-title {
         font-family: 'Poppins', sans-serif;
         font-weight: 700;
         font-size: 1rem;
         color: #1A0F00;
         line-height: 1.3
     }

     .feature-detail-desc {
         font-size: .875rem;
         color: #6B5747;
         line-height: 1.65
     }

     .feature-detail-dots {
         display: flex;
         gap: 6px;
         margin-top: 16px
     }

     .feature-detail-dot {
         height: 3px;
         border-radius: 2px;
         background: #f0e8e0;
         flex: 1
     }

     .feature-detail-dot.active {
         background: #FF8A4C
     }

     .feature-detail-card.anim-in {
         animation: featureIn .35s ease forwards
     }

     @keyframes featureIn {
         from {
             opacity: .5;
             transform: translateY(8px)
         }

         to {
             opacity: 1;
             transform: translateY(0)
         }
     }

     .faq-item h3 {
         font-size: 12px !important;
     }

     .faq-item {
         padding: 3px 0px !important;
     }
 }

 /* FIX 2: desktop-carousel 767px se nikala, ab sirf 499px tak hide hoga */
 @media(max-width:499px) {
     .desktop-carousel {
         display: none !important
     }
 }

 @media(min-width:500px) {
     .feature-mobile-only {
         display: none !important
     }

     .mobile-cat-only {
         display: none !important
     }
 }

 .hero-img {
     position: absolute;
     width: 750px;
     bottom: -9px;
     right: 124px;
 }

 @media(max-width:500px) {
     .hero-img {
         width: 360px;
         right: 20px;
     }

     .cat-grid {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 10px;
     }

     .cat-grid-wrap {
         padding: 0 16px;
     }
 }

 @media (min-width: 500px) and (max-width: 600px) {}

 @media (min-width: 400px) and (max-width: 500px) {
     .hero-img {
         right: 75px;
     }
 }

 @media (min-width: 500px) and (max-width: 700px) {
     .hero-img {
         width: 550px;
         right: 35px;
     }

     .hero-content {
         padding-bottom: 100px;
     }

     .hero-section .btn {
         margin-bottom: 20px;
     }
 }

 @media (min-width: 600px) and (max-width: 800px) {
     .hero-content {
         padding-bottom: 200px;
     }

     .hero-img {
         width: 650px;
         right: 75px;
     }

     .hero-section .btn {
         margin-bottom: 20px;
     }

     .register-now {
         justify-content: center;
     }
 }

 @media (min-width: 800px) and (max-width: 991px) {
     .hero-content {
         padding-bottom: 250px;
     }

     .register-now {
         justify-content: center;
     }

     .hero-section .btn {
         margin-bottom: 20px;
     }

     .hero-img {
         width: 650px;
     }

 }


 @media (min-width: 991px) and (max-width: 1200px) {
     .inner-hero {
         padding-left: 40px;
         padding-right: 10px;
     }

     .hero-img {
         right: -36px;
         width: 700px;
     }

     .hero-heading {
         font-size: 40px;
     }

 }

 @media (min-width: 1101px) and (max-width: 1400px) {
     .hero-img {
         right: 0px;
     }

     .hero-heading {
         font-size: 46px;
     }
 }

 h3.fw-semibold.text-white.mb-3 {
     font-size: 17px;
 }

 .faq-item h3 {
     font-size: 17px;
     margin-bottom: 0;
 }