/* Floating particles background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: linear-gradient(45deg, #dc2626, #ef4444);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100vh) rotate(360deg); }
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            border-top: 1px solid #d2d2d2;
        }
        .hero-text{
            padding: 0px 7px;
            border-right: 1px solid #d2d2d2;
        }
        .hero-text h1 {
            font-size:24px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease-out;
        }
        
        .hero-text .subtitle {
            font-size: 1.4rem;
            margin-bottom: 32px;
            opacity: 0.95;
            font-weight: 500;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-text .description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.7;
            animation: slideInLeft 1s ease-out 0.4s both;
        }
        
        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.6s both;
            margin-top:10px;
        }
        
        .hero-image img {
            /*width: 100%;*/
            /*height: auto;*/
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            /*transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);*/
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            /*transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);*/
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1s ease-out 0.8s both;
           justify-content: center;
        }
        
        .btn-primary {
            background: white;
            color: #dc2626;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255,255,255,0.2);
        }
        
        .btn-primary:hover {
            background: #f8fafc;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 32px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            transform: translateY(-2px);
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Why Choose Section */
        .why-choose {
            padding: 50px 0;
            background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 0px;
        }
        
        .section-header h2 {
            font-size: 30px;
            font-weight: 800;
            color: #dc2626;
            margin-bottom: 20px;
            position: relative;
        }
        .section-header h6 {
            font-size: 28px;
            font-weight: 800;
            color: #dc2626;
            margin-bottom: 2px;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #ef4444);
            border-radius: 2px;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: #333;
            /*max-width: 600px;*/
            margin: 12px auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(220, 38, 38, 0.1);
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.05), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
            border-color: #dc2626;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .feature-card p {
            color: #333;
            line-height: 1.6;
            position: relative;
            z-index: 2;
            /*height: 155px*/
        }
        
        /* CRM Tools Section */
        .crm-tools {
            padding: 100px 0;
            background: white;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }
        
        .tool-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 30px;
            background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
            border-radius: 20px;
            transition: all 0.3s ease;
            border-left: 4px solid #dc2626;
        }

        .tool-item:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 30px rgba(220, 38, 38, 0.1);
        }
        
        .tool-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .tool-icon img {
            width: 30px;
            height: 30px;
            filter: brightness(0) invert(1);
        }
        
        .tool-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        
        .tool-content p {
            color: #64748b;
            line-height: 1.6;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 100px 0px 35px 0px;
            /*background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);*/
            background:linear-gradient(135deg, #dc2626b3 0%, #b91c1c 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><polygon points="0,0 1000,100 1000,0"/></svg>');
            background-size: cover;
            z-index: 1;
        }
        
        .benefits .container {
            position: relative;
            z-index: 2;
        }
        
        .benefits .section-header h2 {
            color: white;
        }

        .benefits .section-header h2::after {
            background: linear-gradient(90deg, white, rgba(255,255,255,0.7));
        }
        
        .benefits .section-header p {
            color: rgba(255,255,255,0.9);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .benefit-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }
        
        .benefit-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 25px;
            border: 4px solid rgba(255,255,255,0.3);
            object-fit: cover;
        }
        
        .benefit-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .benefit-card p {
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
        }
        
        /* Dashboard Section */
        .dashboard-preview {
            padding: 38px 0;
            background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
            text-align: center;
        }
        
        .dashboard-preview img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(220, 38, 38, 0.2);
            margin-top: 20px;
            transition: transform 0.3s ease;
        }

        .dashboard-preview img:hover {
            transform: scale(1.02);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }
        
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #dc2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .trial-note {
            margin-top: 30px;
            font-size: 1rem;
            opacity: 0.8;
        }
        
        /* Support Section */
        .support {
            padding: 25px 0;
            background: white;
            text-align: center;
            position: relative;
            margin-top:60px;
        }
        
         .support::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #D93C2A, transparent);
        }
        
        .support h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 25px;
        }
        
        .support p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 50px 0;
            text-align: center;
        }
        
        .footer h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 15px;
        }
        
        .footer p {
            color: #a1a1aa;
            font-size: 1rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
            
            .features-grid,
            .tools-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .tool-item {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }


        .faq-section {
            padding: 20px 20px 31px 20px;
  /* padding: 60px 20px; */
  background: #f9f9f9;
}

.faq-title {
  text-align: center;
  /* font-size: 2.5em; */
  font-size: 30px;;
  margin-bottom: 20px;
  color: #d9322f;
  margin-top:15px;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1em;
  color: #5f5f5f;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f0f8ff;
}

.faq-answer {
  display: none;
  padding: 20px;
  color: #333;
  border-top: 1px solid #eee;
}

.faq-answer a {
  color: #d9322f;
  text-decoration: underline;
}

.take_ {
    background: #d93c2a;
    font-size: 16px;
    color: #fff;
    min-width: 210px;
    padding: 15px;
    border-radius: 23px;
    text-align: center;
    margin: 16px 0 !important;
    display: inline-block;
}
.trial-note1{
    margin-top: 30px;
    font-size: 20px;
    opacity: 0.8;
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
}
.trial-note2{
    margin-top: 30px;
    font-size: 20px;
    opacity: 0.8;
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
}
.pricings{
  display: inline-block;
  background-color: #dc2626; /* bg-red-600 */
  color: #ffffff; /* text-white */
  font-weight: 600; /* font-semibold */
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem; /* px-6 */
  padding-top: 0.75rem; /* py-3 */
  padding-bottom: 0.75rem; /* py-3 */
  border-radius: 9999px; /* rounded-full */
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1); /* transition */
}

.pricings:hover {
  background-color: #b91c1c; /* hover:bg-red-700 */
}
.pricing_cls{
        display: flex;
    justify-content: center;
    margin-top: 25px;
}
.pricing_cls1{
        display: flex;
    justify-content: center;
    margin-top: 25px;
}
.pricings1{
  display: inline-block;
  background-color: #ffffff; /* bg-red-600 */
  color: #333; /* text-white */
  font-weight: 600; /* font-semibold */
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem; /* px-6 */
  padding-top: 0.75rem; /* py-3 */
  padding-bottom: 0.75rem; /* py-3 */
  border-radius: 9999px; /* rounded-full */
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1); /* transition */
}
.star{
    display:flex;
    justify-content:end;
    margin-top:-42px;
}
.star span{
    color: linear-gradient(45deg, #007BFF, #00CFFF);
    font-size: 28px;
    background: linear-gradient(135deg, #1159d5, #f63bc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
/*.feature_enter{*/
/*    border:1px solid rgb(74 38 220 / 10%);*/
/*}*/
/*.feature_enter:hover{*/
/*    border-color:#b226dc;*/
/*}*/
.star1{
     margin-top:14px;
}
.star1 span{
    color: linear-gradient(45deg, #007BFF, #00CFFF);
    font-size: 18px;
    background: linear-gradient(135deg, #1159d5, #f63bc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.sub_ti{
color: #898c93;
font-size: 0.95rem;
}
.star2{
    margin-top: -33px;
    margin-left: -24px;
    margin-right: -23px;
}
.star2 span{
    color: linear-gradient(45deg, #007BFF, #00CFFF);
    font-size: 25px;
    background: linear-gradient(135deg, #1159d5, #f63bc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.feat_en{
    border-left: 4px solid #9426dc;
}
.star3{
     margin-top:14px;
}
.star3 span{
    color: linear-gradient(45deg, #007BFF, #00CFFF);
    font-size: 18px;
    background: linear-gradient(135deg, #1159d5, #f63bc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
a:hover{
    text-decoration:none;
}
.start_:hover{
    color:#dc2626;
}
.pricings:hover{
    color:#ffffff;
}
.pricings1:hover{
    color:#000000;
    background:#eaeaea;
}
.btn_play{
    border: none;
    background: none;
    -webkit-transform: scale(1);
    transform: scale(1);
        background-color: #D93C2A !important;
    border: none;
    padding: 0px 12px;
    color: #FFFFFF;
    border-radius: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 29px 33% 1% 33%;
    height:63px;
}
.btn_play img{
    float: right;
    padding-left: 12px;
    margin-top:1px;
}
.video{
    
}
 .card-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 24px;
            background-size: cover;
            background-position: center;
            border: 4px solid var(--accent-color);
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }
  .small-business-img {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23e63946'/%3E%3Crect x='80' y='120' width='240' height='160' fill='white' opacity='0.9' rx='8'/%3E%3Crect x='100' y='140' width='200' height='20' fill='%23f28482' opacity='0.6'/%3E%3Crect x='100' y='170' width='160' height='15' fill='%23f28482' opacity='0.4'/%3E%3Crect x='100' y='195' width='180' height='15' fill='%23f28482' opacity='0.4'/%3E%3Ccircle cx='140' cy='240' r='20' fill='%23f28482' opacity='0.7'/%3E%3Ccircle cx='200' cy='240' r='20' fill='%23f28482' opacity='0.7'/%3E%3Ccircle cx='260' cy='240' r='20' fill='%23f28482' opacity='0.7'/%3E%3Crect x='150' y='80' width='100' height='40' fill='white' opacity='0.8' rx='20'/%3E%3Ctext x='200' y='105' text-anchor='middle' fill='%23e63946' font-family='Open Sans, sans-serif' font-size='14' font-weight='bold'%3ESMB%3C/text%3E%3C/svg%3E");

/*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23e63946'/%3E%3Crect x='80' y='120' width='240' height='160' fill='white' opacity='0.9' rx='8'/%3E%3Crect x='100' y='140' width='200' height='20' fill='%23f28482' opacity='0.6'/%3E%3Crect x='100' y='170' width='160' height='15' fill='%23f28482' opacity='0.4'/%3E%3Crect x='100' y='195' width='180' height='15' fill='%23f28482' opacity='0.4'/%3E%3Ccircle cx='140' cy='240' r='20' fill='%23f28482' opacity='0.7'/%3E%3Ccircle cx='200' cy='240' r='20' fill='%23f28482' opacity='0.7'/%3E%3Ccircle cx='260' cy='240' r='20' fill='%23f28482' opacity='0.7'/%3E%3Crect x='150' y='80' width='100' height='40' fill='white' opacity='0.8' rx='20'/%3E%3Ctext x='200' y='105' text-anchor='middle' fill='%23e63946' font-family=''Open Sans',sans-serif' font-size='14' font-weight='bold'%3ESMB%3C/text%3E%3C/svg%3E");*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;        }
  
   .retail-img {
       background-size: cover;
  background-repeat: no-repeat;
  background-position: center;    
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><defs><linearGradient id='bg2' x1='0%' y1='0%' x2='100%' y2='100%'><stop offset='0%' style='stop-color:%23dc2626;stop-opacity:1' /><stop offset='100%' style='stop-color:%23ef4444;stop-opacity:1' /></linearGradient></defs><rect width='400' height='400' fill='url(%23bg2)'/><rect x='60' y='100' width='280' height='200' fill='white' opacity='0.9' rx='12'/><rect x='80' y='120' width='60' height='60' fill='%23dc2626' opacity='0.3' rx='4'/><rect x='160' y='120' width='60' height='60' fill='%23dc2626' opacity='0.3' rx='4'/><rect x='240' y='120' width='60' height='60' fill='%23dc2626' opacity='0.3' rx='4'/><rect x='80' y='200' width='60' height='60' fill='%23ef4444' opacity='0.3' rx='4'/><rect x='160' y='200' width='60' height='60' fill='%23ef4444' opacity='0.3' rx='4'/><rect x='240' y='200' width='60' height='60' fill='%23ef4444' opacity='0.3' rx='4'/><circle cx='320' cy='350' r='25' fill='white' opacity='0.8'/><circle cx='280' cy='350' r='25' fill='white' opacity='0.8'/><rect x='260' y='310' width='80' height='30' fill='white' opacity='0.8' rx='4'/></svg>");
}
    .service-img {
               background-size: cover;
  background-repeat: no-repeat;
  background-position: center;    
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="bg3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23dc2626;stop-opacity:1" /><stop offset="100%" style="stop-color:%23f87171;stop-opacity:1" /></linearGradient></defs><rect width="400" height="400" fill="url(%23bg3)"/><circle cx="150" cy="150" r="40" fill="white" opacity="0.8"/><circle cx="250" cy="150" r="40" fill="white" opacity="0.8"/><path d="M150 190 Q200 220 250 190" stroke="white" stroke-width="8" fill="none" opacity="0.8"/><rect x="120" y="250" width="160" height="80" fill="white" opacity="0.8" rx="8"/><rect x="140" y="270" width="120" height="8" fill="%23dc2626" opacity="0.6"/><rect x="140" y="290" width="100" height="8" fill="%23dc2626" opacity="0.4"/><rect x="140" y="310" width="80" height="8" fill="%23dc2626" opacity="0.4"/><circle cx="320" cy="120" r="15" fill="white" opacity="0.7"/><circle cx="320" cy="160" r="15" fill="white" opacity="0.7"/><line x1="300" y1="120" x2="280" y2="120" stroke="white" stroke-width="4" opacity="0.7"/><line x1="300" y1="160" x2="280" y2="160" stroke="white" stroke-width="4" opacity="0.7"/></svg>');
        }

    .startup-img {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;    
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="bg4" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23dc2626;stop-opacity:1" /><stop offset="100%" style="stop-color:%23ef4444;stop-opacity:1" /></linearGradient></defs><rect width="400" height="400" fill="url(%23bg4)"/><path d="M200 80 L220 140 L280 140 L235 180 L255 240 L200 210 L145 240 L165 180 L120 140 L180 140 Z" fill="white" opacity="0.8"/><rect x="150" y="280" width="100" height="60" fill="white" opacity="0.8" rx="8"/><rect x="160" y="290" width="80" height="8" fill="%23dc2626" opacity="0.6"/><rect x="160" y="310" width="60" height="8" fill="%23dc2626" opacity="0.4"/><rect x="160" y="330" width="70" height="8" fill="%23dc2626" opacity="0.4"/><circle cx="100" cy="100" r="8" fill="white" opacity="0.6"/><circle cx="120" cy="80" r="6" fill="white" opacity="0.6"/><circle cx="320" cy="120" r="8" fill="white" opacity="0.6"/><circle cx="300" cy="90" r="6" fill="white" opacity="0.6"/></svg>');
    }
    .card_fe{
        height:180px;
    }
    .take_pricings{
            cursor: pointer;
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    color: #dc2626;
    font-weight: 600;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 9999px;
    transition: background-color 150ms;
    border: 1px solid #dc2626;
    }
    .take_pricings:hover{
       
        position:relative;
        display: inline-block;
        background-color: #ffffff;
        color: #dc2626;
        font-weight: 600;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        border-radius: 9999px;
        transition: background-color 150ms;
        border: 1px solid #dc2626;
    }
    
    .container_contact {
            background: white;
            /*border-radius: 15px;*/
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            /*max-width: 1200px;*/
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        .info-section_contact {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .info-section_contact::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="75" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .info-content_contact {
            position: relative;
            z-index: 2;
        }

        .info-section_contact h1 {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .info-section_contact p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .features_contact {
            list-style: none;
        }

        .features_contact li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.05em;
        }

        .features_contact li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #fff;
            font-weight: bold;
            font-size: 1.2em;
        }

        .form-section_contact {
            padding: 20px 50px;
            background: #f8f9fa;
        }

        .form-header_contact {
            text-align: center;
            margin-bottom: 20px;
        }

        .form-header_contact h2 {
            color: #333;
            font-size: 2.2em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .form-header_contact p {
            color: #7f8c8d;
            font-size: 1.1em;
        }

        .form-group_contact {
            margin-bottom: 10px;
        }

        .form-group_contact label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 0.95em;
        }

        .required_contact {
            color: #e74c3c;
        }

        .form-group_contact input,
        .form-group_contact textarea {
            width: 100%;
            padding: 8px;
            border: 2px solid #e1e8ed;
            border-radius: 8px;
            font-size: 1em;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group_contact input:focus,
        .form-group_contact textarea:focus {
            outline: none;
            border-color: #e74c3c;
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
        }

        .form-group_contact textarea {
            height: 100px;
            resize: vertical;
        }

        .email-note_contact {
            font-size: 0.85em;
            color: #7f8c8d;
            margin-top: 5px;
        }

        .submit-btn_contact {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .submit-btn_contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
        }

        .submit-btn_contact:active {
            transform: translateY(0);
        }

        .privacy-notice_contact {
            font-size: 0.85em;
            color: #7f8c8d;
            text-align: center;
            margin-top: 20px;
            line-height: 1.4;
        }

        .privacy-notice_contact a {
            color: #e74c3c;
            text-decoration: none;
        }

        .privacy-notice_contact a:hover {
            text-decoration: underline;
        }

        .support-info_contact {
            background: #ecf0f1;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
        }

        .support-info_contact p {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 5px;
        }

        .support-info_contact a {
            color:#dc2626;
            text-decoration: none;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .container_contact {
                grid-template-columns: 1fr;
            }
            
            .info-section_contact,
            .form-section_contact {
                padding: 40px 30px;
            }
            
            .info-section_contact h1 {
                font-size: 2em;
            }
            
            .form-header_contact h2 {
                font-size: 1.8em;
            }
        }
        header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #D93C2A;
    display: flex
;
    align-items: center;
    gap: 0.5rem;
    height: 50px;
}
.nav-links {
    display: flex
;
    list-style: none;
    gap: 2rem;
}
.cta-button {
    background: #D93C2A;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}





.hero-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            /*min-height: 100vh;*/
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            /*margin-top: 30px;*/
            margin-top: 91px;
    padding-top: 40px;
    padding-bottom: 30px;

        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(220,38,38,0.05) 0%, transparent 70%);
            animation: pulse 6s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.1; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 0px 0;
        }

        .hero-text {
            color: #1f2937;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .hero-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: #dc2626;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #dc2626;
            opacity: 0.9;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #333;
            opacity: 1;
        }

        .cta-button {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(220,38,38,0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(220,38,38,0.4);
            background: linear-gradient(135deg, #b91c1c, #991b1b);
            color:#fff;
        }

        .rocket-icon {
            font-size: 1.3rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-3px); }
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            /*transform: perspective(1000px) rotateY(-5deg);*/
            transition: transform 0.3s ease;
        }
         @keyframes float {

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

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

        .image-container:hover {
            /*transform: perspective(1000px) rotateY(0deg) scale(1.02);*/
        }

        .hero-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-circle {
            position: absolute;
            background: rgba(220,38,38,0.08);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 40px;
            height: 40px;
            bottom: 20%;
            left: 30%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .stats-overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(255,255,255,0.95);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-around;
            animation: slideUp 1s ease-out 0.5s both;
        }

        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .stat-item {
            text-align: center;
            color: #dc2626;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }

            .stats-overlay {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        /*price*/
        
        .hero-section_price {
            text-align: center;
            margin-bottom: 60px;
            color: #1f2937;
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            padding: 60px 40px;
            border-radius: 30px;
            margin-bottom: 80px;
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
            position: relative;
            overflow: hidden;
        }

        .hero-section_price::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }

        .hero-section_price h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: white;
            position: relative;
            z-index: 1;
        }

        .hero-section_price p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
            color: white;
            position: relative;
            z-index: 1;
        }

        .hero-section_price h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-section_price p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .cta-button_price {
            background: linear-gradient(45deg, #ffffff, #f8fafc);
            color: #dc2626;
            padding: 16px 40px;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            text-decoration: none;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

        .cta-button_price:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
            background: white;
        }

        .pricing-container_price {
            /*max-width: 1400px;*/
            margin: 10px 0px 20px  auto;
        }
       

        .pricing-title_price {
            text-align: center;
            color:#dc2626;
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-weight: 600;
        }

        .pricing-grid_price {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin:40px 25px 40px 25px;
        }

        .pricing-card_price {
            background: white;
            border-radius: 20px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            /* height: 580px; */
        }

        .pricing-card_price:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.12);
            border-color: #dc2626;
        }

        .pricing-card_price.featured {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            transform: scale(1.02);
            border: 3px solid #dc2626;
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
        }

        .pricing-card_price.featured:hover {
            transform: scale(1.02) translateY(-8px);
            box-shadow: 0 25px 60px rgba(220, 38, 38, 0.25);
        }

        .card-header_price {
            margin-bottom: 8px;
            height:185px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
      

            .card-header_price::before,
            .card-header_price::after {
            content: '';
            position: absolute;
            bottom: 0;
            width: 40%; /* Adjust length of each side line */
            border-bottom: 2px solid #e74c3c;
            }

            .card-header_price::before {
            left: 0;
            }

            .card-header_price::after {
            right: 0;
            }

        .plan-name_price {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 3px;
            color:#333;
        }

        .plan-price_price {
            font-size: 1.7rem;
            font-weight: 800;
            color: #dc2626;
            margin-bottom: 8px;
        }

        .featured_price .plan-price {
            color: white;
        }

        .plan-period_price {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 7px;
            color:#333;
        }

        .plan-description_price {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.4;
            margin-bottom: 20px;
            color:#333;
        }

        .features-list_price {
            text-align: left;
            margin-bottom: 10px;
            margin-top: 10px;
            flex-grow: 1;
        }
        .sign-up-btn_price:hover{
            color:white;
        }

        .feature-item_price {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.85rem;
            color:#333;
        }

        .feature-icon_price {
            color: #dc2626;
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .featured .feature-icon_price {
            color: #fecaca;
        }

        .sign-up-btn_price {
            width: 100%;
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: auto;
        }

        .demo-btn_price {
            background: linear-gradient(45deg, #dc2626, #b91c1c);
            color: white;
        }

        .pro-btn_price {
            background: linear-gradient(45deg, #dc2626, #b91c1c);
            color: white;
        }

        .premium-btn_price {
            background: white;
            color: #dc2626;
            border: 2px solid white;
        }

        .enterprise-btn_price {
            background: linear-gradient(45deg, #dc2626, #b91c1c);
            color: white;
        }

        .sign-up-btn_price:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .pricing-note_price {
            text-align: center;
            color: #333;
            font-size: 0.9rem;
            margin-top: 30px;
        }

        .features-section_price {
            margin-top: 80px;
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border: 2px solid #fecaca;
        }

        .features-title_price {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #dc2626;
        }

        .features-grid_price {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-column_price {
            background: #fef2f2;
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #fecaca;
        }

        .feature-column_price h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #dc2626;
        }

        @media (max-width: 768px) {
            .hero-section_price h1 {
                font-size: 2.5rem;
            }
            
            .pricing-grid_price {
                grid-template-columns: 1fr;
            }
            
            .pricing-card_price.featured {
                transform: none;
            }
            
            .features-grid_price {
                grid-template-columns: 1fr;
            }
        }
        
        /*testimonial*/
        
        .testimonials-section_lan_test {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 0px 20px;
            position: relative;
            overflow: hidden;
        }

        /*.testimonials-section_lan_test::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    height: 4px;*/
        /*    background: linear-gradient(90deg, #dc3545, #ff4757, #dc3545);*/
        /*}*/

        .container_lan_test {
            /*max-width: 1200px;*/
            margin:0px auto 35px auto;
        }
        .hero-subtitle{
            margin-top:15px;
        }
        .section-header_lan_test {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title_lan_test {
            font-size: 2.5rem;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .section-title_lan_test::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #dc3545, #ff4757);
            border-radius: 2px;
        }

        .section-subtitle_lan_test {
            font-size: 1.1rem;
            color: #333;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonials-grid_lan_test {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card_lan_test {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card_lan_test::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc3545, #ff4757);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .testimonial-card_lan_test:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(220, 53, 69, 0.15);
        }

        .testimonial-card_lan_test:hover::before {
            transform: scaleX(1);
        }

        .company-header_lan_test {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .company-logo_lan_test{
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc3545, #ff4757);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .company-name_lan_test {
            font-size: 1.3rem;
            font-weight: 600;
            color: #dc2626;
            width:85%;
        }
         .company-name_lan_test img{
             width:100%;
         }

        .testimonial-text_lan_test {
            font-size: 1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 25px;
            font-style: italic;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .testimonial-author_lan_test {
            border-top: 1px solid #e9ecef;
            padding-top: 20px;
            height:130px;
        }

        .author-name_lan_test {
            font-weight: 600;
            color: #dc2626;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-position_lan_test {
            color: #333;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .author-location_lan_test {
            color: #6a6a6a;
            font-size: 0.85rem;
        }

        .quote-icon_lan_test {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            color: rgba(220, 53, 69, 0.1);
        }

        .stats-row_lan_test {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .stat-item_lan_test {
            text-align: center;
        }

        .stat-number_lan_test {
            font-size: 2.5rem;
            font-weight: 700;
            color: #dc3545;
            display: block;
        }

        .stat-label_lan_test {
            font-size: 1rem;
            color: #6c757d;
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .testimonials-section_lan_test {
                padding: 0px 15px;
            }
            
            .section-title_lan_test {
                font-size: 2rem;
            }
            
            .testimonials-grid_lan_test {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .testimonial-card_lan_test {
                padding: 25px;
            }
            
            .stats-row_lan_test {
                gap: 40px;
            }
            
            .stat-number_lan_test {
                font-size: 2rem;
            }
        }
        
        /*faq*/
           .faq-container_faqs {
            /*max-width: 900px;*/
            margin:47px auto 0px auto;
            position: relative;
        }

        .faq-header_faqs {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .faq-title_faqs {
            font-size: 2rem;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        /*.faq-title_faqs::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: -20px;*/
        /*    left: 50%;*/
        /*    transform: translateX(-50%);*/
        /*    width: 60px;*/
        /*    height: 4px;*/
        /*    background: linear-gradient(90deg, #dc3545, #ff4757);*/
        /*    border-radius: 2px;*/
        /*}*/

        .faq-title_faqs::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #dc3545, #ff4757);
            border-radius: 2px;
        }

        .faq-subtitle_faqs {
            font-size: 1.1rem;
            color: #333;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .faq-list_faqs {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item_faqs {
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.08);
            border: 2px solid transparent;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-item_faqs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc3545, #ff4757);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .faq-item_faqs:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(220, 53, 69, 0.12);
            border-color: rgba(220, 53, 69, 0.2);
        }

        .faq-item_faqs:hover::before {
            transform: scaleX(1);
        }

        .faq-item_faqs.active {
            border-color: #dc3545;
        }

        .faq-item_faqs.active::before {
            transform: scaleX(1);
        }

        .faq-question_faqs {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question_faqs:hover {
            color: #dc2626;
        }

        .faq-question_faqs::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #dc3545, #ff4757);
            transition: height 0.3s ease;
            border-radius: 2px;
        }

        .faq-item_faqs:hover .faq-question_faqs::before,
        .faq-item_faqs.active .faq-question_faqs::before {
            height: 30px;
        }

        .faq-icon_faqs {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, #dc3545, #ff4757);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item_faqs.active .faq-icon_faqs{
            transform: rotate(45deg);
        }

        .faq-answer_faqs {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .faq-item_faqs.active .faq-answer_faqs {
            max-height: 300px;
        }

        .faq-answer-content_faqs {
            padding: 0 30px 30px 30px;
            color: #495057;
            line-height: 1.7;
            font-size: 1rem;
        }

        .faq-stats_faqs {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .stat-item_faqs {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
            min-width: 120px;
        }

        .stat-number_faqs {
            font-size: 2rem;
            font-weight: 700;
            color: #dc3545;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label_faqs {
            font-size: 0.9rem;
            color: #6c757d;
        }

        .help-section_faqs {
            background: linear-gradient(135deg, #dc3545, #c51f1f);
            color: white;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-top: 40px;
            margin-left: 90px;
            margin-right: 90px;
            margin-bottom:20px;
        }

        .help-title_faqs {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .help-text_faqs {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        .help-button_faqs:hover {
             color: #dc2626;
        }
        .help-button_faqs {
            background: white;
            color: #dc2626;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .help-button_faqs:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
      @media (max-width: 1100px) {
          .hero-section{
            margin-top:50px;
        }
      }
       @media (max-width: 950px) {
          .hero-section{
            margin-top:70px;
        }
        }
         @media (max-width: 800px) {
          .hero-section{
            margin-top:90px;
        }
        }

        @media (max-width: 768px) {
            .hero-section{
                margin-top:170px;
            }
            .hero-image{
                margin-bottom:10px;
            }
            .hero-subtitle{
                margin-top:10px;
            }
            .faq-title_faqs {
                font-size: 2rem;
            }

            .faq-question_faqs {
                padding: 20px;
                font-size: 1rem;
            }

            .faq-answer-content_faqs {
                padding: 0 20px 25px 20px;
            }

            .faq-stats_faqs {
                gap: 30px;
            }

            .help-section_faqs {
                padding: 25px 20px;
            }
        }
.modal,
.modal-backdrop {
  z-index: 1050 !important;
}
li {
    list-style: none;
}

.what-contact{
    background-color: #fff;
    padding:50px 20px 10px 20px;
}
.what_contact_div{
  max-width: 1200px; 
  margin: 0 auto;
  text-align: center;
}
.what_contact_div_h2{
color: #dc2626; 
font-size: 32px; 
margin-bottom: 10px; 
font-weight:800;
}
.what_contact_section{
    background-color: #fff;
    padding: 15px 20px;
}
.what_contact_section_div{
    max-width: 1000px; 
    margin: 0 auto; 
    text-align: center;
}
.what_contact_section_p{
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}
.mob_section{
    background-color: #fff;
    color:#dc2626;
    padding: 60px 20px 0px 20px;
    text-align: center;
}
.mob_section_h2{
    font-size: 32px;
    font-weight: bold;
}
.mob_section_p{
    max-width: 900px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
a:hover{
    text-decoration:none!important;
}
@media (min-width: 768px) and (max-width: 1199px) {
    .card_fe{
        height:230px;
    }
}
@media (min-width: 300px) and (max-width: 767px) {
    .card_fe{
        height:140px;
    }
}
@media (min-width: 300px) and (max-width: 410px) {
    .card_fe{
        height:160px;
    }
}
@media (min-width: 1200px) {
    .container_benifit {
         max-width: 1200px!important; 
    }
}
.testimonial_read{
    display: inline-block;
    background-color: #dc2626 ;
    color:#ffffff;
    font-weight: 600;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 9999px;
    transition: background-color 150ms;
    border: 1px solid #dc2626;
    margin-top:10px;
}
.testimonial_read_main{
    display:flex;
    justify-content:center;
    margin-top:15px;
}
@media (max-width: 1199px) {
    .benefits-grid .benefit-card:last-child {
        grid-column: 2 / 3; /* Center in 3-column grid */
        justify-self: center;
    }
}

    /* Optional: Ensure consistent centering for smaller breakpoints too */
    @media (max-width: 767px) {
        .benefits-grid .benefit-card:last-child {
            grid-column: 1 / -1; /* Take full width in 1-column */
            justify-self: center;
        }
    }
.CB_home_sctn8_n{
    background-image: url(https://contactboss.com/images/landing_img/Cb_bgs.png)!important;
    border-radius: 10px;
}

/*--------------------------------------------------------*/
.CB_home_sctn8{	background-image: url('	https://contactboss.com/other-assets/images/CB_bg_img.png');background-repeat: no-repeat;background-size: cover;}
.CB_home_sctn8 .CB_home_sctn8_dtls ul{ display: flex; }
.CB_home_sctn8 .CB_home_sctn8_dtls ul li{ padding-right: 16px; }
.CB_home_sctn8 .sctn8_dtls{ padding: 100px; }
.CB_home_sctn8 .sctn8_img img{ width: 100%; }
@media (min-width: 300px) and (max-width: 767px) {
.CB_home_sctn8{ background-position: center; margin: 15px; border-radius: 25px;}
.CB_home_sctn8 .sctn8_dtls{ padding: 30px; }
.CB_home_sctn8 .CB_home_sctn8_dtls ul{ display: block; }
.CB_home_sctn8 .CB_home_sctn8_dtls ul li{ padding: 16px 0; }
}
@media (min-width: 768px) and (max-width: 991px) {
.CB_home_sctn8{ background-position: center;}
}
@media (min-width: 768px) and (max-width: 1400px) {
.CB_home_sctn8 .sctn8_dtls{ padding: 60px 60px 60px 100px; }
}

  @media (max-width: 650px) {
     .help-section_faqs {
         margin-left:10px;
         margin-right:10px;
     }
  }
  
  
.success-stories-container_case {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header_case {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #c01d1d 0%, #be1c1c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-header_case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.section-header_case h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.section-header_case p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.stories-grid_case {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 50px 40px;
}

.story-card_case {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card_case:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.story-card_case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c01c1c, #c01d1c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.story-card_case:hover::before {
    transform: scaleX(1);
}

.story-icon_case {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bf1c1c, #bf1c1c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.story-icon_case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.story-card_case:hover .story-icon_case::before {
    transform: translateX(100%);
}

.story-icon_case svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.story-title_case {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.story-description_case{
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.story-highlight_case {
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #bf1c1c;
    font-weight: 600;
    border-left: 4px solid #c01c1c;
}

.cta-section_case {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.cta-link_case {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c01d1c, #bf1c1c);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(214, 51, 132, 0.3);
}

.cta-link_case:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214, 51, 132, 0.4);
    text-transform:none ;
    color:#ffffff;
}

.cta-link_case::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-link_case:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .stories-grid_case {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    .section-header_case {
        padding: 40px 20px 30px;
    }

    .section-header_case h2 {
        font-size: 2rem;
    }

    .story-card_case {
        padding: 24px;
    }
}