       :root {
            --primary-color: #0097d7;
            --secondary-color: #0d2f7b;
            --success-color: #0d2f7b;
            --warning-color: #d97706;
            --danger-color: #dc2626;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border-light: #e5e7eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

         /* Sticky Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 0;
            transition: all 0.3s ease;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030; /* Higher than default Bootstrap z-index */
        }
        
        .navbar-brand img {
            height: 40px;
            transition: height 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
            background: rgba(37, 99, 235, 0.05);
        }
        
        .btn-nav-cta {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-nav-cta:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }
    
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin-top: 0.5rem;
            }
        }
       


        /* Navigation */
              /* Navigation Styles */
        
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand img {
            height: 40px;
            transition: height 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
            background: rgba(37, 99, 235, 0.05);
        }
        
        .navbar-nav .nav-link:focus {
            color: var(--primary-color);
        }
        
        .btn-nav-cta {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-nav-cta:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            font-size: 1.2rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Phone number in nav */
        .nav-phone {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            margin-right: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .nav-phone:hover {
            color: var(--primary-color);
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin-top: 0.5rem;
            }
            
            .navbar-nav {
                padding: 0.5rem 0;
            }
            
            /* .navbar-nav .nav-link {
                margin: 0.2rem 0;
                padding: 0.8rem 1rem;
            } */
            
            .d-flex {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-phone {
                margin: 0.5rem 0;
                justify-content: center;
            }
            
            .btn-nav-cta {
                width: 100%;
                text-align: center;
                margin: 0.5rem 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .navbar-brand img {
                height: 35px;
            }
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 2.8rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 600px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn-hero-primary {
            background: white;
            color: var(--primary-color);
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            color: var(--primary-color);
        }

        .btn-hero-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-hero-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            color: white;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            color: white;
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            display: block;
            color: rgba(255,255,255,0.95);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .hero-image {
            position: relative;
        }

        .mockup-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .mockup-screen {
            width: 100%;
            height: 300px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .dashboard-preview {
            width: 90%;
            height: 90%;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            padding: 1rem;
        }

        .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .preview-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
            flex: 1;
        }

        .preview-card {
            background: white;
            border-radius: 6px;
            padding: 0.8rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: center;
        }

        /* Trust Section */
        
        /* Features Section */
        .features-section {
            padding: 5rem 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 100%;
}

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--success-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--success-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 5rem 0;
            background: var(--bg-light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid var(--border-light);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-badge {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .pricing-plan {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 2rem;
            color: var(--text-light);
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
        }

        .pricing-cta {
            width: 100%;
            padding: 1rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .pricing-cta:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 5rem 0;
            background: white;
        }

        .testimonial-slider {
            position: relative;
            margin-top: 3rem;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 1rem;
        }

        .testimonial-card {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-quote {
            font-size: 1.3rem;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--success-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
        }

        .author-info h4 {
            margin: 0;
            color: var(--text-dark);
            font-weight: 600;
        }

        .author-info p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-btn {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-btn:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }

        /* Demo Section */
        .demo-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .demo-content {
            text-align: center;
        }

        .demo-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 2rem;
            max-width: 500px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: white;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-control:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.15);
        }

        .demo-btn {
            width: 100%;
            padding: 1rem;
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h5 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-stats {
                justify-content: center;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .btn-hero-primary,
            .btn-hero-secondary {
                flex: 1;
                min-width: 200px;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
            
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

   /* General */
section {
  padding: 5rem 1rem;
}
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

/* About Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card i {
  font-size: 2rem;
  /* margin-bottom: 1rem; */
  color: var(--primary-color);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
}
.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Integrations */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.integration-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.integration-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #007bff;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  padding: 4rem 1rem;
  border-radius: 16px 16px 0 0;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: #111;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-cta:hover {
  background: #333;
}
.btn-cta i {
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .cta-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 8px;
                margin-top: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            
            .hero-section {
                padding-top: 100px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.0rem;
            }
            
            .hero-subtitle {
                margin: 0 auto 2rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-hero-primary, .btn-hero-secondary {
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .hero-stats {
                justify-content: center;
                gap: 1.5rem;
            }
            
            .stat-item {
                /* flex: 0 0 calc(50% - 1rem); */
                margin-bottom: 1rem;
            }
            
            .mockup-container {
                margin-top: 2rem;
                padding: 1rem;
            }
            
            
            .feature-grid, .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .testimonial-card {
                padding: 2rem 1rem;
            }
            
            .testimonial-quote {
                font-size: 1.1rem;
            }
            
            .demo-content {
                margin-bottom: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-bottom .col-md-6 {
                text-align: center !important;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .hero-title {
                font-size: 1.6rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            
            .feature-card, .pricing-card {
                padding: 1.5rem;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .author-info {
                margin-top: 1rem;
            }
            
            .preview-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .integrations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-badge {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            
            /* .stat-item {
                flex: 0 0 100%;
            } */
            
          
            .preview-cards {
                grid-template-columns: 1fr;
            }
            
            .integrations-grid {
                grid-template-columns: 1fr;
            }
            
            .steps-grid, .features-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-controls {
                margin-top: 1rem;
            }
            
            .testimonial-btn {
                width: 40px;
                height: 40px;
            }
            
            /* Floating CTA button */
            .floating-cta {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-cta a {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        
        /* Prevent horizontal scrolling */
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        
        /* Improved touch targets for mobile */
        .nav-link, .btn, .social-link {
            touch-action: manipulation;
        }
        
        /* Better form controls on mobile */
        input, select, textarea {
            font-size: 16px; /* Prevents zoom on iOS */
        }
        
        /* Add a specific class for the floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .floating-cta a {
            border-radius: 50px;
            padding: 1rem 1.5rem;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            animation: pulse 2s infinite;
            display: inline-block;
        }
        .feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-points li {
    position: relative;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}


/* Alternative using Font Awesome if you prefer */
.feature-points li i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Adjust feature card padding to accommodate the points */
.feature-card {
    padding: 1.5rem;
}

.feature-description {
    margin-bottom: 1rem;
}

.feature-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: 10px;
            margin-bottom: 0px;
        }


.feature-card .feature-link:hover {
    color: #0056b3;
}

/* Trust Section Slider Styles */
/* Trust Section Slider Styles - FIXED */


/* Navigation arrows */
/* Trust Section Slider Styles - FIXED */
        .trust-section {
            padding: 3rem 0;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .trust-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .trust-slider {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
        }

        .trust-slide {
            flex: 0 0 auto;
            display: flex;
            justify-content: center;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .trust-logo {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 20px;
            height: 140px;
            width: 100%;
            max-width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .trust-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .trust-logo img {
            max-width: 100%;
            max-height: 70px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Navigation arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
        }

        .slider-prev,
        .slider-next {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            font-size: 1.1rem;
        }

        .slider-prev:hover,
        .slider-next:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }

        /* Pagination dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d5db;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .trust-slide {
                width: 25%; /* 4 logos per row */
            }
        }

        @media (max-width: 992px) {
            .trust-slide {
                width: 33.333%; /* 3 logos per row */
            }
        }

        @media (max-width: 768px) {
            .trust-slide {
                width: 50%; /* 2 logos per row */
            }
            
            .slider-prev,
            .slider-next {
                width: 40px;
                height: 40px;
            }
            
            .trust-slider-container {
                padding: 0 40px;
            }
        }

        @media (max-width: 576px) {
            .trust-slide {
                width: 100%; /* 1 logo per row */
            }
            
            .slider-prev,
            .slider-next {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .trust-slider-container {
                padding: 0 35px;
            }
            
            .trust-logo {
                height: 120px;
                padding: 15px;
            }
        }

/* Social icons in navbar */
.social-icons-nav {
    display: flex;
    gap: 0.5rem;
}

.social-link-nav {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.social-link-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile view adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse .social-icons-nav {
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .navbar-collapse .nav-link {
        text-align: center;
    }
    
    .navbar-collapse .d-flex {
        flex-direction: column;
    }
    
    .navbar-collapse .btn-nav-cta {
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .social-icons-nav {
        justify-content: center;
        width: 100%;
        margin: 0.5rem 0;
    }
}
