 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     /* Brand Colors */
     --primary-navy: #0f3b5e;
     --primary-light: #1f5a8e;
     --accent-saffron: #f3a43b;
     --accent-light: #fbbf24;
     --success-green: #10b981;
     --white: #ffffff;

     /* Gray Scale */
     --gray-50: #f8fafc;
     --gray-100: #f1f5f9;
     --gray-200: #e2e8f0;
     --gray-300: #cbd5e1;
     --gray-400: #94a3b8;
     --gray-500: #64748b;
     --gray-600: #475569;
     --gray-700: #334155;
     --gray-800: #1e293b;
     --gray-900: #0f172a;

     /* Shadows */
     --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 10px 25px -5px rgba(0, 0, 0, 0.1);
     --shadow-xl: 0 20px 40px -15px rgba(0, 0, 0, 0.15);

     /* Border Radius */
     --radius-sm: 8px;
     --radius-md: 16px;
     --radius-lg: 24px;
     --radius-xl: 32px;
     --radius-full: 999px;

     /* Spacing */
     --space-xs: 8px;
     --space-sm: 16px;
     --space-md: 24px;
     --space-lg: 40px;
     --space-xl: 60px;
     --space-2xl: 80px;

     /* Transitions */
     --transition: all 0.3s ease;
 }





 body {
     font-family: 'Inter', sans-serif;
     background-color: var(--white);
     color: var(--gray-800);
     line-height: 1.5;
     overflow-x: hidden;

     margin: 0;
 }


 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 var(--space-md);
 }

 /* ========== TYPOGRAPHY ========== */
 h1 {
     font-size: clamp(36px, 5vw, 56px);
     font-weight: 800;
     line-height: 1.2;
 }

 h2 {
     font-size: clamp(28px, 4vw, 38px);
     font-weight: 700;
 }

 h3 {
     font-size: clamp(20px, 3vw, 24px);
     font-weight: 600;
 }

 .section-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto var(--space-xl);
 }

 .section-header h2 {
     color: var(--gray-900);
     margin-bottom: var(--space-sm);
 }

 .section-header p {
     color: var(--gray-600);
     font-size: 18px;
 }

 /* ========== BUTTONS ========== */
 .btn-primary,
 .btn-outline,
 .plan-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: var(--space-xs);
     padding: 14px 32px;
     border-radius: var(--radius-full);
     font-weight: 600;
     font-size: 16px;
     text-decoration: none;
     transition: var(--transition);
     cursor: pointer;
     border: none;
 }

 .btn-primary {
     background-color: var(--primary-navy);
     color: white;
     box-shadow: var(--shadow-md);
 }

 .btn-primary:hover {
     background-color: var(--primary-light);
     transform: translateY(-2px);
     box-shadow: var(--shadow-lg);
 }

 .btn-outline {
     background-color: transparent;
     border: 2px solid var(--gray-300);
     color: var(--gray-800);
 }

 .btn-outline:hover {
     border-color: var(--primary-navy);
     background-color: var(--gray-50);
     transform: translateY(-2px);
 }

 /* ===== NAVBAR - BIZ SEVAK PREMIUM ===== */

 .biz-navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: white;
     box-shadow: 0 2px 15px rgba(15, 59, 94, 0.1);
     z-index: 1000;
     padding: 10px 0;
 }

 /* Container */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .nav-flex {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 /* Logo */
 .logo {
     font-size: 26px;
     font-weight: 700;
     background: linear-gradient(135deg, #0f3b5e, #f3a43b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-decoration: none;
 }

 /* Desktop Menu */
 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     text-decoration: none;
     color: #334155;
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #f3a43b;
     transition: width 0.3s;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-links a:hover {
     color: #0f3b5e;
 }

 /* Desktop Buttons */
 .nav-buttons {
     display: flex;
     gap: 12px;
 }

 .btn-outline,
 .btn-primary {
     padding: 8px 20px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s;
     font-size: 14px;
 }

 .btn-outline {
     border: 2px solid #0f3b5e;
     color: #0f3b5e;
     background: transparent;
 }

 .btn-outline:hover {
     background: #0f3b5e;
     color: white;
     transform: translateY(-2px);
 }

 .btn-primary {
     background: #0f3b5e;
     color: white;
     border: 2px solid #0f3b5e;
 }

 .btn-primary:hover {
     background: #f3a43b;
     border-color: #f3a43b;
     transform: translateY(-2px);
 }

 /* Mobile Menu Button */
 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 24px;
     color: #0f3b5e;
     cursor: pointer;
     padding: 8px;
     transition: all 0.3s;
 }

 .mobile-menu-btn:hover {
     color: #f3a43b;
 }

 /* Mobile Menu Overlay */
 .mobile-menu-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1001;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .mobile-menu-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 /* Mobile Menu - Left Side */
 .mobile-menu {
     position: fixed;
     top: 0;
     left: -300px;
     width: 280px;
     height: 100vh;
     background: white;
     z-index: 1002;
     transition: left 0.3s ease;
     box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
     overflow-y: auto;
 }

 .mobile-menu.active {
     left: 0;
 }

 /* Mobile Menu Header */
 .mobile-menu-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px;
     border-bottom: 1px solid #e2e8f0;
 }

 .mobile-logo {
     font-size: 22px;
     font-weight: 700;
     background: linear-gradient(135deg, #0f3b5e, #f3a43b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .mobile-close {
     background: none;
     border: none;
     font-size: 20px;
     color: #64748b;
     cursor: pointer;
     padding: 5px;
     transition: all 0.3s;
 }

 .mobile-close:hover {
     color: #f3a43b;
     transform: rotate(90deg);
 }

 /* Mobile Menu Body */
 .mobile-menu-body {
     padding: 15px;
 }

 .mobile-menu-body a {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 15px;
     text-decoration: none;
     color: #334155;
     border-radius: 10px;
     transition: all 0.3s;
     margin-bottom: 5px;
 }

 .mobile-menu-body a i {
     width: 22px;
     color: #f3a43b;
     font-size: 18px;
 }

 .mobile-menu-body a:hover {
     background: linear-gradient(135deg, rgba(243, 164, 59, 0.1), rgba(15, 59, 94, 0.1));
     color: #0f3b5e;
     transform: translateX(5px);
 }

 /* Mobile Menu Footer */
 .mobile-menu-footer {
     padding: 20px;
     border-top: 1px solid #e2e8f0;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .mobile-btn-outline,
 .mobile-btn-primary {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 12px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 500;
     font-size: 15px;
     transition: all 0.3s;
 }

 .mobile-btn-outline {
     border: 2px solid #0f3b5e;
     color: #0f3b5e;
     background: transparent;
 }

 .mobile-btn-outline:hover {
     background: #0f3b5e;
     color: white;
 }

 .mobile-btn-primary {
     background: #0f3b5e;
     color: white;
 }

 .mobile-btn-primary i {
     color: #f3a43b;
 }

 .mobile-btn-primary:hover {
     background: #f3a43b;
     color: #0f3b5e;
 }

 .mobile-btn-primary:hover i {
     color: #0f3b5e;
 }

 /* Body Padding */
 body {
     padding-top: 62px;
     margin: 0;
     font-family: 'Inter', sans-serif;
 }

 /* Smooth Scroll */
 html {
     scroll-behavior: smooth;
     scroll-padding-top: 70px;
 }

 /* ===== RESPONSIVE ===== */
 @media screen and (max-width: 768px) {

     .nav-links,
     .nav-buttons {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }

     body {
         padding-top: 65px;
     }

     .biz-navbar {
         padding: 10px 0;
     }

     .logo {
         font-size: 24px;
     }
 }

 @media screen and (max-width: 480px) {
     .mobile-menu {
         width: 260px;
     }

     .mobile-menu-body a {
         padding: 12px;
     }

     .mobile-menu-body a i {
         font-size: 16px;
     }

     .mobile-menu-body a span {
         font-size: 14px;
     }
 }


 /* ===== BIZSEVAK ULTRA PREMIUM HERO 2026 - PERFECT VERSION ===== */
 /* ===== BIZSEVAK ULTRA PREMIUM HERO 2026 - PERFECT VERSION ===== */
 .biz-hero-2026 {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     background: #0a0f1a;
     overflow: hidden;
     font-family: 'Inter', 'Sora', sans-serif;
     padding: 18px 0 40px;
     width: 100%;
 }

 /* ===== BACKGROUND SYSTEM ===== */
 .biz-bg-system {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 /* Gradient Orbs - Static (No animation) */
 .biz-gradient-orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(100px);
     opacity: 0.3;
 }

 .orb-1 {
     top: 10%;
     left: 5%;
     width: 300px;
     height: 300px;
     background: rgba(37, 99, 235, 0.3);
 }

 .orb-2 {
     bottom: 20%;
     right: 10%;
     width: 400px;
     height: 400px;
     background: rgba(6, 182, 212, 0.25);
 }

 .orb-3 {
     top: 40%;
     right: 30%;
     width: 250px;
     height: 250px;
     background: rgba(243, 164, 59, 0.2);
 }

 /* Icons Grid - Static (No animation) */
 .biz-icon-grid {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 60px;
     padding: 40px;
     opacity: 0.1;
     pointer-events: none;
     z-index: 2;
 }

 .biz-grid-icon {
     font-size: clamp(20px, 4vw, 60px);
     color: white;
     text-align: center;
 }

 /* Grid Pattern */
 .biz-grid-pattern {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
     background-size: 40px 40px;
     pointer-events: none;
     z-index: 3;
 }

 /* Particles Container */
 #particles-js {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 4;
 }

 /* ===== MAIN CONTENT ===== */
 .biz-hero-2026-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 20;
     width: 100%;
 }

 .biz-hero-2026-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
 }

 /* Left Content */
 .biz-hero-2026-left {
     color: white;
     opacity: 1;
     animation: fadeIn 1s ease-out;
 }

 @keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 /* ===== PREMIUM BADGE - HOVER EFFECTS ===== */
 .biz-2026-badge {
     margin-bottom: 20px;
     text-align: center;
 }

 .biz-badge-pill {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 8px 20px;
     background: rgba(243, 164, 59, 0.1);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(243, 164, 59, 0.2);
     border-radius: 50px;
     font-size: 17px;
     font-weight: 600;
     color: #f3a43b;
     transition: all 0.3s ease;
     cursor: default;
 }

 /* Badge hover effect - subtle scale */
 .biz-badge-pill:hover {
     transform: scale(1.02);
     background: rgba(243, 164, 59, 0.15);
     border-color: #f3a43b;
 }

 /* Icon hover effect */
 .biz-badge-pill i {
     font-size: 16px;
     color: #f3a43b;
     transition: transform 0.3s ease;
 }

 .biz-badge-pill:hover i {
     transform: rotate(5deg);
 }

 /* Text hover effect */
 .biz-pulse-text {
     transition: text-shadow 0.3s ease;
 }

 .biz-badge-pill:hover .biz-pulse-text {
     text-shadow: 0 0 10px rgba(243, 164, 59, 0.3);
 }

 /* ===== HEADLINE - HOVER EFFECTS ===== */
 .biz-2026-headline {
     margin-bottom: 15px;
 }

 .biz-headline-line {
     display: block;
     font-size: clamp(24px, 3.5vw, 38px);
     font-weight: 700;
     color: white;
     line-height: 1.2;
     margin-bottom: 5px;
     transition: transform 0.3s ease;
 }

 /* Headline line hover */
 .biz-headline-line:hover {
     transform: translateX(5px);
     color: rgba(255, 255, 255, 0.95);
 }

 .biz-headline-gradient {
     display: block;
     font-size: clamp(26px, 4vw, 42px);
     font-weight: 800;
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     line-height: 1.2;
     transition: all 0.3s ease;
 }

 /* Gradient headline hover */
 .biz-headline-gradient:hover {
     filter: drop-shadow(0 5px 15px rgba(243, 164, 59, 0.3));
     transform: scale(1.01);
 }

 /* ===== SUBHEADLINE - HOVER EFFECT ===== */
 .biz-2026-subheadline {
     border: 2px solid white;
     padding: 10px;
     border-radius: 50px 50px;
     font-size: 16px;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 10px;
     max-width: 550px;
     transition: all 0.3s ease;
     padding: 5px 10px;
 }
 }

 /* Subheadline hover */
 .biz-2026-subheadline:hover {
     background: rgba(255, 255, 255, 0.02);
     transform: translateY(-2px);
 }

 .biz-highlight {
     color: #f3a43b;
     font-weight: 600;
     transition: text-shadow 0.3s ease;
 }

 .biz-highlight:hover {
     text-shadow: 0 0 10px rgba(243, 164, 59, 0.4);
 }

 /* ===== TRUST BADGES - HOVER EFFECTS ===== */
 .biz-2026-trust {
     display: flex;
     gap: 20px;
     margin-bottom: 10px;
     flex-wrap: wrap;
 }

 .biz-trust-badge {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.8);
     padding: 4px 10px;
     border-radius: 30px;
     transition: all 0.3s ease;
     cursor: default;
 }

 /* Trust badge hover */
 .biz-trust-badge:hover {
     transform: translateY(-3px);
     background: rgba(243, 164, 59, 0.1);
     color: #f3a43b;
 }

 .biz-trust-badge i {
     color: #f3a43b;
     font-size: 14px;
     transition: transform 0.3s ease;
 }

 .biz-trust-badge:hover i {
     transform: rotate(5deg);
 }

 /* ===== CTA BUTTONS - HOVER EFFECTS ===== */
 .biz-2026-cta {
     display: flex;
     gap: 15px;
     margin-bottom: 10px;
     flex-wrap: wrap;
 }

 .biz-2026-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 28px;
     border-radius: 12px;
     text-decoration: none;
     font-weight: 600;
     font-size: 14px;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .biz-2026-btn-primary {
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     color: #0f3b5e;
     border: none;
 }

 .biz-2026-btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(243, 164, 59, 0.3);
 }

 .biz-2026-btn-primary i {
     transition: transform 0.3s ease;
 }

 .biz-2026-btn-primary:hover i {
     transform: translateX(5px);
 }

 .biz-2026-btn-secondary {
     background: rgba(255, 255, 255, 0.03);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: white;
 }

 .biz-2026-btn-secondary:hover {
     background: rgba(243, 164, 59, 0.15);
     border-color: #f3a43b;
     transform: translateY(-3px);
 }

 .biz-2026-btn-secondary i {
     transition: transform 0.3s ease;
 }

 .biz-2026-btn-secondary:hover i {
     transform: rotate(5deg);
 }

 /* ===== SOCIAL PROOF - HOVER EFFECTS ===== */
 .biz-2026-proof {
     display: flex;
     align-items: center;
     gap: 15px;
     flex-wrap: wrap;
     transition: all 0.3s ease;
     padding: 5px 10px;
     border-radius: 50px;
 }

 /* Social proof container hover */
 .biz-2026-proof:hover {
     background: rgba(255, 255, 255, 0.02);
 }

 .biz-proof-avatars {
     display: flex;
     align-items: center;
 }

 .biz-proof-avatars img {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     border: 2px solid #0a0f1a;
     margin-right: -8px;
     object-fit: cover;
     transition: all 0.3s ease;
 }

 /* Avatar hover */
 .biz-proof-avatars img:hover {
     transform: translateY(-3px) scale(1.1);
     border-color: #f3a43b;
     z-index: 10;
 }

 .biz-proof-avatars span {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: #f3a43b;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 11px;
     font-weight: 600;
     color: #0f3b5e;
     border: 2px solid #0a0f1a;
     transition: all 0.3s ease;
     cursor: default;
 }

 /* Count badge hover */
 .biz-proof-avatars span:hover {
     transform: translateY(-3px) scale(1.1);
     background: white;
 }

 .biz-proof-text {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.6);
     transition: all 0.3s ease;
 }

 .biz-proof-text:hover {
     color: #f3a43b;
     transform: translateX(3px);
 }

 /* ===== RIGHT CONTENT - DASHBOARD HOVER EFFECTS ===== */
 .biz-hero-ultimate-right {
     position: relative;
     opacity: 1;
     animation: fadeIn 1s ease-out 0.2s both;
 }

 .biz-dashboard-card {
     background: rgba(20, 25, 40, 0.5);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
     transition: all 0.4s ease;
 }

 /* Dashboard card hover - subtle lift */
 .biz-dashboard-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 40px 70px rgba(0, 0, 0, 0.6);
     border-color: rgba(243, 164, 59, 0.2);
 }

 /* Dashboard Header */
 .biz-dash-header {
     padding: 15px 20px;
     background: rgba(0, 0, 0, 0.3);
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .biz-dash-controls {
     display: flex;
     gap: 6px;
 }

 .biz-dash-controls span {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     transition: transform 0.2s ease;
 }

 /* Control dots hover */
 .biz-dash-controls span:hover {
     transform: scale(1.2);
 }

 .biz-control-red {
     background: #ff5f56;
 }

 .biz-control-yellow {
     background: #ffbd2e;
 }

 .biz-control-green {
     background: #27c93f;
 }

 .biz-dash-title {
     flex: 1;
     font-size: 13px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.8);
     transition: color 0.3s ease;
 }

 .biz-dashboard-card:hover .biz-dash-title {
     color: #f3a43b;
 }

 .biz-dash-menu {
     color: rgba(255, 255, 255, 0.4);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 /* Menu dots hover */
 .biz-dash-menu:hover {
     color: #f3a43b;
     transform: rotate(90deg);
 }

 /* Dashboard Body */
 .biz-dash-body {
     padding: 20px;
 }

 /* Dashboard Rows - Individual hover effects */
 .biz-dash-row {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     transition: all 0.3s ease;
     cursor: default;
 }

 .biz-dash-row:last-child {
     border-bottom: none;
 }

 /* Row hover - subtle highlight */
 .biz-dash-row:hover {
     background: rgba(243, 164, 59, 0.05);
     border-radius: 8px;
     padding-left: 10px;
     padding-right: 10px;
     margin: 0 -5px;
 }

 .biz-row-icon {
     width: 40px;
     height: 40px;
     background: rgba(243, 164, 59, 0.1);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 /* Icon hover */
 .biz-dash-row:hover .biz-row-icon {
     background: rgba(243, 164, 59, 0.2);
     transform: scale(1.05);
 }

 .biz-row-icon i {
     color: #f3a43b;
     font-size: 18px;
     transition: transform 0.3s ease;
 }

 .biz-dash-row:hover .biz-row-icon i {
     transform: rotate(3deg);
 }

 .biz-row-content {
     flex: 1;
     transition: transform 0.3s ease;
 }

 .biz-dash-row:hover .biz-row-content {
     transform: translateX(3px);
 }

 .biz-row-label {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.5);
     margin-bottom: 2px;
     transition: color 0.3s ease;
 }

 .biz-dash-row:hover .biz-row-label {
     color: #f3a43b;
 }

 .biz-row-value {
     font-size: 14px;
     font-weight: 600;
     color: white;
     transition: text-shadow 0.3s ease;
 }

 .biz-dash-row:hover .biz-row-value {
     text-shadow: 0 0 8px rgba(243, 164, 59, 0.3);
 }

 .biz-row-status {
     font-size: 11px;
     font-weight: 600;
     padding: 3px 8px;
     border-radius: 30px;
     transition: all 0.3s ease;
 }

 /* Status hover effects */
 .biz-dash-row:hover .biz-row-status {
     transform: scale(1.05);
 }

 .biz-status-active {
     background: rgba(16, 185, 129, 0.1);
     color: #10b981;
 }

 .biz-dash-row:hover .biz-status-active {
     background: rgba(16, 185, 129, 0.2);
 }

 .biz-status-secure {
     background: rgba(243, 164, 59, 0.1);
     color: #f3a43b;
 }

 .biz-dash-row:hover .biz-status-secure {
     background: rgba(243, 164, 59, 0.2);
 }

 .biz-status-hot {
     background: rgba(243, 164, 59, 0.1);
     color: #f3a43b;
 }

 .biz-dash-row:hover .biz-status-hot {
     background: rgba(243, 164, 59, 0.2);
 }

 /* Dashboard Footer */
 .biz-dash-footer {
     padding: 15px 20px;
     background: rgba(243, 164, 59, 0.1);
     display: flex;
     align-items: center;
     justify-content: space-between;
     font-size: 13px;
     font-weight: 600;
     color: #f3a43b;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 /* Footer hover */
 .biz-dash-footer:hover {
     background: rgba(243, 164, 59, 0.15);
     padding-left: 22px;
     padding-right: 22px;
 }

 .biz-dash-footer i {
     transition: transform 0.3s ease;
 }

 .biz-dash-footer:hover i {
     transform: translateX(5px);
 }

 /* ===== BOTTOM MARQUEE STRIP ===== */
 .biz-marquee-strip {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     background: rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(10px);
     border-top: 1px solid white;
     rgba(255, 255, 255, 0.05);
     padding: 12px 0;
     overflow: hidden;
     z-index: 30;
 }

 .biz-marquee-content {
     display: flex;
     gap: 30px;
     white-space: nowrap;
     animation: marquee 30s linear infinite;
 }

 .biz-marquee-content span {
     color: rgba(255, 255, 255, 0.5);
     font-size: 13px;
     font-weight: 900;
     transition: color 0.3s ease;
 }

 /* Marquee items hover */
 .biz-marquee-content span:hover {
     color: #f3a43b;
 }

 @keyframes marquee {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* ===== COMPLETE RESPONSIVE FIXES ===== */

 /* Desktop & Laptop */
 @media screen and (max-width: 1200px) {
     .biz-hero-2026-container {
         max-width: 1100px;
     }

     .biz-hero-2026-grid {
         gap: 30px;
     }
 }

 /* Tablet Landscape */
 @media screen and (max-width: 992px) {
     .biz-hero-2026-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .biz-hero-2026-left {
         text-align: center;
         max-width: 700px;
         margin: 0 auto;
     }

     .biz-2026-subheadline {
         margin-left: auto;
         margin-right: auto;
     }

     .biz-2026-trust {
         justify-content: center;
     }

     .biz-2026-cta {
         justify-content: center;
     }

     .biz-2026-proof {
         justify-content: center;
     }

     .biz-dashboard-card {
         max-width: 600px;
         margin: 0 auto;
     }

     .biz-icon-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 20px;
     }
 }

 /* Tablet Portrait */
 @media screen and (max-width: 768px) {
     .biz-hero-2026 {
         padding: 60px 0 40px;
     }

     .biz-headline-gradient {
         font-size: 32px;
     }

     .biz-2026-subheadline {
         font-size: 15px;
     }

     .biz-icon-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 15px;
     }

     .biz-marquee-strip {
         padding: 8px 0;
     }

     .biz-marquee-content span {
         font-size: 12px;
     }
 }

 /* Mobile Large */
 @media screen and (max-width: 576px) {
     .biz-hero-2026 {
         min-height: auto;
         padding: 50px 0 40px;
     }

     .biz-headline-line {
         font-size: 22px;
     }

     .biz-headline-gradient {
         font-size: 26px;
     }

     .biz-2026-subheadline {
         font-size: 14px;
     }

     .biz-2026-trust {
         flex-direction: column;
         align-items: center;
         gap: 8px;
     }

     .biz-2026-cta {
         flex-direction: column;
         width: 100%;
     }

     .biz-2026-btn {
         width: 100%;
         justify-content: center;
     }

     .biz-2026-proof {
         flex-direction: column;
         text-align: center;
     }

     .biz-icon-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
     }

     .biz-dashboard-card {
         border-radius: 20px;
     }

     .biz-dash-header {
         padding: 12px 15px;
     }

     .biz-dash-body {
         padding: 15px;
     }

     .biz-dash-row {
         padding: 10px 0;
     }
 }

 /* Mobile Small */
 @media screen and (max-width: 375px) {
     .biz-headline-line {
         font-size: 20px;
     }

     .biz-headline-gradient {
         font-size: 22px;
     }

     .biz-2026-subheadline {
         font-size: 13px;
     }

     .biz-icon-grid {
         grid-template-columns: 1fr;
         gap: 8px;
     }

     .biz-marquee-content span {
         font-size: 11px;
     }
 }

 /* Extra Small */
 @media screen and (max-width: 320px) {
     .biz-dash-row {
         flex-wrap: wrap;
     }

     .biz-row-status {
         margin-left: auto;
     }
 }

 /* ===== TRUST STRIP ===== */
 .biz-trust-strip {
     background: white;
     padding: 20px 0;
     border-bottom: 1px solid #e2e8f0;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .biz-trust-grid {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 15px;
 }

 .biz-trust-card {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #334155;
     font-size: 14px;
     font-weight: 500;
     transition: all 0.3s ease;
     cursor: default;
 }

 /* Trust card hover */
 .biz-trust-card:hover {
     color: #f3a43b;
     transform: translateY(-2px);
 }

 .biz-trust-card i {
     color: #f3a43b;
     font-size: 16px;
     transition: transform 0.3s ease;
 }

 .biz-trust-card:hover i {
     transform: rotate(5deg);
 }

 @media screen and (max-width: 768px) {
     .biz-trust-grid {
         justify-content: center;
         gap: 20px;
     }
 }

 @media screen and (max-width: 480px) {
     .biz-trust-grid {
         flex-direction: column;
         align-items: center;
         gap: 15px;
     }
 }

 /* ========== CATEGORIES SECTION ========== *
 
        /* ===== CATEGORIES GRID (ADVANCED LAYOUT) ===== */
 .categories-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     position: relative;
 }

 /* Category Card - ULTRA PREMIUM */
 .category-card {
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid #F39E60;
     rgba(255, 255, 255, 0.5);
     border-radius: 32px;
     padding: 35px 25px;
     box-shadow:
         0 20px 40px -15px rgba(0, 0, 0, 0.1),
         0 0 0 1px rgba(255, 255, 255, 0.5) inset;
     transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
     cursor: pointer;
 }

 /* Premium Background Glow Effect */
 .category-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 30% 30%, rgba(243, 164, 59, 0.1), transparent 70%);
     opacity: 0;
     transition: opacity 0.5s ease;
     pointer-events: none;
 }

 .category-card::after {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(135deg, #0f3b5e, #f3a43b, #0f3b5e);
     border-radius: 34px;
     z-index: -2;
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .category-card:hover {
     transform: translateY(-12px) scale(1.02);
     box-shadow:
         0 30px 60px -20px rgba(15, 59, 94, 0.4),
         0 0 0 2px rgba(243, 164, 59, 0.3) inset;
 }

 .category-card:hover::before {
     opacity: 1;
 }

 .category-card:hover::after {
     opacity: 0.3;
 }

 /* Icon Container - Premium Design */
 .icon-container {
     width: 90px;
     height: 90px;
     background: linear-gradient(135deg, rgba(15, 59, 94, 0.05), rgba(243, 164, 59, 0.05));
     border-radius: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     position: relative;
     transition: all 0.5s ease;
 }

 .icon-container::before {
     content: '';
     position: absolute;
     top: -5px;
     left: -5px;
     right: -5px;
     bottom: -5px;
     background: linear-gradient(135deg, #0f3b5e, #f3a43b);
     border-radius: 32px;
     opacity: 0;
     transition: opacity 0.5s ease;
     z-index: -1;
 }

 .category-card:hover .icon-container {
     background: #0f3b5e;
     transform: scale(1.1) rotate(5deg);
     box-shadow: 0 15px 30px -8px rgba(243, 164, 59, 0.5);
 }

 .category-card:hover .icon-container::before {
     opacity: 0.3;
 }

 .icon-container i {
     font-size: 42px;
     color: #0f3b5e;
     transition: all 0.5s ease;
     filter: drop-shadow(0 5px 15px rgba(15, 59, 94, 0.2));
 }

 .category-card:hover .icon-container i {
     color: white;
     transform: scale(1.1);
     filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.5));
 }

 /* Category Title */
 .category-title {
     font-size: 22px;
     font-weight: 700;
     color: #0f3b5e;
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .category-card:hover .category-title {
     color: #f3a43b;
     transform: translateX(5px);
 }

 .category-title::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 40px;
     height: 3px;
     background: linear-gradient(90deg, #f3a43b, transparent);
     border-radius: 3px;
     transition: width 0.3s ease;
 }

 .category-card:hover .category-title::after {
     width: 100%;
 }

 /* Subcategories Container */
 .subcategories {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin: 20px 0 15px;
 }

 /* Subcategory Items - Premium Pills */
 .subcategory-item {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 6px 14px;
     background: rgba(255, 255, 255, 0.9);
     border: 1px solid rgba(226, 232, 240, 0.8);
     border-radius: 40px;
     font-size: 13px;
     font-weight: 500;
     color: #475569;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
     backdrop-filter: blur(5px);
     cursor: pointer;
 }

 .subcategory-item i {
     font-size: 12px;
     color: #f3a43b;
     transition: all 0.3s ease;
 }

 .category-card:hover .subcategory-item {
     background: white;
     border-color: rgba(243, 164, 59, 0.3);
     box-shadow: 0 5px 15px -5px rgba(243, 164, 59, 0.2);
 }

 .subcategory-item:hover {
     background: #0f3b5e !important;
     border-color: #0f3b5e !important;
     color: white !important;
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 10px 20px -8px rgba(15, 59, 94, 0.5) !important;
 }

 .subcategory-item:hover i {
     color: white !important;
     transform: rotate(360deg);
 }

 /* View All Link */
 .view-all-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 20px;
     color: #64748b;
     font-weight: 600;
     font-size: 14px;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
 }

 .view-all-link i {
     transition: transform 0.3s ease;
 }

 .category-card:hover .view-all-link {
     color: #0f3b5e;
 }

 .view-all-link:hover {
     color: #f3a43b !important;
 }

 .view-all-link:hover i {
     transform: translateX(8px) scale(1.2);
 }

 /* Category Badge */
 .category-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: rgba(243, 164, 59, 0.15);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(243, 164, 59, 0.2);
     border-radius: 30px;
     padding: 4px 12px;
     font-size: 11px;
     font-weight: 600;
     color: #f3a43b;
     letter-spacing: 0.5px;
     z-index: 2;
 }

 .category-card:hover .category-badge {
     background: #f3a43b;
     color: white;
     border-color: #f3a43b;
 }

 /* ===== RESPONSIVE BREAKPOINTS (ADVANCED) ===== */

 /* 4K Screens */
 @media (min-width: 1800px) {
     .container {
         max-width: 1600px;
     }

     .categories-grid {
         grid-template-columns: repeat(5, 1fr);
     }
 }

 /* Desktop Large */
 @media (max-width: 1400px) and (min-width: 1200px) {
     .categories-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 /* Desktop Medium */
 @media (max-width: 1199px) and (min-width: 992px) {
     .categories-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 25px;
     }
 }

 /* Tablet Landscape */
 @media (max-width: 991px) and (min-width: 768px) {
     .container {
         padding: 60px 25px;
     }

     .categories-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 25px;
     }

     .icon-container {
         width: 80px;
         height: 80px;
     }

     .icon-container i {
         font-size: 36px;
     }
 }

 /* Tablet Portrait & Mobile Large */
 @media (max-width: 767px) and (min-width: 576px) {
     .container {
         padding: 50px 20px;
     }

     .categories-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }

     .category-card {
         padding: 25px 18px;
     }

     .icon-container {
         width: 70px;
         height: 70px;
         border-radius: 22px;
     }

     .icon-container i {
         font-size: 32px;
     }

     .category-title {
         font-size: 18px;
     }

     .subcategory-item {
         font-size: 11px;
         padding: 5px 10px;
     }
 }

 /* Mobile Small */
 @media (max-width: 575px) {
     .container {
         padding: 40px 15px;
     }

     .section-header {
         margin-bottom: 50px;
     }

     .section-header h2 {
         font-size: 28px;
     }

     .section-header p {
         font-size: 16px;
     }

     .categories-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .category-card {
         padding: 30px 25px;
     }

     .icon-container {
         width: 80px;
         height: 80px;
         border-radius: 24px;
     }

     .icon-container i {
         font-size: 38px;
     }

     .category-title {
         font-size: 20px;
     }

     .subcategory-item {
         font-size: 12px;
         padding: 6px 12px;
     }
 }

 /* Mobile Extra Small */
 @media (max-width: 375px) {
     .category-card {
         padding: 25px 20px;
     }

     .icon-container {
         width: 70px;
         height: 70px;
     }

     .icon-container i {
         font-size: 32px;
     }

     .category-title {
         font-size: 18px;
     }

     .subcategories {
         gap: 6px;
     }

     .subcategory-item {
         font-size: 11px;
         padding: 5px 10px;
     }
 }

 /* ===== ADVANCED ANIMATIONS ===== */
 @keyframes fadeInScale {
     0% {
         opacity: 0;
         transform: scale(0.9) translateY(30px);
     }

     100% {
         opacity: 1;
         transform: scale(1) translateY(0);
     }
 }

 .category-card {
     animation: fadeInScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
     opacity: 0;
 }

 .category-card:nth-child(1) {
     animation-delay: 0.05s;
 }

 .category-card:nth-child(2) {
     animation-delay: 0.1s;
 }

 .category-card:nth-child(3) {
     animation-delay: 0.15s;
 }

 .category-card:nth-child(4) {
     animation-delay: 0.2s;
 }

 .category-card:nth-child(5) {
     animation-delay: 0.25s;
 }

 .category-card:nth-child(6) {
     animation-delay: 0.3s;
 }

 .category-card:nth-child(7) {
     animation-delay: 0.35s;
 }

 .category-card:nth-child(8) {
     animation-delay: 0.4s;
 }

 .category-card:nth-child(9) {
     animation-delay: 0.45s;
 }

 .category-card:nth-child(10) {
     animation-delay: 0.5s;
 }

 .category-card:nth-child(11) {
     animation-delay: 0.55s;
 }

 .category-card:nth-child(12) {
     animation-delay: 0.6s;
 }

 .category-card:nth-child(13) {
     animation-delay: 0.65s;
 }

 .category-card:nth-child(14) {
     animation-delay: 0.7s;
 }

 .category-card:nth-child(15) {
     animation-delay: 0.75s;
 }

 .category-card:nth-child(16) {
     animation-delay: 0.8s;
 }

 /* Floating Animation for Background */
 @keyframes floatBG {
     0% {
         transform: translateY(0) translateX(0);
     }

     50% {
         transform: translateY(-20px) translateX(10px);
     }

     100% {
         transform: translateY(0) translateX(0);
     }
 }

 .bg-float-1 {
     position: absolute;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(243, 164, 59, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     top: 10%;
     left: 5%;
     filter: blur(50px);
     animation: floatBG 20s ease-in-out infinite;
     pointer-events: none;
     z-index: 0;
 }

 .bg-float-2 {
     position: absolute;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(15, 59, 94, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     bottom: 10%;
     right: 5%;
     filter: blur(60px);
     animation: floatBG 25s ease-in-out infinite reverse;
     pointer-events: none;
     z-index: 0;
 }

 /* ========== THEMES SECTION ========== *
  
/* Section Header */
 .section-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 50px;
 }

 .section-header h2 {
     font-size: 42px;
     font-weight: 800;
     background: linear-gradient(135deg, #0f3b5e, #f3a43b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 15px;
 }

 .section-header p {
     font-size: 18px;
     color: #64748b;
 }

 /* Theme Filters */
 .theme-filters {
     display: flex;
     justify-content: center;
     gap: 12px;
     flex-wrap: wrap;
     margin-bottom: 40px;
 }

 .filter-btn {
     padding: 10px 24px;
     border: 1px solid #e2e8f0;
     background: white;
     border-radius: 40px;
     font-weight: 600;
     font-size: 14px;
     color: #475569;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .filter-btn:hover {
     border-color: #0f3b5e;
     color: #0f3b5e;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px -5px rgba(15, 59, 94, 0.1);
 }

 .filter-btn.active {
     background: #0f3b5e;
     color: white;
     border-color: #0f3b5e;
 }

 /* Themes Grid */
 .themes-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 @media (max-width: 1024px) {
     .themes-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 640px) {
     .themes-grid {
         grid-template-columns: 1fr;
     }
 }

 /* Theme Card */
 .theme-card {
     background: white;
     border-radius: 28px;
     overflow: hidden;
     box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid rgba(226, 232, 240, 0.5);
     position: relative;
 }

 .theme-card:hover {
     transform: translateY(-12px) scale(1.02);
     box-shadow: 0 30px 45px -12px rgba(15, 59, 94, 0.25);
     border-color: #f3a43b;
 }

 /* Theme Preview Image */
 .theme-preview {
     height: 240px;
     background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
     position: relative;
     overflow: hidden;
 }

 /* Device Mockups */
 .device-mockup {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .desktop-screen {
     width: 70%;
     height: 70%;
     background: white;
     border-radius: 12px;
     box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.2);
     overflow: hidden;
     border: 2px solid rgba(255, 255, 255, 0.8);
 }

 .desktop-header {
     height: 20px;
     background: #f1f5f9;
     display: flex;
     align-items: center;
     padding: 0 8px;
     gap: 4px;
 }

 .desktop-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #94a3b8;
 }

 .desktop-dot.red {
     background: #ef4444;
 }

 .desktop-dot.yellow {
     background: #f59e0b;
 }

 .desktop-dot.green {
     background: #10b981;
 }

 .desktop-content {
     padding: 12px;
 }

 .desktop-line {
     height: 8px;
     background: #e2e8f0;
     margin-bottom: 8px;
     border-radius: 4px;
 }

 .desktop-line.short {
     width: 60%;
 }

 .desktop-line.medium {
     width: 80%;
 }

 .desktop-line.long {
     width: 100%;
 }

 .mobile-screen {
     width: 30px;
     height: 50px;
     background: white;
     border-radius: 6px;
     box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
     border: 2px solid rgba(255, 255, 255, 0.8);
     overflow: hidden;
 }

 .mobile-header {
     height: 8px;
     background: #f1f5f9;
 }

 .mobile-content {
     padding: 4px;
 }

 .mobile-line {
     height: 4px;
     background: #e2e8f0;
     margin-bottom: 4px;
     border-radius: 2px;
 }

 /* Theme Badge */
 .theme-badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     padding: 6px 16px;
     border-radius: 40px;
     font-size: 12px;
     font-weight: 700;
     color: #0f3b5e;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     z-index: 2;
     border: 1px solid rgba(243, 164, 59, 0.3);
 }

 /* Theme Info */
 .theme-info {
     padding: 25px;
 }

 .theme-category {
     display: inline-block;
     padding: 4px 12px;
     background: #f1f5f9;
     border-radius: 30px;
     font-size: 12px;
     font-weight: 600;
     color: #475569;
     margin-bottom: 12px;
 }

 .theme-info h3 {
     font-size: 22px;
     font-weight: 700;
     color: #0f3b5e;
     margin-bottom: 8px;
 }

 .theme-description {
     color: #64748b;
     font-size: 14px;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 /* Theme Features */
 .theme-features {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-bottom: 20px;
 }

 .feature-tag {
     padding: 4px 12px;
     background: #f8fafc;
     border: 1px solid #e2e8f0;
     border-radius: 30px;
     font-size: 11px;
     font-weight: 500;
     color: #475569;
 }

 /* Theme Actions */
 .theme-actions {
     display: flex;
     gap: 12px;
     margin-top: 20px;
 }

 .preview-btn {
     flex: 1;
     padding: 12px;
     background: transparent;
     border: 2px solid #0f3b5e;
     border-radius: 40px;
     font-weight: 600;
     font-size: 14px;
     color: #0f3b5e;
     text-decoration: none;
     text-align: center;
     transition: all 0.3s ease;
 }

 .preview-btn:hover {
     background: #0f3b5e;
     color: white;
     transform: translateY(-2px);
 }

 .select-btn {
     flex: 1;
     padding: 12px;
     background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
     border: none;
     border-radius: 40px;
     font-weight: 600;
     font-size: 14px;
     color: white;
     text-decoration: none;
     text-align: center;
     transition: all 0.3s ease;
     box-shadow: 0 10px 20px -5px rgba(15, 59, 94, 0.3);
 }

 .select-btn:hover {
     background: linear-gradient(135deg, #1f5a8e, #0f3b5e);
     transform: translateY(-2px);
     box-shadow: 0 15px 25px -5px rgba(15, 59, 94, 0.4);
 }

 /* Premium Badge */
 .premium-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     color: white;
     padding: 6px 16px;
     border-radius: 40px;
     font-size: 12px;
     font-weight: 700;
     z-index: 2;
     box-shadow: 0 5px 15px rgba(243, 164, 59, 0.3);
 }

 /* View All Button */
 .view-all {
     text-align: center;
     margin-top: 50px;
 }

 .view-all-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 16px 40px;
     background: transparent;
     border: 2px solid #0f3b5e;
     border-radius: 50px;
     font-weight: 700;
     font-size: 16px;
     color: #0f3b5e;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .view-all-btn:hover {
     background: #0f3b5e;
     color: white;
     gap: 15px;
 }

 .view-all-btn i {
     transition: transform 0.3s ease;
 }

 .view-all-btn:hover i {
     transform: translateX(5px);
 }

 /* Loading Animation */
 @keyframes shimmer {
     0% {
         background-position: -1000px 0;
     }

     100% {
         background-position: 1000px 0;
     }
 }

 .theme-card {
     animation: fadeInUp 0.6s ease forwards;
     opacity: 0;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .theme-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .theme-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .theme-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .theme-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .theme-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .theme-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 /* ========== DOMAIN SECTION ========== */
 .domain-section {
     padding: 60px 0;
     width: 100%;
     overflow: hidden;
 }

 .domain-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
 }

 /* Left Side Content */
 .domain-grid > div:first-child h2 {
     font-size: 36px;
     font-weight: 700;
     color: #0f3b5e;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .domain-grid > div:first-child p {
     font-size: 18px;
     color: #64748b;
     margin-bottom: 30px;
     line-height: 1.6;
 }

 .domain-list {
     list-style: none;
     margin: 30px 0;
     padding: 0;
 }

 .domain-list li {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 15px;
     font-size: 16px;
     color: #334155;
 }

 .domain-list i {
     color: #10b981;
     font-size: 18px;
     min-width: 22px;
 }

 /* Right Side Card */
 .domain-card {
     background-color: white;
     border-radius: 24px;
     padding: 40px;
     box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
     border: 1px solid #e2e8f0;
 }

 .domain-card h3 {
     font-size: 24px;
     font-weight: 700;
     color: #0f3b5e;
     margin-bottom: 10px;
 }

 .domain-card p {
     font-size: 16px;
     color: #64748b;
     margin-bottom: 20px;
 }

 /* Search Box */
 .domain-search-box {
     display: flex;
     gap: 12px;
     margin: 25px 0;
 }

 .domain-search-box input {
     flex: 1;
     padding: 14px 20px;
     border: 2px solid #e2e8f0;
     border-radius: 50px;
     font-size: 16px;
     outline: none;
     transition: all 0.3s ease;
 }

 .domain-search-box input:focus {
     border-color: #f3a43b;
     box-shadow: 0 0 0 3px rgba(243, 164, 59, 0.2);
 }

 .domain-search-box button {
     padding: 14px 30px;
     background-color: #0f3b5e;
     color: white;
     border: none;
     border-radius: 50px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .domain-search-box button:hover {
     background-color: #f3a43b;
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(243, 164, 59, 0.3);
 }

 /* Extensions and Suggestions */
 .domain-extensions,
 .suggested-domains {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin: 15px 0;
 }

 .ext-badge,
 .suggested-domain {
     padding: 8px 16px;
     background-color: #f1f5f9;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 500;
     color: #475569;
     transition: all 0.3s ease;
 }

 .suggested-domain {
     cursor: pointer;
 }

 .suggested-domain:hover {
     background-color: #0f3b5e;
     color: white;
     transform: translateY(-2px);
 }

 /* WHOIS Result */
 .whois-lookup {
     margin-top: 15px;
     padding: 15px 20px;
     background-color: #e6f7e6;
     border-radius: 12px;
     color: #10b981;
     font-weight: 500;
 }

 .whois-lookup i {
     margin-right: 8px;
 }

 /* Domain Offer */
 .domain-offer {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-top: 25px;
     padding: 15px 20px;
     background: linear-gradient(135deg, rgba(243, 164, 59, 0.1), rgba(243, 164, 59, 0.05));
     border-radius: 16px;
     border: 1px solid rgba(243, 164, 59, 0.2);
 }

 .domain-offer i {
     color: #f3a43b;
     font-size: 24px;
 }

 .domain-offer p {
     font-size: 15px;
     font-weight: 600;
     color: #0f3b5e;
     margin: 0;
 }

 /* ===== RESPONSIVE BREAKPOINTS ===== */

 /* Desktop Large (1200px - 1400px) */
 @media screen and (max-width: 1200px) {
     .domain-grid {
         gap: 30px;
     }

     .domain-card {
         padding: 35px;
     }

     .domain-grid > div:first-child h2 {
         font-size: 32px;
     }
 }

 /* Tablet Landscape (992px - 1199px) */
 @media screen and (max-width: 992px) {
     .domain-section {
         padding: 50px 0;
     }

     .domain-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .domain-grid > div:first-child {
         text-align: center;
         max-width: 600px;
         margin: 0 auto;
     }

     .domain-list {
         text-align: left;
         max-width: 500px;
         margin-left: auto;
         margin-right: auto;
     }

     .domain-card {
         max-width: 600px;
         margin: 0 auto;
     }
 }

 /* Tablet Portrait (768px - 991px) */
 @media screen and (max-width: 768px) {
     .domain-section {
         padding: 40px 0;
     }

     .domain-grid > div:first-child h2 {
         font-size: 28px;
     }

     .domain-grid > div:first-child p {
         font-size: 16px;
     }

     .domain-list li {
         font-size: 15px;
     }

     .domain-card {
         padding: 30px 25px;
     }

     .domain-card h3 {
         font-size: 22px;
     }

     .domain-search-box {
         flex-direction: column;
         gap: 12px;
     }

     .domain-search-box input,
     .domain-search-box button {
         width: 100%;
     }

     .domain-search-box button {
         padding: 14px 20px;
     }

     .ext-badge,
     .suggested-domain {
         font-size: 13px;
         padding: 6px 14px;
     }
 }

 /* Mobile Large (576px - 767px) */
 @media screen and (max-width: 576px) {
     .domain-section {
         padding: 30px 0;
     }

     .domain-grid > div:first-child h2 {
         font-size: 24px;
     }

     .domain-card {
         padding: 25px 20px;
     }

     .domain-card h3 {
         font-size: 20px;
     }

     .domain-card p {
         font-size: 14px;
     }

     .domain-list li {
         font-size: 14px;
         gap: 8px;
     }

     .domain-list i {
         font-size: 16px;
     }

     .extensions-row {
         flex-direction: column;
         align-items: flex-start;
     }

     .domain-extensions,
     .suggested-domains {
         gap: 8px;
     }

     .ext-badge,
     .suggested-domain {
         font-size: 12px;
         padding: 6px 12px;
     }

     .domain-offer {
         flex-direction: column;
         text-align: center;
         padding: 15px;
     }

     .domain-offer i {
         font-size: 28px;
     }

     .whois-lookup {
         font-size: 14px;
         padding: 12px 15px;
     }
 }

 /* Mobile Small (320px - 375px) */
 @media screen and (max-width: 375px) {
     .domain-grid > div:first-child h2 {
         font-size: 22px;
     }

     .domain-card {
         padding: 20px 15px;
     }

     .domain-list li {
         font-size: 13px;
     }

     .ext-badge,
     .suggested-domain {
         font-size: 11px;
         padding: 5px 10px;
     }

     .domain-offer p {
         font-size: 13px;
     }

     .whois-lookup {
         font-size: 13px;
     }
 }

 /* Extra Small Devices */
 @media screen and (max-width: 320px) {

     .domain-extensions,
     .suggested-domains {
         flex-direction: column;
     }

     .ext-badge,
     .suggested-domain {
         width: 100%;
         text-align: center;
     }
 }

 /* Fix for Container */
 .domain-section .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Fix for Very Large Screens */
 @media screen and (min-width: 1600px) {
     .domain-section .container {
         max-width: 1400px;
     }

     .domain-grid {
         gap: 60px;
     }

     .domain-grid > div:first-child h2 {
         font-size: 42px;
     }

     .domain-card {
         padding: 50px;
     }
 }

 /* ========== SECURITY SECTION ========== */
 .security-section {
     padding: var(--space-2xl) 0;
     background: linear-gradient(135deg, var(--primary-navy), #1a4a6f);
     color: white;
 }

 .security-card {
     max-width: 900px;
     margin: 0 auto;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(20px);
     border-radius: var(--radius-xl);
     padding: var(--space-xl);
     text-align: center;
 }

 .trust-seals {
     display: flex;
     justify-content: center;
     gap: var(--space-md);
     flex-wrap: wrap;
     margin-bottom: var(--space-lg);
 }

 .seal-item {
     display: flex;
     align-items: center;
     gap: var(--space-xs);
     padding: 8px 20px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-full);
 }

 .security-features {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: var(--space-sm);
     margin: var(--space-lg) 0;
 }

 .security-features span {
     padding: 6px 18px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-full);
 }

 .security-stats {
     display: flex;
     justify-content: center;
     gap: var(--space-xl);
     flex-wrap: wrap;
     margin: var(--space-lg) 0;
 }

 .stat-item .number {
     font-size: 42px;
     font-weight: 800;
     color: var(--accent-saffron);
 }

 /* ========== PLATFORM FEATURES ========== */


 /* ===== BIZ SEVAK PREMIUM FEATURES SECTION - COMPLETE ===== */
 .biz-features-section {
     position: relative;
     padding: 80px 0;
     background: linear-gradient(135deg, #f8fafc, #ffffff);
     font-family: 'Inter', sans-serif;
     overflow: hidden;
 }

 /* Premium Background Elements */
 .biz-features-bg-orb {
     position: absolute;
     top: -30%;
     right: -10%;
     width: 60%;
     height: 150%;
     background: radial-gradient(circle, rgba(243, 164, 59, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     filter: blur(80px);
     pointer-events: none;
     animation: orbFloat 20s ease-in-out infinite;
 }

 .biz-features-bg-grid {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(15, 59, 94, 0.02) 1px, transparent 1px),
         linear-gradient(90deg, rgba(243, 164, 59, 0.02) 1px, transparent 1px);
     background-size: 40px 40px;
     pointer-events: none;
 }

 @keyframes orbFloat {

     0%,
     100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(20px, -20px);
     }
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 10;
 }

 /* Section Header */
 .biz-section-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .biz-premium-badge {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .biz-badge-line {
     width: 50px;
     height: 2px;
     background: linear-gradient(90deg, transparent, #f3a43b, #0f3b5e, #f3a43b, transparent);
 }

 .biz-badge-text {
     color: #0f3b5e;
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 3px;
     background: linear-gradient(135deg, #0f3b5e, #f3a43b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .biz-gradient-heading {
     font-size: 42px;
     font-weight: 800;
     color: #0f3b5e;
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .biz-gradient-heading span {
     color: #f3a43b;
     position: relative;
     display: inline-block;
 }

 .biz-gradient-heading span::after {
     content: '';
     position: absolute;
     bottom: 5px;
     left: 0;
     width: 100%;
     height: 8px;
     background: rgba(243, 164, 59, 0.2);
     z-index: -1;
     border-radius: 4px;
 }

 .biz-header-description {
     font-size: 18px;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
 }

 /* Features Grid */
 .biz-features-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 25px;
     margin-bottom: 40px;
 }

 /* Feature Card */
 .biz-feature-card {
     background: white;
     border-radius: 20px;
     padding: 30px 20px;
     text-align: center;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
     border: 1px solid #e2e8f0;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
 }

 .biz-feature-card:hover {
     transform: translateY(-5px);
     border-color: #f3a43b;
     box-shadow: 0 15px 30px rgba(243, 164, 59, 0.15);
 }

 /* Tooltip */
 .biz-feature-card[data-tooltip] {
     position: relative;
 }

 .biz-feature-card[data-tooltip]::after {
     content: attr(data-tooltip);
     position: absolute;
     bottom: 100%;
     left: 50%;
     transform: translateX(-50%);
     background: #0f3b5e;
     color: white;
     padding: 8px 12px;
     border-radius: 8px;
     font-size: 12px;
     white-space: nowrap;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s;
     pointer-events: none;
     z-index: 100;
 }

 .biz-feature-card[data-tooltip]:hover::after {
     opacity: 1;
     visibility: visible;
     bottom: calc(100% + 10px);
 }

 /* Popular Card */
 .biz-popular {
     position: relative;
     border: 2px solid #f3a43b;
     transform: scale(1.02);
 }

 .biz-popular-badge {
     position: absolute;
     top: -10px;
     right: 20px;
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     color: #0f3b5e;
     padding: 5px 15px;
     border-radius: 30px;
     font-size: 12px;
     font-weight: 700;
     box-shadow: 0 5px 15px rgba(243, 164, 59, 0.3);
 }

 /* Icon Wrapper */
 .biz-feature-icon-wrapper {
     position: relative;
     width: 80px;
     height: 80px;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .biz-feature-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, rgba(15, 59, 94, 0.1), rgba(243, 164, 59, 0.1));
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 2;
     transition: all 0.3s ease;
 }

 .biz-feature-card:hover .biz-feature-icon {
     background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
     transform: scale(1.1) rotate(5deg);
 }

 .biz-feature-icon i {
     font-size: 32px;
     color: #f3a43b;
     transition: all 0.3s ease;
 }

 .biz-feature-card:hover .biz-feature-icon i {
     color: white;
 }

 /* Icon Glow */
 .biz-icon-glow {
     position: absolute;
     top: -10px;
     left: -10px;
     right: -10px;
     bottom: -10px;
     background: radial-gradient(circle, rgba(243, 164, 59, 0.3) 0%, transparent 70%);
     border-radius: 50%;
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 1;
 }

 .biz-feature-card:hover .biz-icon-glow {
     opacity: 0.5;
     animation: pulse 2s infinite;
 }

 /* Icon Ring & Dots */
 .biz-icon-ring {
     position: absolute;
     top: -15px;
     left: -15px;
     right: -15px;
     bottom: -15px;
     border: 2px solid #f3a43b;
     border-radius: 50%;
     opacity: 0;
     transform: scale(0.8);
     transition: all 0.5s;
 }

 .biz-feature-card:hover .biz-icon-ring {
     opacity: 0.3;
     transform: scale(1.2);
     animation: ringPulse 2s infinite;
 }

 .biz-icon-dots {
     position: absolute;
     top: -5px;
     right: -5px;
     width: 10px;
     height: 10px;
     background: #f3a43b;
     border-radius: 50%;
     opacity: 0;
     transition: all 0.3s;
 }

 .biz-feature-card:hover .biz-icon-dots {
     opacity: 1;
     animation: dotFlash 1.5s infinite;
 }

 /* Progress Bar */
 .biz-progress-bar {
     width: 100%;
     height: 6px;
     background: #e2e8f0;
     border-radius: 10px;
     margin: 15px 0 5px;
     overflow: hidden;
 }

 .biz-progress-fill {
     height: 100%;
     background: linear-gradient(90deg, #f3a43b, #0f3b5e);
     border-radius: 10px;
     transition: width 1s ease;
 }

 .biz-percentage {
     font-size: 12px;
     color: #64748b;
     font-weight: 600;
 }

 /* Counter */
 .biz-counter {
     font-size: 28px;
     font-weight: 800;
     color: #0f3b5e;
     margin-bottom: 10px;
     line-height: 1.2;
 }

 /* Card Content */
 .biz-feature-card h4 {
     font-size: 18px;
     font-weight: 700;
     color: #0f3b5e;
     margin-bottom: 10px;
 }

 .biz-feature-card p {
     font-size: 13px;
     color: #64748b;
     margin-bottom: 15px;
     line-height: 1.5;
 }

 .biz-feature-tag {
     display: inline-block;
     padding: 4px 12px;
     background: linear-gradient(135deg, #10b981, #059669);
     color: white;
     font-size: 11px;
     font-weight: 600;
     border-radius: 30px;
     letter-spacing: 0.5px;
     box-shadow: 0 3px 8px rgba(16, 185, 129, 0.2);
 }

 /* Bottom Note */
 .biz-features-note {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     padding: 20px;
     background: linear-gradient(135deg, #0f3b5e, #1a4a6f);
     border-radius: 50px;
     color: white;
     font-size: 16px;
     font-weight: 500;
     box-shadow: 0 15px 30px rgba(15, 59, 94, 0.3);
     max-width: 700px;
     margin: 0 auto;
 }

 .biz-features-note i {
     color: #f3a43b;
     font-size: 20px;
 }

 /* Animations */
 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.3;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.5;
     }
 }

 @keyframes ringPulse {
     0% {
         transform: scale(1.2);
         opacity: 0.3;
     }

     50% {
         transform: scale(1.3);
         opacity: 0.1;
     }

     100% {
         transform: scale(1.2);
         opacity: 0.3;
     }
 }

 @keyframes dotFlash {

     0%,
     100% {
         opacity: 0.5;
         transform: scale(1);
     }

     50% {
         opacity: 1;
         transform: scale(1.3);
     }
 }

 /* ===== RESPONSIVE DESIGN ===== */

 /* Desktop Large */
 @media screen and (max-width: 1200px) {
     .biz-features-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 20px;
     }
 }

 /* Desktop Medium */
 @media screen and (max-width: 992px) {
     .biz-features-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 20px;
     }

     .biz-gradient-heading {
         font-size: 36px;
     }
 }

 /* Tablet */
 @media screen and (max-width: 768px) {
     .biz-features-section {
         padding: 60px 0;
     }

     .biz-features-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }

     .biz-gradient-heading {
         font-size: 32px;
     }

     .biz-header-description {
         font-size: 16px;
     }

     .biz-feature-card {
         padding: 25px 15px;
     }

     .biz-feature-icon-wrapper {
         width: 70px;
         height: 70px;
     }

     .biz-feature-icon {
         width: 60px;
         height: 60px;
     }

     .biz-feature-icon i {
         font-size: 28px;
     }

     .biz-feature-card h4 {
         font-size: 16px;
     }

     .biz-feature-card p {
         font-size: 12px;
     }
 }

 /* Mobile Large */
 @media screen and (max-width: 576px) {
     .biz-features-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 12px;
     }

     .biz-gradient-heading {
         font-size: 28px;
     }

     .biz-badge-text {
         font-size: 12px;
     }

     .biz-badge-line {
         width: 30px;
     }

     .biz-features-note {
         flex-direction: column;
         text-align: center;
         gap: 10px;
         padding: 15px;
         font-size: 14px;
         border-radius: 30px;
     }
 }

 /* Mobile Small */
 @media screen and (max-width: 480px) {
     .biz-features-section {
         padding: 40px 0;
     }

     .biz-features-grid {
         grid-template-columns: 1fr;
         gap: 15px;
         max-width: 300px;
         margin-left: auto;
         margin-right: auto;
     }

     .biz-gradient-heading {
         font-size: 24px;
     }

     .biz-feature-card {
         padding: 20px;
     }
 }

 /* Extra Small */
 @media screen and (max-width: 374px) {
     .biz-gradient-heading {
         font-size: 22px;
     }

     .biz-features-note {
         font-size: 12px;
         padding: 12px;
     }

     .biz-features-note i {
         font-size: 16px;
     }
 }


 /*  *====================    Feautre include every plan   ==================== */
 .platform-section {
     padding: var(--space-2xl) 0;
     background-color: var(--gray-50);
 }

 .platform-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: var(--space-lg);
 }

 .platform-card {
     background-color: white;
     border-radius: var(--radius-xl);
     padding: var(--space-xl);
     box-shadow: var(--shadow-lg);
 }

 .platform-header {
     display: flex;
     align-items: center;
     gap: var(--space-sm);
     margin-bottom: var(--space-lg);
     border-bottom: 2px solid var(--gray-100);
     padding-bottom: var(--space-sm);
 }

 .platform-header i {
     font-size: 36px;
     color: var(--accent-saffron);
 }

 .platform-list {
     list-style: none;
 }

 .platform-list li {
     display: flex;
     align-items: center;
     gap: var(--space-xs);
     margin-bottom: var(--space-xs);
     color: var(--gray-600);
 }

 .platform-list i {
     color: var(--success-green);
 }

 /* ========== ACCOUNT BENEFITS ========== */
 .benefits-section {
     padding: var(--space-2xl) 0;
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: var(--space-lg);
 }

 .benefit-card {
     background-color: white;
     border-radius: var(--radius-xl);
     padding: var(--space-xl);
     text-align: center;
     box-shadow: var(--shadow-lg);
     border: 1px solid var(--gray-100);
     position: relative;
 }

 .benefit-card.highlight {
     border: 2px solid var(--accent-saffron);
     transform: scale(1.02);
 }

 .card-badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background-color: var(--accent-saffron);
     color: white;
     padding: 6px 20px;
     border-radius: var(--radius-full);
     font-size: 12px;
     font-weight: 600;
 }

 .card-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary-navy), var(--primary-light));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto var(--space-md);
 }

 .card-icon i {
     font-size: 36px;
     color: white;
 }

 .card-value {
     font-size: 32px;
     font-weight: 700;
     color: var(--accent-saffron);
     margin-bottom: var(--space-sm);
 }


 /* ===== COMPLETE A-TO-Z IT ECOSYSTEM SECTION (MISSING SERVICES) ===== */
 /* ===== BIZSEVAK COMPLETE ECOSYSTEM - PROFESSIONAL VERSION ===== */
.bizsevak-complete-ecosystem {
    position: relative;
    padding: 100px 0;
    background: #ffffff; /* Clean white background */
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

/* Premium Light Background Elements */
.eco-bg-orb {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(243, 164, 59, 0.03) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.eco-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(15, 59, 94, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 164, 59, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* Section Header - Professional & Clean */
.eco-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.eco-premium-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.eco-badge-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f3a43b, #0f3b5e, #f3a43b, transparent);
}

.eco-badge-text {
    color: #0f3b5e;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.eco-gradient-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #0f3b5e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.eco-gradient-heading span {
    background: linear-gradient(135deg, #f3a43b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: clamp(28px, 4vw, 42px);
}

.eco-header-description {
    font-size: clamp(16px, 2vw, 18px);
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Grid - Fully Responsive */
.eco-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Premium Card - Clean & Professional */
.eco-premium-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.eco-premium-card:hover {
    transform: translateY(-5px);
    border-color: #f3a43b;
    box-shadow: 0 20px 40px -15px rgba(243, 164, 59, 0.2);
}

/* Subtle Pattern Overlay */
.eco-card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#f3a43b 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.eco-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(243, 164, 59, 0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.eco-premium-card:hover .eco-card-glow {
    opacity: 1;
}

/* Card Ribbon */
.eco-card-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #f3a43b, #fbbf24);
    color: #0f3b5e;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    z-index: 20;
    box-shadow: 0 3px 10px rgba(243, 164, 59, 0.2);
    white-space: nowrap;
}

.eco-ribbon-gold {
    background: linear-gradient(135deg, #f3a43b, #fbbf24);
    color: #0f3b5e;
}

/* Icon Wrapper */
.eco-card-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    z-index: 10;
}

.eco-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 12;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -8px rgba(15, 59, 94, 0.2);
}

.eco-premium-card:hover .eco-icon-container {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f3a43b, #fbbf24);
}

.eco-icon-container i {
    font-size: 40px;
    color: white;
    transition: all 0.3s ease;
}

.eco-premium-card:hover .eco-icon-container i {
    color: #0f3b5e;
}

/* Subtle Icon Animation */
.eco-icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(243, 164, 59, 0.3);
    border-radius: 25px;
    animation: ecoPulse 3s ease-in-out infinite;
    z-index: 11;
    opacity: 0.5;
}

@keyframes ecoPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.eco-icon-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed rgba(243, 164, 59, 0.2);
    border-radius: 30px;
    animation: ecoSpin 20s linear infinite;
    z-index: 10;
}

@keyframes ecoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card Title */
.eco-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
    line-height: 1.3;
}

.eco-card-title span {
    color: #f3a43b;
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-top: 4px;
}

/* Features Grid - Clean Layout */
.eco-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    z-index: 10;
    position: relative;
}

.eco-feature-col h4 {
    color: #0f3b5e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 8px;
}

.eco-feature-col h4 i {
    color: #f3a43b;
    font-size: 14px;
}

.eco-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-feature-list li {
    color: #4b5565;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.eco-feature-list li i {
    color: #10b981;
    font-size: 12px;
    min-width: 16px;
}

/* Game Development Specific */
.eco-game-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

.eco-platform-badge {
    padding: 5px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    color: #0f3b5e;
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.eco-platform-badge i {
    color: #f3a43b;
    font-size: 10px;
}

/* Tech Stack Tags */
.eco-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 15px 0;
    z-index: 10;
    position: relative;
}

.eco-tech {
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 20px;
    color: #475569;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Print Services Grid */
.eco-print-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

.eco-print-group {
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #eef2f6;
}

.eco-print-group h4 {
    color: #0f3b5e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eco-print-group h4 i {
    color: #f3a43b;
    font-size: 13px;
}

.eco-print-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eco-print-item {
    color: #4b5565;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eco-print-item i {
    color: #10b981;
    font-size: 10px;
}

/* Registration Services */
.eco-registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

.eco-reg-group {
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #eef2f6;
}

.eco-reg-group h4 {
    color: #0f3b5e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.eco-reg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-reg-list li {
    color: #4b5565;
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eco-reg-list li i {
    color: #10b981;
    font-size: 10px;
}

/* Animation Services */
.eco-animation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

.eco-anim-group {
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #eef2f6;
}

.eco-anim-group h4 {
    color: #0f3b5e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.eco-anim-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-anim-list li {
    color: #4b5565;
    font-size: 12px;
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}

.eco-anim-list li::before {
    content: "•";
    color: #f3a43b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Training Services */
.eco-training-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

.eco-train-group {
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #eef2f6;
}

.eco-train-group h4 {
    color: #0f3b5e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eco-train-group h4 i {
    color: #f3a43b;
    font-size: 13px;
}

.eco-train-tag {
    display: inline-block;
    padding: 4px 10px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: #475569;
    font-size: 10px;
    font-weight: 500;
    margin: 0 3px 5px 0;
}

.eco-training-highlight {
    background: #fef9e7;
    border: 1px solid #f3a43b20;
    border-radius: 12px;
    padding: 12px;
    margin: 20px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.eco-training-highlight i {
    color: #f3a43b;
    font-size: 16px;
}

.eco-training-highlight span {
    color: #0f3b5e;
    font-size: 12px;
    font-weight: 500;
}

/* Card Footer */
.eco-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eef2f6;
    z-index: 10;
    position: relative;
}

.eco-price-tag {
    display: flex;
    flex-direction: column;
}

.eco-price-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eco-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #0f3b5e;
}

.eco-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #0f3b5e;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.eco-card-cta:hover {
    background: #f3a43b;
    color: #0f3b5e;
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 164, 59, 0.3);
}

/* Quick Services Strip */
.eco-quick-services {
    background: #f8fafc;
    border-radius: 40px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid #eef2f6;
}

.eco-quick-services h4 {
    text-align: center;
    color: #0f3b5e;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.eco-quick-services h4 i {
    color: #f3a43b;
    font-size: 24px;
}

.eco-quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.eco-quick-item {
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 40px;
    padding: 12px 10px;
    text-align: center;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.eco-quick-item i {
    color: #f3a43b;
    font-size: 13px;
}

.eco-quick-item:hover {
    background: #0f3b5e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px rgba(15, 59, 94, 0.2);
}

.eco-quick-item:hover i {
    color: #f3a43b;
}

/* A-to-Z Promise Strip */
.eco-a-to-z-strip {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #eef2f6;
    border-radius: 60px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.eco-a-to-z-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.eco-a-to-z-content i {
    color: #f3a43b;
    font-size: 24px;
}

.eco-a-to-z-content span {
    color: #0f3b5e;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.eco-a-to-z-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0f3b5e;
    padding: 8px 20px;
    border-radius: 40px;
}

.eco-badge-emoji {
    font-size: 18px;
}

.eco-badge-text {
    color: white;
    font-weight: 600;
    font-size: 13px;
}

/* ===== FULLY RESPONSIVE BREAKPOINTS ===== */

/* Desktop Large (1200px - 1400px) */
@media screen and (max-width: 1300px) {
    .eco-main-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .eco-quick-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .eco-premium-card {
        padding: 30px 25px;
    }
}

/* Desktop Medium (992px - 1199px) */
@media screen and (max-width: 1100px) {
    .eco-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .eco-gradient-heading {
        font-size: 42px;
    }
    
    .eco-gradient-heading span {
        font-size: 36px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media screen and (max-width: 991px) {
    .bizsevak-complete-ecosystem {
        padding: 80px 0;
    }
    
    .eco-section-header {
        margin-bottom: 50px;
    }
    
    .eco-gradient-heading {
        font-size: 38px;
    }
    
    .eco-gradient-heading span {
        font-size: 32px;
    }
    
    .eco-quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .eco-a-to-z-strip {
        padding: 25px 30px;
    }
    
    .eco-a-to-z-content span {
        font-size: 14px;
    }
    
    .eco-features-grid,
    .eco-print-categories,
    .eco-registration-grid,
    .eco-animation-grid,
    .eco-training-categories {
        gap: 15px;
    }
}

/* Tablet Portrait (576px - 767px) */
@media screen and (max-width: 767px) {
    .bizsevak-complete-ecosystem {
        padding: 60px 0;
    }
    
    .eco-main-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .eco-gradient-heading {
        font-size: 32px;
    }
    
    .eco-gradient-heading span {
        font-size: 28px;
    }
    
    .eco-header-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .eco-premium-card {
        padding: 30px 25px;
    }
    
    .eco-quick-services {
        padding: 30px 20px;
    }
    
    .eco-quick-services h4 {
        font-size: 22px;
    }
    
    .eco-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .eco-a-to-z-strip {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .eco-a-to-z-content {
        justify-content: center;
    }
    
    .eco-badge-line {
        width: 40px;
    }
    
    .eco-badge-text {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .eco-features-grid,
    .eco-print-categories,
    .eco-registration-grid,
    .eco-animation-grid,
    .eco-training-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eco-print-group,
    .eco-reg-group,
    .eco-anim-group,
    .eco-train-group {
        padding: 15px;
    }
}

/* Mobile Large (376px - 575px) */
@media screen and (max-width: 575px) {
    .bizsevak-complete-ecosystem {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .eco-gradient-heading {
        font-size: 28px;
    }
    
    .eco-gradient-heading span {
        font-size: 24px;
    }
    
    .eco-header-description {
        font-size: 15px;
    }
    
    .eco-premium-card {
        padding: 25px 20px;
    }
    
    .eco-card-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .eco-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .eco-icon-container i {
        font-size: 35px;
    }
    
    .eco-card-title {
        font-size: 22px;
    }
    
    .eco-card-title span {
        font-size: 16px;
    }
    
    .eco-feature-list li {
        font-size: 12px;
    }
    
    .eco-quick-services h4 {
        font-size: 20px;
    }
    
    .eco-quick-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .eco-quick-item {
        padding: 10px;
        font-size: 12px;
    }
    
    .eco-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .eco-card-cta {
        width: 100%;
        justify-content: center;
    }
    
    .eco-a-to-z-content span {
        font-size: 13px;
    }
    
    .eco-badge-text {
        font-size: 12px;
    }
}

/* Mobile Small (320px - 375px) */
@media screen and (max-width: 375px) {
    .eco-gradient-heading {
        font-size: 26px;
    }
    
    .eco-gradient-heading span {
        font-size: 22px;
    }
    
    .eco-badge-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .eco-badge-line {
        width: 30px;
    }
    
    .eco-premium-card {
        padding: 20px 15px;
    }
    
    .eco-card-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .eco-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .eco-icon-container i {
        font-size: 30px;
    }
    
    .eco-card-title {
        font-size: 20px;
    }
    
    .eco-card-title span {
        font-size: 15px;
    }
    
    .eco-print-group h4,
    .eco-reg-group h4,
    .eco-anim-group h4,
    .eco-train-group h4 {
        font-size: 13px;
    }
    
    .eco-print-item,
    .eco-reg-list li,
    .eco-anim-list li {
        font-size: 11px;
    }
    
    .eco-a-to-z-content {
        flex-direction: column;
        text-align: center;
    }
    
    .eco-price-value {
        font-size: 16px;
    }
}

/* Extra Small Devices (below 320px) */
@media screen and (max-width: 319px) {
    .container {
        padding: 0 15px;
    }
    
    .eco-gradient-heading {
        font-size: 22px;
    }
    
    .eco-gradient-heading span {
        font-size: 20px;
    }
    
    .eco-badge-text {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .eco-badge-line {
        width: 25px;
    }
    
    .eco-card-title {
        font-size: 18px;
    }
    
    .eco-feature-list li {
        font-size: 11px;
    }
    
    .eco-tech {
        font-size: 9px;
        padding: 3px 8px;
    }
}

/* Fix for Height Issues */
@media screen and (max-height: 700px) and (max-width: 768px) {
    .bizsevak-complete-ecosystem {
        padding: 40px 0;
    }
}

/* Print Styles */
@media print {
    .bizsevak-complete-ecosystem {
        background: white;
        padding: 20px 0;
    }
    
    .eco-bg-orb,
    .eco-grid-pattern,
    .eco-card-glow,
    .eco-icon-pulse,
    .eco-icon-ring {
        display: none;
    }
    
    .eco-premium-card {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

 /* ========== WHY CHOOSE US ========== */
 /* Global Styles */
 
/* ===== WHY CHOOSE US - PROFESSIONAL VERSION ===== */
.why-choose-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

/* Light Background Elements */
.why-bg-orb {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(circle, rgba(243, 164, 59, 0.03) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.why-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(15, 59, 94, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 164, 59, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* Premium Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-premium-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f3a43b, #0f3b5e, #f3a43b, transparent);
}

.badge-text {
    color: #0f3b5e;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.gradient-heading {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: #0f3b5e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-heading span {
    background: linear-gradient(135deg, #f3a43b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-description {
    font-size: clamp(16px, 2vw, 18px);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Grid - Professional Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Professional Card Base */
.why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #f3a43b;
    box-shadow: 0 20px 40px -15px rgba(243, 164, 59, 0.15);
}

/* Card Gradient Accents - Subtle */
.card-price {
    border-top: 4px solid #10b981;
}

.card-language {
    border-top: 4px solid #f3a43b;
}

.card-setup {
    border-top: 4px solid #3b82f6;
}

.card-support {
    border-top: 4px solid #8b5cf6;
}

.card-transparent {
    border-top: 4px solid #06b6d4;
}

.card-partner {
    border-top: 4px solid #ec4899;
}

/* Subtle Pattern Overlay */
.card-bg-pattern-1,
.card-bg-pattern-2,
.card-bg-pattern-3,
.card-bg-pattern-4,
.card-bg-pattern-5,
.card-bg-pattern-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#f3a43b 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

/* Card Glow - Very Subtle */
.card-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(243, 164, 59, 0.02), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.why-card:hover .card-bg-glow {
    opacity: 1;
}

/* Icon Wrapper - Clean & Professional */
.card-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    z-index: 10;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -8px rgba(15, 59, 94, 0.2);
}

.why-card:hover .icon-box {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f3a43b, #fbbf24);
}

.icon-box i {
    font-size: 40px;
    color: white;
    transition: all 0.3s ease;
}

.why-card:hover .icon-box i {
    color: #0f3b5e;
}

/* Subtle Ring Animation - Removed heavy animations */
.icon-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(243, 164, 59, 0.2);
    border-radius: 28px;
    z-index: 2;
}

/* Title Styling */
.why-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
    line-height: 1.3;
}

.why-card h3 span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #f3a43b;
    margin-top: 5px;
}

/* Description */
.card-description {
    font-size: 15px;
    color: #4b5565;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
    flex: 1;
}

/* Card Stats - Clean Numbers */
.card-stats {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 10;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #eef2f6;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #0f3b5e;
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Badge */
.why-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8fafc;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #0f3b5e;
    border: 1px solid #eef2f6;
    z-index: 20;
    letter-spacing: 0.5px;
}

.why-card:hover .why-card-badge {
    background: #f3a43b;
    color: white;
    border-color: #f3a43b;
}

/* Floating Elements - Very Subtle */
.card-float-1,
.card-float-2 {
    position: absolute;
    font-size: 50px;
    font-weight: 800;
    color: rgba(15, 59, 94, 0.02);
    z-index: 1;
    pointer-events: none;
}

.card-float-1 {
    bottom: 10px;
    left: 10px;
}

.card-float-2 {
    top: 30px;
    right: 20px;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 25px 35px;
    background: #f8fafc;
    border-radius: 50px;
    border: 1px solid #eef2f6;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f3b5e;
    font-size: 15px;
    font-weight: 500;
}

.trust-item i {
    font-size: 22px;
    color: #f3a43b;
}

/* ===== COUNTER SECTION - PROFESSIONAL VERSION ===== */
.biz-counter-premium {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    overflow: hidden;
}

.biz-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.biz-premium-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.orb1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(243, 164, 59, 0.1);
}

.orb2 {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(15, 59, 94, 0.1);
}

.orb3 {
    top: 40%;
    right: 30%;
    width: 250px;
    height: 250px;
    background: rgba(16, 185, 129, 0.1);
}

.biz-premium-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.biz-premium-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(243, 164, 59, 0.1);
    border: 1px solid rgba(243, 164, 59, 0.2);
    border-radius: 40px;
    color: #f3a43b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.biz-premium-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0f3b5e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.biz-premium-title span {
    color: #f3a43b;
    font-size: clamp(40px, 6vw, 56px);
}

.biz-premium-subtitle {
    font-size: 18px;
    color: #64748b;
}

.biz-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.biz-premium-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}

.biz-premium-item:hover {
    transform: translateY(-5px);
    border-color: #f3a43b;
    box-shadow: 0 20px 40px -15px rgba(243, 164, 59, 0.15);
}

.biz-premium-icon {
    width: 70px;
    height: 70px;
    background: rgba(243, 164, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.biz-premium-item:hover .biz-premium-icon {
    background: #f3a43b;
}

.biz-premium-icon i {
    font-size: 32px;
    color: #f3a43b;
    transition: all 0.3s ease;
}

.biz-premium-item:hover .biz-premium-icon i {
    color: white;
}

.biz-premium-number {
    font-size: 48px;
    font-weight: 800;
    color: #0f3b5e;
    line-height: 1.2;
    margin-bottom: 10px;
}

.biz-premium-label {
    font-size: 16px;
    font-weight: 600;
    color: #4b5565;
    margin-bottom: 5px;
}

.biz-premium-footnote {
    font-size: 12px;
    color: #94a3b8;
}

.biz-premium-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 50px;
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #eef2f6;
}

.biz-premium-trust i {
    color: #f3a43b;
    font-size: 20px;
}

.biz-premium-trust p {
    color: #0f3b5e;
    font-size: 16px;
    font-weight: 500;
}

/* ===== PRICING SECTION - PROFESSIONAL VERSION ===== */
.biz-pricing-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.biz-pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.biz-pricing-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
}

.biz-pricing-orb.orb-1 {
    top: -100px;
    right: -100px;
    background: rgba(243, 164, 59, 0.3);
}

.biz-pricing-orb.orb-2 {
    bottom: -100px;
    left: -100px;
    background: rgba(15, 59, 94, 0.2);
}

/* Section Header */
.biz-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.biz-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(243, 164, 59, 0.1);
    border: 1px solid rgba(243, 164, 59, 0.2);
    border-radius: 40px;
    color: #f3a43b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.biz-section-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0f3b5e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.biz-section-desc {
    font-size: 18px;
    color: #64748b;
}

.biz-section-desc i {
    color: #10b981;
    margin: 0 5px;
}

/* Website Type Guide */
.biz-website-guide {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 20px 25px;
    background: #f8fafc;
    border-radius: 60px;
    border: 1px solid #eef2f6;
    position: relative;
    z-index: 10;
}

.biz-guide-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    border-radius: 40px;
}

.biz-guide-item i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3a43b;
    font-size: 18px;
    border: 1px solid #eef2f6;
}

.biz-guide-item div {
    display: flex;
    flex-direction: column;
}

.biz-guide-item strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f3b5e;
}

.biz-guide-item span {
    font-size: 12px;
    color: #64748b;
}

/* Pricing Grid */
.biz-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

/* Pricing Card */
.biz-pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 25px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.biz-pricing-card:hover {
    transform: translateY(-5px);
    border-color: #f3a43b;
    box-shadow: 0 20px 40px -15px rgba(243, 164, 59, 0.15);
}

.biz-pricing-card.biz-popular {
    border: 2px solid #f3a43b;
    transform: scale(1.02);
}

.biz-pricing-card.biz-popular:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Popular Badge */
.biz-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f3a43b, #fbbf24);
    color: #0f3b5e;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(243, 164, 59, 0.2);
    width: fit-content;
}

/* Card Header */
.biz-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.biz-plan-icon {
    width: 70px;
    height: 70px;
    background: rgba(243, 164, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.biz-pricing-card:hover .biz-plan-icon {
    background: #f3a43b;
}

.biz-plan-icon i {
    font-size: 32px;
    color: #f3a43b;
    transition: all 0.3s ease;
}

.biz-pricing-card:hover .biz-plan-icon i {
    color: white;
}

.biz-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 10px;
}

.biz-plan-price {
    margin-bottom: 5px;
}

.biz-price {
    font-size: 38px;
    font-weight: 800;
    color: #0f3b5e;
}

.biz-duration {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.biz-price-note {
    font-size: 11px;
    color: #94a3b8;
}

/* Plan Badge */
.biz-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: rgba(243, 164, 59, 0.1);
    border-radius: 40px;
    color: #f3a43b;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(243, 164, 59, 0.2);
}

/* Features List */
.biz-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex: 1;
}

.biz-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #eef2f6;
}

.biz-feature-item:last-child {
    border-bottom: none;
}

.biz-feature-item i {
    width: 20px;
    font-size: 14px;
}

.biz-feature-item i.fa-check-circle {
    color: #10b981;
}

.biz-feature-item i.fa-times-circle {
    color: #ef4444;
}

.biz-feature-item span {
    font-size: 14px;
    color: #4b5565;
    flex: 1;
}

.biz-feature-item.text-muted span {
    color: #94a3b8;
}

.biz-feature-item strong {
    color: #0f3b5e;
}

/* Card Footer */
.biz-card-footer {
    text-align: center;
    margin-top: auto;
}

.biz-plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.biz-btn-primary {
    background: #0f3b5e;
    color: white;
}

.biz-btn-primary:hover {
    background: #f3a43b;
    color: #0f3b5e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(243, 164, 59, 0.3);
}

.biz-btn-outline {
    background: transparent;
    border: 2px solid #0f3b5e;
    color: #0f3b5e;
}

.biz-btn-outline:hover {
    background: #0f3b5e;
    color: white;
    transform: translateY(-2px);
}

/* Custom Card */
.biz-custom-card {
    background: #0f3b5e;
    color: white;
}

.biz-custom-card .biz-plan-name {
    color: white;
}

.biz-custom-card .biz-price {
    color: #f3a43b;
}

.biz-custom-card .biz-plan-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.biz-custom-card .biz-feature-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.biz-custom-card .biz-feature-item span {
    color: rgba(255, 255, 255, 0.9);
}

.biz-custom-card .biz-btn-primary {
    background: white;
    color: #0f3b5e;
}

.biz-custom-card .biz-btn-primary:hover {
    background: #f3a43b;
    color: #0f3b5e;
}

.biz-custom-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.biz-custom-note i {
    color: #f3a43b;
}

/* Size Guide */
.biz-size-guide {
    background: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #eef2f6;
    position: relative;
    z-index: 10;
}

.biz-size-guide h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.biz-size-guide h3 i {
    color: #f3a43b;
}

.biz-guide-table {
    display: grid;
    gap: 10px;
}

.biz-guide-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    padding: 12px 15px;
    background: white;
    border-radius: 12px;
    align-items: center;
    border: 1px solid #eef2f6;
}

.biz-guide-label {
    font-weight: 700;
    color: #0f3b5e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.biz-guide-label i {
    color: #f3a43b;
}

.biz-guide-value {
    color: #f3a43b;
    font-weight: 600;
}

.biz-guide-desc {
    color: #64748b;
    font-size: 14px;
}

/* Transparent Note */
.biz-transparent-note {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
    border-radius: 24px;
    color: white;
    position: relative;
    z-index: 10;
}

.biz-note-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
    border-radius: 12px;
}

.biz-note-content i {
    font-size: 28px;
    color: #f3a43b;
}

.biz-note-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.biz-note-content h4 i {
    font-size: 16px;
}

.biz-note-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.biz-note-content a {
    color: #f3a43b;
    text-decoration: underline;
}

/* ===== FULLY RESPONSIVE BREAKPOINTS ===== */

/* Desktop Large (1200px - 1400px) */
@media screen and (max-width: 1300px) {
    .why-grid,
    .biz-premium-grid,
    .biz-pricing-grid {
        gap: 25px;
    }
    
    .biz-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Medium (992px - 1199px) */
@media screen and (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .biz-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .biz-transparent-note {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media screen and (max-width: 991px) {
    .why-choose-section,
    .biz-counter-premium,
    .biz-pricing-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .gradient-heading {
        font-size: 38px;
    }
    
    .biz-premium-title {
        font-size: 36px;
    }
    
    .biz-premium-title span {
        font-size: 48px;
    }
    
    .trust-strip {
        gap: 30px;
        padding: 20px 30px;
    }
    
    .biz-website-guide {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    
    .biz-guide-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* Tablet Portrait (576px - 767px) */
@media screen and (max-width: 767px) {
    .why-choose-section,
    .biz-counter-premium,
    .biz-pricing-section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .biz-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .biz-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gradient-heading {
        font-size: 32px;
    }
    
    .biz-premium-title {
        font-size: 30px;
    }
    
    .biz-premium-title span {
        font-size: 40px;
    }
    
    .header-description,
    .biz-premium-subtitle,
    .biz-section-desc {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .why-card {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .card-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .trust-strip {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
    }
    
    .biz-premium-item {
        padding: 30px 20px;
    }
    
    .biz-premium-number {
        font-size: 42px;
    }
    
    .biz-premium-label {
        font-size: 15px;
    }
    
    .biz-pricing-card {
        padding: 30px 20px;
    }
    
    .biz-price {
        font-size: 34px;
    }
    
    .biz-plan-name {
        font-size: 20px;
    }
    
    .biz-popular-badge {
        width: 90%;
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .biz-transparent-note {
        padding: 20px;
    }
    
    .biz-note-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .biz-note-content h4 {
        justify-content: center;
    }
    
    .badge-line {
        width: 40px;
    }
    
    .badge-text {
        font-size: 13px;
        letter-spacing: 2px;
    }
}

/* Mobile Large (376px - 575px) */
@media screen and (max-width: 575px) {
    .why-choose-section,
    .biz-counter-premium,
    .biz-pricing-section {
        padding: 50px 0;
    }
    
    .gradient-heading {
        font-size: 28px;
    }
    
    .biz-premium-title {
        font-size: 26px;
    }
    
    .biz-premium-title span {
        font-size: 36px;
    }
    
    .biz-section-title {
        font-size: 28px;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .card-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
    }
    
    .icon-box i {
        font-size: 35px;
    }
    
    .why-card h3 {
        font-size: 22px;
    }
    
    .why-card h3 span {
        font-size: 16px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .biz-premium-item {
        padding: 25px 15px;
    }
    
    .biz-premium-icon {
        width: 60px;
        height: 60px;
    }
    
    .biz-premium-icon i {
        font-size: 28px;
    }
    
    .biz-premium-number {
        font-size: 38px;
    }
    
    .biz-premium-label {
        font-size: 14px;
    }
    
    .biz-premium-footnote {
        font-size: 11px;
    }
    
    .biz-premium-trust {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .biz-premium-trust i {
        font-size: 18px;
    }
    
    .biz-premium-trust p {
        font-size: 14px;
    }
    
    .biz-pricing-card {
        padding: 25px 20px;
    }
    
    .biz-plan-icon {
        width: 60px;
        height: 60px;
    }
    
    .biz-plan-icon i {
        font-size: 28px;
    }
    
    .biz-price {
        font-size: 32px;
    }
    
    .biz-duration {
        font-size: 13px;
    }
    
    .biz-feature-item span {
        font-size: 13px;
    }
    
    .biz-plan-btn {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .biz-size-guide {
        padding: 20px;
    }
    
    .biz-size-guide h3 {
        font-size: 18px;
    }
    
    .biz-guide-row {
        padding: 10px;
    }
    
    .biz-guide-label {
        font-size: 13px;
    }
    
    .biz-guide-value {
        font-size: 13px;
    }
    
    .biz-guide-desc {
        font-size: 12px;
    }
    
    .biz-note-content i {
        font-size: 24px;
    }
    
    .biz-note-content h4 {
        font-size: 16px;
    }
    
    .biz-note-content p {
        font-size: 13px;
    }
}

/* Mobile Small (320px - 375px) */
@media screen and (max-width: 375px) {
    .gradient-heading {
        font-size: 26px;
    }
    
    .biz-premium-title {
        font-size: 24px;
    }
    
    .biz-premium-title span {
        font-size: 32px;
    }
    
    .biz-section-title {
        font-size: 26px;
    }
    
    .badge-text {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .badge-line {
        width: 30px;
    }
    
    .why-card {
        padding: 20px 15px;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .icon-box i {
        font-size: 30px;
    }
    
    .why-card h3 {
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .biz-premium-number {
        font-size: 34px;
    }
    
    .biz-premium-label {
        font-size: 13px;
    }
    
    .biz-price {
        font-size: 30px;
    }
    
    .biz-plan-name {
        font-size: 18px;
    }
    
    .biz-popular-badge {
        font-size: 10px;
        padding: 4px 8px;
        width: 95%;
    }
}

/* Extra Small Devices (below 320px) */
@media screen and (max-width: 319px) {
    .container {
        padding: 0 15px;
    }
    
    .gradient-heading {
        font-size: 24px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .badge-line {
        width: 25px;
    }
    
    .why-card h3 {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .biz-price {
        font-size: 28px;
    }
}

/* Print Styles */
@media print {
    .why-choose-section,
    .biz-counter-premium,
    .biz-pricing-section {
        background: white;
        padding: 20px 0;
    }
    
    .why-bg-orb,
    .why-bg-grid,
    .biz-premium-orb,
    .biz-pricing-orb,
    .card-bg-glow,
    .card-float-1,
    .card-float-2 {
        display: none;
    }
    
    .why-card,
    .biz-premium-item,
    .biz-pricing-card {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}


 /* ========== PRICING SECTION ========== */
 .pricing-section {
     padding: var(--space-2xl) 0;
     background-color: var(--gray-50);
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: var(--space-md);
 }

 .pricing-card {
     background-color: white;
     border-radius: var(--radius-xl);
     padding: var(--space-xl) var(--space-lg);
     box-shadow: var(--shadow-lg);
     border: 1px solid var(--gray-100);
     position: relative;
 }

 .pricing-card.popular {
     border: 2px solid var(--accent-saffron);
     transform: scale(1.02);
 }

 .popular-badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: linear-gradient(135deg, var(--accent-saffron), var(--accent-light));
     color: var(--primary-navy);
     padding: 6px 20px;
     border-radius: var(--radius-full);
     font-weight: 700;
     font-size: 12px;
 }

 .plan-name {
     font-size: 24px;
     font-weight: 700;
     color: var(--primary-navy);
     margin-bottom: var(--space-sm);
 }

 .plan-price {
     font-size: 42px;
     font-weight: 800;
     color: var(--primary-navy);
     margin: var(--space-sm) 0;
 }

 .plan-price small {
     font-size: 16px;
     font-weight: 400;
     color: var(--gray-600);
 }

 .price-note {
     font-size: 13px;
     color: var(--gray-600);
     margin-bottom: var(--space-sm);
 }

 .domain-badge {
     display: inline-block;
     background: rgba(243, 164, 59, 0.1);
     color: var(--accent-saffron);
     padding: 6px 16px;
     border-radius: var(--radius-full);
     font-size: 12px;
     margin-bottom: var(--space-md);
 }

 .plan-features {
     list-style: none;
     margin: var(--space-lg) 0;
 }

 .plan-features li {
     display: flex;
     align-items: center;
     gap: var(--space-xs);
     padding: 8px 0;
     border-bottom: 1px dashed var(--gray-200);
 }

 .plan-features i {
     color: var(--success-green);
     font-size: 18px;
     width: 24px;
 }

 .plan-btn {
     display: block;
     text-align: center;
     padding: 12px;
     border-radius: var(--radius-full);
     text-decoration: none;
     font-weight: 600;
 }

 /* ========== COMPARISON TABLE ========== */

 /* ===== COMPARISON SECTION - BIZ SEVAK PREMIUM ===== */
 .comparison-section {
     position: relative;
     padding: 80px 0;
     background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
     font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
     overflow: hidden;
 }

 /* Premium Background Elements */
 .comparison-section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(243, 164, 59, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .comparison-section::after {
     content: '';
     position: absolute;
     bottom: -100px;
     left: -100px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(15, 59, 94, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 10;
 }

 /* Premium Header */
 .section-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .table-premium-badge {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .table-badge-line {
     width: 50px;
     height: 2px;
     background: linear-gradient(90deg, transparent, #f3a43b, #0f3b5e, #f3a43b, transparent);
 }

 .table-badge-text {
     color: #0f3b5e;
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 3px;
     background: linear-gradient(135deg, #0f3b5e, #f3a43b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .gradient-heading {
     font-size: 42px;
     font-weight: 800;
     color: #0f3b5e;
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .gradient-heading span {
     color: #f3a43b;
     position: relative;
     display: inline-block;
 }

 .gradient-heading span::before,
 .gradient-heading span::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 30px;
     height: 2px;
     background: linear-gradient(90deg, #f3a43b, transparent);
 }

 .gradient-heading span::before {
     left: -40px;
 }

 .gradient-heading span::after {
     right: -40px;
     transform: rotate(180deg);
 }

 .header-description {
     font-size: 18px;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
 }

 /* Comparison Wrapper */
 .comparison-wrapper {
     position: relative;
     z-index: 20;
     border-radius: 30px;
     overflow: hidden;
     box-shadow: 0 30px 60px -20px rgba(15, 59, 94, 0.3);
     margin-bottom: 30px;
 }

 /* Comparison Table */
 .comparison-table {
     width: 100%;
     border-collapse: collapse;
     background: white;
     font-size: 16px;
 }

 /* Table Headers */
 .comparison-table th {
     padding: 25px 20px;
     font-size: 18px;
     font-weight: 700;
     color: white;
     border: none;
 }

 .feature-header {
     background: #0f3b5e;
     border-top-left-radius: 30px;
 }

 .bizsevak-header {
     background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
 }

 .typical-header {
     background: linear-gradient(135deg, #2d3748, #4a5568);
     border-top-right-radius: 30px;
 }

 .th-content {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .th-content i {
     font-size: 24px;
     color: #f3a43b;
     filter: drop-shadow(0 2px 5px rgba(243, 164, 59, 0.3));
 }

 .th-content span {
     font-size: 18px;
     font-weight: 600;
 }

 .vs-badge {
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     color: #0f3b5e;
     padding: 5px 12px;
     border-radius: 30px;
     font-size: 12px;
     font-weight: 800;
     letter-spacing: 1px;
     margin-left: 5px;
     box-shadow: 0 3px 8px rgba(243, 164, 59, 0.3);
 }

 /* Table Rows */
 .comparison-row {
     transition: all 0.3s ease;
     border-bottom: 1px solid #e2e8f0;
 }

 .comparison-row:hover {
     background: linear-gradient(90deg, #f8fafc, #ffffff);
     transform: scale(1.01);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .comparison-row:last-child {
     border-bottom: none;
 }

 /* Feature Name Column */
 .feature-name {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 20px;
     background: #ffffff;
 }

 .feature-icon {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, rgba(243, 164, 59, 0.1), rgba(243, 164, 59, 0.05));
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(243, 164, 59, 0.2);
 }

 .feature-icon i {
     font-size: 24px;
     color: #f3a43b;
 }

 .feature-text {
     display: flex;
     flex-direction: column;
 }

 .feature-title {
     font-size: 18px;
     font-weight: 700;
     color: #0f3b5e;
     margin-bottom: 4px;
 }

 .feature-desc {
     font-size: 13px;
     color: #94a3b8;
 }

 /* Cell Content */
 .bizsevak-cell,
 .typical-cell {
     padding: 20px;
     vertical-align: middle;
 }

 .bizsevak-cell {
     background: rgba(15, 59, 94, 0.02);
 }

 .cell-content {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .status-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .win .status-icon {
     background: rgba(16, 185, 129, 0.1);
 }

 .lose .status-icon {
     background: rgba(239, 68, 68, 0.1);
 }

 .win .status-icon i {
     color: #10b981;
     font-size: 20px;
 }

 .lose .status-icon i {
     color: #ef4444;
     font-size: 20px;
 }

 .status-text {
     display: flex;
     flex-direction: column;
 }

 .main-text {
     font-size: 16px;
     font-weight: 600;
     color: #1e293b;
     margin-bottom: 4px;
 }

 .sub-text {
     font-size: 12px;
     color: #94a3b8;
 }

 .small-text {
     font-size: 12px;
     color: #94a3b8;
     margin-left: 4px;
 }

 .convert-text {
     background: #f1f5f9;
     padding: 3px 8px;
     border-radius: 30px;
     font-size: 11px;
     color: #64748b;
     display: inline-block;
     margin-top: 4px;
 }

 .highlight-text {
     color: #f3a43b;
     font-weight: 600;
 }

 /* Winner Badge */
 .winner-badge {
     background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
     padding: 20px;
     text-align: center;
 }

 .winner-content {
     display: inline-flex;
     align-items: center;
     gap: 15px;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 15px 40px;
     border-radius: 60px;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .winner-content i {
     font-size: 28px;
 }

 .winner-content i.fa-trophy {
     color: #f3a43b;
 }

 .winner-content i.fa-star {
     color: #fbbf24;
     font-size: 20px;
 }

 .winner-content span {
     color: white;
     font-size: 20px;
     font-weight: 700;
     margin: 0 10px;
 }

 /* Bottom Note */
 .comparison-note {
     margin-top: 40px;
     background: linear-gradient(135deg, #0f3b5e, #1a4a6f);
     border-radius: 30px;
     padding: 30px;
     box-shadow: 0 20px 40px -15px rgba(15, 59, 94, 0.4);
 }

 .note-content {
     display: flex;
     align-items: center;
     gap: 30px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .note-icon {
     width: 70px;
     height: 70px;
     background: rgba(243, 164, 59, 0.15);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .note-icon i {
     font-size: 35px;
     color: #f3a43b;
 }

 .note-text {
     flex: 1;
     min-width: 250px;
 }

 .note-text h4 {
     color: white;
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .note-text p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 16px;
     margin: 0;
 }

 .note-stats {
     display: flex;
     gap: 30px;
 }

 .stat {
     text-align: center;
 }

 .stat-number {
     display: block;
     color: #f3a43b;
     font-size: 28px;
     font-weight: 800;
     line-height: 1.2;
 }

 .stat-label {
     color: rgba(255, 255, 255, 0.7);
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* ===== RESPONSIVE DESIGN ===== */
 @media screen and (max-width: 1024px) {
     .gradient-heading {
         font-size: 36px;
     }

     .gradient-heading span::before,
     .gradient-heading span::after {
         width: 20px;
     }

     .gradient-heading span::before {
         left: -30px;
     }

     .gradient-heading span::after {
         right: -30px;
     }
 }

 @media screen and (max-width: 768px) {
     .comparison-section {
         padding: 60px 0;
     }

     .gradient-heading {
         font-size: 30px;
     }

     .gradient-heading span::before,
     .gradient-heading span::after {
         display: none;
     }

     .header-description {
         font-size: 16px;
     }

     .comparison-wrapper {
         border-radius: 20px;
         overflow-x: auto;
     }

     .comparison-table {
         min-width: 700px;
     }

     .feature-header,
     .bizsevak-header,
     .typical-header {
         padding: 20px 15px;
     }

     .th-content span {
         font-size: 16px;
     }

     .feature-name {
         padding: 15px;
     }

     .feature-icon {
         width: 40px;
         height: 40px;
     }

     .feature-icon i {
         font-size: 20px;
     }

     .feature-title {
         font-size: 16px;
     }

     .feature-desc {
         font-size: 11px;
     }

     .bizsevak-cell,
     .typical-cell {
         padding: 15px;
     }

     .main-text {
         font-size: 14px;
     }

     .winner-content {
         padding: 12px 30px;
     }

     .winner-content span {
         font-size: 18px;
     }

     .note-content {
         flex-direction: column;
         text-align: center;
         gap: 20px;
     }

     .note-stats {
         justify-content: center;
     }
 }

 @media screen and (max-width: 480px) {
     .comparison-section {
         padding: 40px 0;
     }

     .badge-text {
         font-size: 12px;
     }

     .badge-line {
         width: 30px;
     }

     .gradient-heading {
         font-size: 26px;
     }

     .comparison-table {
         min-width: 650px;
     }

     .comparison-table th,
     .comparison-table td {
         padding: 12px;
     }

     .th-content i {
         font-size: 20px;
     }

     .th-content span {
         font-size: 14px;
     }

     .vs-badge {
         font-size: 10px;
         padding: 3px 8px;
     }

     .feature-icon {
         width: 35px;
         height: 35px;
     }

     .feature-icon i {
         font-size: 18px;
     }

     .feature-title {
         font-size: 14px;
     }

     .feature-desc {
         font-size: 10px;
     }

     .main-text {
         font-size: 13px;
     }

     .sub-text {
         font-size: 10px;
     }

     .winner-content {
         padding: 10px 20px;
         gap: 8px;
     }

     .winner-content i {
         font-size: 20px;
     }

     .winner-content span {
         font-size: 16px;
     }

     .note-text h4 {
         font-size: 18px;
     }

     .note-text p {
         font-size: 14px;
     }

     .stat-number {
         font-size: 22px;
     }

     .stat-label {
         font-size: 10px;
     }
 }

 /* Scrollbar Styling */
 .comparison-wrapper::-webkit-scrollbar {
     height: 8px;
     background: #f1f5f9;
 }

 .comparison-wrapper::-webkit-scrollbar-thumb {
     background: linear-gradient(90deg, #0f3b5e, #f3a43b);
     border-radius: 10px;
 }

 .comparison-wrapper::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(90deg, #f3a43b, #0f3b5e);
 }

 /* ========== TESTIMONIALS ========== */
 .testimonials-section {
     padding: var(--space-2xl) 0;
     background-color: var(--gray-50);
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: var(--space-lg);
 }

 .testimonial-card {
     background-color: white;
     border-radius: var(--radius-xl);
     padding: var(--space-xl);
     box-shadow: var(--shadow-lg);
 }

 .testimonial-rating {
     color: #fbbf24;
     margin-bottom: var(--space-sm);
 }

 .testimonial-text {
     font-size: 16px;
     color: var(--gray-600);
     line-height: 1.7;
     margin-bottom: var(--space-lg);
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: var(--space-sm);
 }

 .author-img {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--primary-navy), var(--accent-saffron));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
 }

 .author-info h4 {
     font-size: 18px;
     margin-bottom: 4px;
 }

 .author-info p {
     font-size: 14px;
     color: var(--gray-600);
 }

 /* ========== FAQ SECTION ========== */
 .faq-section {
     padding: var(--space-2xl) 0;
 }

 .faq-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: var(--space-md);
     max-width: 900px;
     margin: 0 auto;
 }

 .faq-item {
     background-color: white;
     border-radius: var(--radius-lg);
     padding: 25px;
     border: 1px solid var(--gray-200);
     cursor: pointer;
 }

 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
 }

 .faq-answer {
     margin-top: var(--space-sm);
     color: var(--gray-600);
     display: none;
 }

 .faq-item.active .faq-answer {
     display: block;
 }

 /* ========== CONTACT SECTION ========== */
 .contact-section {
     padding: var(--space-2xl) 0;
     background: linear-gradient(135deg, var(--primary-navy), #1a4a6f);
     color: white;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: var(--space-xl);
 }

 .contact-method {
     display: flex;
     align-items: center;
     gap: var(--space-md);
     padding: 20px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-lg);
     margin-bottom: var(--space-md);
 }

 .contact-method i {
     width: 50px;
     height: 50px;
     background-color: var(--accent-saffron);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-navy);
     font-size: 20px;
 }

 .business-hours {
     margin-top: var(--space-lg);
     padding: var(--space-lg);
     background: rgba(255, 255, 255, 0.1);
     border-radius: var(--radius-lg);
 }

 .contact-form {
     background-color: white;
     border-radius: var(--radius-xl);
     padding: var(--space-xl);
     color: var(--gray-800);
 }

 .form-group {
     margin-bottom: var(--space-md);
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 14px;
     border: 2px solid var(--gray-200);
     border-radius: var(--radius-md);
     outline: none;
 }

 /* ========== DIGITAL MARKETING ========== */
 .marketing-section {
     padding: var(--space-2xl) 0;
     background-color: var(--gray-50);
 }

 .marketing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: var(--space-lg);
 }

 .marketing-card {
     background-color: white;
     border-radius: var(--radius-xl);
     padding: var(--space-xl);
     text-align: center;
     box-shadow: var(--shadow-lg);
 }

 .marketing-card i {
     font-size: 48px;
     color: var(--accent-saffron);
     margin-bottom: var(--space-sm);
 }

 /* ========== BRANDING SERVICES ========== */
 .branding-section {
     padding: var(--space-2xl) 0;
 }

 .branding-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: var(--space-md);
 }

 .branding-card {
     background-color: white;
     border-radius: var(--radius-lg);
     padding: 30px;
     text-align: center;
     box-shadow: var(--shadow-md);
     border: 1px solid var(--gray-100);
 }

 .branding-card i {
     font-size: 36px;
     color: var(--primary-navy);
     margin-bottom: var(--space-sm);
 }

 /* ========== SOCIAL MEDIA SECTION ========== */


 :root {
     --primary: #1e3a8a;
     /* deep indigo */
     --primary-dark: #0f2b5e;
     --accent: #f59e0b;
     /* amber */
     --success: #10b981;
     --gray-50: #f9fafb;
     --gray-100: #f3f4f6;
     --gray-200: #e5e7eb;
     --gray-300: #d1d5db;
     --gray-400: #9ca3af;
     --gray-500: #6b7280;
     --gray-600: #4b5563;
     --gray-700: #374151;
     --gray-800: #1f2937;
     --gray-900: #111827;
     --white: #ffffff;
     --border-radius-md: 16px;
     --border-radius-lg: 28px;
     --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
     --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.15), 0 8px 15px -6px rgba(0, 0, 0, 0.05);
     --shadow-xl: 0 30px 45px -15px rgba(0, 0, 0, 0.2);
     --shadow-2xl: 0 40px 60px -18px rgba(0, 0, 0, 0.3);
     --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }



 /* main container mimics your original section */
 .social-media-section {
     max-width: 1400px;
     width: 100%;
     margin: 0 auto;
     background: transparent;
 }

 /* ==================== SOCIAL MEDIA SECTION - FULLY RESPONSIVE ==================== */
 .social-media-section {
     padding: 60px 0;
     background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
     position: relative;
     overflow: hidden;
 }

 .social-media-section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .social-media-section::after {
     content: '';
     position: absolute;
     bottom: -100px;
     left: -100px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 24px;
     position: relative;
     z-index: 5;
 }

 .social-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 40px;
     position: relative;
     z-index: 1;
 }

 .social-header h2 {
     font-size: clamp(28px, 5vw, 42px);
     font-weight: 800;
     margin-bottom: 15px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .social-header p {
     font-size: clamp(14px, 2vw, 18px);
     color: var(--gray-600);
 }

 /* Main Social Grid */
 .social-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 25px;
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 @media (min-width: 768px) {
     .social-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 25px;
     }
 }

 @media (min-width: 1024px) {
     .social-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 30px;
     }
 }

 .social-card {
     background: var(--white);
     border-radius: var(--border-radius-lg);
     padding: 30px 25px;
     box-shadow: var(--shadow-lg);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     border: 1px solid var(--gray-100);
     cursor: pointer;
     text-decoration: none;
     display: block;
 }

 .social-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-2xl);
 }

 .social-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, var(--primary), var(--accent));
     transform: translateX(-100%);
     transition: transform 0.5s ease;
 }

 .social-card:hover::before {
     transform: translateX(0);
 }

 .social-card-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .social-icon-wrapper {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     transition: var(--transition);
 }

 .social-card:hover .social-icon-wrapper {
     transform: scale(1.1) rotate(5deg);
 }

 /* brand colors */
 .social-card.facebook .social-icon-wrapper {
     background: linear-gradient(135deg, #1877f2, #0d5ab9);
     color: white;
 }

 .social-card.instagram .social-icon-wrapper {
     background: linear-gradient(135deg, #f09433, #d62976, #962fbf, #4f5bd5);
     color: white;
 }

 .social-card.linkedin .social-icon-wrapper {
     background: linear-gradient(135deg, #0077b5, #005582);
     color: white;
 }

 .social-card.twitter .social-icon-wrapper {
     background: linear-gradient(135deg, #1da1f2, #0d8bd9);
     color: white;
 }

 .social-card.youtube .social-icon-wrapper {
     background: linear-gradient(135deg, #ff0000, #cc0000);
     color: white;
 }

 .social-card.whatsapp .social-icon-wrapper {
     background: linear-gradient(135deg, #25d366, #128c7e);
     color: white;
 }

 .social-card.telegram .social-icon-wrapper {
     background: linear-gradient(135deg, #0088cc, #006699);
     color: white;
 }

 .social-info {
     flex: 1;
 }

 .social-platform {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 4px;
     color: var(--gray-900);
 }

 .social-handle {
     font-size: 14px;
     color: var(--gray-600);
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .social-handle i {
     font-size: 12px;
     color: var(--success);
 }

 .social-stats {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 20px;
     padding: 15px 0;
     border-top: 1px solid var(--gray-100);
     border-bottom: 1px solid var(--gray-100);
 }

 .followers-count {
     text-align: center;
     flex: 1;
 }

 .followers-number {
     font-size: 24px;
     font-weight: 800;
     color: var(--primary);
     line-height: 1.2;
 }

 .followers-label {
     font-size: 12px;
     color: var(--gray-600);
 }

 .posts-count {
     text-align: center;
     flex: 1;
     border-left: 1px solid var(--gray-200);
     border-right: 1px solid var(--gray-200);
 }

 .posts-number {
     font-size: 24px;
     font-weight: 800;
     color: var(--accent);
     line-height: 1.2;
 }

 .posts-label {
     font-size: 12px;
     color: var(--gray-600);
 }

 .engagement-rate {
     text-align: center;
     flex: 1;
 }

 .engagement-number {
     font-size: 20px;
     font-weight: 800;
     color: var(--success);
     line-height: 1.2;
 }

 .engagement-label {
     font-size: 12px;
     color: var(--gray-600);
 }

 .last-post {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
     padding: 10px;
     background: var(--gray-50);
     border-radius: 12px;
 }

 .last-post-icon {
     width: 30px;
     height: 30px;
     background: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--accent);
     font-size: 14px;
 }

 .last-post-text {
     flex: 1;
     font-size: 13px;
     color: var(--gray-700);
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .last-post-time {
     font-size: 11px;
     color: var(--gray-500);
     white-space: nowrap;
 }

 .social-action {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 15px;
 }

 .follow-btn {
     background: var(--primary);
     color: white;
     border: none;
     padding: 10px 25px;
     border-radius: 40px;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     transition: var(--transition);
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .follow-btn i {
     font-size: 16px;
     transition: var(--transition);
 }

 .follow-btn:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
     box-shadow: var(--shadow-md);
 }

 .follow-btn:hover i {
     transform: translateX(5px);
 }

 .share-icon {
     width: 40px;
     height: 40px;
     background: var(--gray-100);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--gray-600);
     cursor: pointer;
     transition: var(--transition);
 }

 .share-icon:hover {
     background: var(--accent);
     color: white;
     transform: rotate(90deg);
 }

 .social-card.facebook:hover {
     border-color: #1877f2;
 }

 .social-card.instagram:hover {
     border-color: #d62976;
 }

 .social-card.linkedin:hover {
     border-color: #0077b5;
 }

 /* second row mini cards */
 .social-row {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
     margin-top: 25px;
 }

 @media (min-width: 640px) {
     .social-row {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .social-row {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 .social-mini-card {
     background: var(--white);
     border-radius: var(--border-radius-md);
     padding: 20px;
     box-shadow: var(--shadow-md);
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 15px;
     text-decoration: none;
     color: inherit;
     border: 1px solid var(--gray-100);
 }

 .social-mini-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-xl);
 }

 .social-mini-card.facebook:hover {
     background: #1877f2;
     color: white;
 }

 .social-mini-card.instagram:hover {
     background: linear-gradient(135deg, #f09433, #d62976);
     color: white;
 }

 .social-mini-card.linkedin:hover {
     background: #0077b5;
     color: white;
 }

 .social-mini-card.twitter:hover {
     background: #1da1f2;
     color: white;
 }

 .social-mini-card.youtube:hover {
     background: #ff0000;
     color: white;
 }

 .social-mini-card.whatsapp:hover {
     background: #25d366;
     color: white;
 }

 .social-mini-card.telegram:hover {
     background: #0088cc;
     color: white;
 }

 .social-mini-card:hover .social-mini-icon {
     background: rgba(255, 255, 255, 0.2);
     color: white;
 }

 .social-mini-icon {
     width: 45px;
     height: 45px;
     background: var(--gray-100);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     color: var(--primary);
     transition: var(--transition);
 }

 .social-mini-info {
     flex: 1;
 }

 .social-mini-platform {
     font-weight: 600;
     font-size: 15px;
     margin-bottom: 3px;
 }

 .social-mini-handle {
     font-size: 12px;
     color: var(--gray-600);
 }

 .social-mini-card:hover .social-mini-handle {
     color: rgba(255, 255, 255, 0.9);
 }

 /* connect banner */
 .social-connect-banner {
     margin-top: 40px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
     border-radius: var(--border-radius-lg);
     padding: 40px;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .social-connect-banner::before {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
     border-radius: 50%;
 }

 .social-connect-banner::after {
     content: '';
     position: absolute;
     bottom: -50px;
     left: -50px;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
     border-radius: 50%;
 }

 .connect-banner-content {
     position: relative;
     z-index: 1;
 }

 .connect-banner-content h3 {
     font-size: clamp(24px, 4vw, 32px);
     font-weight: 700;
     margin-bottom: 15px;
     color: white;
 }

 .connect-banner-content p {
     font-size: clamp(14px, 2vw, 16px);
     margin-bottom: 25px;
     opacity: 0.9;
     color: white;
 }

 .connect-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     justify-content: center;
 }

 .connect-btn {
     background: white;
     color: var(--primary);
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: var(--transition);
 }

 .connect-btn:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-xl);
 }

 .connect-btn i {
     font-size: 18px;
 }

 .connect-btn.twitter {
     color: #1da1f2;
 }

 .connect-btn.instagram {
     color: #d62976;
 }

 .connect-btn.linkedin {
     color: #0077b5;
 }

 /* mobile fine-tune */
 @media (max-width: 640px) {
     .social-card {
         padding: 20px 15px;
     }

     .social-card-header {
         gap: 10px;
     }

     .social-icon-wrapper {
         width: 50px;
         height: 50px;
         font-size: 22px;
     }

     .social-platform {
         font-size: 16px;
     }

     .followers-number,
     .posts-number {
         font-size: 18px;
     }

     .engagement-number {
         font-size: 16px;
     }

     .last-post-text {
         white-space: normal;
     }

     .follow-btn {
         padding: 8px 20px;
         font-size: 13px;
     }

     .social-connect-banner {
         padding: 30px 20px;
     }

     .connect-buttons {
         flex-direction: column;
     }

     .connect-btn {
         width: 100%;
         justify-content: center;
     }
 }

 @media (min-width: 641px) and (max-width: 1024px) {
     .social-stats {
         flex-wrap: wrap;
     }
 }

 /* additional aos style (safe) */
 [data-aos] {
     pointer-events: all;
 }









 /* ========== FOOTER ========== */

 /* ===== BIZSEVAK ULTRA PREMIUM FOOTER ===== */
 .biz-footer {
     position: relative;
     background: linear-gradient(145deg, #0a1a2f, #0f2b44, #1a3a5f);
     color: white;
     padding: 80px 0 30px;
     font-family: 'Inter', sans-serif;
     overflow: hidden;
 }

 /* Background Elements */
 .biz-footer-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .biz-footer-gradient {
     position: absolute;
     top: -30%;
     right: -10%;
     width: 60%;
     height: 150%;
     background: radial-gradient(circle, rgba(243, 164, 59, 0.1) 0%, transparent 70%);
     filter: blur(60px);
 }

 .biz-footer-pattern {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
     background-size: 40px 40px;
     opacity: 0.3;
 }

 .biz-footer-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px;
     position: relative;
     z-index: 10;
 }

 /* Main Footer Grid */
 .biz-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.2fr;
     gap: 50px;
     margin-bottom: 50px;
 }

 /* Footer Columns */
 .biz-footer-col {
     display: flex;
     flex-direction: column;
 }

 /* Logo Section */
 .biz-footer-logo {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px;
 }

 .biz-logo-text {
     font-size: 28px;
     font-weight: 800;
     background: linear-gradient(135deg, #ffffff, #f3a43b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .biz-logo-badge {
     font-size: 12px;
     font-weight: 600;
     padding: 4px 10px;
     background: rgba(243, 164, 59, 0.15);
     border: 1px solid rgba(243, 164, 59, 0.3);
     border-radius: 30px;
     color: #f3a43b;
 }

 /* About Text */
 .biz-footer-about {
     font-size: 14px;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 25px;
     max-width: 300px;
 }

 /* Contact Info */
 .biz-contact-info {
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-bottom: 25px;
 }

 .biz-contact-item {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.8);
     transition: all 0.3s ease;
 }

 .biz-contact-item i {
     width: 30px;
     height: 30px;
     background: rgba(243, 164, 59, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #f3a43b;
     font-size: 14px;
     transition: all 0.3s ease;
 }

 .biz-contact-item:hover {
     transform: translateX(5px);
 }

 .biz-contact-item:hover i {
     background: rgba(243, 164, 59, 0.2);
     transform: scale(1.1);
 }

 /* Social Links */
 .biz-social-links h5 {
     font-size: 15px;
     font-weight: 600;
     color: white;
     margin-bottom: 15px;
 }

 .biz-social-icons {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }

 .biz-social-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 18px;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .biz-social-icon:hover {
     transform: translateY(-5px);
 }

 .biz-social-icon.facebook:hover {
     background: #1877f2;
     box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
 }

 .biz-social-icon.instagram:hover {
     background: linear-gradient(135deg, #f09433, #d62976, #962fbf);
     box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
 }

 .biz-social-icon.twitter:hover {
     background: #1da1f2;
     box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
 }

 .biz-social-icon.linkedin:hover {
     background: #0077b5;
     box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
 }

 .biz-social-icon.youtube:hover {
     background: #ff0000;
     box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
 }

 .biz-social-icon.whatsapp:hover {
     background: #25d366;
     box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
 }

 /* Footer Column Headers */
 .biz-footer-col h4 {
     font-size: 18px;
     font-weight: 700;
     color: white;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 .biz-footer-col h4::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 3px;
     background: linear-gradient(90deg, #f3a43b, transparent);
     border-radius: 3px;
 }

 /* Footer Links */
 .biz-footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .biz-footer-links li {
     margin-bottom: 12px;
 }

 .biz-footer-links a {
     display: flex;
     align-items: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 14px;
     transition: all 0.3s ease;
 }

 .biz-footer-links a i {
     font-size: 12px;
     color: #f3a43b;
     transition: all 0.3s ease;
 }

 .biz-footer-links a:hover {
     color: #f3a43b;
     transform: translateX(5px);
 }

 .biz-footer-links a:hover i {
     transform: translateX(3px);
 }

 /* Stats Bar */
 .biz-footer-stats {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 30px;
     padding: 30px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 30px;
     flex-wrap: wrap;
 }

 .biz-stat-item {
     text-align: center;
 }

 .biz-stat-number {
     display: block;
     font-size: 28px;
     font-weight: 800;
     color: #f3a43b;
     line-height: 1.2;
 }

 .biz-stat-label {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.6);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .biz-stat-divider {
     width: 4px;
     height: 4px;
     background: #f3a43b;
     border-radius: 50%;
 }

 /* Payment Partners */
 .biz-payment-partners {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
     padding: 20px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 30px;
 }

 .biz-payment-label {
     font-size: 14px;
     font-weight: 600;
     color: white;
 }

 .biz-payment-icons {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .biz-payment-icons i {
     font-size: 28px;
     color: rgba(255, 255, 255, 0.6);
     transition: all 0.3s ease;
 }

 .biz-payment-icons i:hover {
     color: #f3a43b;
     transform: translateY(-3px);
 }

 /* Newsletter Section */
 .biz-newsletter {
     background: rgba(255, 255, 255, 0.03);
     border-radius: 16px;
     padding: 30px;
     margin-bottom: 30px;
     border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .biz-newsletter-content {
     max-width: 600px;
     margin: 0 auto;
     text-align: center;
 }

 .biz-newsletter-content h5 {
     font-size: 20px;
     font-weight: 700;
     color: white;
     margin-bottom: 10px;
 }

 .biz-newsletter-content p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.6);
     margin-bottom: 20px;
 }

 .biz-newsletter-form {
     display: flex;
     gap: 10px;
     max-width: 500px;
     margin: 0 auto;
 }

 .biz-newsletter-form input {
     flex: 1;
     padding: 14px 20px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     color: white;
     font-size: 14px;
     outline: none;
     transition: all 0.3s ease;
 }

 .biz-newsletter-form input:focus {
     border-color: #f3a43b;
     background: rgba(255, 255, 255, 0.08);
 }

 .biz-newsletter-form input::placeholder {
     color: rgba(255, 255, 255, 0.4);
 }

 .biz-newsletter-form button {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 14px 30px;
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     border: none;
     border-radius: 12px;
     color: #0f3b5e;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .biz-newsletter-form button:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(243, 164, 59, 0.3);
 }

 .biz-newsletter-form button i {
     transition: transform 0.3s ease;
 }

 .biz-newsletter-form button:hover i {
     transform: translateX(5px);
 }

 /* Footer Bottom */
 .biz-footer-bottom {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .biz-copyright p {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.5);
     margin-bottom: 5px;
 }

 .biz-copyright strong {
     color: #f3a43b;
 }

 .biz-tagline {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.3);
 }

 .biz-footer-badges {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .biz-badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 6px 12px;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 30px;
     font-size: 11px;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.8);
     transition: all 0.3s ease;
 }

 .biz-badge i {
     color: #f3a43b;
     font-size: 12px;
 }

 .biz-badge:hover {
     background: rgba(243, 164, 59, 0.1);
     border-color: #f3a43b;
     transform: translateY(-2px);
 }

 /* ===== RESPONSIVE ===== */
 @media screen and (max-width: 1024px) {
     .biz-footer-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 40px;
     }

     .biz-footer-container {
         padding: 0 30px;
     }
 }

 @media screen and (max-width: 768px) {
     .biz-footer {
         padding: 60px 0 20px;
     }

     .biz-footer-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .biz-footer-col {
         text-align: center;
     }

     .biz-footer-logo {
         justify-content: center;
     }

     .biz-footer-about {
         margin-left: auto;
         margin-right: auto;
     }

     .biz-contact-item {
         justify-content: center;
     }

     .biz-social-icons {
         justify-content: center;
     }

     .biz-footer-col h4::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .biz-footer-links a {
         justify-content: center;
     }

     .biz-footer-stats {
         flex-direction: column;
         gap: 15px;
     }

     .biz-stat-divider {
         display: none;
     }

     .biz-payment-partners {
         flex-direction: column;
         text-align: center;
     }

     .biz-payment-icons {
         justify-content: center;
     }

     .biz-newsletter-form {
         flex-direction: column;
     }

     .biz-footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .biz-footer-badges {
         justify-content: center;
     }
 }

 @media screen and (max-width: 480px) {
     .biz-footer-container {
         padding: 0 20px;
     }

     .biz-stat-number {
         font-size: 24px;
     }

     .biz-payment-icons i {
         font-size: 24px;
     }

     .biz-footer-links a {
         font-size: 13px;
     }
 }

 /* ========== FLOATING BUTTONS ========== */
 /* WhatsApp Float Button */
 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #25d366, #128C7E);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 30px;
     box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
     z-index: 999;
     text-decoration: none;
     transition: all 0.3s ease;
     animation: whatsappPulse 2s infinite;
 }

 .whatsapp-float:hover {
     transform: scale(1.1) rotate(5deg);
     background: linear-gradient(135deg, #128C7E, #075e54);
     box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
 }

 @keyframes whatsappPulse {
     0% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
 }

 /* Back to Top Button */
 .back-to-top {
     position: fixed;
     bottom: 100px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
     color: white;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: none;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     z-index: 999;
     box-shadow: 0 5px 15px rgba(15, 59, 94, 0.3);
     transition: all 0.3s ease;
 }

 .back-to-top.show {
     display: flex;
 }

 .back-to-top:hover {
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(243, 164, 59, 0.4);
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .whatsapp-float {
         bottom: 20px;
         right: 20px;
         width: 50px;
         height: 50px;
         font-size: 25px;
     }

     .back-to-top {
         bottom: 80px;
         right: 20px;
         width: 40px;
         height: 40px;
         font-size: 20px;
     }
 }


 /* ========== RESPONSIVE DESIGN ========== */
 @media (max-width: 1024px) {

     .categories-grid,
     .themes-grid,
     .platform-grid,
     .benefits-grid,
     .why-grid,
     .pricing-grid,
     .testimonials-grid,
     .marketing-grid,
     .social-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .branding-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {

     .domain-grid,
     .contact-grid,
     .categories-grid,
     .themes-grid,
     .platform-grid,
     .benefits-grid,
     .why-grid,
     .pricing-grid,
     .testimonials-grid,
     .marketing-grid,
     .branding-grid,
     .faq-grid,
     .social-grid,
     .social-row {
         grid-template-columns: 1fr;
     }

     .hero-buttons .btn-primary,
     .hero-buttons .btn-outline {
         width: 100%;
     }

     .trust-grid {
         gap: var(--space-sm);
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }
 }















 .features-section {
     padding: 60px 0;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
 }

 @media (min-width: 640px) {
     .features-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .features-grid {
         grid-template-columns: repeat(5, 1fr);
     }
 }

 .feature-card {
     background: var(--gray-50);
     border-radius: var(--radius-lg);
     padding: 25px 15px;
     text-align: center;
     transition: var(--transition-base);
 }

 .feature-card:hover {
     background: white;
     box-shadow: var(--shadow-lg);
     transform: translateY(-5px);
 }

 .feature-card i {
     font-size: 36px;
     color: var(--primary-navy);
     margin-bottom: 15px;
 }


 .services-section {
     padding: 60px 0;
     background: linear-gradient(145deg, var(--gray-50), white);
 }

 .services-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 25px;
 }

 @media (min-width: 768px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 .service-block {
     background: white;
     border-radius: var(--radius-xl);
     padding: 30px;
     box-shadow: var(--shadow-lg);
 }

 .service-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .service-header i {
     font-size: 36px;
     color: var(--accent-saffron);
 }

 .service-list {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 10px;
 }

 .service-item {
     background: var(--gray-50);
     padding: 12px;
     border-radius: var(--radius-md);
     text-align: center;
 }









 /* Global Styles - Biz Sevak Brand Colors */
 .bizsevak-services {
     position: relative;
     padding: 100px 0;
     background: #f8fafc;
     font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
     overflow: hidden;
 }

 /* Premium Background Elements */
 .bg-orb {
     position: absolute;
     top: -50%;
     right: -10%;
     width: 80%;
     height: 200%;
     background: radial-gradient(circle, rgba(15, 59, 94, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     filter: blur(60px);
     pointer-events: none;
 }

 .bg-grid {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(15, 59, 94, 0.02) 1px, transparent 1px),
         linear-gradient(90deg, rgba(243, 164, 59, 0.02) 1px, transparent 1px);
     background-size: 50px 50px;
     pointer-events: none;
 }

 .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 30px;
     position: relative;
     z-index: 10;
 }

 /* Premium Header - Biz Sevak Brand */
 .section-header {
     text-align: center;
     margin-bottom: 70px;
 }

 .main-heading {
     margin-bottom: 20px;
 }

 .heading-gradient {
     font-size: 52px;
     font-weight: 800;
     color: #0f3b5e;
     display: block;
     line-height: 1.2;
 }

 .heading-block {
     font-size: 40px;
     font-weight: 600;
     color: #f3a43b;
     display: block;
     line-height: 1.2;
 }

 .header-description {
     font-size: 18px;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
 }

 /* Cards Grid */
 .cards-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     margin-bottom: 60px;
 }

 /* Premium Card Base */
 .premium-card {
     background: white;
     border-radius: 30px;
     padding: 30px 25px;
     position: relative;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     min-height: 650px;
     display: flex;
     flex-direction: column;
     box-shadow: 0 15px 30px -10px rgba(15, 59, 94, 0.1);
     border: 1px solid #e2e8f0;
 }

 .premium-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 40px -10px rgba(243, 164, 59, 0.2);
     border-color: #f3a43b;
 }

 /* Card Ribbon */
 .card-ribbon {
     position: absolute;
     top: 20px;
     right: -30px;
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
     color: #0f3b5e;
     padding: 8px 40px;
     font-size: 12px;
     font-weight: 700;
     transform: rotate(45deg);
     z-index: 20;
     letter-spacing: 1px;
     box-shadow: 0 5px 15px rgba(243, 164, 59, 0.3);
 }

 /* Card Glow Effect */
 .card-glow {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at top right, rgba(243, 164, 59, 0.05), transparent 70%);
     opacity: 0;
     transition: opacity 0.4s;
     pointer-events: none;
 }

 .premium-card:hover .card-glow {
     opacity: 1;
 }

 /* Card Background Patterns */
 .card-bg-circuit {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCI+PHBhdGggZD0iTTIwIDIwaDQwdjQwSDIweiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMGYzYjVlIiBzdHJva2Utd2lkdGg9IjEiIG9wYWNpdHk9IjAuMSIvPjxwYXRoIGQ9Ik0zMCAzMGgyMHYyMEgzMHoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzBmM2I1ZSIgc3Ryb2tlLXdpZHRoPSIxIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
     background-repeat: repeat;
     opacity: 0.3;
     z-index: 1;
 }

 .card-bg-wave {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent 45%, #f3a43b10 50%, transparent 55%);
     background-size: 200% 200%;
     z-index: 1;
 }

 .card-bg-art {
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at top right, #f3a43b15, transparent 70%);
     z-index: 1;
 }

 .card-bg-studio {
     position: absolute;
     top: 20%;
     right: 20%;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, #f3a43b20, transparent 70%);
     border-radius: 50%;
     filter: blur(30px);
     z-index: 1;
 }

 .card-bg-cart {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: repeating-linear-gradient(45deg, #0f3b5e10 0px, #0f3b5e10 20px, transparent 20px, transparent 40px);
     z-index: 1;
 }

 .card-bg-corporate {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, #0f3b5e08, #0f3b5e02);
     z-index: 1;
 }

 .card-bg-write {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: repeating-linear-gradient(0deg, transparent, transparent 19px, #f3a43b10 20px);
     z-index: 1;
 }

 .card-bg-chart {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #0f3b5e08, #f3a43b05);
     z-index: 1;
 }

 /* Icon Wrapper */
 .card-icon-wrapper {
     position: relative;
     width: 90px;
     height: 90px;
     margin-bottom: 25px;
     z-index: 10;
 }

 .icon-container {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #0f3b5e, #1f5a8e);
     border-radius: 25px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 12;
     transition: all 0.3s;
     box-shadow: 0 10px 20px -5px rgba(15, 59, 94, 0.3);
 }

 .premium-card:hover .icon-container {
     transform: scale(1.1) rotate(5deg);
     background: linear-gradient(135deg, #f3a43b, #fbbf24);
 }

 .icon-container i {
     font-size: 40px;
     color: white;
     transition: all 0.3s;
 }

 .premium-card:hover .icon-container i {
     color: #0f3b5e;
 }

 .icon-pulse {
     position: absolute;
     top: -10px;
     left: -10px;
     right: -10px;
     bottom: -10px;
     border: 2px solid #f3a43b;
     border-radius: 35px;
     animation: pulse 2s infinite;
     z-index: 11;
     opacity: 0.3;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.3;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.1;
     }
 }

 /* Card Title */
 .card-title {
     font-size: 26px;
     font-weight: 700;
     color: #0f3b5e;
     margin-bottom: 20px;
     line-height: 1.2;
     position: relative;
     z-index: 10;
 }

 .card-title span {
     display: block;
     font-size: 20px;
     font-weight: 400;
     color: #f3a43b;
 }

 /* Features List - With Numbers and Icons */
 .service-features {
     list-style: none;
     padding: 0;
     position: relative;
     z-index: 10;
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin: 0 0 20px;
 }

 .service-features li {
     color: #475569;
     font-size: 14px;
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 6px 0;
     border-bottom: 1px dashed #e2e8f0;
 }

 .service-number {
     display: inline-block;
     width: 28px;
     height: 28px;
     background: #f1f5f9;
     border-radius: 50%;
     text-align: center;
     line-height: 28px;
     font-size: 12px;
     font-weight: 600;
     color: #0f3b5e;
     transition: all 0.3s;
 }

 .premium-card:hover .service-number {
     background: #f3a43b;
     color: white;
 }

 .service-features i {
     font-size: 14px;
     width: 18px;
 }

 .card-web .service-features i {
     color: #0f3b5e;
 }

 .card-marketing .service-features i {
     color: #f3a43b;
 }

 .card-branding .service-features i {
     color: #0f3b5e;
 }

 .card-media .service-features i {
     color: #f3a43b;
 }

 .card-ecommerce .service-features i {
     color: #0f3b5e;
 }

 .card-erp .service-features i {
     color: #0f3b5e;
 }

 .card-content .service-features i {
     color: #f3a43b;
 }

 .card-consulting .service-features i {
     color: #0f3b5e;
 }

 /* Card Footer */
 .card-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: auto;
     position: relative;
     z-index: 10;
     padding-top: 20px;
     border-top: 2px solid #e2e8f0;
 }

 .price-tag {
     display: flex;
     flex-direction: column;
 }

 .price-label {
     font-size: 11px;
     color: #94a3b8;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .price-value {
     font-size: 22px;
     font-weight: 700;
     color: #0f3b5e;
 }

 .card-cta {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 20px;
     background: #0f3b5e;
     border-radius: 30px;
     color: white;
     text-decoration: none;
     font-size: 13px;
     font-weight: 500;
     transition: all 0.3s;
 }

 .card-cta:hover {
     background: #f3a43b;
     gap: 12px;
     color: #0f3b5e;
 }

 .card-cta i {
     font-size: 12px;
     transition: transform 0.3s;
 }

 .card-cta:hover i {
     transform: translateX(5px);
 }

 /* Responsive */
 @media (max-width: 1200px) {
     .cards-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .heading-gradient {
         font-size: 44px;
     }

     .heading-block {
         font-size: 36px;
     }
 }

 @media (max-width: 768px) {
     .cards-grid {
         grid-template-columns: 1fr;
     }

     .heading-gradient {
         font-size: 36px;
     }

     .heading-block {
         font-size: 30px;
     }

     .premium-card {
         min-height: auto;
     }
 }







 /* ===== COMPLETE RESPONSIVE FIXES - OPTIMIZED ===== */

 /* Fix for Horizontal Overflow */
 body,
 html {
     overflow-x: hidden;
     width: 100%;
     max-width: 100%;
 }

 img,
 video,
 iframe {
     max-width: 100%;
     height: auto;
 }

 /* Small Mobile Devices (320px - 480px) */
 @media screen and (max-width: 480px) {

     /* Container Padding */
     .container,
     .container-fluid {
         padding-left: 15px;
         padding-right: 15px;
         width: 100%;
         max-width: 100%;
     }

     /* Typography */
     h1,
     .hero-title {
         font-size: 28px;
         line-height: 1.3;
     }

     h2,
     .section-header h2,
     .gradient-heading {
         font-size: 26px;
         line-height: 1.3;
     }

     h3,
     .card-title {
         font-size: 22px;
     }

     p,
     .header-description,
     .card-description {
         font-size: 15px;
         line-height: 1.5;
     }

     /* Section Padding */
     section {
         padding: 40px 0;
     }

     .section-header {
         margin-bottom: 30px;
     }

     /* Hero Section */
     .hero-banner {
         min-height: auto;
         padding: 40px 0;
     }

     .hero-content {
         padding: 25px 20px;
         border-radius: 20px;
     }

     .hero-premium-badge {
         font-size: 11px;
         padding: 6px 15px;
     }

     .special-line {
         font-size: 13px;
         padding: 10px 12px;
         flex-wrap: wrap;
     }

     .feature-pills {
         flex-direction: column;
         gap: 8px;
     }

     .pill {
         width: 100%;
         justify-content: center;
     }

     .cta-buttons {
         flex-direction: column;
         gap: 10px;
     }

     .btn-premium-primary,
     .btn-premium-outline {
         width: 100%;
         justify-content: center;
     }

     /* Trust Strip */
     .trust-grid {
         flex-direction: column;
         gap: 12px;
         text-align: center;
     }

     .top-trust-item {
         width: 100%;
         justify-content: center;
     }

     .payment-icons {
         justify-content: center;
     }

     /* Categories Grid */
     .categories-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .category-card {
         padding: 25px 20px;
     }

     .icon-container {
         width: 70px;
         height: 70px;
     }

     .icon-container i {
         font-size: 32px;
     }

     .category-title {
         font-size: 20px;
     }

     .subcategories {
         gap: 6px;
     }

     .subcategory-item {
         font-size: 11px;
         padding: 5px 10px;
     }

     /* Themes Grid */
     .themes-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .theme-card {
         margin: 0;
     }

     .theme-preview {
         height: 180px;
     }

     .theme-info {
         padding: 20px;
     }

     .theme-info h3 {
         font-size: 20px;
     }

     .theme-actions {
         flex-direction: column;
         gap: 8px;
     }

     .preview-btn,
     .select-btn {
         width: 100%;
     }

     .theme-filters {
         flex-wrap: wrap;
         gap: 8px;
     }

     .filter-btn {
         padding: 8px 16px;
         font-size: 12px;
     }

     /* Domain Section */
     .domain-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .domain-card {
         padding: 25px 20px;
     }

     .domain-search-box {
         flex-direction: column;
         gap: 10px;
     }

     .domain-search-box input,
     .domain-search-box button {
         width: 100%;
     }

     .suggested-domains {
         flex-wrap: wrap;
         justify-content: center;
     }

     /* Platform Features */
     .platform-grid,
     .benefits-grid,
     .pricing-grid,
     .testimonials-grid,
     .marketing-grid,
     .branding-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .platform-card,
     .benefit-card,
     .pricing-card,
     .testimonial-card,
     .marketing-card,
     .branding-card,
     .social-card {
         padding: 25px 20px;
     }

     /* Why Grid */
     .why-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     /* Biz Sevak Services Cards */
     .cards-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .premium-card {
         min-height: auto;
         padding: 25px 20px;
     }

     .card-icon-wrapper {
         width: 70px;
         height: 70px;
     }

     .icon-container {
         width: 60px;
         height: 60px;
     }

     .icon-container i {
         font-size: 30px;
     }

     .card-title {
         font-size: 22px;
     }

     .card-title span {
         font-size: 18px;
     }

     .service-features {
         grid-template-columns: 1fr;
         gap: 8px;
     }

     .service-features li {
         font-size: 13px;
     }

     .card-footer {
         flex-direction: column;
         gap: 15px;
         align-items: flex-start;
     }

     .price-tag {
         width: 100%;
     }

     .card-cta {
         width: 100%;
         justify-content: center;
     }

     .card-ribbon {
         font-size: 10px;
         padding: 6px 30px;
     }

     /* Why Choose Us */
     .why-card {
         padding: 30px 20px;
         min-height: auto;
     }

     .card-icon-wrapper {
         width: 80px;
         height: 80px;
     }

     .icon-box {
         width: 70px;
         height: 70px;
     }

     .icon-box i {
         font-size: 35px;
     }

     .why-card h3 {
         font-size: 24px;
     }

     .why-card h3 span {
         font-size: 18px;
     }

     .card-stats {
         gap: 20px;
     }

     .stat-value {
         font-size: 24px;
     }

     /* Comparison Table - FIXED */
     .comparison-wrapper {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
     }

     .comparison-table {
         min-width: 750px;
         /* Increased from 600px */
         width: 100%;
         border-collapse: collapse;
     }

     .comparison-table th,
     .comparison-table td {
         padding: 12px 10px;
         font-size: 13px;
         white-space: normal;
         vertical-align: middle;
     }

     .feature-name {
         display: flex;
         align-items: center;
         gap: 8px;
     }

     .feature-name i {
         font-size: 16px;
         min-width: 20px;
     }

     .cell-content {
         display: flex;
         flex-direction: column;
         gap: 3px;
     }

     .cell-content i {
         margin-right: 5px;
     }

     .sub-text {
         font-size: 11px;
         margin-left: 22px;
     }

     /* Contact Section */
     .contact-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .contact-method {
         padding: 15px;
     }

     .business-hours {
         padding: 20px;
     }

     /* Social Media */
     .social-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .social-row {
         grid-template-columns: 1fr;
     }

     .social-card-header {
         flex-direction: column;
         text-align: center;
     }

     .social-stats {
         flex-direction: column;
         gap: 15px;
     }

     .followers-count,
     .posts-count,
     .engagement-rate {
         width: 100%;
         border: none;
     }

     /* FAQ Section */
     .faq-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }

     .faq-item {
         padding: 20px;
     }

     /* Footer */
     .footer-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .footer-col {
         text-align: center;
     }

     .social-links {
         justify-content: center;
     }

     /* Floating Buttons */
     .whatsapp-float {
         bottom: 15px;
         right: 15px;
         width: 50px;
         height: 50px;
         font-size: 25px;
         z-index: 9999;
     }

     .back-to-top {
         bottom: 75px;
         right: 15px;
         width: 40px;
         height: 40px;
         font-size: 20px;
         z-index: 9999;
     }
 }

 /* Tablet Devices (481px - 768px) */
 @media screen and (min-width: 481px) and (max-width: 768px) {
     .container {
         padding-left: 20px;
         padding-right: 20px;
     }

     h1,
     .hero-title {
         font-size: 34px;
     }

     h2,
     .gradient-heading {
         font-size: 32px;
     }

     .categories-grid,
     .cards-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .why-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .themes-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .pricing-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .platform-grid,
     .benefits-grid,
     .testimonials-grid,
     .marketing-grid,
     .branding-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .trust-grid {
         flex-wrap: wrap;
         justify-content: center;
     }

     /* Comparison Table */
     .comparison-table {
         min-width: 700px;
     }
 }

 /* Large Tablets (769px - 1024px) */
 @media screen and (min-width: 769px) and (max-width: 1024px) {
     .container {
         max-width: 960px;
     }

     .categories-grid,
     .cards-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .themes-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .why-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .pricing-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }
