@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Smooch+Sans:wght@100..900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

/* h1,h2,h3,h4,h5,h6,p,a
{
    font-family: 'Inter', sans-serif;
} */

.container {
    width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Design System Colors */
:root {
    --primary: #DA0D20;
    --secondary: #000000;
    --background: #F7F7F7;
    --card: #ffffff;
    --muted: #f5f5f5;
    --muted-foreground: #666666;
    --border: #e5e5e5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #DA0D20, #E53E3E);
    --gradient-hero: linear-gradient(135deg, #FCE4E6, #F7F7F7);
    --gradient-hover: linear-gradient(135deg, #FEF7F7, #FCE4E6);
    
    /* Shadows */
    --shadow-card: 0 4px 20px -4px rgba(218, 13, 32, 0.1);
    --shadow-feature: 0 8px 32px -8px rgba(218, 13, 32, 0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    /* line-height: 38px; */
    line-height: 45px;
}

.section-description {
    font-size: 18px;
    color: #4f4f4f;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
    padding: 10px 16px;
    height: 40px;
}

.btn-lg {
    padding: 12px 32px;
    height: 44px;
    font-size: 15px;
    width: 180px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    background: #c10b1c;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #333333;
    color: #ffffff;
}

.btn-outline {
    background: #181818;
    color: #ffffff;
    /* border: 1px solid var(--border); */
}

.btn-outline:hover {
   background: #000000;
   transform: translateY(-1px);
   color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
}

.btn-ghost:hover {
    background: var(--muted);
}

/* Header */


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

/* .nav {
    display: flex;
    align-items: center;
    gap: 32px;
} */

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 63px 0 48px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FCE4E6, #ff8282);
}

.hero-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-tech-lines {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-title {
    font-size: 55px;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.1;
    position: relative;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(45deg, #ff0000, #f18686);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
}

.hero-description {
    font-size: 20px;
    /* color: var(--muted-foreground); */
    color: #670606;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 32px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-right {
    display: flex;
    justify-content: center;
}

.mobile-img {
    width: 660px;
    height: auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* .mobile-img:hover
{
   transition: transform 0.8s ease-in-out;
  will-change: transform;
    transform: scale(1.05);
    cursor: pointer;
} */

/* Trusted By Section */
.trusted-by {
    padding: 64px 0;
    background: #ffffff;
}

.trusted-by-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px;
    background-color: #ffffff;
    /* border: 1px solid;
    border-color: rgba(0, 0, 0, 0.08);
    border-radius: 10px; */
}

.trusted-by-content .company img
{
   height: 26px;
}

.company {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-icon {
    width: 35px;
    height: 35px;
    color: var(--muted-foreground);
    stroke-width: 2;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: #ffffff;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.dashboard-card {
    background: var(--card);
    border-radius: 16px;
    /* padding: 32px; */
    padding: 6px 32px;
    background: rgb(255 207 207 / 30%);
    border: 1px solid #ffeaec;
}

.dashboard-img {
    width: 100%;
    border-radius: 8px;
}

.payment-right {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    stroke-width: 2;
}

/* Sales Section */
.sales-section {
    padding: 80px 0;
    background: rgb(255 255 255);
}

.sales-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sales-left {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #ffffff;
    /* background: var(--background); */
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--gradient-hover);
    box-shadow: var(--shadow-feature);
    transform: scale(1.05);
    border-color: rgba(218, 13, 32, 0.2);
}


.featured-active-card
{
    background: var(--gradient-hover);
    box-shadow: var(--shadow-feature);
    transform: scale(1.05);
    border-color: rgba(218, 13, 32, 0.2);
}

.feature-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(218, 13, 32, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-main-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    stroke-width: 2;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    color: #000000;
    stroke-width: 2;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 31px;
}

.feature-card:hover .arrow-icon {
    color: var(--primary);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.faq-accordion {
    max-width: none;
    margin: 0;
}

.faq-item {
    background: var(--card);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #cdcdcd;
}

.faq-trigger {
    width: 100%;
    padding: 17px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    transition: background-color 0.3s ease;
}

.faq-trigger:hover {
    background: #fff0f1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #d80328;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    padding: 0 24px 24px;
    max-height: 200px;
    opacity: 1;
}

.faq-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* FAQ Contact Card */
.faq-contact-card {
   background: rgb(255 207 207 / 30%);
    border-radius: 16px;
    padding: 66px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border: 1px solid #ffeaec;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(218, 13, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke-width: 2;
}

.faq-contact-card h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.faq-contact-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.faq-contact-card .btn {
    width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    /* background: var(--background); */
    background-color: #ffffff;
}

.cta-container {
    background: var(--gradient-primary);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
}

.cta-tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
}

.tech-lines {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 64px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--muted-foreground);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .payment-content,
    .sales-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .trusted-by-content {
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 32px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .mobile-img {
        width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-by-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .company {
        justify-content: center;
    }
}

/* Loading and Animation States */
.feature-card,
.btn,
.faq-trigger {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States for Accessibility */
.btn:focus,
.faq-trigger:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Styling Complinace Badges */     

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 10px 0;
    align-items: center;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(255 255 255 / 90%);
    border: 1px solid #ffa7a7;
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.badge-item:hover {
    background: white;
    border-color: #DA0D20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 13, 32, 0.2);
}

.badge-item svg
{
    color: #DA0D20;
}

.badge-item i {
    color: #DA0D20;
    width: 18px;
    height: 18px;
}

.badge-item span {
    white-space: nowrap;
}

/* Responsive adjustments for compliance badges */
@media (max-width: 768px) {
    .compliance-badges {
        justify-content: center;
        margin: 25px 0;
    }
    
    .badge-item {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .badge-item i {
        width: 16px;
        height: 16px;
    }

    .cta-btn
    {
        font-size: 16px;
    }

    .cta-btn2
    {
        font-size: 16px !important;
    }

    .final-cta .cta-btn 
    {
        padding: 18px 20px;
        font-size: 16px;
    }

    .final-cta .container
    {
        z-index: auto;
    }
}


 /*STYLING SLIDING TEXT ANIMATION*/


 .hero-section-sliding-text
 {
    margin-top: 50px;
    background-color: #ffc1c1;
    padding: 10px;
 }

.textSlideLR
{
   background-color: #efefef;
    color: #000000;
    padding: 15px 0;
    background: linear-gradient(135deg, #FCE4E6, #ff8282);
    margin-top: -60px;
    position: relative;
}

.sliderTextWrap {
    width: 100%;
  overflow: hidden; /* Hides overflowing text */
  position: relative;
  }
  

.text-wrapper-animate {
    display: inline-flex; /* Ensures all text items are in one line */
  animation: slide 30s linear infinite; /* Smooth scrolling animation */
  white-space: nowrap; /* Prevents text wrapping */
  }

  .text-wrapper-animate:hover {
    animation-play-state: paused;
    cursor: pointer;
  }

  .text-wrapper-animate span {
    margin: 0 30px;
    font-size: 25px;
    line-height: 30px;
  }

  .text-wrapper-animate span i
  {
     font-size: 20px;
  }
  
  /* Keyframes for Sliding Animation */
  @keyframes slide {
    0% {
      transform: translateX(0); /* Starts from the initial position */
    }
    100% {
      transform: translateX(-50%); /* Moves entire content off-screen 100 for strat over */
    }
  }


  .highlightLine::after {
   content: '';
    position: absolute;
    bottom: 57px;
    left: 3px;
    width: 258px;
    height: 3px;
    background: linear-gradient(90deg, #DA0D20, transparent);
    animation: underline-expand 2s ease-out;
}


/* Pricing Section */
.pricing-section {
    padding: 40px 0;
    background: rgb(255 255 255);
    position: relative;
    overflow: hidden;
    margin: 100px 0 50px 0;
}

.pricing-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(218, 13, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(218, 13, 32, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, transparent 25%, rgba(218, 13, 32, 0.02) 50%, transparent 75%);
    animation: pricingBgPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    /* margin-bottom: 64px; */
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--card);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    /* opacity: 0; */
    transform: translateY(50px) scale(0.9);
}

.pricing-card.animate-pricing-slide-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: pricingSlideIn 0.8s ease-out forwards;
}

.pricing-card:hover {
    /* transform: translateY(-8px) scale(1.02); */
     transform: translateY(-12px) scale(0.9);
    box-shadow: var(--shadow-feature);
}

.basic-plan {
    border-color: rgba(218, 13, 32, 0.2);
}

.pro-plan {
    border-color: var(--primary);
    position: relative;
    background: linear-gradient(135deg, #ffffff, #fefcfc);
}

.pro-plan:hover {
    /* transform: translateY(-12px) scale(1.05); */
    transform: translateY(-12px) scale(0.9);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-icon {
    width: 64px;
    height: 64px;
    background: rgba(218, 13, 32, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.plan-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke-width: 2;
}

.pro-icon {
    background: var(--gradient-primary);
}

.pro-icon svg {
    color: white;
}

.plan-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.plan-description {
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-period {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    min-height: 390px;
}

.plan-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 20px;
    height: 20px;
    color: var(--primary);
    stroke-width: 2;
    flex-shrink: 0;
}

.pro-check {
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: 2px;
    color: white;
}

.plan-features span {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.5;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.basic-button {
    background: var(--secondary);
    color: white;
}

.basic-button:hover {
    background: #333333;
    transform: scale(1.02);
    color: #ffffff;
}

.pro-button {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-card);
}

.pro-button:hover {
    box-shadow: var(--shadow-feature);
    transform: scale(1.02);
    color: #ffffff;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.pricing-guarantee p {
    color: var(--muted-foreground);
    font-size: 11px;
}

.hero-video-intro
{
    width: 100%;
    border-radius: 20px;
    border: 1px solid #ff959a;
}

/*Styling FAQS Section*/

.datetable .panel-default > .panel-heading { background: none; padding: 15px 15px; }
        .datetable .panel-title { font-weight: 400; color: #000; }
        .datetable .glyphicon { font-size: 15px; margin-right: 20px; color: #dc1414; }
        .datetable .panel-group .panel {box-shadow: none; border-radius: 8px;}
        /* .datetable .panel-group .panel {box-shadow: none; border-radius: 0; margin-bottom: 15px;box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 16px; } */

        .datetable .panel-group .panel:last-child { border-bottom: 1px solid #eee; }
        .datetable .panel-group .panel + .panel { margin-top: 0; }
        .datetable .panel-group .panel p { line-height: 27px; margin-bottom: 0; color: #4e4e4e; }

        .panel-group .panel {
    margin-bottom: 20px;
    border-radius: 10px;
}

.cta-new-section-text
{
    font-size: 20px;
    font-weight: 400 !important;
    color: #ffffff;
}

.plan-features-limit-text
{
    display: block;
    font-size: 14px !important;
    color: #3f3f3f !important;
    font-weight: 400 !important;
}


.toolused-marketing-sec
{
    padding: 70px 0;
}

.used-tools-logo img
{ 
  height: 38px !important;
}

.customers-head-title
{
    font-size: 16px;
    color: #333333;
}

.headRedPart
{
  color: #da0d20;
}

/*Sliding Logo Animation*/

/*------------------------Sliding Logo Section--------------------*/

/*=================Style Sliding Text================*/

/* Slider Container */



/* Adding gradient effect on both sides */
.tools-used-logoNew::before
{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    z-index: 2;
}

.tools-used-logoNew::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    z-index: 2;
    right: 0;
}

.tools-used-logoNew {
    width: 100%;
  overflow: hidden; 
  position: relative;
  }
  

.text-wrapper-animate {
    display: inline-flex; 
  animation: slideLogoImg 30s linear infinite; 
  white-space: nowrap; 
  }

  .text-wrapper-animate:hover {
    animation-play-state: paused;
    cursor: pointer;
  }

  .text-wrapper-animate span {
    margin: 0 15px;
    font-size: 25px;
    line-height: 30px;
  }

  .text-wrapper-animate span img
  {
    /* width: 100px; */
    background-color: #ffffff;
    height: 48px;
    padding: 4px;
    border-radius: 4px;
    /* filter: grayscale(100%) brightness(80%); */
  }

  .text-wrapper-animate span img:hover
  {
    filter: grayscale(0) brightness(100%);
  }


  
  /* Keyframes for Sliding Animation */
  @keyframes slideLogoImg {
    0% {
      transform: translateX(0); /* Starts from the initial position */
    }
    100% {
      transform: translateX(-50%); /* Moves entire content off-screen 100 for strat over */
    }
  }


  /* Marquee Logo Sliding*/


  .marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 10px 0;
  }

   .trusted-by-content {
    animation: marquee-alternate 20s linear infinite alternate;

  }


    @keyframes marquee-alternate {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

.clinetsLogoSlideAni span
{
    align-items: center;
    display: flex;
}
