 :root {
     --primary: #F59E0B;
     --primary-dark: #D97706;
     --primary-light: #FEF3C7;
     --accent: #0EA5E9;
     --accent-dark: #0284C7;
     --dark: #0F172A;
     --body-text: #374151;
     --muted: #6B7280;
     --light-bg: #F8FAFC;
     --card-bg: #FFFFFF;
     --border: #E5E7EB;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, .07), 0 1px 2px rgba(0, 0, 0, .05);
     --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
     --shadow-lg: 0 12px 36px rgba(0, 0, 0, .12);
     --radius: 14px;
     --radius-sm: 8px;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: var(--body-text);
     background: #fff;
     overflow-x: hidden;
 }

 /* ───── UTILITY ───── */
 .text-primary-solar {
     color: var(--primary) !important;
 }

 .bg-primary-solar {
     background: var(--primary) !important;
 }

 .btn-solar {
     background: var(--primary);
     color: #fff;
     border: none;
     font-weight: 600;
     border-radius: var(--radius-sm);
     padding: .6rem 1.4rem;
     transition: background .25s, transform .2s, box-shadow .2s;
 }

 .btn-solar:hover {
     background: var(--primary-dark);
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 6px 18px rgba(245, 158, 11, .35);
 }

 .btn-outline-solar {
     border: 2px solid var(--primary);
     color: var(--primary);
     font-weight: 600;
     border-radius: var(--radius-sm);
     padding: .55rem 1.3rem;
     background: transparent;
     transition: all .25s;
 }

 .btn-outline-solar:hover {
     background: var(--primary);
     color: #fff;
     transform: translateY(-2px);
 }

 .btn-accent {
     background: var(--accent);
     color: #fff;
     font-weight: 600;
     border: none;
     border-radius: var(--radius-sm);
     padding: .6rem 1.4rem;
     transition: background .25s, transform .2s, box-shadow .2s;
 }

 .btn-accent:hover {
     background: var(--accent-dark);
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 6px 18px rgba(14, 165, 233, .35);
 }

 /* ───── NAVBAR ───── */
 #mainNav {
     background: rgba(255, 255, 255, .97);
     border-bottom: 1px solid var(--border);
     padding: .75rem 0;
     transition: box-shadow .3s;
 }

 #mainNav.scrolled {
     box-shadow: var(--shadow-md);
 }

 .navbar-brand {
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--dark) !important;
     letter-spacing: -.5px;
     display: flex;
     align-items: center;
     gap: .4rem;
 }

 .navbar-brand .logo-dot {
     color: var(--primary);
 }

 .nav-link {
     font-weight: 500;
     color: var(--body-text) !important;
     font-size: .92rem;
     padding: .4rem .75rem !important;
     border-radius: var(--radius-sm);
     transition: color .2s, background .2s;
 }

 .nav-link:hover {
     color: var(--primary) !important;
     background: var(--primary-light);
 }

 .nav-link.active {
     color: var(--primary) !important;
     font-weight: 600;
 }



 :root {
     --primary: #f59e0b;
     --primary-dark: #d97706;
     --primary-light: #fef3c7;
     --dark: #1e293b;
     --muted: #64748b;
     --border: #e2e8f0;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
     --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
     --shadow-lg: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
     --radius: 20px;
     --radius-sm: 14px;
 }

 /* ───── HERO ───── */
 #hero {
     background: linear-gradient(135deg, #FFFBEB 0%, #FEF9EC 35%, #F0F9FF 70%, #E0F2FE 100%);
     padding: 3rem 0 3rem;
     position: relative;
     overflow: hidden;
 }

 #hero::before {
     content: '';
     position: absolute;
     top: -120px;
     right: -120px;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(245, 158, 11, .12) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
 }

 #hero::after {
     content: '';
     position: absolute;
     bottom: -80px;
     left: -80px;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(14, 165, 233, .1) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: var(--primary-light);
     color: var(--primary-dark);
     font-weight: 600;
     font-size: 0.8rem;
     padding: 0.4rem 1rem;
     border-radius: 100px;
     margin-bottom: 1.25rem;
     backdrop-filter: blur(4px);
 }

 .hero-heading {
     font-size: clamp(2rem, 5vw, 3.2rem);
     font-weight: 800;
     line-height: 1.2;
     color: var(--dark);
     letter-spacing: -0.02em;
     margin-bottom: 1rem;
 }

 .hero-heading span {
     color: var(--primary);
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
 }

 .hero-sub {
     font-size: 1rem;
     color: var(--muted);
     line-height: 1.6;
     max-width: 560px;
     margin-bottom: 1.8rem;
 }

 /* IMPROVED SEARCH FORM - PORTAL STYLE */
 .hero-search-box {
     background: white;
     border-radius: 60px;
     box-shadow: var(--shadow-lg);
     display: flex;
     align-items: center;
     padding: 0.5rem;
     gap: 0.25rem;
     max-width: 780px;
     border: 1px solid rgba(245, 158, 11, 0.15);
     transition: all 0.2s ease;
 }

 .hero-search-box:focus-within {
     box-shadow: 0 20px 35px -12px rgba(245, 158, 11, 0.25);
     border-color: var(--primary);
 }

 .search-input-wrapper {
     flex: 1;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.25rem 0.75rem;
     background: #f8fafc;
     border-radius: 50px;
 }

 .search-input-wrapper i {
     color: var(--primary);
     font-size: 1.1rem;
 }

 .search-input-wrapper input {
     border: none;
     outline: none;
     background: transparent;
     padding: 0.8rem 0;
     font-size: 0.95rem;
     width: 100%;
     font-family: inherit;
 }

 .search-input-wrapper input::placeholder {
     color: #94a3b8;
 }

 .search-divider {
     width: 1px;
     height: 32px;
     background: var(--border);
 }

 .search-select-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.25rem 1rem 0.25rem 0.75rem;
     background: #f8fafc;
     border-radius: 50px;
 }

 .search-select-wrapper i:first-child {
     color: var(--primary);
     font-size: 1rem;
 }

 .search-select-wrapper select {
     border: none;
     outline: none;
     background: transparent;
     padding: 0.8rem 1.5rem 0.8rem 0;
     font-size: 0.9rem;
     font-family: inherit;
     font-weight: 500;
     color: var(--dark);
     cursor: pointer;
     appearance: none;
 }

 .select-arrow {
     position: absolute;
     right: 8px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 0.75rem;
     color: #94a3b8;
     pointer-events: none;
 }

 .hero-search-box .btn-solar {
     border-radius: 50px;
     padding: 0.7rem 1.6rem;
     font-weight: 600;
     font-size: 0.9rem;
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     border: none;
     box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
     transition: all 0.2s;
 }

 .hero-search-box .btn-solar:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
 }

 .trust-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     margin-top: 1.8rem;
 }

 .trust-pill {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     font-size: 0.8rem;
     font-weight: 500;
     color: var(--muted);
     background: white;
     padding: 0.4rem 1rem;
     border-radius: 100px;
     box-shadow: var(--shadow-sm);
 }

 .trust-pill i {
     color: var(--primary);
     font-size: 0.9rem;
 }

 /* Visual Side */
 .hero-visual {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-main-img {
     width: 100%;
     max-width: 420px;
     border-radius: 32px;
     background: linear-gradient(145deg, #FEF3C7, #DBEAFE);
     aspect-ratio: 1/0.95;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 7rem;
     color: var(--primary);
     box-shadow: var(--shadow-lg);
     border: 1px solid rgba(255, 255, 255, 0.5);
 }

 .hero-card-float {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(8px);
     border-radius: 18px;
     box-shadow: var(--shadow-md);
     padding: 0.8rem 1.2rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     position: absolute;
     border: 1px solid rgba(245, 158, 11, 0.2);
 }

 .hero-card-float i {
     font-size: 1.6rem;
     color: var(--primary);
 }

 .float-title {
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--dark);
 }

 .float-sub {
     font-size: 0.7rem;
     color: var(--muted);
 }

 .float-1 {
     top: -15px;
     left: -20px;
     animation: float1 4s ease-in-out infinite;
 }

 .float-2 {
     bottom: -15px;
     right: -20px;
     animation: float2 5s ease-in-out infinite;
 }

 @keyframes float1 {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 @keyframes float2 {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(10px);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero-search-box {
         flex-direction: column;
         background: transparent;
         box-shadow: none;
         gap: 0.75rem;
     }

     .search-input-wrapper,
     .search-select-wrapper {
         background: white;
         border-radius: 50px;
         width: 100%;
         box-shadow: var(--shadow-sm);
     }

     .search-divider {
         display: none;
     }

     .hero-search-box .btn-solar {
         width: 100%;
         justify-content: center;
     }

     .float-1,
     .float-2 {
         display: none;
     }
 }

 /* ───── SECTION COMMON ───── */
 section {
     padding: 5rem 0;
 }

 .section-tag {
     display: inline-flex;
     align-items: center;
     gap: .4rem;
     background: var(--primary-light);
     color: var(--primary-dark);
     font-weight: 600;
     font-size: .78rem;
     letter-spacing: .05em;
     text-transform: uppercase;
     padding: .3rem .85rem;
     border-radius: 100px;
     margin-bottom: .75rem;
 }

 .section-heading {
     font-size: clamp(1.65rem, 3vw, 2.2rem);
     font-weight: 800;
     color: var(--dark);
     letter-spacing: -.3px;
     line-height: 1.25;
     margin-bottom: .75rem;
 }

 .section-sub {
     color: var(--muted);
     font-size: .97rem;
     max-width: 560px;
     margin: 0 auto;
 }



 :root {
     --primary: #f59e0b;
     --primary-dark: #d97706;
     --primary-light: #fef3c7;
     --dark: #1e293b;
     --muted: #64748b;
     --border: #e2e8f0;
     --light-bg: #f8fafc;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
     --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
     --shadow-lg: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
     --radius: 20px;
     --radius-sm: 12px;
 }

 /* Section Tags */
 .section-tag {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: var(--primary-light);
     color: var(--primary-dark);
     font-weight: 600;
     font-size: 0.75rem;
     padding: 0.3rem 1rem;
     border-radius: 100px;
     margin-bottom: 1rem;
 }

 .section-heading {
     font-size: clamp(1.6rem, 4vw, 2.2rem);
     font-weight: 700;
     color: var(--dark);
     margin-bottom: 0.75rem;
 }

 .section-sub {
     color: var(--muted);
     max-width: 600px;
     margin: 0 auto;
 }

 /* IMPROVED FILTER CARD - PORTAL STYLE */
 .filter-card {
     background: white;
     border-radius: 24px;
     padding: 1.5rem;
     box-shadow: var(--shadow-lg);
     border: 1px solid rgba(245, 158, 11, 0.1);
     transition: all 0.2s ease;
 }

 .filter-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
     align-items: center;
 }

 /* Individual Filter Item */
 .filter-item {
     flex: 1 1 180px;
     display: flex;
     align-items: center;
     gap: 0.6rem;
     background: #f8fafc;
     border-radius: 60px;
     padding: 0.4rem 0.8rem 0.4rem 1rem;
     border: 1px solid var(--border);
     transition: all 0.2s;
     position: relative;
 }

 .filter-item:focus-within {
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
     background: white;
 }

 .filter-item i:first-child {
     color: var(--primary);
     font-size: 1rem;
     flex-shrink: 0;
 }

 .filter-item input,
 .filter-item select {
     border: none;
     outline: none;
     background: transparent;
     padding: 0.7rem 0;
     font-size: 0.88rem;
     font-family: inherit;
     color: var(--dark);
     width: 100%;
     cursor: pointer;
 }

 .filter-item select {
     appearance: none;
     padding-right: 1.2rem;
 }

 .select-icon {
     position: absolute;
     right: 12px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 0.7rem;
     color: #94a3b8;
     pointer-events: none;
 }

 .filter-item:has(select) {
     padding-right: 0.5rem;
 }

 /* Search Item - wider */
 .filter-search {
     flex: 2 1 240px;
 }

 .filter-search input::placeholder {
     color: #94a3b8;
 }

 /* Apply Filter Button */
 .filter-btn {
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     border: none;
     color: white;
     font-weight: 600;
     padding: 0.7rem 1.5rem;
     border-radius: 60px;
     font-size: 0.85rem;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.2s;
     cursor: pointer;
     box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
 }

 .filter-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
 }

 /* Active Filters Chips Section */
 .active-filters {
     display: flex;
     flex-wrap: wrap;
     gap: 0.6rem;
     margin-top: 1.25rem;
     padding-top: 1rem;
     border-top: 1px solid var(--border);
 }

 .filter-chip {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     padding: 0.4rem 1rem;
     background: #f1f5f9;
     border-radius: 40px;
     font-size: 0.75rem;
     font-weight: 500;
     color: var(--muted);
     cursor: pointer;
     transition: all 0.2s;
 }

 .filter-chip i:first-child {
     font-size: 0.75rem;
     color: var(--primary);
 }

 .filter-chip i:last-child {
     font-size: 0.6rem;
     opacity: 0.6;
     margin-left: 0.2rem;
     cursor: pointer;
 }

 .filter-chip:hover {
     background: #e2e8f0;
     color: var(--dark);
 }

 .filter-chip.active {
     background: var(--primary-light);
     color: var(--primary-dark);
     border: 1px solid rgba(245, 158, 11, 0.3);
 }

 .filter-chip.active i:first-child {
     color: var(--primary);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .filter-card {
         padding: 1rem;
     }

     .filter-grid {
         flex-direction: column;
     }

     .filter-item,
     .filter-search,
     .filter-btn {
         width: 100%;
         flex: auto;
     }

     .filter-btn {
         justify-content: center;
     }

     .active-filters {
         overflow-x: auto;
         flex-wrap: nowrap;
         padding-bottom: 0.5rem;
         scrollbar-width: thin;
     }
 }

 /* Fade Up Animation */
 .fade-up {
     opacity: 0;
     transform: translateY(20px);
     animation: fadeUp 0.5s ease forwards;
 }

 .delay-1 {
     animation-delay: 0.1s;
 }

 @keyframes fadeUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }




 #vendors {
     position: relative;
 }

 .vendor-card {
     background: white;
     border-radius: 24px;
     padding: 1.5rem;
     transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
     height: 100%;
     display: flex;
     flex-direction: column;
     border: 1px solid rgba(226, 232, 240, 0.6);
     position: relative;
     overflow: hidden;
 }

 .vendor-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #f59e0b, #ea580c);
     opacity: 0;
     transition: opacity 0.3s;
 }

 .vendor-card:hover::before {
     opacity: 1;
 }

 .vendor-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2);
     border-color: transparent;
 }

 .premium-card {
     border: 1px solid rgba(245, 158, 11, 0.3);
     background: linear-gradient(135deg, #ffffff 0%, #fffbef 100%);
 }

 .card-badge {
     position: absolute;
     top: 12px;
     right: 16px;
     font-size: 0.7rem;
     font-weight: 700;
     padding: 0.2rem 0.7rem;
     border-radius: 40px;
 }

 .card-badge.featured {
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     color: white;
     box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
 }

 .vendor-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 1rem;
 }

 .vendor-logo {
     width: 56px;
     height: 56px;
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     flex-shrink: 0;
 }

 .vendor-meta {
     display: flex;
     gap: 0.5rem;
     align-items: center;
 }

 .verified-badge {
     background: #e8f5e9;
     color: #2e7d32;
     font-size: 0.65rem;
     font-weight: 600;
     padding: 0.25rem 0.6rem;
     border-radius: 40px;
     display: inline-flex;
     align-items: center;
     gap: 0.2rem;
 }

 .verified-badge i {
     font-size: 0.65rem;
 }

 .response-badge {
     background: #e3f2fd;
     color: #1565c0;
     font-size: 0.65rem;
     font-weight: 600;
     padding: 0.25rem 0.6rem;
     border-radius: 40px;
     display: inline-flex;
     align-items: center;
     gap: 0.2rem;
 }

 .response-badge i {
     font-size: 0.6rem;
 }

 .vendor-name {
     font-weight: 800;
     font-size: 1.15rem;
     color: #0f172a;
     margin-bottom: 0.2rem;
 }

 .vendor-city {
     font-size: 0.75rem;
     color: #64748b;
     display: flex;
     align-items: center;
     gap: 0.3rem;
     margin-bottom: 0.6rem;
 }

 .rating-section {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     margin-bottom: 0.75rem;
     flex-wrap: wrap;
 }

 .stars {
     display: flex;
     gap: 0.1rem;
     color: #f59e0b;
     font-size: 0.75rem;
 }

 .stars i {
     font-size: 0.7rem;
 }

 .rating-num {
     font-weight: 800;
     font-size: 0.85rem;
     color: #0f172a;
 }

 .rating-count {
     font-size: 0.7rem;
     color: #64748b;
 }

 .vendor-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.4rem;
     margin-bottom: 0.8rem;
 }

 .vendor-tags span {
     background: #f1f5f9;
     padding: 0.2rem 0.7rem;
     border-radius: 20px;
     font-size: 0.65rem;
     font-weight: 500;
     color: #334155;
 }

 .vendor-desc {
     font-size: 0.8rem;
     color: #475569;
     line-height: 1.6;
     margin-bottom: 0.9rem;
     flex: 1;
 }

 .vendor-stats {
     display: flex;
     justify-content: space-between;
     padding: 0.6rem 0;
     margin-bottom: 1rem;
     border-top: 1px solid #e2e8f0;
     border-bottom: 1px solid #e2e8f0;
     font-size: 0.7rem;
     color: #475569;
 }

 .vendor-stats div {
     display: flex;
     align-items: center;
     gap: 0.3rem;
 }

 .vendor-stats i {
     color: #f59e0b;
     font-size: 0.7rem;
 }

 .vendor-actions {
     display: flex;
     gap: 0.6rem;
     margin-top: 0.2rem;
 }

 .vendor-actions .btn-sm {
     font-size: 0.75rem;
     padding: 0.5rem 0rem;
     flex: 1;
     border-radius: 40px;
 }

 .btn-outline-solar.btn-sm {
     background: transparent;
     border: 1.5px solid #f59e0b;
     color: #d97706;
     font-weight: 600;
     text-align:center;
         text-decoration: none !important;
 }

 .btn-outline-solar.btn-sm:hover {
     background: #fef3c7;
     transform: none;
 }

 .btn-solar.btn-sm {
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     color: white;
     border: none;
     font-weight: 600;
      text-align:center;
          text-decoration: none !important;
 }

 .btn-solar.btn-sm:hover {
     transform: translateY(-1px);
     box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
 }

 .btn-view-all {
     background: transparent;
     border: 2px solid #f59e0b;
     padding: 0.8rem 2rem;
     border-radius: 60px;
     font-weight: 700;
     color: #d97706;
     transition: all 0.2s;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
 }

 .btn-view-all:hover {
     background: #f59e0b;
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
 }

 .btn-view-all i:last-child {
     transition: transform 0.2s;
 }

 .btn-view-all:hover i:last-child {
     transform: translateX(4px);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .vendor-card {
         padding: 1.2rem;
     }

     .vendor-stats {
         flex-direction: column;
         gap: 0.4rem;
     }
 }




 /* ───── HOW IT WORKS - PREMIUM STYLE ───── */
 #how {
     background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
     padding: 5rem 0 6rem;
     position: relative;
     overflow: hidden;
 }

 #how::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, #f59e0b, #f59e0b, transparent);
     opacity: 0.3;
 }

 .steps-wrapper {
     position: relative;
 }

 .step-card {
     text-align: center;
     padding: 2rem 1.8rem 1.8rem;
     border-radius: 32px;
     background: white;
     position: relative;
     transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
     border: 1px solid rgba(226, 232, 240, 0.8);
     z-index: 2;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .step-card:hover {
     transform: translateY(-8px);
     border-color: rgba(245, 158, 11, 0.3);
     box-shadow: 0 30px 50px -25px rgba(245, 158, 11, 0.25);
 }

 .step-glow {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 4px;
     background: linear-gradient(90deg, transparent, #f59e0b, #f59e0b, transparent);
     border-radius: 4px;
     opacity: 0;
     transition: opacity 0.3s;
 }

 .step-card:hover .step-glow {
     opacity: 1;
 }

 .step-number {
     position: absolute;
     top: -14px;
     left: 24px;
     background: linear-gradient(135deg, #1e293b, #0f172a);
     color: #f59e0b;
     width: 44px;
     height: 44px;
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 1.1rem;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     border: 2px solid #f59e0b;
     z-index: 3;
 }

 .step-icon-wrapper {
     margin-bottom: 1.2rem;
     margin-top: 0.5rem;
 }

 .step-icon-bg {
     width: 80px;
     height: 80px;
     border-radius: 28px;
     background: linear-gradient(145deg, #fef3c7, #fffbeb);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
     transition: all 0.3s;
 }

 .step-card:hover .step-icon-bg {
     background: linear-gradient(145deg, #f59e0b, #ea580c);
     transform: scale(1.05);
 }

 .step-icon-bg i {
     font-size: 2.4rem;
     color: #f59e0b;
     transition: all 0.3s;
 }

 .step-card:hover .step-icon-bg i {
     color: white;
 }

 .step-title {
     font-weight: 800;
     font-size: 1.2rem;
     color: #0f172a;
     margin-bottom: 0.6rem;
 }

 .step-desc {
     font-size: 0.85rem;
     color: #64748b;
     line-height: 1.7;
     margin-bottom: 1rem;
     flex: 1;
 }

 .step-feature {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     background: #f1f5f9;
     padding: 0.4rem 1rem;
     border-radius: 60px;
     font-size: 0.7rem;
     font-weight: 600;
     color: #334155;
     margin-top: 0.5rem;
 }

 .step-feature i {
     color: #f59e0b;
     font-size: 0.7rem;
 }

 /* Connecting Arrows - Premium */
 .step-arrows {
     position: absolute;
     top: 40%;
     left: 0;
     right: 0;
     z-index: 1;
     pointer-events: none;
 }

 .arrow-line {
     position: absolute;
     height: 2px;
     background: linear-gradient(90deg, #f59e0b, #fde68a);
     width: calc(33.333% - 60px);
     top: 50%;
     transform: translateY(-50%);
 }

 .arrow-1 {
     left: 33.333%;
     transform: translateX(-50%) translateY(-50%);
     width: calc(33.333% - 50px);
 }

 .arrow-2 {
     left: 66.666%;
     transform: translateX(-50%) translateY(-50%);
     width: calc(33.333% - 50px);
 }

 .arrow-icon {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     font-size: 1.8rem;
     color: #f59e0b;
     background: white;
     border-radius: 50%;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }

 .arrow-icon-1 {
     left: calc(33.333% + 80px);
 }

 .arrow-icon-2 {
     left: calc(66.666% + 80px);
 }

 /* Steps CTA */
 .steps-cta {
     background: linear-gradient(135deg, #1e293b, #0f172a);
     border-radius: 80px;
     padding: 1rem 2rem;
     display: inline-flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 1.5rem;
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
     border: 1px solid rgba(245, 158, 11, 0.3);
 }

 .steps-cta p {
     margin: 0;
     color: #e2e8f0;
     font-size: 0.9rem;
     letter-spacing: 0.3px;
 }

 .steps-cta p i {
     color: #f59e0b;
     font-size: 1rem;
     margin-right: 0.3rem;
 }

 .btn-lg {
     padding: 0.7rem 1.6rem;
     font-size: 0.9rem;
 }

 /* Responsive */
 @media (max-width: 768px) {
     #how {
         padding: 3rem 0 4rem;
     }

     .step-card {
         padding: 1.5rem;
     }

     .step-number {
         width: 36px;
         height: 36px;
         font-size: 0.9rem;
         top: -12px;
         left: 20px;
     }

     .step-icon-bg {
         width: 65px;
         height: 65px;
     }

     .step-icon-bg i {
         font-size: 1.8rem;
     }

     .steps-cta {
         flex-direction: column;
         padding: 1.5rem;
         border-radius: 40px;
     }

     .step-connector-line {
         display: none;
     }
 }

 /* Connecting line between cards on mobile alternative */
 .step-connector-line {
     display: none;
 }



 /* ───── CTA CALCULATOR - PREMIUM PORTAL STYLE ───── */
 #cta-calc {
     background: linear-gradient(135deg, #0a0f1c 0%, #0f172a 40%, #1e293b 70%, #0c4a6e 100%);
     padding: 5rem 0;
     position: relative;
     overflow: hidden;
 }

 #cta-calc::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image: radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
     pointer-events: none;
 }

 /* Floating Elements */
 .floating-element {
     position: absolute;
     font-size: 2rem;
     opacity: 0.15;
     pointer-events: none;
     animation: floatSlow 8s ease-in-out infinite;
     z-index: 1;
 }

 .e1 {
     top: 10%;
     left: 5%;
     animation-delay: 0s;
 }

 .e2 {
     bottom: 15%;
     right: 8%;
     animation-delay: 2s;
     font-size: 2.5rem;
 }

 .e3 {
     top: 20%;
     right: 15%;
     animation-delay: 4s;
 }

 .e4 {
     bottom: 20%;
     left: 10%;
     animation-delay: 6s;
 }

 @keyframes floatSlow {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(5deg);
     }
 }

 .cta-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(245, 158, 11, 0.15);
     backdrop-filter: blur(10px);
     padding: 0.4rem 1.2rem;
     border-radius: 60px;
     font-size: 0.75rem;
     font-weight: 600;
     color: #f59e0b;
     margin-bottom: 1.2rem;
     border: 1px solid rgba(245, 158, 11, 0.25);
 }

 .cta-heading {
     font-size: clamp(1.8rem, 4vw, 2.5rem);
     font-weight: 800;
     color: white;
     margin-bottom: 0.75rem;
     line-height: 1.2;
 }

 .cta-sub {
     color: rgba(255, 255, 255, 0.65);
     font-size: 0.95rem;
     margin-bottom: 1.5rem;
     line-height: 1.6;
 }

 /* Mini Calculator */
 .mini-calculator {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(12px);
     border-radius: 24px;
     padding: 1.25rem;
     border: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 1.5rem;
 }

 .calc-row {
     margin-bottom: 1rem;
 }

 .calc-row:last-child {
     margin-bottom: 0;
 }

 .calc-label {
     font-size: 0.7rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.6);
     margin-bottom: 0.4rem;
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }

 .calc-label i {
     font-size: 0.7rem;
     color: #f59e0b;
 }

 .calc-input-wrapper {
     display: flex;
     align-items: center;
     background: rgba(0, 0, 0, 0.3);
     border-radius: 14px;
     padding: 0.6rem 1rem;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .calc-currency {
     color: #f59e0b;
     font-weight: 700;
     margin-right: 0.3rem;
 }

 .calc-input-wrapper input,
 .calc-input-wrapper select {
     background: transparent;
     border: none;
     outline: none;
     color: white;
     font-size: 0.95rem;
     width: 100%;
     font-weight: 500;
 }

 .calc-input-wrapper input::placeholder {
     color: rgba(255, 255, 255, 0.4);
 }

 .calc-input-wrapper select {
     cursor: pointer;
 }

 .calc-input-wrapper select option {
     background: #1e293b;
 }

 .calc-input-wrapper i {
     color: #f59e0b;
     margin-right: 0.5rem;
 }

 .calc-result {
     display: flex;
     justify-content: space-between;
     gap: 1rem;
     margin-top: 1rem;
     padding-top: 1rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .result-savings,
 .result-roi {
     flex: 1;
     text-align: center;
     padding: 0.6rem;
     background: rgba(0, 0, 0, 0.2);
     border-radius: 16px;
 }

 .result-label {
     font-size: 0.65rem;
     color: rgba(255, 255, 255, 0.5);
     display: block;
     margin-bottom: 0.3rem;
 }

 .result-amount,
 .result-value {
     font-size: 1.3rem;
     font-weight: 800;
     color: #f59e0b;
 }

 /* Savings Grid */
 .savings-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 0.8rem;
     margin-bottom: 1.5rem;
 }

 .savings-card {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(8px);
     border-radius: 20px;
     padding: 0.9rem;
     display: flex;
     align-items: center;
     gap: 0.8rem;
     border: 1px solid rgba(255, 255, 255, 0.08);
     transition: all 0.2s;
 }

 .savings-card:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-2px);
 }

 .savings-icon {
     width: 42px;
     height: 42px;
     background: rgba(245, 158, 11, 0.15);
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .savings-icon i {
     font-size: 1.3rem;
     color: #f59e0b;
 }

 .savings-number {
     font-size: 1.2rem;
     font-weight: 800;
     color: white;
     line-height: 1.2;
 }

 .savings-text {
     font-size: 0.65rem;
     color: rgba(255, 255, 255, 0.6);
 }

 /* Trust Bar */
 .trust-bar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: rgba(0, 0, 0, 0.3);
     border-radius: 60px;
     padding: 0.6rem 1rem;
     border: 1px solid rgba(255, 255, 255, 0.08);
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     flex-wrap: wrap;
 }

 .trust-item i {
     font-size: 1rem;
     color: #f59e0b;
 }

 .trust-item span {
     font-size: 1rem;
     font-weight: 800;
     color: white;
 }

 .trust-item small {
     font-size: 0.65rem;
     color: rgba(255, 255, 255, 0.5);
 }

 .trust-divider {
     width: 1px;
     height: 24px;
     background: rgba(255, 255, 255, 0.15);
 }

 /* CTA Buttons Wrapper */
 .cta-buttons-wrapper {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 1rem;
     margin-top: 2.5rem;
 }

 .btn-cta-primary {
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     border: none;
     padding: 0.9rem 2rem;
     border-radius: 60px;
     font-weight: 700;
     font-size: 0.95rem;
     color: white;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.2s;
     cursor: pointer;
     box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
 }

 .btn-cta-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
 }

 .btn-cta-secondary {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 0.9rem 2rem;
     border-radius: 60px;
     font-weight: 600;
     font-size: 0.95rem;
     color: white;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.2s;
     cursor: pointer;
 }

 .btn-cta-secondary:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-2px);
 }

 /* Responsive */
 @media (max-width: 768px) {
     #cta-calc {
         padding: 3rem 0;
     }

     .savings-grid {
         grid-template-columns: repeat(2, 1fr);
         margin-top: 1.5rem;
     }

     .trust-bar {
         flex-direction: column;
         gap: 0.8rem;
         border-radius: 28px;
     }

     .trust-divider {
         width: 80%;
         height: 1px;
     }

     .floating-element {
         display: none;
     }

     .calc-result {
         flex-direction: column;
     }
 }



 /* ───── TESTIMONIALS - PREMIUM PORTAL STYLE ───── */
 #testimonials {
     background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
     padding: 5rem 0;
     position: relative;
 }

 /* Rating Summary Bar */
 .rating-summary {
     background: white;
     border-radius: 28px;
     padding: 1.5rem 2rem;
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     align-items: center;
     justify-content: space-between;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     border: 1px solid #e2e8f0;
     margin-bottom: 2rem;
 }

 .rating-score {
     text-align: center;
     min-width: 160px;
 }

 .score-number {
     font-size: 3rem;
     font-weight: 800;
     color: #0f172a;
     line-height: 1;
 }

 .score-stars {
     color: #f59e0b;
     font-size: 0.9rem;
     margin: 0.3rem 0;
 }

 .score-count {
     font-size: 0.7rem;
     color: #64748b;
 }

 .rating-bars {
     flex: 1;
     max-width: 400px;
 }

 .rating-row {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.7rem;
     margin-bottom: 0.4rem;
 }

 .rating-row span:first-child {
     width: 45px;
     font-weight: 600;
     color: #475569;
 }

 .rating-row .bar {
     flex: 1;
     height: 6px;
     background: #e2e8f0;
     border-radius: 10px;
     overflow: hidden;
 }

 .rating-row .bar div {
     height: 100%;
     background: linear-gradient(90deg, #f59e0b, #ea580c);
     border-radius: 10px;
 }

 .rating-row span:last-child {
     width: 35px;
     text-align: right;
     color: #64748b;
 }

 /* Testimonial Cards */
 .testi-card {
     background: white;
     border-radius: 28px;
     padding: 1.5rem;
     transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
     height: 100%;
     display: flex;
     flex-direction: column;
     border: 1px solid #e2e8f0;
     position: relative;
 }

 .testi-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.12);
     border-color: rgba(245, 158, 11, 0.2);
 }

 .premium-testi {
     border: 1px solid rgba(245, 158, 11, 0.3);
     background: linear-gradient(135deg, #ffffff 0%, #fffbef 100%);
 }

 .testi-badge {
     position: absolute;
     top: 12px;
     right: 16px;
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     color: white;
     font-size: 0.6rem;
     font-weight: 700;
     padding: 0.2rem 0.7rem;
     border-radius: 40px;
 }

 .testi-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0.8rem;
     flex-wrap: wrap;
     gap: 0.5rem;
 }

 .testi-stars {
     color: #f59e0b;
     font-size: 0.7rem;
 }

 .testi-date {
     font-size: 0.65rem;
     color: #94a3b8;
 }

 .testi-quote {
     font-size: 2rem;
     line-height: 1;
     margin-bottom: 0.5rem;
 }

 .testi-quote i {
     color: #f59e0b;
     opacity: 0.4;
     font-size: 2rem;
 }

 .testi-text {
     font-size: 0.88rem;
     color: #334155;
     line-height: 1.65;
     margin-bottom: 1.2rem;
     flex: 1;
 }

 .testi-footer {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     margin-top: auto;
 }

 .testi-avatar {
     width: 48px;
     height: 48px;
     border-radius: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 0.9rem;
     color: white;
     flex-shrink: 0;
 }

 .testi-name {
     font-weight: 800;
     font-size: 0.9rem;
     color: #0f172a;
 }

 .testi-role {
     font-size: 0.7rem;
     color: #64748b;
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 0.2rem;
 }

 .testi-role i {
     font-size: 0.65rem;
 }

 .dot {
     color: #cbd5e1;
 }

 .testi-verified {
     margin-left: auto;
 }

 .testi-verified i {
     color: #10b981;
     font-size: 1.1rem;
 }

 /* Video Testimonial */
 .video-testi {
     background: linear-gradient(135deg, #1e293b, #0f172a);
     border-color: rgba(255, 255, 255, 0.1);
     position: relative;
     overflow: hidden;
 }

 .video-testi .testi-text,
 .video-testi .testi-name,
 .video-testi .testi-role {
     color: white;
 }

 .video-testi .testi-role i {
     color: #f59e0b;
 }

 .video-testi .testi-stars i {
     color: #f59e0b;
 }

 .video-play-icon {
     position: absolute;
     bottom: 1rem;
     right: 1rem;
     display: flex;
     align-items: center;
     gap: 0.3rem;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(8px);
     padding: 0.3rem 0.8rem;
     border-radius: 40px;
     font-size: 0.7rem;
     color: white;
     cursor: pointer;
     transition: all 0.2s;
 }

 .video-play-icon i {
     font-size: 1rem;
     color: #f59e0b;
 }

 .video-play-icon:hover {
     background: rgba(245, 158, 11, 0.8);
 }

 .video-play-icon:hover i {
     color: white;
 }

 /* Testimonials Footer */
 .testimonials-footer {
     margin-top: 3rem;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     gap: 1rem;
     padding-top: 1.5rem;
     border-top: 1px solid #e2e8f0;
 }

 .trust-platforms {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
 }

 .trust-platforms span {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     font-size: 0.8rem;
     color: #475569;
     font-weight: 500;
 }

 .trust-platforms span i {
     color: #f59e0b;
     font-size: 0.9rem;
 }

 .btn-view-all-testi {
     background: transparent;
     border: 1.5px solid #f59e0b;
     padding: 0.6rem 1.5rem;
     border-radius: 60px;
     font-weight: 600;
     font-size: 0.85rem;
     color: #d97706;
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     transition: all 0.2s;
 }

 .btn-view-all-testi:hover {
     background: #f59e0b;
     color: white;
     transform: translateY(-2px);
 }

 /* Responsive */
 @media (max-width: 768px) {
     #testimonials {
         padding: 3rem 0;
     }

     .rating-summary {
         flex-direction: column;
         text-align: center;
     }

     .rating-bars {
         max-width: 100%;
         width: 100%;
     }

     .testimonials-footer {
         flex-direction: column;
         text-align: center;
     }

     .trust-platforms {
         justify-content: center;
     }

     .testi-badge {
         position: static;
         display: inline-block;
         margin-bottom: 0.5rem;
     }
 }






 /* ───── BLOG - PREMIUM CONTENT HUB STYLE ───── */
 #blog {
     background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
     padding: 5rem 0;
     position: relative;
 }

 /* Featured Blog Banner */
 .featured-blog {
     background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
     border-radius: 28px;
     padding: 2rem;
     margin-bottom: 2.5rem;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(245, 158, 11, 0.3);
 }

 .featured-blog::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
     border-radius: 50%;
 }

 .featured-badge {
     position: absolute;
     top: 12px;
     right: 16px;
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     color: white;
     font-size: 0.7rem;
     font-weight: 700;
     padding: 0.2rem 1rem;
     border-radius: 40px;
 }

 .featured-img {
     background: rgba(245, 158, 11, 0.1);
     border-radius: 24px;
     height: 220px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(245, 158, 11, 0.2);
 }

 .featured-img i {
     font-size: 5rem;
     color: #f59e0b;
 }

 .featured-category {
     font-size: 0.7rem;
     letter-spacing: 2px;
     font-weight: 700;
     color: #f59e0b;
     margin-bottom: 0.5rem;
 }

 .featured-title {
     font-size: 1.6rem;
     font-weight: 800;
     color: white;
     margin-bottom: 0.8rem;
     line-height: 1.3;
 }

 .featured-desc {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.9rem;
     line-height: 1.6;
     margin-bottom: 1rem;
 }

 .featured-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     margin-bottom: 1.2rem;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.5);
 }

 .featured-meta span i {
     margin-right: 0.3rem;
 }

 .featured-btn {
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     border: none;
     padding: 0.6rem 1.5rem;
     border-radius: 40px;
     color: white;
     font-weight: 600;
     font-size: 0.85rem;
     display: inline-flex;
     align-items: center;
     gap: 0.3rem;
     transition: all 0.2s;
 }

 .featured-btn:hover {
     transform: translateX(4px);
     gap: 0.6rem;
 }

 /* Blog Categories Tabs */
 .blog-categories {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 0.6rem;
     margin-bottom: 2rem;
 }

 .category-btn {
     background: white;
     border: 1px solid #e2e8f0;
     padding: 0.5rem 1.2rem;
     border-radius: 60px;
     font-size: 0.8rem;
     font-weight: 600;
     color: #475569;
     transition: all 0.2s;
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
 }

 .category-btn i {
     font-size: 0.8rem;
 }

 .category-btn:hover,
 .category-btn.active {
     background: #f59e0b;
     border-color: #f59e0b;
     color: white;
 }

 /* Blog Cards */
 .blog-card {
     background: white;
     border-radius: 24px;
     overflow: hidden;
     transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
     height: 100%;
     display: flex;
     flex-direction: column;
     border: 1px solid #e2e8f0;
     position: relative;
 }

 .blog-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.12);
     border-color: rgba(245, 158, 11, 0.3);
 }

 .premium-card-blog {
     border: 1px solid rgba(245, 158, 11, 0.3);
 }

 .trending-card {
     position: relative;
     overflow: hidden;
 }

 .trending-badge {
     position: absolute;
     top: 12px;
     right: 12px;
     background: linear-gradient(135deg, #ef4444, #dc2626);
     color: white;
     font-size: 0.65rem;
     font-weight: 700;
     padding: 0.2rem 0.7rem;
     border-radius: 40px;
     z-index: 2;
     display: flex;
     align-items: center;
     gap: 0.2rem;
 }

 .blog-img {
     height: 180px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
     transition: transform 0.3s;
 }

 .blog-card:hover .blog-img {
     transform: scale(1.02);
 }

 .blog-img i {
     font-size: 3rem;
 }

 .blog-body {
     padding: 1.3rem;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .blog-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0.6rem;
     flex-wrap: wrap;
     gap: 0.5rem;
 }

 .blog-tag {
     font-size: 0.7rem;
     font-weight: 700;
     padding: 0.2rem 0.7rem;
     border-radius: 40px;
     background: #fef3c7;
     color: #d97706;
 }

 .blog-read-time {
     font-size: 0.65rem;
     color: #94a3b8;
     display: flex;
     align-items: center;
     gap: 0.2rem;
 }

 .blog-title {
     font-weight: 800;
     font-size: 1rem;
     color: #0f172a;
     margin-bottom: 0.5rem;
     line-height: 1.45;
 }

 .blog-excerpt {
     font-size: 0.8rem;
     color: #64748b;
     line-height: 1.55;
     margin-bottom: 1rem;
     flex: 1;
 }

 .blog-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: auto;
     padding-top: 0.8rem;
     border-top: 1px solid #e2e8f0;
 }

 .blog-meta {
     font-size: 0.7rem;
     color: #94a3b8;
     display: flex;
     align-items: center;
     gap: 0.3rem;
 }

 .read-more {
     font-size: 0.75rem;
     font-weight: 700;
     color: #f59e0b;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.2rem;
     transition: gap 0.2s;
 }

 .read-more:hover {
     gap: 0.5rem;
     color: #ea580c;
 }

 /* Newsletter Banner */
 .newsletter-banner {
     background: linear-gradient(135deg, #fef3c7, #fde68a);
     border-radius: 28px;
     padding: 2rem;
     margin: 2.5rem 0 2rem;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
 }

 .newsletter-icon {
     font-size: 2.5rem;
 }

 .newsletter-content h4 {
     font-size: 1.2rem;
     font-weight: 800;
     color: #0f172a;
     margin-bottom: 0.2rem;
 }

 .newsletter-content p {
     font-size: 0.8rem;
     color: #475569;
 }

 .newsletter-form {
     display: flex;
     gap: 0.5rem;
 }

 .newsletter-form input {
     padding: 0.7rem 1.2rem;
     border-radius: 60px;
     border: none;
     outline: none;
     width: 240px;
     font-size: 0.85rem;
 }

 .newsletter-form button {
     background: linear-gradient(135deg, #0f172a, #1e293b);
     border: none;
     padding: 0.7rem 1.2rem;
     border-radius: 60px;
     color: white;
     font-weight: 600;
     font-size: 0.8rem;
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
 }

 .btn-view-all-blog {
     background: transparent;
     border: 2px solid #f59e0b;
     padding: 0.8rem 2rem;
     border-radius: 60px;
     font-weight: 700;
     color: #d97706;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.2s;
     text-decoration: none;
 }

 .btn-view-all-blog:hover {
     background: #f59e0b;
     color: white;
     transform: translateY(-2px);
 }

 /* Responsive */
 @media (max-width: 768px) {
     #blog {
         padding: 3rem 0;
     }

     .featured-blog {
         padding: 1.5rem;
     }

     .featured-title {
         font-size: 1.3rem;
     }

     .newsletter-banner {
         flex-direction: column;
         text-align: center;
     }

     .newsletter-form {
         width: 100%;
     }

     .newsletter-form input {
         flex: 1;
     }

     .blog-categories {
         overflow-x: auto;
         flex-wrap: nowrap;
         padding-bottom: 0.5rem;
     }
 }











 /* ───── ANIMATIONS ───── */
 .fade-up {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity .65s ease, transform .65s ease;
 }

 .fade-up.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .fade-up.delay-1 {
     transition-delay: .1s;
 }

 .fade-up.delay-2 {
     transition-delay: .2s;
 }

 .fade-up.delay-3 {
     transition-delay: .3s;
 }

 .fade-up.delay-4 {
     transition-delay: .4s;
 }

 /* Hero entrance */
 @keyframes heroIn {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-animate {
     animation: heroIn .8s ease both;
 }

 .hero-animate.d1 {
     animation-delay: .1s;
 }

 .hero-animate.d2 {
     animation-delay: .25s;
 }

 .hero-animate.d3 {
     animation-delay: .4s;
 }

 .hero-animate.d4 {
     animation-delay: .55s;
 }

 .hero-animate.d5 {
     animation-delay: .7s;
 }

 /* ───── MISC ───── */
 .divider {
     width: 50px;
     height: 4px;
     background: var(--primary);
     border-radius: 2px;
     margin: 0 auto .9rem;
 }

 .stars-5::before {
     content: '★★★★★';
 }

 .verified-badge {
     background: #D1FAE5;
     color: #065F46;
     font-size: .72rem;
     font-weight: 600;
     padding: .18rem .55rem;
     border-radius: 100px;
 }

 @media(max-width:991px) {
     .step-connector {
         display: none;
     }

     .stat-card {
         border-right: none;
         border-bottom: 1px solid var(--border);
     }

     .stat-card:last-child {
         border-bottom: none;
     }
 }

 @media(max-width:767px) {
     #hero {
         padding: 4rem 0 3.5rem;
     }

     .hero-search-box {
         flex-direction: column;
         align-items: stretch;
     }

     .hero-search-box select {
         border-left: none;
         border-top: 1px solid var(--border);
     }

     .hero-visual {
         display: none;
     }
 }









 /* Portal-style dropdown styling - clean and modern */
 .dropdown-menu {
     border: none;
     background: #ffffff;
     border-radius: 16px;
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
     padding: 0.5rem 0;
     margin-top: 0.5rem;
     min-width: 200px;
 }

 .dropdown-item {
     padding: 0.5rem 1.2rem;
     font-size: 0.9rem;
     font-weight: 500;
     color: #1f2937;
     transition: all 0.2s;
 }

 .dropdown-item:hover {
     background: #fef3c7;
     color: #d97706;
     padding-left: 1.5rem;
 }

 .dropdown-divider {
     background: #fde68a;
     margin: 0.3rem 0;
 }

 /* Nav link portal styling */
 .nav-link {
     font-weight: 600;
     padding: 0.5rem 1rem;
     border-radius: 30px;
     transition: 0.2s;
     color: #1f2937;
 }

 .nav-link:hover,
 .nav-link.active {
     background: #fef3c7;
     color: #d97706;
 }

 .dropdown-toggle::after {
     vertical-align: middle;
 }

 .btn-solar {
     background: #f59e0b;
     border: none;
     color: white;
     font-weight: 600;
     padding: 0.4rem 1.2rem;
     border-radius: 30px;
 }

 .btn-outline-solar {
     border: 1.5px solid #f59e0b;
     background: transparent;
     color: #d97706;
     font-weight: 600;
     padding: 0.4rem 1.2rem;
     border-radius: 30px;
 }

 .btn-solar:hover,
 .btn-outline-solar:hover {
     transform: translateY(-1px);
 }

 #mainNav {
     background: white;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
     padding: 0.7rem 0;
 }

 .logo-dot {
     color: #f59e0b;
 }




 /* ───── FOOTER - PREMIUM ENTERPRISE STYLE ───── */
 footer {
     background: linear-gradient(180deg, #0a0f1c 0%, #0f172a 100%);
     color: rgba(255, 255, 255, 0.7);
     padding: 4rem 0 0;
     position: relative;
     overflow: hidden;
 }

 footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, #f59e0b, #ea580c, #f59e0b);
 }

 footer::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
     pointer-events: none;
 }

 /* Brand Section */
 .footer-brand {
     margin-bottom: 1rem;
 }

 .brand-logo {
     font-size: 1.6rem;
     font-weight: 800;
     color: white;
     letter-spacing: -0.5px;
     margin-bottom: 0.3rem;
 }

 .brand-logo i {
     color: #f59e0b;
     font-size: 1.8rem;
     margin-right: 4px;
 }

 .brand-logo span {
     color: #f59e0b;
 }

 .brand-tagline {
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.5);
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-bottom: 1rem;
 }

 .footer-desc {
     font-size: 0.85rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.55);
     max-width: 320px;
     margin-bottom: 1rem;
 }

 /* Trust Badges */
 .trust-badges {
     display: flex;
     flex-wrap: wrap;
     gap: 0.8rem;
     margin-bottom: 1.2rem;
 }

 .trust-badge {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     background: rgba(255, 255, 255, 0.05);
     padding: 0.3rem 0.8rem;
     border-radius: 40px;
     font-size: 0.65rem;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.7);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .trust-badge i {
     color: #f59e0b;
     font-size: 0.7rem;
 }

 /* Social Icons */
 .social-icons {
     display: flex;
     gap: 0.6rem;
     flex-wrap: wrap;
 }

 .social-icon {
     width: 38px;
     height: 38px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.06);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.6);
     font-size: 1rem;
     text-decoration: none;
     transition: all 0.2s;
     border: 1px solid rgba(255, 255, 255, 0.08);
 }

 .social-icon:hover {
     background: #f59e0b;
     color: white;
     transform: translateY(-3px);
     border-color: #f59e0b;
 }

 /* Footer Headings */
 .footer-heading {
     font-size: 0.8rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: white;
     margin-bottom: 1.2rem;
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }

 .footer-heading i {
     color: #f59e0b;
     font-size: 0.85rem;
 }

 /* Footer Links */
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 0.6rem;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.55);
     font-size: 0.85rem;
     text-decoration: none;
     transition: all 0.2s;
     display: inline-flex;
     align-items: center;
     gap: 0.3rem;
 }

 .footer-links a i {
     font-size: 0.6rem;
     opacity: 0;
     transition: opacity 0.2s;
 }

 .footer-links a:hover {
     color: #f59e0b;
     transform: translateX(4px);
 }

 .footer-links a:hover i {
     opacity: 1;
 }

 .hiring-badge {
     background: linear-gradient(135deg, #10b981, #059669);
     font-size: 0.6rem;
     padding: 0.1rem 0.4rem;
     border-radius: 40px;
     margin-left: 0.4rem;
     font-weight: 600;
 }

 /* Contact Items */
 .footer-contact-item {
     font-size: 0.82rem;
     color: rgba(255, 255, 255, 0.55);
     display: flex;
     align-items: flex-start;
     gap: 0.6rem;
     margin-bottom: 0.7rem;
     line-height: 1.5;
 }

 .footer-contact-item i {
     color: #f59e0b;
     margin-top: 0.1rem;
     flex-shrink: 0;
     font-size: 0.85rem;
 }

 /* App Download Buttons */
 .app-buttons {
     display: flex;
     gap: 0.6rem;
     margin-top: 0.5rem;
 }

 .app-btn {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 0.5rem 0.8rem;
     border-radius: 12px;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     text-decoration: none;
     color: white;
     font-size: 0.7rem;
     font-weight: 600;
     transition: all 0.2s;
 }

 .app-btn i {
     font-size: 1.1rem;
     color: #f59e0b;
 }

 .app-btn:hover {
     background: rgba(245, 158, 11, 0.2);
     border-color: #f59e0b;
     transform: translateY(-2px);
 }

 /* Newsletter Section */
 .footer-newsletter {
     background: rgba(255, 255, 255, 0.03);
     border-radius: 24px;
     padding: 1.5rem;
     margin: 2.5rem 0 1.5rem;
     border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .newsletter-text {
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .newsletter-text i {
     font-size: 2rem;
     color: #f59e0b;
 }

 .newsletter-text h5 {
     font-size: 1rem;
     font-weight: 700;
     color: white;
     margin-bottom: 0.2rem;
 }

 .newsletter-text p {
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.5);
     margin: 0;
 }

 .newsletter-form-footer {
     display: flex;
     gap: 0.5rem;
 }

 .newsletter-form-footer input {
     flex: 1;
     padding: 0.8rem 1.2rem;
     border-radius: 60px;
     border: none;
     outline: none;
     background: rgba(0, 0, 0, 0.3);
     color: white;
     font-size: 0.85rem;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .newsletter-form-footer input::placeholder {
     color: rgba(255, 255, 255, 0.4);
 }

 .newsletter-form-footer button {
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     border: none;
     padding: 0.8rem 1.5rem;
     border-radius: 60px;
     color: white;
     font-weight: 700;
     font-size: 0.85rem;
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     transition: all 0.2s;
 }

 .newsletter-form-footer button:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
 }

 /* Footer Bottom */
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     padding: 1.5rem 0;
     margin-top: 1rem;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.4);
 }

 .copyright {
     display: flex;
     align-items: center;
     gap: 0.3rem;
 }

 .footer-legal {
     display: flex;
     flex-wrap: wrap;
     justify-content: flex-end;
     gap: 0.3rem;
 }

 .footer-legal a {
     color: rgba(255, 255, 255, 0.4);
     text-decoration: none;
     transition: color 0.2s;
     font-size: 0.75rem;
 }

 .footer-legal a:hover {
     color: #f59e0b;
 }

 .sep {
     color: rgba(255, 255, 255, 0.2);
 }

 /* Back to Top Button */
 .back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 45px;
     height: 45px;
     border-radius: 60px;
     background: linear-gradient(135deg, #f59e0b, #ea580c);
     border: none;
     color: white;
     font-size: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
     opacity: 0;
     visibility: hidden;
     z-index: 1000;
     box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
 }

 .back-to-top.show {
     opacity: 1;
     visibility: visible;
 }

 .back-to-top:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
 }

 /* Responsive */
 @media (max-width: 768px) {
     footer {
         padding: 3rem 0 0;
     }

     .footer-newsletter {
         padding: 1rem;
     }

     .newsletter-text {
         margin-bottom: 1rem;
     }

     .newsletter-form-footer {
         flex-direction: column;
     }

     .footer-legal {
         justify-content: flex-start;
         margin-top: 0.8rem;
     }

     .back-to-top {
         bottom: 20px;
         right: 20px;
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }
 }



.sh-journey-section {
    position: relative;

    padding: 125px 0 115px;

    overflow: hidden;

    background: #f7f9f6;
}


/* Soft background decoration */

.sh-journey-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -280px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(191, 232, 107, .14),
            transparent 68%
        );

    pointer-events: none;
}


.sh-journey-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    bottom: -300px;
    left: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(63, 118, 86, .08),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.sh-journey-container {
    position: relative;

    width: min(
        calc(100% - 48px),
        1240px
    );

    margin: 0 auto;

    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.sh-journey-heading {
    max-width: 800px;

    margin: 0 auto 40px;

    text-align: center;
}


.sh-journey-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    padding: 7px 12px 7px 7px;

    border: 1px solid #dfe7df;

    border-radius: 100px;

    background: rgba(255,255,255,.8);

    color: #f59e0bd6;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.sh-journey-eyebrow-icon {
    width: 26px;
    height: 26px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #e6f1e4;

    color: #f59e0bd6;

    font-size: 11px;
}


.sh-journey-title {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        40px,
        4vw,
        52px
    );

    line-height: 1.03;

    letter-spacing: -3px;

    font-weight: 700;

    color: #f59e0b;
}


.sh-journey-title span {
    display: block;

    color: #f59e0bd6;
}


.sh-journey-description {
    max-width: 620px;

    margin: 20px auto 0;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    line-height: 1.75;

    color: #6d7871;
}


/* =========================================================
   GRID
========================================================= */

.sh-journey-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.sh-journey-card {
    position: relative;

    min-height: 345px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 27px;

    overflow: hidden;

    border: 1px solid #e1e8e2;

    border-radius: 26px;

    background: rgba(255,255,255,.92);

    box-shadow:
        0 8px 25px rgba(25,55,36,.025);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease,
        background .4s ease;
}


.sh-journey-card:hover {

    transform: translateY(-7px);

    border-color: #cbdccf;

    background: #ffffff;

    box-shadow:
        0 25px 55px rgba(28,62,40,.09);
}


/* subtle glow inside card */

.sh-journey-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(232, 182, 107, 0.15),
            transparent 70%
        );

    opacity: 0;

    transition: opacity .4s ease;

    pointer-events: none;
}


.sh-journey-card:hover::after {
    opacity: 1;
}


/* =========================================================
   CARD TOP
========================================================= */

.sh-journey-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.sh-journey-number {
    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #a3ada6;
}


.sh-journey-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border: 1px solid #dfe9e1;

    border-radius: 15px;

    background: #f1f6ef;

    color: #f59e0bd6;

    font-size: 17px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


.sh-journey-card:hover
.sh-journey-icon {

    transform:
        rotate(-4deg)
        scale(1.06);

    background: #f59e0bd6;

    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.sh-journey-card-content {
    margin-top: 30px;
}


.sh-journey-mini-label {
    display: block;

    margin-bottom: 9px;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

    color: #73917d;
}


.sh-journey-card h3 {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    line-height: 1.2;

    letter-spacing: -.7px;

    color: #1b2c22;
}


.sh-journey-card p {
    max-width: 310px;

    margin: 13px 0 0;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    line-height: 1.7;

    color: #717d75;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.sh-journey-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 25px;

    padding-top: 17px;

    border-top: 1px solid #edf1ed;

    font-size: 10px;

    font-weight: 600;

    color: #849087;
}


.sh-journey-card-footer i {

    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    border: 1px solid #e3e9e4;

    border-radius: 50%;

    color: #f59e0bd6;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.sh-journey-card:hover
.sh-journey-card-footer i {

    transform: translate(
        2px,
        -2px
    );

    background: #f59e0bd6;

    color: #fff;
}


/* =========================================================
   FEATURED SIXTH CARD
========================================================= */

.sh-journey-card-featured {

    border-color: #cbdcc8;

    background:
        linear-gradient(
            145deg,
            #f1f7ed,
            #e8f1e5
        );
}


.sh-journey-card-featured
.sh-journey-icon {

    background: #d9edc7;

    color: #376d4d;
}


.sh-journey-card-featured
.sh-journey-mini-label {

    color: #f59e0bd6;
}


/* =========================================================
   CONNECTING PATH
========================================================= */

.sh-journey-grid::before {

    content: "";

    position: absolute;

    top: 50%;

    left: 8%;

    right: 8%;

    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            #cfdacf 0,
            #cfdacf 5px,
            transparent 5px,
            transparent 11px
        );

    opacity: .55;

    z-index: -1;
}


/* =========================================================
   BOTTOM TRUST
========================================================= */

.sh-journey-bottom {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 28px;

    border: 1px solid #e1e8e2;

    border-radius: 20px;

    background: rgba(255,255,255,.75);

    overflow: hidden;
}


.sh-journey-bottom-item {

    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 10px 15px;

    border-right: 1px solid #e5ebe6;

    font-size: 10px;

    font-weight: 600;

    color: #68746c;
}


.sh-journey-bottom-item:last-child {
    border-right: 0;
}


.sh-journey-bottom-item i {

    color: #4b815d;

    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .sh-journey-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .sh-journey-grid::before {
        display: none;
    }


    .sh-journey-bottom {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .sh-journey-bottom-item:nth-child(2) {
        border-right: 0;
    }


    .sh-journey-bottom-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e5ebe6;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .sh-journey-section {

        padding:
            85px 0
            80px;

    }


    .sh-journey-container {

        width:
            calc(100% - 32px);

    }


    .sh-journey-heading {

        margin-bottom: 42px;

    }


    .sh-journey-title {

        font-size: 40px;

        letter-spacing: -2px;

    }


    .sh-journey-description {

        font-size: 13px;

        line-height: 1.7;

    }


    .sh-journey-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .sh-journey-card {

        min-height: 300px;

        padding: 23px;

        border-radius: 21px;

    }


    .sh-journey-card-content {

        margin-top: 25px;

    }


    .sh-journey-card h3 {

        font-size: 20px;

    }


    .sh-journey-card p {

        font-size: 12px;

    }


    .sh-journey-bottom {

        grid-template-columns: 1fr;

        border-radius: 16px;

    }


    .sh-journey-bottom-item {

        min-height: 55px;

        justify-content: flex-start;

        padding-left: 18px;

        border-right: 0;

        border-bottom: 1px solid #e5ebe6;

    }


    .sh-journey-bottom-item:last-child {

        border-bottom: 0;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sh-journey-title {

        font-size: 35px;

    }


    .sh-journey-card {

        min-height: 285px;

        padding: 20px;

    }


    .sh-journey-icon {

        width: 44px;
        height: 44px;

        border-radius: 13px;

    }

}



    .sh-stats-strip {
        width: 100%;

        background: #f8faf7;

        border-top: 1px solid #e1e7e2;
        border-bottom: 1px solid #e1e7e2;

        overflow: hidden;
    }


    /* MAIN CONTAINER */

    .sh-stats-container {
        width: min(100% - 48px, 1240px);

        min-height: 52px;

        margin: 0 auto;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        align-items: center;
    }


    /* STAT ITEM */

    .sh-stat-item {
        position: relative;

        min-height: 34px;

        padding: 8px 10px;

        display: flex;
        flex-direction: column;

        justify-content: center;

        text-align: left;
    }


    /* VERTICAL DIVIDER */

    .sh-stat-item:not(:first-child)::before {
        content: "";

        position: absolute;

        left: 0;
        top: 50%;

        width: 1px;
        height: 40px;

        transform: translateY(-50%);

        background: #dfe5e0;
    }


    /* NUMBER */

    .sh-stat-number {
        font-family: "Manrope", sans-serif;

        font-size: clamp(28px, 2.5vw, 40px);

        line-height: 1;

        font-weight: 700;

        letter-spacing: -1.5px;

        color: #f59e0b;

        white-space: nowrap;
    }


    /* NUMBER ACCENT */

    .sh-stat-number span {
        color: #f59e0b;
    }


    /* LABEL */

    .sh-stat-label {
        margin-top: 8px;

        font-family: "DM Sans", sans-serif;

        font-size: 12px;

        line-height: 1.3;

        font-weight: 500;

        letter-spacing: .1px;

        color: #6c7770;
    }


    /* =========================================================
   HOVER — VERY SUBTLE
========================================================= */

    .sh-stat-item {
        transition:
            transform .3s ease;
    }

    .sh-stat-item:hover {
        transform: translateY(-2px);
    }


    /* =========================================================
   TABLET
========================================================= */

    @media (max-width: 1000px) {

        .sh-stats-container {
            grid-template-columns:
                repeat(2, 1fr);

            padding: 28px 0;

            row-gap: 28px;
        }


        .sh-stat-item {
            min-height: 62px;

            padding: 5px 25px;
        }


        .sh-stat-item:nth-child(4)::before {
            display: none;
        }


        .sh-stat-number {
            font-size: 30px;
        }

    }


    /* =========================================================
   MOBILE
========================================================= */

    @media (max-width: 680px) {

        .sh-stats-container {
            width: min(100% - 32px, 500px);

            grid-template-columns:
                repeat(2, 1fr);

            padding: 25px 0;

            row-gap: 0;
        }


        .sh-stat-item {
            min-height: 82px;

            padding: 14px 16px;
        }


        /* Remove unnecessary borders */

        .sh-stat-item::before {
            display: none !important;
        }


        /* Add horizontal divider */

        .sh-stat-item:nth-child(n + 3)::after {
            content: "";

            position: absolute;

            top: 0;
            left: 16px;
            right: 16px;

            height: 1px;

            background: #e1e7e2;
        }


        /* Vertical divider only for right column */

        .sh-stat-item:nth-child(even)::before {
            display: block !important;

            left: 0;
            top: 50%;

            width: 1px;
            height: 42px;

            background: #e1e7e2;
        }


        .sh-stat-number {
            font-size: 25px;

            letter-spacing: -1px;
        }


        .sh-stat-label {
            margin-top: 6px;

            font-size: 10px;
        }

    }


    /* =========================================================
   SMALL MOBILE
========================================================= */

    @media (max-width: 400px) {

        .sh-stats-container {
            width: calc(100% - 20px);
        }


        .sh-stat-item {
            min-height: 76px;

            padding: 12px 10px;
        }


        .sh-stat-number {
            font-size: 22px;
        }


        .sh-stat-label {
            font-size: 9px;
        }


        .sh-stat-item:nth-child(even)::before {
            height: 38px;
        }

    }


    /* =========================================================
   SOLAR VENDOR SECTION
   Premium Vendor Directory
========================================================= */

.sv-vendor-section {
    width: 100%;
    padding: 90px 20px 100px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 166, 0, 0.055),
            transparent 38%
        ),
        #ffffff;
    overflow: hidden;
}


.sv-vendor-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.sv-vendor-heading {
    text-align: center;
    margin-bottom: 48px;
}


.sv-vendor-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 13px;

    border-radius: 50px;

    background: #fff5d9;
    border: 1px solid #ffe3a1;

    color: #d98200;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    margin-bottom: 14px;
}


.sv-vendor-eyebrow i {
    font-size: 11px;
}


.sv-vendor-heading h2 {
    margin: 0;

    color: #202938;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.2px;
}


.sv-vendor-heading p {
    margin: 11px 0 0;

    color: #7b8798;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   VENDOR GRID
========================================================= */

.sv-vendor-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 26px;

    align-items: stretch;
}


/* =========================================================
   VENDOR CARD
========================================================= */

.sv-vendor-card {
    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(24, 35, 52, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.sv-vendor-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255, 154, 0, 0.45);

    box-shadow:
        0 22px 50px rgba(24, 35, 52, 0.11);
}


/* Featured card */

.sv-vendor-card--featured {
    border-color: #ffc45d;

    box-shadow:
        0 12px 38px rgba(255, 158, 0, 0.12);
}


.sv-vendor-card--featured:hover {
    box-shadow:
        0 25px 55px rgba(255, 158, 0, 0.18);
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.sv-vendor-featured {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #ffad18,
        #f56b00
    );

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(245, 107, 0, 0.25);
}


.sv-vendor-featured i {
    font-size: 9px;
}


/* =========================================================
   MEDIA / LOGO AREA
========================================================= */

.sv-vendor-media {
    position: relative;

    width: 100%;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f8fafc,
            #ffffff
        );

    border-bottom: 1px solid #edf0f4;
}


/*
IMPORTANT:
The logo is contained inside the media area.
It can NEVER overlap the card body.
*/

.sv-vendor-logo {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 100%;

    padding: 18px 35px;

    object-fit: contain;

    object-position: center;

    display: block;

    transition:
        transform 0.4s ease;
}


.sv-vendor-card:hover .sv-vendor-logo {
    transform: scale(1.035);
}


/* Logo background */

.sv-vendor-media::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 174, 0, 0.08),
            transparent 68%
        );

    pointer-events: none;
}


/* Subtle bottom gradient */

.sv-vendor-media-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 55px;

    background:
        linear-gradient(
            to top,
            rgba(255,255,255,0.75),
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   LOGO FALLBACK
========================================================= */

.sv-vendor-logo-placeholder {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #fff5dd;

    color: #f59b00;

    font-size: 30px;
}


/* =========================================================
   VERIFIED
========================================================= */

.sv-vendor-verified {
    position: absolute;

    left: 15px;
    bottom: 14px;

    z-index: 4;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 6px 10px;

    border-radius: 50px;

    background: rgba(224, 250, 239, 0.96);

    border: 1px solid rgba(43, 183, 119, 0.16);

    color: #16895b;

    font-size: 10px;
    font-weight: 700;

    backdrop-filter: blur(8px);
}


.sv-vendor-verified i {
    font-size: 11px;
}


/* =========================================================
   CARD BODY
========================================================= */

.sv-vendor-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 22px 22px 20px;
}


/* =========================================================
   IDENTITY
========================================================= */

.sv-vendor-identity {
    min-width: 0;
}


.sv-vendor-name {
    margin: 0;

    color: #202938;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -0.3px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.sv-vendor-location {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-top: 7px;

    color: #8490a1;

    font-size: 12px;

    line-height: 1.4;
}


.sv-vendor-location i {
    color: #8795a8;
    font-size: 12px;
}


.sv-location-dot {
    color: #c4cad2;
}


/* =========================================================
   RATING
========================================================= */

.sv-vendor-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 15px;
}


.sv-stars {
    display: inline-flex;
    align-items: center;

    gap: 2px;

    color: #f5a400;

    font-size: 13px;
}


.sv-vendor-rating strong {
    color: #273143;

    font-size: 13px;

    font-weight: 800;
}


.sv-vendor-rating > span {
    color: #9aa4b2;

    font-size: 11px;
}


/* =========================================================
   SERVICE PILLS
========================================================= */

.sv-vendor-services {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 15px;

    min-height: 28px;
}


.sv-service-pill {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    border-radius: 50px;

    background: #f5f7fa;

    border: 1px solid #edf0f4;

    color: #667386;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sv-vendor-description {
    margin: 15px 0 0;

    color: #687587;

    font-size: 13px;

    line-height: 1.65;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    min-height: 42px;
}


/* =========================================================
   STATS
========================================================= */

.sv-vendor-stats {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    margin-top: 18px;

    padding: 14px 0;

    border-top: 1px solid #edf0f4;

    border-bottom: 1px solid #edf0f4;
}


.sv-vendor-stat {
    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;
}


.sv-vendor-stat--right {
    justify-content: flex-end;

    text-align: right;
}


.sv-stat-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff6e4;

    color: #ee9400;

    font-size: 12px;
}


.sv-vendor-stat strong {
    display: block;

    color: #354052;

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    max-width: 100px;
}


.sv-vendor-stat small {
    display: block;

    margin-top: 2px;

    color: #9aa4b2;

    font-size: 9px;

    font-weight: 600;
}


.sv-stat-divider {
    width: 1px;
    height: 30px;

    background: #edf0f4;

    margin: 0 12px;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.sv-vendor-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 18px;
}


.sv-btn {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.sv-btn:hover {
    transform: translateY(-2px);
}


.sv-btn i {
    font-size: 12px;
}


/* Outline */

.sv-btn-outline {
    background: #ffffff;

    border: 1px solid #f6a000;

    color: #e58a00;
}


.sv-btn-outline:hover {
    background: #fff8eb;

    color: #df8500;
}


/* Primary */

.sv-btn-primary {
    border: 1px solid transparent;

    background:
        linear-gradient(
            135deg,
            #ffae18,
            #f26800
        );

    color: #ffffff;

    box-shadow:
        0 6px 16px rgba(242, 104, 0, 0.17);
}


.sv-btn-primary:hover {
    color: #ffffff;

    box-shadow:
        0 9px 22px rgba(242, 104, 0, 0.26);
}


/* =========================================================
   VIEW ALL
========================================================= */

.sv-vendor-view-all {
    display: flex;

    justify-content: center;

    margin-top: 44px;
}


.sv-view-all-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 45px;

    padding: 0 20px;

    border: 1px solid #f5a000;

    border-radius: 50px;

    background: #ffffff;

    color: #d98500;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.sv-view-all-btn span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}


.sv-view-all-btn:hover {
    color: #ffffff;

    background: #f39800;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(243, 152, 0, 0.2);
}


.sv-view-all-btn > i {
    font-size: 15px;

    transition: transform 0.25s ease;
}


.sv-view-all-btn:hover > i {
    transform: translateX(4px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.sv-vendor-empty {
    grid-column: 1 / -1;

    text-align: center;

    padding: 60px 20px;
}


.sv-empty-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #fff6e4;

    color: #ef9700;

    font-size: 25px;
}


.sv-vendor-empty h3 {
    margin: 0;

    color: #283242;

    font-size: 20px;
}


.sv-vendor-empty p {
    margin: 7px 0 0;

    color: #8b96a5;

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sv-vendor-section {
        padding: 70px 18px 80px;
    }

    .sv-vendor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .sv-vendor-media {
        height: 180px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sv-vendor-section {
        padding: 60px 15px 70px;
    }

    .sv-vendor-heading {
        margin-bottom: 32px;
    }

    .sv-vendor-heading h2 {
        font-size: 29px;

        letter-spacing: -0.7px;
    }

    .sv-vendor-heading p {
        font-size: 13px;
    }

    .sv-vendor-grid {
        grid-template-columns: 1fr;

        max-width: 460px;

        margin: 0 auto;

        gap: 18px;
    }

    .sv-vendor-card {
        border-radius: 20px;
    }

    .sv-vendor-media {
        height: 200px;
    }

    .sv-vendor-logo {
        padding: 18px 40px;
    }

    .sv-vendor-body {
        padding: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .sv-vendor-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .sv-vendor-heading h2 {
        font-size: 26px;
    }

    .sv-vendor-media {
        height: 180px;
    }

    .sv-vendor-logo {
        padding: 15px 28px;
    }

    .sv-vendor-body {
        padding: 18px;
    }

    .sv-vendor-name {
        font-size: 18px;
    }

    .sv-vendor-actions {
        gap: 8px;
    }

    .sv-btn {
        min-height: 40px;

        font-size: 10px;
    }

    .sv-vendor-stat strong {
        max-width: 80px;
    }

}

/* =========================================================
   SOLAR VYAPAR - PREMIUM FINAL CTA
   Brand: Navy + Orange + White
========================================================= */

.sv-final-cta {
    position: relative;

    width: 100%;

    min-height: 390px;

    padding: 80px 20px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 108, 0, 0.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071d3b 0%,
            #0b2b50 50%,
            #061a34 100%
        );
}


/* =========================================================
   INNER
========================================================= */

.sv-final-cta-inner {
    position: relative;

    z-index: 5;

    width: min(780px, 100%);

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   LABEL
========================================================= */

.sv-final-cta-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 13px;

    border: 1px solid rgba(255, 126, 0, 0.35);

    border-radius: 50px;

    background: rgba(255, 126, 0, 0.08);

    color: #ff8a18;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.sv-final-cta-label i {
    font-size: 10px;
}


/* =========================================================
   HEADING
========================================================= */

.sv-final-cta-title {
    margin: 18px 0 0;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}


.sv-final-cta-title span {
    display: block;

    color: #ff7900;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sv-final-cta-text {
    max-width: 570px;

    margin: 17px auto 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.sv-final-cta-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 27px;
}


.sv-final-btn {
    min-height: 48px;

    padding: 0 21px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


/* Primary */

.sv-final-btn-primary {
    background:
        linear-gradient(
            135deg,
            #ff9b24,
            #f36b00
        );

    color: #ffffff;

    box-shadow:
        0 9px 25px rgba(243, 107, 0, .22);
}


.sv-final-btn-primary:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(243, 107, 0, .32);
}


.sv-final-btn-primary i {
    font-size: 15px;

    transition: transform .25s ease;
}


.sv-final-btn-primary:hover i {
    transform: translateX(4px);
}


/* Outline */

.sv-final-btn-outline {
    border: 1px solid rgba(255, 255, 255, .25);

    background: rgba(255, 255, 255, .025);

    color: #ffffff;
}


.sv-final-btn-outline:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, .08);

    border-color: rgba(255, 255, 255, .4);

    transform: translateY(-3px);
}


.sv-final-btn-outline i {
    color: #ff8612;

    font-size: 13px;
}


/* =========================================================
   TRUST LINE
========================================================= */

.sv-final-trust {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 30px;
}


.sv-final-trust span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, .47);

    font-size: 9px;

    font-weight: 600;
}


.sv-final-trust span i {
    color: #ff8210;

    font-size: 11px;
}


.sv-final-trust-divider {
    width: 3px;
    height: 3px;

    padding: 0 !important;

    border-radius: 50%;

    background: rgba(255, 255, 255, .25);
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.sv-cta-circle {
    position: absolute;

    border: 1px solid rgba(255, 130, 15, .16);

    border-radius: 50%;

    pointer-events: none;
}


.sv-cta-circle::before {
    content: "";

    position: absolute;

    inset: 24px;

    border: 1px solid rgba(255, 130, 15, .11);

    border-radius: 50%;
}


.sv-cta-circle::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #ff8511;

    box-shadow:
        0 0 18px rgba(255, 133, 17, .6);
}


/* Left */

.sv-cta-circle-one {
    width: 210px;
    height: 210px;

    left: -105px;
    bottom: -105px;
}


/* Right */

.sv-cta-circle-two {
    width: 260px;
    height: 260px;

    right: -105px;
    top: -130px;
}


/* =========================================================
   SMALL DECORATIVE DOTS
========================================================= */

.sv-cta-dot {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ff8511;

    opacity: .55;

    box-shadow:
        0 0 12px rgba(255, 133, 17, .7);
}


.sv-cta-dot-one {
    top: 30%;

    left: 14%;
}


.sv-cta-dot-two {
    right: 16%;

    bottom: 25%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .sv-final-cta {
        min-height: auto;

        padding: 65px 18px;
    }


    .sv-final-cta-title {
        font-size: 38px;

        letter-spacing: -1.3px;
    }


    .sv-final-cta-text {
        font-size: 13px;
    }


    .sv-final-cta-actions {
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }


    .sv-final-btn {
        width: min(330px, 100%);
    }


    .sv-final-trust {
        flex-direction: column;

        gap: 9px;

        margin-top: 25px;
    }


    .sv-final-trust-divider {
        display: none !important;
    }


    .sv-cta-circle-one {
        width: 150px;
        height: 150px;

        left: -75px;
        bottom: -75px;
    }


    .sv-cta-circle-two {
        width: 180px;
        height: 180px;

        right: -90px;
        top: -90px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .sv-final-cta {
        padding: 55px 15px;
    }


    .sv-final-cta-title {
        font-size: 32px;
    }


    .sv-final-cta-text {
        font-size: 12px;
    }


    .sv-final-btn {
        min-height: 46px;

        font-size: 10px;
    }

}
/* =========================================================
   SOLAR VYAPAR
   CLEAN TESTIMONIAL SECTION
========================================================= */

.sv-testimonials {
    width: 100%;
    padding: 85px 20px;

    background: #ffffff;
}


.sv-testimonials-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.sv-testimonials-heading {
    text-align: center;
    margin-bottom: 18px;
}


.sv-testimonials-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #f47b00;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.sv-testimonials-label i {
    font-size: 11px;
}


.sv-testimonials-heading h2 {
    margin: 12px 0 0;

    color: #172b46;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;

    letter-spacing: -1px;

    font-weight: 800;
}


.sv-testimonials-heading h2 span {
    color: #f47700;
}


.sv-testimonials-heading p {
    margin: 10px auto 0;

    max-width: 520px;

    color: #7b8795;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   OVERALL RATING
========================================================= */

.sv-overall-rating {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin: 25px 0 38px;
}


.sv-rating-stars {
    color: #f59e0b;

    font-size: 13px;

    letter-spacing: 1px;
}


.sv-overall-rating strong {
    color: #25354b;

    font-size: 15px;
}


.sv-overall-rating > span {
    color: #8b96a4;

    font-size: 11px;
}


/* =========================================================
   GRID
========================================================= */

.sv-testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.sv-testimonial-card {
    padding: 24px;

    border: 1px solid #e9edf2;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 7px 25px rgba(18, 42, 70, 0.045);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.sv-testimonial-card:hover {
    transform: translateY(-4px);

    border-color: #f5c17d;

    box-shadow:
        0 15px 35px rgba(18, 42, 70, 0.08);
}


/* =========================================================
   CARD TOP
========================================================= */

.sv-testimonial-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;
}


.sv-mini-stars {
    color: #f59e0b;

    font-size: 12px;

    letter-spacing: 1px;
}


.sv-verified {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: #16885b;

    font-size: 9px;

    font-weight: 700;
}


.sv-verified i {
    font-size: 11px;
}


/* =========================================================
   TEXT
========================================================= */

.sv-testimonial-text {
    margin: 20px 0 25px;

    min-height: 78px;

    color: #536174;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   USER
========================================================= */

.sv-testimonial-user {
    display: flex;

    align-items: center;

    gap: 11px;

    padding-top: 16px;

    border-top: 1px solid #edf0f3;
}


.sv-user-avatar {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ff9b2f,
            #f26b00
        );

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;
}


.sv-user-info {
    min-width: 0;
}


.sv-user-info strong {
    display: block;

    color: #26364b;

    font-size: 12px;

    font-weight: 800;
}


.sv-user-info span {
    display: block;

    margin-top: 3px;

    color: #929daa;

    font-size: 9px;
}


.sv-user-info span i {
    color: #f47b00;

    font-size: 9px;
}


/* =========================================================
   BOTTOM
========================================================= */

.sv-testimonial-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid #edf0f3;
}


.sv-testimonial-bottom > span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #8a96a4;

    font-size: 10px;

    font-weight: 600;
}


.sv-testimonial-bottom > span i {
    color: #16885b;

    font-size: 12px;
}


.sv-testimonial-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #f17700;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


.sv-testimonial-bottom a i {
    transition: transform .2s ease;
}


.sv-testimonial-bottom a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sv-testimonial-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sv-testimonials {
        padding: 65px 15px;
    }


    .sv-testimonial-grid {
        grid-template-columns: 1fr;

        max-width: 480px;

        margin: 0 auto;
    }


    .sv-overall-rating {
        margin-bottom: 30px;
    }


    .sv-testimonial-card {
        padding: 21px;
    }


    .sv-testimonial-text {
        min-height: auto;
    }


    .sv-testimonial-bottom {
        flex-direction: column;

        gap: 13px;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .sv-testimonials {
        padding: 55px 12px;
    }


    .sv-testimonials-heading h2 {
        font-size: 29px;
    }


    .sv-testimonials-heading p {
        font-size: 12px;
    }


    .sv-overall-rating {
        flex-wrap: wrap;
    }

}

/* =========================================================
   SOLAR VYAPAR - PREMIUM BLOG
========================================================= */

.sv-blog-section {
    width: 100%;

    padding: 55px 20px 65px;

    background: #ffffff;
}


.sv-blog-container {
    width: min(1120px, 100%);

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.sv-blog-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}


.sv-blog-label {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #f07800;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.sv-blog-label i {
    font-size: 11px;
}


.sv-blog-heading h2 {
    margin: 7px 0 0;

    color: #172b46;

    font-size: 32px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -.8px;
}


.sv-blog-heading h2 span {
    color: #f07800;
}


.sv-blog-view-all {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #f07800;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    white-space: nowrap;

    transition: gap .2s ease;
}


.sv-blog-view-all:hover {
    color: #d96300;

    gap: 9px;
}


/* =========================================================
   GRID
========================================================= */

.sv-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.sv-blog-card {
    min-width: 0;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e8edf2;

    border-radius: 15px;

    box-shadow:
        0 5px 18px rgba(20, 42, 65, .045);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.sv-blog-card:hover {
    transform: translateY(-4px);

    border-color: #f4bd80;

    box-shadow:
        0 12px 28px rgba(20, 42, 65, .08);
}


/* =========================================================
   IMAGE
========================================================= */

.sv-blog-image {
    position: relative;

    display: block;

    width: 100%;

    height: 190px;

    overflow: hidden;

    background: #f3f5f7;
}


.sv-blog-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;
}


.sv-blog-card:hover .sv-blog-image img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.sv-blog-image-placeholder {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f47b00,
            #ffad42
        );

    color: #ffffff;

    font-size: 34px;
}


/* =========================================================
   DATE
========================================================= */

.sv-blog-date {
    position: absolute;

    left: 12px;

    bottom: 12px;

    padding: 6px 9px;

    border-radius: 7px;

    background: rgba(7, 29, 59, .88);

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    backdrop-filter: blur(6px);
}


/* =========================================================
   CONTENT
========================================================= */

.sv-blog-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 18px;
}


/* =========================================================
   TAGS
========================================================= */

.sv-blog-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 9px;
}


.sv-blog-tags span {
    padding: 5px 8px;

    border-radius: 5px;

    background: #fff5e9;

    color: #d66b00;

    font-size: 8px;

    font-weight: 700;
}


/* =========================================================
   TITLE
========================================================= */

.sv-blog-title {
    margin: 0;

    line-height: 1.35;
}


.sv-blog-title a {
    display: -webkit-box;

    overflow: hidden;

    color: #1d3047;

    text-decoration: none;

    font-size: 16px;

    font-weight: 800;

    line-height: 1.35;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    transition: color .2s ease;
}


.sv-blog-title a:hover {
    color: #ef7600;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sv-blog-description {
    display: -webkit-box;

    overflow: hidden;

    margin: 9px 0 15px;

    color: #7c8897;

    font-size: 11px;

    line-height: 1.65;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}


/* =========================================================
   FOOTER
========================================================= */

.sv-blog-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: auto;

    padding-top: 13px;

    border-top: 1px solid #edf0f3;
}


.sv-blog-meta {
    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}


.sv-blog-meta span {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: #929daa;

    font-size: 8px;

    white-space: nowrap;
}


.sv-blog-meta i {
    color: #f07800;

    font-size: 10px;
}


/* =========================================================
   READ BUTTON
========================================================= */

.sv-blog-read {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #f07800;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

    white-space: nowrap;
}


.sv-blog-read i {
    font-size: 11px;

    transition:
        transform .2s ease;
}


.sv-blog-read:hover {
    color: #d96300;
}


.sv-blog-read:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   EMPTY
========================================================= */

.sv-blog-empty {
    grid-column: 1 / -1;

    padding: 50px 20px;

    text-align: center;

    color: #8a96a4;
}


.sv-blog-empty > i {
    font-size: 40px;

    color: #f0a15c;
}


.sv-blog-empty h3 {
    margin: 10px 0 5px;

    color: #26384d;

    font-size: 19px;
}


.sv-blog-empty p {
    margin: 0;

    font-size: 12px;
}


/* =========================================================
   PAGINATION
========================================================= */

.sv-blog-pagination {
    margin-top: 30px;
}


.sv-blog-pagination .pagination {
    justify-content: center;

    margin-bottom: 0;
}


.sv-blog-pagination .page-link {
    border-color: #e7ebef;

    color: #f07800;

    font-size: 11px;
}


.sv-blog-pagination .active .page-link {
    background: #f07800;

    border-color: #f07800;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sv-blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sv-blog-section {
        padding: 45px 15px 55px;
    }


    .sv-blog-heading {
        align-items: flex-start;

        margin-bottom: 20px;
    }


    .sv-blog-heading h2 {
        font-size: 27px;
    }


    .sv-blog-grid {
        grid-template-columns: 1fr;

        max-width: 480px;

        margin: 0 auto;
    }


    .sv-blog-image {
        height: 200px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .sv-blog-section {
        padding-left: 12px;

        padding-right: 12px;
    }


    .sv-blog-heading h2 {
        font-size: 25px;
    }


    .sv-blog-view-all {
        font-size: 9px;
    }


    .sv-blog-content {
        padding: 16px;
    }

}