
  :root{
    --contactboss-color:#D93C2A;
    --contactboss-dark: #B32819;
    --main-head-size:2.5rem;
    --head-size:2rem;
    --price-main:2.6rem;
    --price--head-size:2rem;
    --price--head:1.7rem;
        }
/* 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) {
            .container_pay { 
                grid-template-columns: 1fr; 
                display: block; 
                gap: 20px; 
            }
            .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%!important;
            padding: 18px!important;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%)!important;
            color: white!important;
            border: none!important;
            border-radius: 8px!important;
            font-size: 1.1em!important;
            font-weight: 600!important;
            cursor: pointer!important;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px!important;
            height:100%!important;
        }

        .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%;*/
              width:150px;
        }
         .company-name_lan_test img{
             width:100%;
         }

        .testimonial-text_lan_test {
            /*font-size: 1rem;*/
             font-size: 16px;
            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;*/
    justify-content:flex-start;
    margin-top:15px;
}
.lan_test1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
@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);
}
.pro-error-blood {
    color: #d04040 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.position-fixed-for-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, .87);
    top: 0;
    z-index: 9999;
    left: 0;
}
.display-intabss, .take-controls-tab {
    display: table;
    width: 100%;
    height: 100%;
}
.display-inside-fixed {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 100%;
}
.send-us-enquiry p {
    color: #333;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
}

@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;
    }
}
  .Features_scroll_top{
           position:fixed;
           bottom: 100px;
           right: 0px;
           background-color: #D93C2A;
            border: none;
            padding: 8px 16px;
            color: #FFFFFF;
            border-radius: 20px 0 0 20px;
            display: inline-block;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
        }
        a.Features_scroll_top{
           color: #FFFFFF;
        }
        
        
    /*pricing page*/
    
    /* Hero Section */
        .hero_price {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero_price::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.03) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

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

        .hero-content_price {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text_price h1 {
            font-size: var(--price-main);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #1f2937, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text_price .highlight {
            color: #ef4444;
            position: relative;
        }

        .hero-text_price .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ef4444, #dc2626);
            border-radius: 2px;
        }

        .hero-text_price p {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-image_price {
            position: relative;
        }

        .hero-image_price img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .hero-image_price:hover img {
            transform: scale(1.05);
        }
        
        .cta-button1 {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 180px;
            letter-spacing: 0.025em;
            box-shadow: 
                0 4px 6px -1px rgba(220, 38, 38, 0.3),
                0 2px 4px -1px rgba(220, 38, 38, 0.1);
        }

        .cta-button1:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 10px 15px -3px rgba(220, 38, 38, 0.4),
                0 4px 6px -2px rgba(220, 38, 38, 0.2);
                color: white;
        }

        .cta-button1:active {
            transform: translateY(0);
        }

        .container1 {
            /*max-width: 1400px;*/
            margin: 20px;
            position: relative;
        }
        
        .header_price {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .header_price h2 {
            font-size: var(--price--head-size);
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            position: relative;
        }

        .header_price h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            border-radius: 2px;
        }

        .header_price p {
            font-size: 1.2rem;
            color: #6b7280;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
         /* Standard Plans Section */
        .standard-plans_price {
            margin-bottom: 4rem;
        }
        .plans-grid_price {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            /*max-width: 1000px;*/
            margin: 0 auto 60px auto;
            margin-bottom: 3rem;
        }
         .plan-card_price {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .plan-card_price:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .plan-card_price.popular {
            border-color: #e53e3e;
            transform: scale(1.05);
        }
        .plan-price_prices {
            font-size: 2rem;
            font-weight: 800;
            color: #e53e3e;
            margin-bottom: 0.5rem;
        }
          .plan-billing_prices {
            color: #718096;
            margin-bottom: 1.5rem;
            height:25px;
            font-size:15px;
        }

        .plan-description_prices {
            color: #4a5568;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-weight:500;
            height:32px;
        }

        .plan-features_prices {
            margin-bottom: 2rem;
        }
        .feature-item_prices {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #4a5568;
        }

        .feature-icon_prices {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #48bb78;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 12px;
        }
         .feature-icon1_prices {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            /*background: #48bb78;*/
            color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 5px;
            font-size: 12px;
            float:left;
            margin-top:2px;
        }
         .feature-icon12_prices{
             width: 25px;
            height: 25px;
            border-radius: 50%;
            /*background: #48bb78;*/
            color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 5px;
            font-size: 12px;
            float:left;
            margin-top:0px;
        }
         .plan-button_prices {
            width: 100%;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-demo_prices {
            background: #f7fafc;
            color: #4a5568;
            display: inline-grid;
            text-align: center;
            border: 2px solid #e2e8f0;
            color: #4a5568;
        }

        .btn-demo_prices:hover {
            background: #edf2f7;
            border-color: #cbd5e0;
        }

        .btn-pro_prices {
            background: white;
            color: #e53e3e;
            border: 2px solid #e53e3e;
            display: inline-grid;
            text-align: center;
        }

        .btn-pro_prices:hover {
            background: #e53e3e;
            color: white;
        }

        .btn-premium_prices {
            background: #e53e3e;
            color: white;
            border: 2px solid #e53e3e;
            display: inline-grid;
            text-align: center;
        }

        .btn-premium_prices:hover {
            background: #c53030;
            border-color: #c53030;
            color: white;
        }
         .popular-badge_prices {
            position: absolute;
            top: -12px;
            right: 2rem;
            background: #e53e3e;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .price-desc_prices{
            text-align:center;
            color:#5f6165;
        }
         /* Comparison Table */
        .comparison-section_prices  {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .comparison-title_prices  {
            font-size: 2rem;
            font-weight: 700;
            color: #2d3748;
            text-align: center;
            margin-bottom: 2rem;
        }

        .comparison-table_prices  {
            width: 100%;
            border-collapse: collapse;
            overflow: hidden;
            border-radius: 12px;
        }

        .comparison-table_prices  th,
        .comparison-table_prices  td {
            padding: 1.5rem 1rem;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }

        .comparison-table_prices  th {
            background: #f7fafc;
            font-weight: 600;
            color: #2d3748;
        }

        .comparison-table_prices  th:first-child {
            background: #4a5568;
            color: white;
            text-align: left;
            border-top-left-radius: 12px;
        }

        .comparison-table_prices  .popular-column_prices  {
            background: #f0fff4;
            position: relative;
        }

        .feature-check_prices  {
            color: #48bb78;
            font-size: 1.2rem;
        }

        .feature-cross_prices  {
            color: #f56565;
            font-size: 1.2rem;
        }
        .comparison-section_prices {
            margin-bottom:20px;
        }
        .popular-column12_prices {
            background:aliceblue!important;
        }
        .popular-column1_prices {
            background:#f4f4c8b0!important;
        }
        .price-currency_prices {
            font-size: 1.2rem;
            vertical-align: top;
        }
        sup{
            color: red!important;
        }
        .table_star_prices{
            margin-top:20px;
            /*text-align:end;*/
        }
        .price-desc_prices{
            text-align:center;
            color:#5f6165;
        }
           .support1 {
            padding: 2px 0;
            background: white;
            text-align: center;
            position: relative;
           
        }
        
         .support1::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #D93C2A, transparent);
        }
         .hero-section_aff_prices {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            /*min-height: 100vh;*/
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-section_aff_prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
         .container_aff_prices {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-content_aff_prices {
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title_aff_prices {
            font-size: var(--price--head-size);
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: -0.025em;
            margin-top: 3rem;
        }

        .hero-subtitle_aff_prices {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.6;
        }

        .features-grid_aff_prices {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .feature-card_aff_prices {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .feature-card_aff_prices:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .feature-card_aff_prices:hover::before {
            transform: scaleX(1);
        }

        .feature-icon_aff_prices {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
            margin:0 auto 30px;
        }

        .feature-title_aff_prices {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .feature-text_aff_prices {
            color: #6b7280;
            line-height: 1.6;
        }
         .pricing-note_aff_prices {
            background: rgba(220, 38, 38, 0.05);
            border: 1px solid rgba(220, 38, 38, 0.1);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            text-align: center;
        }

        .pricing-note_aff_prices h3 {
            color: #dc2626;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .pricing-note_aff_prices p {
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .cta-section_aff_prices {
            text-align: center;
            margin: 4rem 0 2rem 0;
        }

        .cta-text_aff_prices {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .cta-button_aff_prices {
            display: inline-block;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            padding: 1rem 3rem;
            font-size: 1.25rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.39);
            position: relative;
            overflow: hidden;
        }

        .cta-button_aff_prices::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;
            
        }

        .cta-button_aff_prices:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px 0 rgba(220, 38, 38, 0.4);
            color: white;
        }

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

         /* Testimonials */
        .testimonials_prices {
            padding: 50px 0;
            background: #ffffff;
            overflow: hidden;
        }

        .testimonials-container_prices  {
            position: relative;
            /* max-width: 1000px; */
            margin: 0 auto;
        }
        .section-header_prices {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header_prices h2 {
            font-size:var(--price--head-size);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
        }

        .section-header_prices p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }
         .masonry-grid_prices {
            column-count: 3;
            column-gap: 2rem;
            column-fill: balance;
        }

        .masonry-card_prices {
            break-inside: avoid;
            margin-bottom: 2rem;
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid rgba(239, 68, 68, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .masonry-card_prices:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(239, 68, 68, 0.15);
        }

        .masonry-card_prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ef4444, #dc2626);
            border-radius: 15px 15px 0 0;
        }

        .demo-section_prices {
            margin-bottom: 4rem;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .testimonial-text_prices {
            font-style: italic;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.6;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .client-info_prices {
            /*display: flex;*/
            align-items: center;
            gap: 1rem;
            margin-top:20px;
        }

        .client-avatar_prices {
            width: 150px;
            height: 50px;
            /*background: linear-gradient(135deg, #ef4444, #dc2626);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .client-avatar_prices img{
            width:100%;
        }
        .client-details_prices {
            flex: 1;
            margin-top:10px;
        }

        .testimonial-author_prices {
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .testimonial-position_prices {
            color: #6b7280;
            font-size: 0.85rem;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .testimonial-company_prices {
            color: #ef4444;
            font-size: 0.8rem;
            font-weight: 600;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }
         .testimonial_read_main_prices {
            display: flex;
             justify-content: center; 
            /*justify-content: flex-start;*/
            margin-top: 15px;
        }
        .testimonial_read_prices 
         {
            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;
        }
        /* CTA Section */
        .final-cta_prices {
            padding: 100px 0;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            text-align: center;
        }

        .final-cta_prices h2 {
            font-size: var(--price--head-size);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .final-cta_prices p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button-white_prices {
            background: white;
            color: #ef4444;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-button-white_prices:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
             color: #ef4444;
        }
        @media (max-width: 650px) {
            .comparison-table_prices {
                overflow:scroll;
            }
          
            .comparison-section_prices {
                width: 100%;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
                display: block;
                /*white-space: nowrap;*/
            }
            
            .comparison-section_prices table {
                width: 100%;
                min-width: 900px; /* force wider table so scrolling is needed */
                border-collapse: collapse;
            }
        }
                /* Tablet */
        @media (max-width: 991px) {
            .masonry-grid_prices {
                column-count: 2;
            }
        }
        
        /* Mobile */
        @media (max-width: 600px) {
            .masonry-grid_prices {
                column-count: 1;
            }
            .cta-button_aff_prices{
                padding: 1rem 2rem;
            }
        }


        @media (max-width: 768px) {
            .plans-grid_price {
                grid-template-columns: 1fr;
            }
            .plan-card_price.popular {
                transform: none;
            }
            .hero-content_price {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-text_price h1 {
                font-size: var(--price--head);
            }
            .comparison-table_prices  {
                font-size: 0.875rem;
            }
            
            .comparison-table_prices  th,
            .comparison-table_prices  td {
                padding: 1rem 0.5rem;
            }
        }
        @media only screen and (max-width: 1344px) and (min-width: 1200px) {
            .plans-grid_price{
                grid-template-columns:repeat(auto-fit, minmax(241px, 1fr));
            }
            .plan-name_prices {
                font-size:27px;
            }
        }
        @media only screen and (max-width: 1199px) and (min-width: 1100px) {
            .plans-grid_price{
                grid-template-columns:repeat(auto-fit, minmax(241px, 1fr));
            }
            .plan-name_prices {
                font-size:23px;
            }
            .plan-price_prices{
                font-size:25px;
            }
           
            .plan-billing_prices{
                font-size:14px;
            }
            .plan-description_prices {
                height:55px;
            }
            .plan-button_prices{
                padding: 12px 10px;
            }
            .hero-text_price h1{
                font-size:var(--price-main);
            }
            .header_price h2{
                font-size:var(--price--head-size);
            }
        }
        
        @media only screen and (max-width: 1099px) and (min-width: 768px) {
            .plans-grid_price{
                grid-template-columns:repeat(auto-fit, minmax(335px, 1fr));
            }
            .plan-name_prices {
                font-size:30px;
            }
            .hero-text_price h1{
                font-size:var(--price-main);
            }
            .header_price h2{
                font-size:var(--price--head-size);
            }
          
        }
        @media only screen and (max-width: 1285px) and (min-width: 1185px) {
            .plan-description_prices {
                height:50px!important;
            }
        }

    
    /*contact page*/
    
     /* Hero Section */
        .hero_contact {
            background: linear-gradient(135deg, #fff 0%, #f7fafc 50%, #fed7d7 100%);
            padding: 12rem 0 3rem;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background:white;
        }
        .hero1_contact {
            background:white!important;
        }
        .hero_contact::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(229, 62, 62, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }


        .hero_contact1 {
            background: linear-gradient(135deg, #fff 0%, #f7fafc 50%, #fed7d7 100%);
            padding: 3rem 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background:white;
        }
        .hero1_contact {
            background:white!important;
        }
        .hero_contact1::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(229, 62, 62, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-container_contact {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
            margin-right:150px;
        }
        .hero-container2_contact {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-container1_contact {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-image_contact{
            position: relative;
            height: 504px;
            width: 545px;
            background: linear-gradient(135deg, #e53e3e, #c53030);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(229, 62, 62, 0.3);
            overflow: visible;
        }
        .hero-image_contact img{
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 14px;
        }
         .hero-image-content_contact {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .hero-image-icon_contact {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 2rem;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero-image_contact h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero-image_contact p {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.5;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
          .floating-elements_contact {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
        }

        .floating-dot_contact {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: float-dots 4s ease-in-out infinite;
        }

        .floating-dot_contact:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-dot_contact:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 1s;
        }

        .floating-dot_contact:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 2s;
        }

        @keyframes float-dots_contact {
            0%, 100% { transform: translateY(0px); opacity: 0.4; }
            50% { transform: translateY(-10px); opacity: 0.8; }
        }
    
        .crm-mockup_contact{
        position: absolute;
        top: -71px;
        right: -154px;
        width: 300px;
        background: white;
        border-radius: 15px;
        padding: 0px;
        /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
        z-index: 3;
        /* background: url(https://contactboss.com/images/new-images/home-banner.png); */
        background-size: contain;
        /* background-repeat: no-repeat; */
        /* background-position: center; */
        height: 235px;
        /* background-size: cover; */
        border-radius: 10px;
    }
    .crm-mockup_contact img{
        width: 300px;
        height: 200px;
        border-radius: 14px;
        object-fit:initial;
    }
    
        .hero-content_contact h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content_contact .highlight_contact {
            color: #e53e3e;
        }

        .hero-content_contact p {
            font-size: 1.25rem;
            color: #4a5568;
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        .contact-form_contact {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            width:75%;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .form-icon_contact {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e53e3e, #c53030);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .form-title_contact {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 5px;
            text-align: center;
        }

        .form-subtitle_contact {
            color: #4a5568;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-group_contact {
            margin-bottom: 1.5rem;
        }

        .form-group_contact label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2d3748;
        }

        .form-group_contact input,
        .form-group_contact textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f7fafc;
        }

        .form-group_contact input:focus,
        .form-group_contact textarea:focus {
            outline: none;
            border-color: #e53e3e;
            background: white;
            box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
        }

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

        .form-note_contact {
            font-size: 0.9rem;
            color: #718096;
            margin-top: 0.5rem;
        }

        .submit-btn_contact {
            width: 100%;
            background: linear-gradient(135deg, #e53e3e, #c53030);
            color: white;
            padding: 16px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn_contact:hover {
            background: linear-gradient(135deg, #c53030, #a0201e);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(229, 62, 62, 0.3);
        }

        .form-footer_contact {
            text-align: center;
            font-size: 0.85rem;
            color: #718096;
            margin-top: 1rem;
        }

        .form-footer_contact a {
            color: #e53e3e;
            text-decoration: none;
        }

        .features-grid_contact {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
            gap: 2rem;
            margin: 3rem 0;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            width:40%;
        }

        .feature-card_contact {
            /*background: rgba(255, 255, 255, 0.1);*/
            background:rgb(255 255 255);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
            border:1px solid rgb(63 63 63 / 10%);
            margin:23px 0px;
        }

        .feature-card_contact:hover {
            transform: translateY(-5px);
            /*background: rgba(255, 255, 255, 0.15);*/
        }

        .feature-icon_contact {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e53e3e, #c53030);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .feature-title_contact {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-description_contact {
            opacity: 0.9;
            font-size: 0.9rem;
        }
          /* CRM Section */
        .cta-section_contact {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            padding: 5rem 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            background: url("https://contactboss.com/images/controls.jpg") 0 0 / cover no-repeat;
            position: relative !important;
        }

        .cta-section_contact::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"><path d="M0,50 Q250,20 500,50 T1000,50 V100 H0 V50Z" fill="rgba(229,62,62,0.1)"/></svg>');
            background-size: 100% 100px;
            background-repeat: no-repeat;
            background-position: top;
        }
         .cta-section_contact h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-section_contact p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-secondary_contact {
            background: linear-gradient(135deg, #e53e3e, #c53030);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem;
        }

        .cta-secondary_contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
        }

        .no-credit_contact {
            margin-top: 1rem;
            opacity: 0.8;
            font-size: 0.9rem;
            text-decoration: underline;
        }
          .hero-container1_contact  {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
         /* Responsive Design */
            @media (min-width: 768px) and (max-width: 1199px) {
                .hero-container_contact{
                     grid-template-columns: none;
                     margin-right:10px;
                }
                .hero-container2_contact{
                    grid-template-columns: none;
                     display:block;
                }
                .hero-image_contact{
                    width:80%;
                }
                .contact-form_contact{
                    margin:auto;
                }
                .feature-card_contact_cards {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;

                }
                .features-grid_contact{
                    width:74%;
                }
                .feature-card_contact{
                    margin:0px;
                }
            }
         
            @media (max-width: 767px) and (min-width: 320px) {
            .hero-container_contact {
                grid-template-columns: none;
                gap: 2rem;
                text-align: center;
                margin-right:10px;
                display:block;
               
            }
            .features-grid_contact{
                width:100%;
            }
            .feature-card_contact{
                    margin:0px;
                }
            .feature-card_contact_cards {
                display: grid;
                grid-template-columns: none ;
                gap: 20px;

            }
            .hero-image_contact{
                width:80%; 
            }
            .hero-content_contact{
                padding-bottom:60px;
            }
            .contact-form_contact{
                    margin:auto;
                    width:100%;
                }
            .hero-container2_contact{
                    grid-template-columns: none;
                    display:block;
                }
            .hero-content_contact h1 {
                font-size: 2.5rem;
            }
            .hero-stats_contact {
                grid-template-columns: none;
                gap: 1rem;
            }
            .hero-image_contact {
                height: 300px;
                order: -1;
            }
            .features-grid_contact {
                grid-template-columns: none;
            }
            .contact-form_contact {
                /*margin: 2rem 1rem;*/
                  width:100%;
                /*padding: 2rem;*/
            }
            .nav-container_contact {
                padding: 0 1rem;
            }
            .crm-mockup_contact{
                height: 204px;
                top: -71px;
                right: -113px;
                width: 260px;
            }
            .crm-mockup_contact img {
                width: 262px;
                height: 184px;
            }
        }
        
              @media (max-width:650px) {
                 .feature-card_contact_cards {
                    display: grid;
                    grid-template-columns: none;
                    gap: 20px;

                }
                 .hero-content_contact{
                padding-bottom:60px;
            }
                .features-grid_contact{
                    width:100%;
                }
                .feature-card_contact{
                    margin:0px;
                }
                .crm-mockup_contact{
                height: 204px;
                top: -71px;
                right: -113px;
                width: 260px;
            }
            .crm-mockup_contact img {
                width: 262px;
                height: 184px;
            }
             }
    
    
    
    
    
    /*features overview page*/
    
    
      /* Hero Section */
        .hero_overview {
            background: linear-gradient(135deg, #fff5f3 0%, #ffeeee 100%);
            padding: 9rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero_overview::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23D93C2A" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            z-index: 1;
            opacity: 0.3;
        }

        .hero-container_overview {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .hero-content_overview {
            flex: 1;
        }

        .hero-subtitle_overview {
            color: #D93C2A;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .hero-title_overview {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .hero-image_overview {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-image_overview img{
            width:500px;
            height:400px;
            border-radius: 12px;
        }

        /* Main Content */
        .main-content_overview {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            /* display: flex; */
            gap: 4rem;
        }

        .content-area_overview {
            flex: 1;
        }

        .section_overview {
            margin-bottom: 4rem;
        }

        .section-title_overview {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .section-text_overview {
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .campaign-types_overview {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            margin-top: 3rem;
        }

        .campaign-list_overview {
            flex: 1;
        }

        .campaign-item_overview {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            color: #666;
        }

        .campaign-item_overview::before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
        }

        .campaign-illustration_overview {
            width: 250px;
            height: 200px;
            background: linear-gradient(135deg, #D93C2A, #ff8a65);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .strategies-section_overview {
            margin-top: 3rem;
        }

        .strategy-item_overview {
            margin-bottom: 2rem;
        }

        .strategy-title_overview {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .strategy-text_overview {
            color: #666;
            line-height: 1.7;
        }


           /* CTA Section */
           .cta-section_overview {
            background:#D93C2A;
            color: white;
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section_overview::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ctaGrid" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,20 5,20" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaGrid)"/></svg>');
            z-index: 1;
        }

        .cta-container_overview {
            /* max-width: 800px; */
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .cta-title_overview {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta-description_overview {
            font-size: 17px;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .cta-buttons_overview {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-white_overview {
            background: white;
            color: #D93C2A;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        .btn-white_overview:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
            color: #ff6b47;
        }
         @media (max-width: 999px) {
                   
            .hero-container_overview {
                flex-direction: column;
                text-align: center;
            }
            .hero-title_overview{
                margin-bottom:0px;
            }
         }
     

        /* Responsive Design */
        @media (max-width: 768px) {

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

            .main-content_overview {
                flex-direction: column;
                gap: 2rem;
            }

         
            .cta-container_overview {
                flex-direction: column;
                text-align: center;
            }

        }

       

        /* Slider Section */
        .slider-section_overview {
            margin: 3rem 0;
        }

        .slider-container_overview {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            background: #f8f9fa;
        }

        .slider-wrapper_overview {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide_overview {
            min-width: 100%;
            display: flex;
            gap: 2rem;
            padding: 3rem 2rem;
        }

        .slide-column_overview {
            flex: 1;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .slide-column_overview:hover {
            transform: translateY(-5px);
        }

        .slide-image_overview {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #ff6b47, #ff8a65);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

       
        .slide-content_overview {
            padding: 2rem;
        }

        .slide-title_overview {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .slide-description_overview {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .slider-controls_overview {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 0rem;
        }

        .slider-btn_overview {
            background: #D93C2A;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .slider-btn_overview:hover {
            background: #e55a3c;
            transform: translateY(-2px);
        }

        .slider-btn_overview:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .slider-dots_overview {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            margin-bottom: 20px;
        }

        .slider-dot_overview {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot_overview.active {
            background: #ff6b47;
        }

         
          /* Features Section */
           /* Enhanced Features Section */
        .features-section1_overview {
            padding: 6rem 0;
            background: linear-gradient(135deg, #ffffff 0%, #fef2f2 30%, #fee2e2 70%, #fecaca 100%);
            position: relative;
            overflow: hidden;
        }

        .features-section1_overview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

        .features-container1_overview {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header1_overview {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-title1_overview {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            /*background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);*/
            background:#d93c2b;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
            letter-spacing: -0.02em;
        }

        .section-subtitle1_overview {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
            line-height: 1.7;
        }

        .features-grid1_overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .feature-card1_overview {
            background: white;
            padding: 18px 15px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1.5rem;
            min-height: 100px;
            backdrop-filter: blur(10px);
            text-decoration:none;
        }
        .feature-card1_overview:hover {
            text-decoration:none;
  
        }

        .feature-card1_overview::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .feature-card1_overview::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card1_overview:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
            border-color: rgba(220, 38, 38, 0.2);
            background: linear-gradient(135deg, #ffffff 0%, #fef8f8 100%);
        }

        .feature-card1_overview:hover::before {
            left: 100%;
        }

        .feature-card1_overview:hover::after {
            transform: scaleX(1);
        }

        .feature-icon1_overview {
            width: 40px;
            height: 40px;
            /*background: linear-gradient(135deg, #dc2626, #ef4444);*/
            background:#D93C2A;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: white;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .feature-icon1_overview::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #dc2626, #ef4444, #dc2626);
            border-radius: 12px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card1_overview:hover .feature-icon1_overview {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
        }

        .feature-card1_overview:hover .feature-icon1_overview::before {
            opacity: 1;
        }

        .feature-title1_overview {
            font-size: 14px;
            font-weight: 700;
            color: #1f2937;
            line-height: 1.4;
            flex: 1;
            transition: color 0.3s ease;
        }

        .feature-card1_overview:hover .feature-title1_overview {
            color: #dc2626;
        }

        /* Enhanced Mobile Responsive */
        @media (max-width: 768px) {
            .features-section1_overview {
                padding: 4rem 0;
            }

            .section-title1_overview {
                font-size: 2.5rem;
            }

            .section-subtitle1_overview {
                font-size: 1.1rem;
            }

            .features-grid1_overview {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .feature-card1_overview {
                padding: 1.5rem;
                flex-direction: row;
                min-height: 100px;
            }

            .feature-icon1_overview {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .feature-title1_overview {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .features-container1_overview {
                padding: 0 1rem;
            }

            .feature-card1_overview {
                gap: 1rem;
            }

            .feature-title1_overview {
                font-size: 12px;
            }
        }

        /* Enhanced Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .animate-fade-in1 {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-fade-in1:nth-child(even) {
            animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Staggered animation delay */
        .animate-fade-in1:nth-child(1) { animation-delay: 0.1s; }
        .animate-fade-in1:nth-child(2) { animation-delay: 0.2s; }
        .animate-fade-in1:nth-child(3) { animation-delay: 0.3s; }
        .animate-fade-in1:nth-child(4) { animation-delay: 0.4s; }
        .animate-fade-in1:nth-child(5) { animation-delay: 0.5s; }
        .animate-fade-in1:nth-child(6) { animation-delay: 0.6s; }
        .animate-fade-in1:nth-child(7) { animation-delay: 0.7s; }
        .animate-fade-in1:nth-child(8) { animation-delay: 0.8s; }
        .animate-fade-in1:nth-child(9) { animation-delay: 0.9s; }
        .animate-fade-in1:nth-child(10) { animation-delay: 1.0s; }
        .animate-fade-in1:nth-child(11) { animation-delay: 1.1s; }
        .animate-fade-in1:nth-child(12) { animation-delay: 1.2s; }
        .animate-fade-in1:nth-child(13) { animation-delay: 1.3s; }

        /* Pulse effect for icons */
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
            }
            50% {
                box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
            }
        }

        .feature-card1_overview:hover .feature-icon1_overview {
            animation: pulse 2s infinite;
        }

        .slide-image_overview.strategy {
          width: 100%;
          height: 200px; /* or whatever height you want */
          overflow: hidden;
          position: relative;
        }
        
        .slide-image_overview img {
          width: 100%;
          height: 100%;
          object-fit: cover; /* this keeps aspect ratio and fills div */
          display: block;
        }
        .cta_last_overview{
            font-size: 1.1rem;
            margin-bottom: 16px;
            opacity: 0.95;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            margin-top:20px;
        }
        .cta_lasts_overview{
            text-align: center;
            margin: 0px 20px 30px;
            padding: 20px;
            background: #f8b4b430;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 1s 
        ease-out 0.5s both;
        }
        .want_to_overview{
            margin-top: 32px;
            font-weight: 500;
            color: #444444;
            text-align: center;
        }
        
        
        /*slider responsive*/
        
        /* Add to your existing CSS, or in a responsive section */

/* ==================================== */
/* Responsive Styles for the Slider */
/* ==================================== */

/* Media Query for Tablets and Smaller Desktops (e.g., up to 1024px) */
@media (max-width: 1024px) {
    .slide_overview {
        /* Reduce gap slightly */
        gap: 1.5rem;
        /* Adjust padding for smaller screens */
        padding: 2rem 1rem;
    }

    .slide-content_overview {
        /* Reduce content padding a bit */
        padding: 1.5rem;
    }

    .slide-title_overview {
        /* Slightly smaller font size on tablets */
        font-size: 1.2rem;
    }

    .slide-description_overview {
        /* Maintain good readability */
        font-size: 0.9rem;
    }
}

/* Media Query for Mobile Devices (e.g., up to 768px) */
@media (max-width: 800px) {
    .slide_overview {
        /* Change the layout from horizontal (flex-row) to vertical (flex-column) */
        flex-direction: column;
        gap: 2rem; /* Restore gap */
        padding: 2rem 1rem;
    }

    .slide-column_overview {
        /* Column now takes full width in the vertical stack */
        flex: none;
        width: 100%;
    }

    .slide-image_overview {
        /* Optionally adjust image height for mobile, or keep it */
        height: 180px;
    }
    
    .slide-content_overview {
        padding: 1.5rem;
    }

    .slide-title_overview {
        font-size: 1.1rem;
    }

    .slide-description_overview {
        font-size: 0.85rem;
    }
    
    .slider-btn_overview {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Media Query for Extra Small Mobile Devices (e.g., up to 480px) */
@media (max-width: 480px) {
    .slide_overview {
        padding: 1.5rem 0.5rem;
    }
    
    .slider-container_overview {
        border-radius: 8px; /* Slightly smaller border radius */
    }

    .slide-image_overview {
        height: 150px;
    }
    
    .slide-content_overview {
        padding: 1rem;
    }
    
    .slide-title_overview {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-description_overview {
        font-size: 0.8rem;
    }
}


/*landing page 2*/


   /* Hero Section */
        .hero_land1 {
            min-height: 100vh;
            background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
            display: flex;
            align-items: center;
            padding: 2rem 4rem 4rem;
            position: relative;
            overflow: hidden;
            margin-top:100px;
        }

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

        .hero-container_land1 {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-text-l_land1 h1 {
            /*font-size: clamp(3rem, 6vw, 5.5rem);*/
            font-size:var(--main-head-size);
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .hero-text-l_land1 h1 .highlight {
            background: var(--contactboss-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text-l_land1 p {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .hero-buttons_land1 {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn_land1 {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary_land1 {
    background: var(--contactboss-color);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

        .btn-primary_land1:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(220, 20, 60, 0.4);
              color: white;
        }

        .btn-secondary_land1 {
    background: white;
    color: var(--contactboss-color);
    border: 2px solid var(--contactboss-color)!important;
}

        .btn-secondary_land1:hover {
            background: var(--contactboss-color);
            color: white;
        }

        .hero-visual_land1
        {
            position: relative;
            height: 600px;
        }

        .floating-card_land1  {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: floatCard 6s ease-in-out infinite;
        }
          @keyframes floatCard {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

       
        
          .hero-container_land1 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 10;
}


        .hero-image_land1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image_land1::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), transparent);
        }
        
        
            .hero-image_land1 {
            position: relative;
            width: 100%;
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
          .dashboard-mockup_land1  {
            width: 90%;
            height: 90%;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(220, 20, 60, 0.2);
            animation: dashboardFloat 6s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes dashboardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .dashboard-mockup_land1  svg {
            width: 100%;
            height: 100%;
        }

        .feature-cards-container_land1  {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 2;
            pointer-events: none;
        }

        .floating-feature-card_land1  {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.15);
            transition: all 0.4s ease;
            max-width: 240px;
            pointer-events: auto;
        }

        .floating-feature-card_land1:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(220, 20, 60, 0.25);
        }

        .floating-feature-card_land1:nth-child(1) {
            top: -20px;
            left: -40px;
            animation: floatCard1 6s ease-in-out infinite;
        }

        .floating-feature-card_land1:nth-child(2) {
            top: 50px;
            right: -40px;
            animation: floatCard2 7s ease-in-out infinite;
            animation-delay: 1s;
        }

        .floating-feature-card_land1:nth-child(3) {
            bottom: -20px;
            left: 40px;
            animation: floatCard3 8s ease-in-out infinite;
            animation-delay: 2s;
        }

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

        @keyframes floatCard2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(-2deg); }
        }

        @keyframes floatCard3 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-18px) rotate(1deg); }
        }

        .feature-card-icon_land1 {
            width: 60px;
            height: 60px;
            background: var(--contactboss-color);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
        }

        .floating-feature-card_land1  h3 {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .floating-feature-card_land1  p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.5;
        }
           /* Why Choose Section */
      .why-choose_land1 {
    padding: 3rem 0rem;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

        .section-title_land1 {
            text-align: center;
            font-size:  var(--head-size)!important;
            font-weight: 900;
            color: var(--contactboss-color)!important;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title_land1::after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: var(--contactboss-color);
            margin: 1.5rem auto 0;
            border-radius: 3px;
        }

        .features-grid_land1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card_land1 {
            background: white;
            padding: 2rem 2rem;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(220, 20, 60, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

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

        .feature-card_land1:hover::before {
            left: 100%;
        }

        .feature-card_land1:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.25);
            border-color: #ff4b4b;
        }

        .feature-icon_land1{
            width: 85px;
            height: 85px;
            background: var(--contactboss-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 3rem;
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
            transition: all 0.4s ease;
        }

        .feature-card_land1:hover .feature-icon_land1 {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
        }

        .feature-card_land1 h3 {
            font-size: 1.6rem;
            color: #2d2d2d;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card_land1 p {
            color: #666;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Challenge Section */
        .challenge_land1 {
            background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
            padding: 6rem 2rem;
            position:relative;
        }

        .challenge-content-wrapper_land1 {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .challenge-left_land1 {
            padding-right: 2rem;
        }

        .challenge-right_land1 {
            position: sticky;
            top: 120px;
        }

        .challenge-grid_land1 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .challenge-card_land1 {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid #ffe5e5;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(220, 20, 60, 0.08);
        }

        .challenge-card_land1:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
            border-color: var(--contactboss-color);
            background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
        }

        .challenge-icon_land1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 4px 10px rgba(220, 20, 60, 0.2));
        }

        .challenge-card_land1 h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #1a1a1a;
            font-weight: 700;
        }

        .challenge-card_land1 p {
            color: #666;
            line-height: 1.6;
        }

        .challenge_land1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--contactboss-color), transparent);
        }
        /* Section 2 - Horizontal Layout with Left Icons */
        .section-2_land1 {
            background: white;
            border-radius: 30px;
            padding: 80px 60px;
            box-shadow: 0 10px 40px rgba(220, 38, 38, 0.1);
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 16px auto;
        }

        .section-2_land1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--contactboss-color);
            background-size: 200% 100%;
            animation: gradient 3s ease infinite;
        }

        @keyframes gradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .section-2_land1 .section-header_land1{
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-2_land1 .section-subtitle_land1 {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 15px auto 0;
            line-height: 1.6;
        }

        .features-list_land1 {
            display: flex;
            flex-direction: column;
            gap: 40px;
            /*margin-top: 50px;*/
        }

        .feature-item_land1{
            display: flex;
            align-items: flex-start;
            gap: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
            border-radius: 20px;
            border-left: 5px solid var(--contactboss-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        .feature-item_land1:nth-child(1) { animation-delay: 0.1s; }
        .feature-item_land1:nth-child(2) { animation-delay: 0.2s; }
        .feature-item_land1:nth-child(3) { animation-delay: 0.3s; }

        .feature-item_land1:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
            background: white;
        }

        .feature-icon-box_land1 {
            width: 70px;
            height: 70px;
            min-width: 70px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
            transition: all 0.4s ease;
        }

        .feature-item_land1:hover .feature-icon-box_land1 {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
        }

        .feature-icon-box_land1 svg {
            width: 32px;
            height: 32px;
            stroke: var(--contactboss-color);
            fill: none;
            stroke-width: 2;
        }

        .feature-content_land1 {
            flex: 1;
        }

        .feature-item-title_land1 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .feature-item-description_land1 {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom:0px;
        }
        .features-list-grid_land1{
            display:flex;
            align-items:center;
            margin-top:90px;
        }
        .feature-list-image_land1{
            margin-left: 10px;
            background: #ffffff;
            padding: 10px;
            box-shadow: 0px 0px 6px 2px #f7f7f7;
            border-radius: 10px;
        }
        .feature-list-image_land1 img{
            width:335px;
          
            border-radius:10px;
        }
         /* Mobile App Section */
        .mobile-section_land1 {
            position: relative;
            background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
            border-radius: 40px;
            overflow: hidden;
            margin-bottom: 120px;
            padding: 80px 60px;
        }

        .mobile-section_land1::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

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

        .mobile-content-wrapper_land1 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .mobile-text-content_land1 {
            animation: fadeInLeft 1s ease-out;
        }

        .section-label_land1 {
            display: inline-block;
            background: var(--contactboss-color);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .mobile-title_land1 {
            font-size:  var(--head-size);
            font-weight: 900;
            background: var(--contactboss-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .mobile-subtitle_land1 {
            font-size: 1.4rem;
            color: #1e293b;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .mobile-description_land1{
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .app-store-buttons_land1 {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .app-store-btn_land1 {
            display: inline-block;
            transition: all 0.3s ease;
            filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.15));
        }

        .app-store-btn_land1:hover {
            transform: translateY(-5px);
            filter: drop-shadow(0 8px 20px rgba(220, 38, 38, 0.25));
        }

        .app-store-btn_land1 img {
            height: 55px;
            width: auto;
        }

        .mobile-phone-mockup_land1 {
            position: relative;
            text-align: center;
            animation: fadeInRight 1s ease-out;
        }

        .phone-container_land1 {
            position: relative;
            display: inline-block;
            animation: float 6s ease-in-out infinite;
        }

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

        .phone-glow_land1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
            filter: blur(40px);
            z-index: -1;
        }
        .pricing-note_price_btn{
            text-align: center;
            /*margin-top: 30px;*/
            background: var(--contactboss-color);
            color: white;
            padding: 14px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display:inline-block;
            margin:30px 30px 0px;
        }
        .pricing-note_price_btn:hover{
                color: white;
        }
        
          /* Testimonials */
        .testimonials_land1 {
            background: #f8f8f8;
            padding: 6rem 2rem;
            color: black;
        }

        .testimonials-grid_land1 {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .testimonial-card_land1 {
            background: rgb(255 128 128 / 5%);
            padding: 3rem;
            border-radius: 25px;
            border-left: 5px solid var(--contactboss-color);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
        }

        .testimonial-card_land1::before {
            content: '"';
            font-size: 8rem;
            color: rgba(255, 75, 75, 0.2);
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: Georgia, serif;
        }

        .testimonial-card_land1:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 75, 75, 0.3);
        }

        .testimonial-text_land1 {
            font-size: 1.15rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            color: black;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .testimonial-author_land1 {
            color: var(--contactboss-color);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .test-read{
        text-align:center;
        margin-top:40px;
        }
        .test-read a{
            text-align: center;
            margin-top: 30px;
            background: var(--contactboss-color);
            color: white;
            padding: 14px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
        }
        .test-read a:hover{
            color: white;
        }
         /* Section 3 - Benefits Section with Different Style */
         .section-3_land1{
            
             max-width:1200px;
             margin:50px auto 0px;
         }
        .section-3_land1 .section-header_land1 {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out;
        }

        .benefits-grid_land1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px;
        }

        .benefit-card_land1 {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(239, 68, 68, 0.06) 100%);
            border: 2px solid transparent;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            position: relative;
        }

        .benefit-card_land1:nth-child(1) { animation-delay: 0.1s; }
        .benefit-card_land1_land1:nth-child(2) { animation-delay: 0.2s; }
        .benefit-card_land1:nth-child(3) { animation-delay: 0.3s; }

        .benefit-card_land1:hover {
            border-color: var(--contactboss-color);
            /*background: white;*/
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(220, 38, 38, 0.12);
        }

        .benefit-icon_land1 {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
            transition: all 0.4s ease;
        }

        .benefit-card_land1:hover .benefit-icon_land1 {
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
        }

        .benefit-icon_land1 svg {
            width: 28px;
            height: 28px;
            stroke: var(--contactboss-color);
            fill: none;
            stroke-width: 2;
        }

        .benefit-title_land1 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--contactboss-color);
            margin-bottom: 12px;
        }

        .benefit-description_land1 {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
        }

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

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

        @media (max-width: 768px) {
            .section-title_land1_land1 {
                font-size: 2rem;
            }


            .section-2_land1 {
                padding: 60px 30px;
            }

            .features-grid_land1,
            .benefits-grid_land1 {
                grid-template-columns: 1fr;
            }

            .feature-item_land1 {
                flex-direction: column;
                text-align: center;
            }

            .feature-icon-box_land1 {
                margin: 0 auto;
            }
        }
         /* FAQ Section */
        .faq-section_land1 {
            background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
            /*border-radius: 40px;*/
            padding: 80px 60px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .faq-section_land1::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .faq-header_land1 {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
        }

        .faq-title_land1 {
            font-size:  var(--head-size);;
            font-weight: 900;
            background: var(--contactboss-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .faq-subtitle_land1 {
            font-size: 1.15rem;
            color: #64748b;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-list_land1 {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .faq-item_land1 {
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 2px solid #f1f5f9;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .faq-item_land1:nth-child(1) { animation-delay: 0.1s; }
        .faq-item_land1:nth-child(2) { animation-delay: 0.15s; }
        .faq-item_land1:nth-child(3) { animation-delay: 0.2s; }
        .faq-item_land1:nth-child(4) { animation-delay: 0.25s; }
        .faq-item_land1:nth-child(5) { animation-delay: 0.3s; }
        .faq-item_land1:nth-child(6) { animation-delay: 0.35s; }
        .faq-item_land1:nth-child(7) { animation-delay: 0.4s; }
        .faq-item_land1:nth-child(8) { animation-delay: 0.45s; }
        .faq-item_land1:nth-child(9) { animation-delay: 0.5s; }

        .faq-item_land1:hover {
            border-color: #fecaca;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.12);
        }

        .faq-question_land1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            user-select: none;
            gap: 20px;
        }

        .faq-question_land1-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            flex: 1;
        }

        .faq-icon_land1 {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: var(--contactboss-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-icon_land1::after {
            content: '+';
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .faq-item_land1.active .faq-icon_land1 {
            transform: rotate(45deg);
        }

        .faq-answer_land1 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
                border-top: 1px solid #eee;
        }

        .faq-item_land1.active .faq-answer_land1 {
            max-height: 500px;
            padding: 0 30px 25px 30px;
        }

        .faq-answer_land1-text {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.7;
        }

        /* CTA Box */
        .faq-cta_land1 {
            background: var(--contactboss-color);
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            margin-top: 50px;
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.25);
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
            opacity: 0;
            margin:0 auto;
            max-width:900px;
        }

        .cta-title_land1 {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }

        .cta-description_land1 {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-button_land1 {
            background: white;
            color: var(--contactboss-color);
            border: none;
            padding: 16px 40px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button_land1:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
             color: var(--contactboss-color);
        }
         .faq-a,.faq-a:hover{
            color:var(--contactboss-color);
            text-decoration:none;
            
        }
        .why-choose_land1{
                padding: 3rem 20px;
        }
        @media (min-width: 1099px) and (max-width: 1199px) {
            .floating-feature-card_land1{
                padding: 20px!important;
                max-width: 194px!important;
            }
            
        }
        @media (min-width: 320px) and (max-width: 1050px) {
              .hero-container_land1{
                      max-width: 750px;
                      display:block;
              }
              .hero-image_land1{
                height: auto;
                padding-top: 37px;
                margin-top: 70px;
                  
              }
        }
        @media (min-width: 320px) and (max-width: 991px) {
            .challenge-content-wrapper_land1{
                display:block!important;
            }
           
              
        }
        @media (min-width: 320px) and (max-width: 900px) {
            .features-list-grid_land1{
                display:block!important;
            }
            .feature-list-image_land1{
                margin-top:30px;
            }
            .feature-list-image_land1 img{
                width:100%;
            }
          
        }
        @media (min-width: 921px) and (max-width: 1024px) {
            .mobile-content-wrapper_land1{
               gap: 0px;
            }
        }
         @media (min-width: 320px) and (max-width: 920px) {
            .mobile-content-wrapper_land1{
                display:block!important;
            }
            .mobile-phone-mockup_land1{
                margin-top:30px;
            }
        }
         /* Contact Section */
        .contact-section_land1 {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 0;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
            animation: fadeInUp 0.8s ease-out;
            max-width: 1300px;
            margin: 20px auto;
        }

        .contact-info_land1 {
            background: var(--contactboss-color);
            padding: 80px 60px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info_land1-title {
            font-size:  var(--head-size);;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .contact-info_land1-description {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons_land1 {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .btn-primary1_land1,
        .btn-secondary1 {
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            
        }

        .btn-primary1_land1 {
            background: white;
            color: var(--contactboss-color);
        }

        .btn-primary1_land1:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: var(--contactboss-color);
        }

        .btn-secondary1 {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

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

        .contact-form-wrapper_land1 {
            padding: 80px 60px;
            background: #fafafa;
        }

        .form-title_land1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .form-subtitle_land1 {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 35px;
        }

        .form-group_land1 {
            margin-bottom: 25px;
        }

        .form-label_land1 {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .required {
            color: var(--contactboss-color);
        }

        .form-input,
        .form-textarea_land1 {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus,
        .form-textarea_land1:focus {
            outline: none;
            border-color: var(--contactboss-color);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        .form-textarea_land1 {
            resize: vertical;
            min-height: 120px;
        }

        .form-helper {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 6px;
        }

        .submit-button_land1 {
            width: 100%;
            padding: 18px;
            background: var(--contactboss-color);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .submit-button_land1:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }

        .form-footer_land1 {
            text-align: center;
            margin-top: 25px;
            font-size: 0.9rem;
            color: #64748b;
        }

        .form-footer_land1 a {
            color: var(--contactboss-color);
            text-decoration: none;
            font-weight: 600;
        }

        .form-footer_land1 a:hover {
            text-decoration: underline;
        }

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

        @media (max-width: 1024px) {
            .contact-section_land1 {
                grid-template-columns: 1fr;
            }

            .contact-info_land1 {
                padding: 60px 40px;
            }

            .contact-form-wrapper_land1 {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            .faq-section_land1 {
                padding: 60px 30px;
            }

            .faq-title_land1,
            .form-title_land1 {
                font-size: 2.2rem;
            }

            .contact-info_land1-title {
                font-size: 2rem;
            }

            .faq-question_land1 {
                padding: 20px;
            }

            .faq-item_land1.active .faq-answer_land1 {
                padding: 0 20px 20px 20px;
            }

            .contact-info_land1,
            .contact-form-wrapper_land1 {
                padding: 40px 25px;
            }
        }
        .faq-a,.faq-a:hover{
            color:var(--contactboss-color);
            text-decoration:none;
            
        }
        @media (min-width: 300px) and (max-width: 500px) {
            .challenge-grid_land1{
                display:block;
            }
            .challenge-card_land1{
                margin-top:10px;
            }
            .testimonials-grid_land1{
              display:block;
            }
            .testimonial-card_land1{
                margin-top:10px;
            }
            .hero_land1{
                /*padding:2rem 20px 2rem;*/
            }
        }
        @media (min-width: 300px) and (max-width: 550px) {
            .floating-feature-card_land1 {
                padding: 20px !important;
                max-width: 194px !important;
            }
            .feature-card-icon_land1 {
            width: 40px;
            height: 40px;
            margin-bottom:10px;
            }
            .floating-feature-card_land1 h3 {
                font-size: 20px;
                
            }
            .floating-feature-card_land1 p {
                font-size: 15px;
            }
        }

        /*Sign up page*/
.hero-banner_signup {
            width: 100%;
            height: 400px;
            background:linear-gradient(135deg, #000000 0%, #ff6b7a 50%, var(--contactboss-color) 100%);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
        }

        .hero-banner_signup-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 60px;
            gap: 60px;
        }

        .hero-banner_signup-text {
            flex: 1;
            color: white;
        }

        .hero-banner_signup-text h1 {
            font-size: var(--main-head-size);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero-banner_signup-text p {
            font-size: 20px;
            line-height: 1.6;
            opacity: 0.95;
            margin-bottom: 30px;
        }

        .hero-banner_signup-cta {
            display: inline-flex;
            gap: 16px;
        }
        .hero-banner_signup-visual {
            flex: 1;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-cards_signup {
            position: relative;
            width: 100%;
            height: 100%;
            align-items: center;
            display: flex

        }
        .floating-cards_signup img{
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        .bg-circle_signup {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .bg-circle_signup1 {
            width: 400px;
            height: 400px;
            top: -200px;
            left: -100px;
        }

        .bg-circle_signup2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            left: 20%;
        }

        .bg-circle_signup3 {
            width: 250px;
            height: 250px;
            top: -50px;
            right: 10%;
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            color: #333;
        }

        .logo span {
            color:var( --contactboss-color);
        }

        .nav-btn {
            background: transparent;
            border: 2px solid #e63946;
            color: var( --contactboss-color);
            padding: 12px 28px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: var( --contactboss-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
        }

        .main-content_signup {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .hero-section_signup {
            padding: 40px 0;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .hero-text-content_signup {
            flex: 1;
        }

        .hero-section_signup h1 {
            font-size: var(--head-size);
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 24px;
            font-weight: 800;
        }

        .hero-section_signup h1 .highlight_signup {
            color: var( --contactboss-color);
            position: relative;
            display: inline-block;
        }

        .hero-section_signup h1 .highlight_signup::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(230, 57, 70, 0.2);
            border-radius: 4px;
        }

        .hero-section_signup p {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .benefits_signup {
            display: grid;
            gap: 20px;
        }

        .benefit-item_signup {
            display: flex;
            align-items: start;
            gap: 16px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .benefit-item_signup:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 16px rgba(230, 57, 70, 0.15);
        }

        .check-icon_signup {
            width: 28px;
            height: 28px;
            background: var( --contactboss-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-weight: bold;
        }

        .benefit-text_signup {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }

        

        .feature-card_signup {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card_signup:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(230, 57, 70, 0.15);
        }

        .feature-card_signup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background:var( --contactboss-color);
        }

        .feature-icon_signup {
            width: 60px;
            height: 60px;
            background: var( --contactboss-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }

        .feature-card_signup h3 {
            font-size: 18px;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .feature-card_signup p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
            padding: 32px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }

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

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var( --contactboss-color);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 13px;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .banner-image_signup {
            width: 100%;
            height: 280px;
            background:var( --contactboss-color);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
            margin-top: 40px;
        }

        .banner-content_signup {
            position: relative;
            z-index: 2;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .banner-image_signup h2 {
            font-size: var(--head-size);
            color: white;
            font-weight: 800;
            margin-bottom: 12px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .banner-image_signup p {
            font-size: 16px;
            color: rgba(255,255,255,0.95);
            line-height: 1.6;
            max-width: 400px;
        }

        .banner-shape_signups_signup {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
        }

        .shape_signup {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .shape_signup1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -50px;
            background: rgba(255,255,255,0.15);
        }

        .shape_signup2 {
            width: 200px;
            height: 200px;
            bottom: -80px;
            right: 100px;
            background: rgba(255,255,255,0.1);
        }

        .shape_signup3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: -30px;
            background: rgba(255,255,255,0.08);
        }

        .banner-icon {
            position: absolute;
            font-size: 120px;
            opacity: 0.15;
            right: 50px;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
        }

        .form-section_signup {
            background: white;
            padding: 48px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-header_signup {
            text-align: center;
            margin-bottom: 32px;
        }

        .form-header_signup h2 {
            font-size:var(--head-size);
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .form-header_signup p {
            color: #666;
            font-size: 14px;
        }

        .form-group_signup {
            margin-bottom: 24px;
        }

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

        .required {
            color: var( --contactboss-color);
        }

        .form-group_signup input,
        .form-group_signup select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group_signup input:focus,
        .form-group_signup select:focus {
            outline: none;
            border-color: var( --contactboss-color);
            background: white;
            box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
        }

        .form-note_signup {
            font-size: 12px;
            color: #999;
            margin-top: 6px;
        }

        .subscription-section_signup {
            margin: 32px 0;
            padding: 24px;
            background: #f8f9fa;
            border-radius: 12px;
        }

        .subscription-section_signup h3 {
            font-size: 20px;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .checkbox-group_signup {
            margin-bottom: 20px;
        }

        .checkbox-label_signup {
            display: flex;
            align-items: start;
            gap: 12px;
            cursor: pointer;
            font-size: 14px;
            color: #333;
        }

        .checkbox-label_signup input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
        }

        .billing-info_signup {
            padding: 16px;
            background: white;
            border-radius: 8px;
            margin: 20px 0;
            font-size: 15px;
            color: #333;
        }

        .discount-section_signup {
            margin-top: 20px;
        }

        .discount-section_signup label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .discount-input-group_signup {
            display: flex;
            gap: 12px;
        }

        .discount-input-group_signup input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            font-size: 15px;
        }

        .apply-btn-group_signup {
            padding: 12px 24px;
            background: #4a9eff;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .apply-btn-group_signup:hover {
            background: #3a8eef;
        }

        .check-availability-btn {
            margin-top: 8px;
            padding: 8px 16px;
            background: transparent;
            border: 2px solid var( --contactboss-color);
            color: var( --contactboss-color);
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .check-availability-btn:hover {
            background: var( --contactboss-color);
            color: white;
        }

        .plan-label_signup {
            font-size: 12px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 8px;
        }

        .package-select_signup {
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
        }

        .package-select_signup option {
            background: var( --contactboss-color);
            color: white;
        }

        .billing-note_signup {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.3);
            font-size: 13px;
            opacity: 0.95;
        }

        .form-row_signup {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .pricing-box_signup {
            background: var( --contactboss-color);
            padding: 28px;
            border-radius: 16px;
            color: white;
            margin: 32px 0;
        }

        .pricing-header_signup {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .plan-name_signup {
            font-size: 24px;
            font-weight: 700;
        }

        .plan-price_signup {
            font-size: 14px;
            opacity: 0.9;
        }

        .pricing-details_signup {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.3);
        }

        .price-row_signup {
            display: flex;
            justify-content: space-between;
            font-size: 15px;
        }

        .price-row_signup.total {
            font-size: 20px;
            font-weight: 700;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.3);
        }

        .submit-btn_signup {
            width: 100%;
            padding: 16px;
            background: var( --contactboss-color);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
        }

        .submit-btn_signup:hover {
            background: var( --contactboss-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
        }

        .form-footer_signup {
            text-align: center;
            margin-top: 24px;
            font-size: 12px;
            color: #999;
        }

        .form-footer_signup a {
            color: var( --contactboss-color);
            text-decoration: none;
        }
        .hero-banner_signup-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
           .hero-banner_signup {
            width: 100%;
            height: 400px;
            background:linear-gradient(135deg, #000000 0%, #ff6b7a 50%, var(--contactboss-color) 100%);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
            margin-top:100px;
        }

       

        .hero-banner_signup-text {
            flex: 1;
            color: white;
        }

        .hero-banner_signup-text h1 {
            font-size: var(--main-head-size);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero-banner_signup-text p {
            font-size: 20px;
            line-height: 1.6;
            opacity: 0.95;
            margin-bottom: 30px;
        }

        .hero-banner_signup-cta {
            display: inline-flex;
            gap: 16px;
        }
        .signup_page_new{
            margin:0px 20px;
        }
          @media  (min-width: 300px) and  (max-width: 600px) { /* Changed from 601px */
          .hero-image-section_signup_signup {
                display: block;
            }
            .feature-card_signup{
                margin-bottom:10px;
            }
        }
        @media (min-width: 601px) {
            .hero-image-section_signup_signup {
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-top: 20px;
            }
          
        }
        @media (max-width:600px){
              .subscription-section_signup{
                padding:0px;
            }
            .discount-input-group_signup{
                gap:2px;
            }
        }
     
        @media (min-width: 300px) and (max-width: 991px) {
            .main-content_signup {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-section_signup h1 {
                font-size: 36px;
            }

            .form-section_signup {
                padding: 32px 24px;
            }

            .form-row_signup {
                grid-template-columns: 1fr;
            }
  
            .stats-section {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .hero-banner_signup-content{
                display:block;
            }
            .hero-banner_signup-text{
                margin-top:10px;
            }
            .hero-banner_signup-visual{
                align-items:initial;
                height:auto;
                margin-bottom:15px;
            }
            .floating-cards_signup img{
                width:inherit;
                margin:0px auto;
            }
            .hero-banner_signup{
                height:fit-content;
            }
        }
       
        /*payment*/
        .hero-banner_payment {
            margin-top: 70px;
            background:linear-gradient(135deg, #000000 0%, #ff6b7a 50%, var(--contactboss-color) 100%);
            /* background: linear-gradient(135deg, rgba(217, 60, 42, 0.95) 0%, rgba(179, 40, 25, 0.95) 100%); */
            padding: 0;
            position: relative;
            overflow: hidden;
            /*height: 750px;*/
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-banner_payment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1600&h=400&fit=crop') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-banner_payment::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
            z-index: 1;
        }

        .hero-content_payment {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 40px;
            text-align: center;
        }

        .hero-image_payment {
            width: 100%;
            max-width: 600px;
            height: 250px;
            margin: 0 auto 30px;
            background: url('https://contactboss.com/images/featurenew/c6.jpg') center/cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideDown 0.8s ease;
        }

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

        .hero-title_payment {
            color: white;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .hero-subtitle_payment {
            color: rgba(255,255,255,0.95);
            font-size: 18px;
            font-weight: 400;
            /*max-width: 600px;*/
            margin: 0 auto;
            margin-bottom:25px;
        }
        .info-box_paymentes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .info-box_payment {
            background: rgba(255, 255, 255, 0.95);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            text-align: left;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            animation: fadeInUp 0.8s ease;
        }

        .info-box_payment-title {
            color: var(--contactboss-color);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-box_payment-title::before {
            font-size: 20px;
        }
        .info-box_payment-title img{
                width: 25px;
                height: 25px;
                background: linear-gradient(135deg, #dc2626, #ef4444);
                border-radius: 9px;
                display: flex;
                align-items: center;
                justify-content: center;
                /* margin: 0 auto 30px; */
                /* font-size: 2rem; */
                position: relative;
                z-index: 2;
                padding: 4px;
        }

        

        .info-box_payment-content {
            color: #2c3e50;
            font-size: 14px;
            line-height: 1.7;
        }
        .info-box_payment-content img{
                width: 25px;
                height: 25px;
                background: linear-gradient(135deg, #dc2626, #ef4444);
                border-radius: 9px;
                display: flex;
                align-items: center;
                justify-content: center;
                /* margin: 0 auto 30px; */
                /* font-size: 2rem; */
                position: relative;
                z-index: 2;
                padding: 4px;
        }

        .info-box_payment-content strong {
            color: var(--contactboss-color);
            font-weight: 600;
        }

        .info-box_payment ul {
            margin: 10px 0 0 0;
            padding-left: 20px;
        }

        .info-box_payment li {
            margin-bottom: 6px;
            color: #34495e;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .payment-section_payment {
            background: white;
            border-radius: 16px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            animation: slideInLeft 0.6s ease;
        }

        .payment-header {
            background: linear-gradient(135deg, var(--contactboss-color) 0%, var(--contactboss-dark) 100%);
            color: white;
            padding: 25px 35px;
            font-size: 24px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .payment-header::before {
            content:"\1F4B3";
            font-size: 28px;
        }

        .payment-form {
            padding: 35px;
        }

        .form-group_payment {
            margin-bottom: 24px;
        }
        .form-row_payment {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .icon_payment-label {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .icon_payments {
            color: var(--contactboss-color);
            font-size: 18px;
        }

        .btn-pay_payment {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--contactboss-color) 0%, var(--contactboss-dark) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 8px 25px rgba(217, 60, 42, 0.35);
            letter-spacing: 0.5px;
        }

        .btn-pay_payment:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(217, 60, 42, 0.45);
        }

        .btn-pay_payment:active {
            transform: translateY(-1px);
        }

        .support-text_payment {
            text-align: center;
            margin-top: 25px;
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.6;
        }

        .support-text_payment a {
            color: var(--contactboss-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .support-text_payment a:hover {
            color: var(--contactboss-dark);
            text-decoration: underline;
        }

        .pricing-card_payment {
            background: white;
            border-radius: 16px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            padding: 35px;
            position: sticky;
            top: 120px;
            animation: slideInRight 0.6s ease;
            border: 3px solid var(--contactboss-color);
        }

        .plan-badge_payment {
            background: linear-gradient(135deg, var(--contactboss-color) 0%, var(--contactboss-dark) 100%);
            color: white;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 18px;
            display: inline-block;
            margin-bottom: 12px;
            box-shadow: 0 4px 15px rgba(217, 60, 42, 0.3);
        }

        .plan-subtitle_payment {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .price-row_payment {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 2px solid #f1f3f5;
        }

        .price-label_payment {
            color: #5a6c7d;
            font-weight: 600;
            font-size: 15px;
        }

        .price-value_payment {
            font-weight: 700;
            color: #2c3e50;
            font-size: 18px;
        }

        .grand-total_payment {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 3px solid var(--contactboss-color);
            background: linear-gradient(135deg, rgba(217, 60, 42, 0.05) 0%, rgba(217, 60, 42, 0.02) 100%);
            margin: 20px -35px 0;
            padding: 25px 35px;
            border-radius: 0 0 13px 13px;
        }

        .grand-total_payment .price-label_payment {
            color: var(--contactboss-color);
            font-size: 20px;
        }

        .grand-total_payment .price-value_payment {
            color: var(--contactboss-color);
            font-size: 24px;
        }

        .billing-note_payment {
            background: #fff5f4;
            padding: 18px;
            border-radius: 10px;
            margin-top: 25px;
            font-size: 13px;
            color: #5a6c7d;
            border-left: 4px solid var(--contactboss-color);
            line-height: 1.6;
        }

        .security-badge_payment {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            font-size: 13px;
            color: #5a6c7d;
        }

        .security-badge_payment::before {
            content: "\1F512";
            font-size: 18px;
        }

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

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

        @media (max-width: 968px) {
           
            
            .pricing-card_payment {
                position: sticky;
            }

            .hero-banner_payment {
                padding: 0;
                /*height: 300px;*/
            }

            .hero-image_payment {
                /*height: 180px;*/
                margin-bottom: 20px;
            }

            .hero-title_payment {
                font-size: 32px;
            }

            .hero-subtitle_payment {
                font-size: 16px;
            }

            .form-row_payment {
                grid-template-columns: 1fr;
            }
        }
        
        .icon_payments svg{
            fill:var(--contactboss-color);
        }
         .info-box_payment {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        .section_payment {
            margin-bottom: 35px;
        }
        
        .section_payment:last-child {
            margin-bottom: 0;
        }
        
        .section_payment-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .icon_payment {
            width: 44px;
            height: 44px;
            background: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .section_payment-title {
            color: #e74c3c;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .section_payment-content {
            color: #4a5568;
            font-size: 1.05rem;
            line-height: 1.7;
        }
         .payment_ul {
            margin-left: 20px;
            margin-top: 15px;
        }
        
        .payment_li {
            margin-bottom: 10px;
            color: #4a5568;
            list-style-type: disc;
        }
        .payment_lii{
             margin-bottom: 10px;
            color: #4a5568;
            list-style-type: circle;
        }
         .pay_label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.3px;
        }

        .pay_input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e1e8ed;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            color: #2c3e50;
        }

        .pay_input::placeholder {
            color: #95a5a6;
        }

        .pay_input:focus {
            outline: none;
            border-color: var(--contactboss-color);
            background: white;
            box-shadow: 0 0 0 4px rgba(217, 60, 42, 0.08);
            transform: translateY(-1px);
        }
         .container_pay {
            max-width: 1200px;
            margin: 50px auto 40px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 40px;
            align-items: start;
            display:flex;
        }

         @media (max-width: 768px) {
            .info-box_payment {
                padding: 30px 25px;
            }
            .section_payment-title {
                font-size: 1.3rem;
            }
            .section_payment-content {
                font-size: 1rem;
            } 
            .container_pay {
               
                display:block;
            }
        }
        

        
      