
        html { scroll-behavior: smooth; }
body {
      font-family: "Nunito", sans-serif !important;
}


#hero-section {
    padding-top: 5rem;
    padding-bottom: 4rem;
}


.pre-header {
    font-size: 0.875rem; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #923bf6; 
}


.hero-title {
    font-size: 3rem; 
    font-weight: 800;
    color: #1f2937; 
    line-height: 1.2;
}


.hero-desc {
    font-size: 1.125rem; 
    color: #4b5563; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.cta-wrapper > *:not(:last-child) {
    margin-right: 0.5rem; 
    margin-bottom: 0.5rem; 
}

/* Primary CTA */
.cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #6f00ff; /* Bootstrap primary */
    border: 1px solid #6f00ff;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #5f01db; /* darker blue */
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-primary svg {
    margin-left: 0.5rem;
    stroke: currentColor;
}

/* Secondary CTA */
.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #f8f9fa; 
    border: 1px solid #b378ff5f;
    color: #6f00ff; 
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    color: #6f00ff; /* dark gray */
    background-color: #6f00ff33; /* slightly darker gray */
    transform: translateY(-2px);
    text-decoration: none;
}


/* Hero Image */
.hero-img {
    animation: subtle-marquee 6s ease-in-out infinite alternate;
    border: 2px solid #e5e7eb;
}

/* Subtle marquee animation */
@keyframes subtle-marquee {
    0% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}



@media (max-width: 991.98px) {
  #hero-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  #hero-section .text-md-left {
    text-align: center !important;
  }
  .pre-header {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0.75rem;
  }
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.3;
    text-align: center;
  }
  .hero-desc {
    font-size: 1rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-wrapper,
  .cta-primary,
  .cta-secondary {
    text-align: center;
    justify-content: center;
  }
  .cta-primary,
  .cta-secondary {
    font-size: 1rem;
    padding: 0.65rem 1.25rem;
    margin-bottom: 0.5rem;
  }
  .hero-img {
    max-width: 80%;
    margin-top: 2rem;
    border-radius: 1rem;
  }
}

@media (max-width: 767.98px) {
  #hero-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .pre-header {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-align: center;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: center;
    padding: 0 1rem;
  }
  .cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }
  .hero-img {
    max-width: 100%;
    width: 320px;
    margin: 1.5rem auto 0;
    border-radius: 0.75rem;
  }
}

@media (max-width: 480px) {
  #hero-section {
    padding-top: 2rem;
  }
  .pre-header {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-desc {
    font-size: 0.9rem;
    max-width: 95%;
    text-align: justify;
  }
  .cta-primary,
  .cta-secondary {
    
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  .hero-img {
    width: 280px;
    margin-top: 1rem;
  }
}



/* Trust Bar Logos */
.trust-logo {
    font-size: 1.25rem; /* xl */
    font-weight: 700;
    color: #9ca3af; /* gray-400 */
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: default;
}
.trust-logo:hover {
    filter: grayscale(0%);
}


/* Section Background */
#stats-section {
    background-color: #fbf0ff; /* light green */
    padding: 30px;
    border-radius: 30px;
}

/* Section Title */
.stats-title {
    font-size: 2rem; /* approx Tailwind text-3xl */
    font-weight: 800; /* font-extrabold */
    color: #1f2937; /* gray-900 */
}

/* Section Subtitle */
.stats-subtitle {
    font-size: 1.125rem; /* approx Tailwind text-lg */
    color: #4b5563; /* gray-600 */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stat Card */
.stat-card {
    background-color: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transform: scale(1.02);
}

.stat-value {
    font-size: 2.5rem; 
    font-weight: 800; 
    color: #6434d3; 
}
.stat-text {
    color: #374151; 
    font-weight: 600;
}


/* Tablet Devices (≤ 991px) */
@media (max-width: 991.98px) {
    #stats-section {
        padding: 2rem;
        border-radius: 20px;
    }

    .stats-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .stats-subtitle {
        font-size: 1rem;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Mobile Devices (≤ 767px) */
@media (max-width: 767.98px) {
    #stats-section {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .stats-subtitle {
        font-size: 0.95rem;
        max-width: 95%;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .row > .col-6 {
        margin-bottom: 1rem;
    }
}

/* Small Phones (≤ 480px) */
@media (max-width: 480px) {
    #stats-section {
        padding: 1rem;
    }

    .stats-title {
        font-size: 1.35rem;
    }

    .stats-subtitle {
        font-size: 0.9rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-text {
        font-size: 0.85rem;
    }

    .stat-card {
        padding: 0.75rem;
    }
}



html {
    scroll-behavior: smooth;
}

/* Section Header */
#integrations-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

#integrations-section p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Links */
#integrations-section a {
    color: #6f00ff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.15s ease;
}

#integrations-section a:hover {
    color: #6f00ff;
}

#integrations-section a svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

/* Logo Circle */
.integration-logo-circle {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #f3f4f6;
    width: 6rem;
    height: 6rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.integration-logo-circle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

/* Horizontal Scroll Container */
.logo-scroll-container {
    position: relative;
}

.logo-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem; 
    height: 100%;
    background: linear-gradient(to left, white 20%, rgba(255,255,255,0));
    pointer-events: none;
}

/* Scrolling Logos */
.scrolling-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2.5rem;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}

.scrolling-logos::-webkit-scrollbar {
    display: none;
}

.scrolling-logos .d-flex {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Text below logo */
.scrolling-logos p {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0;
}

/* Responsive Adjustments */

/* Tablets (≤ 991px) */
@media (max-width: 991.98px) {
    #integrations-section h2 {
        font-size: 1.75rem;
    }
    #integrations-section p {
        font-size: 1rem;
        max-width: 90%;
    }
    .integration-logo-circle {
        width: 5.5rem;
        height: 5.5rem;
    }
    .scrolling-logos {
        gap: 2rem;
    }
    .logo-scroll-container::after {
        width: 4rem;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767.98px) {
    #integrations-section h2 {
        font-size: 1.5rem;
    }
    #integrations-section p {
        font-size: 0.95rem;
        max-width: 95%;
    }
    .integration-logo-circle {
        width: 5rem;
        height: 5rem;
    }
    .scrolling-logos {
        gap: 1.5rem;
        padding-bottom: 0.75rem;
    }
    .logo-scroll-container::after {
        width: 3rem;
    }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
    #integrations-section h2 {
        font-size: 1.35rem;
    }
    #integrations-section p {
        font-size: 0.85rem;
        max-width: 100%;
    }
    .integration-logo-circle {
        width: 4.5rem;
        height: 4.5rem;
    }
    .scrolling-logos {
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    .logo-scroll-container::after {
        width: 2.5rem;
    }
}





#features-section h2 {
    font-size: 2rem; /* text-3xl */
    font-weight: 800; /* font-extrabold */
    color: #1f2937; /* gray-900 */
    margin-bottom: 1rem;
    text-align: center; /* Left-align header */
}

#features-section .section-desc {
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; /* gray-600 */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Center the text */
}
#features-section p {
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; 
}

/* Features Grid */
#features-section .feature-item {
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: default;
    text-align: left; /* Left-align text */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to start (left) */
    padding: 1rem;
    border-radius: 0.75rem; /* rounded-xl */
}

/* Hover effect on feature card */
#features-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

/* Feature Icon Background */
.feature-icon-bg {
    background-color: #e9d8ff91;
    color: #6f00ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    margin-bottom: 1rem; /* Space below icon */
}

/* Icon hover effect */
.feature-item:hover .feature-icon-bg {
    transform: scale(1.1);
}

/* Feature Icon */
.feature-icon {
    width: 28px;
    height: 28px;
    fill: #895bff;
}

/* Feature Titles */
.feature-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

/* Feature Descriptions */
.feature-desc {
    font-size: 15px !important; /* base text */
    font-weight: 500;
    color: #4b5563;
}

/* Responsive Adjustments */

/* Medium screens and above */
@media (min-width: 768px) {
    #features-section .feature-item {
        padding: 1.5rem; /* p-6 equivalent */
    }
}

/* Large screens */
@media (min-width: 1024px) {
    #features-section .feature-item {
        padding: 2rem; /* p-8 equivalent */
    }
}



/* Small devices (mobile) */
@media (max-width: 767.98px) {
    #features-section h2 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }

    #features-section .section-desc {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    #features-section p {
        font-size: 0.95rem;
        text-align: left;
    }

    #features-section .feature-item {
        padding: 1rem;
        text-align: center;
        align-items: center;
    }

    #features-section .feature-icon-bg {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    #features-section .feature-icon {
        width: 24px;
        height: 24px;
    }

    #features-section .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    #features-section .feature-desc {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
    #features-section h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    #features-section .section-desc {
        font-size: 1.05rem;
        text-align: center;
    }

    #features-section p {
        font-size: 1rem;
    }

    #features-section .feature-item {
        padding: 1.25rem;
        text-align: center;
        align-items: center;
    }

    #features-section .feature-icon-bg {
        width: 52px;
        height: 52px;
    }

    #features-section .feature-icon {
        width: 26px;
        height: 26px;
    }

    #features-section .feature-title {
        font-size: 1.15rem;
        text-align: center;
    }

    #features-section .feature-desc {
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
    #features-section .feature-item {
        padding: 1.5rem 2rem;
        text-align: left;
        align-items: flex-start;
    }

    #features-section .feature-title {
        text-align: left;
    }

    #features-section .feature-desc {
        text-align: left;
    }
}


/* Section Title */
#sync-feature-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
}

#sync-feature-section .section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4b5563;
}

/* Feature List */
#sync-feature-section .feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

#sync-feature-section .feature-list li .check-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #6f00ff;
    font-size: 1.2rem;
}

/* Button hover */
#sync-feature-section .btn-primary {
    background-color: #6f00ff;
    border-color: #6f00ff;
    transition: all 0.3s ease;
}

#sync-feature-section .btn-primary:hover {
    background-color: #5d00d7;
    border-color: #5c00d5;
    transform: scale(1.03);
}

/* Card */
#sync-feature-section .sync-card {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
}

#sync-feature-section .sync-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* List items inside card */
#sync-feature-section .sync-card .list-group .d-flex {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

#sync-feature-section .sync-card .list-group .d-flex:hover {
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}

/* Badges */
#sync-feature-section .badge-success {
    background-color: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

/* Fix image visibility on smaller screens */
#sync-feature-section .col-md-6 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
    #sync-feature-section .col-md-6 {
        text-align: center !important;
    }

    #sync-feature-section .section-title {
        font-size: 1.75rem;
    }

    #sync-feature-section .section-subtitle {
        font-size: 1.25rem;
    }

    #sync-feature-section .feature-list li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    #sync-feature-section .feature-list li .check-icon {
        font-size: 1rem;
    }

    #sync-feature-section .btn-primary {
        width: 100%;
        text-align: center;
    }

    #sync-feature-section .sync-card {
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 767.98px) {
    #sync-feature-section .section-title {
        font-size: 1.5rem;
    }

    #sync-feature-section .section-subtitle {
        font-size: 1.1rem;
    }

    #sync-feature-section .feature-list li {
        font-size: 0.9rem;
        padding-left: 20px;
        text-align: start;
    }

    #sync-feature-section .feature-list li .check-icon {
        font-size: 0.9rem;
    }

    #sync-feature-section .btn-primary {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
    }

    #sync-feature-section .col-md-6 img {
        max-width: 80%;
        margin: 0 auto;
    }
}







/* Section Titles */
#automation-integrations-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
}

#automation-integrations-section .section-title .text-orange {
    color: #976bd1;
}

#automation-integrations-section .section-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
}

/* Feature Text */
#automation-integrations-section .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

#automation-integrations-section .feature-desc {
    font-size: 1rem;
    color: #6b7280;
}

/* CTA Button */
#automation-integrations-section .btn-primary {
    background-color: #6f00ff;
    border-color: #6f00ff;
    transition: all 0.3s ease;
}

#automation-integrations-section .btn-primary:hover {
    background-color: #5a00d0;
    transform: scale(1.03);
}

/* Image */
#automation-integrations-section img {
    max-width: 100%;
    border-radius: 1rem;
}




/* Section Header */
#challenges-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
}

#challenges-section .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Challenge Cards */
.challenge-card {
    border-width: 2px;
    transition: all 0.3s ease;
}

/* Hover shadow effect */
.challenge-card.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

/* Icon circle */
.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.25rem;
}

/* Individual colors for each card */
.challenge-card1 {
    border:2px solid #3b83f657;  
    border-radius: 30px;/* blue */
    background-color: #eff6ff;
}

.challenge-card2{
    border:2px solid #facc1560;  /* yellow */
    border-radius: 30px;
    background-color: #fefce8;
}

.challenge-card3{
    border:2px solid #ef444442;  /* red */
    border-radius: 30px;
    background-color: #fee2e2;
}

/* Challenge text */
.challenge-text {
    font-size: 1.1rem;
    color: #111827;
}
/* Medium screens (tablets) */
@media (max-width: 991px) {
    #challenges-section .section-title {
        font-size: 2rem;
        text-align: center;
    }

    #challenges-section .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .challenge-card {
        margin-bottom: 1.5rem;
    }

    .icon-circle {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .challenge-text {
        font-size: 1rem;
        text-align: center;
    }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
    #challenges-section .section-title {
        font-size: 1.75rem;
    }

    #challenges-section .section-subtitle {
        font-size: 0.95rem;
    }

    .challenge-card {
        width: 100%;
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .icon-circle {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .challenge-text {
        font-size: 0.9rem;
    }
}



/* FAQ Section Header */
#faq-section .card-header {
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative; /* for absolute positioning of badge */
}

/* Button text styling */
#faq-section .btn-link {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  text-align: left;
  width: 100%;
  display: block;
  white-space: normal; /* allow wrapping for long text */
  padding-right: 40px; /* space for badge */
  position: relative;
}

/* Badge: fixed top-right inside header */
#faq-section .btn-link .badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #a276dc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Rotate badge on open */
#faq-section .card-header button[aria-expanded="true"] .badge {
  transform: translateY(-50%) rotate(45deg);
}

/* Slightly smaller text on mobile */
@media (max-width: 576px) {
  #faq-section .btn-link {
    font-size: 1rem;
  }
}



#final-cta-section {
    border-radius: 1.5rem; /* rounded-3xl */
}

#final-cta-section .btn-light {
    color: #94436c; /* Bootstrap danger red */
    border-radius: 1rem; /* rounded-xl */
    transition: all 0.3s ease;
}

#final-cta-section .btn-light:hover {
    background-color: #f8f9fa; /* light gray */
    transform: scale(1.05);
}







.rounded-top-custom {
    border-top-left-radius: 50% 100px;
    border-top-right-radius: 50% 100px;
}

/* --- Primary Buttons --- */
.btn-white {
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  background-color: white;
  color: #572e94;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-white:hover {
  text-decoration: none;
  color: #572e94;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

.btn-inventory {
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-inventory:hover {
  background-color: white;
  text-decoration: none;
  color: #572e94;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

/* --- Responsive Adjustments --- */

/* Tablet & Smaller Laptops (<= 991px) */
@media (max-width: 991px) {
  .text-para p:first-child {
    font-size: 24px !important;
  }
  .text-para p:last-child {
    font-size: 2.5rem !important;
  }
  .btn-white,
  .btn-inventory {
    font-size: 18px;
    padding: 12px 24px;
  }
}

/* Mobile Landscape & Small Tablets (<= 767px) */
@media (max-width: 767px) {
  .text-para p:first-child {
    font-size: 20px !important;
  }
  .text-para p:last-child {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  .btn-white,
  .btn-inventory {
    width: 100%;       /* Full width buttons on small screens */
    text-align: center;
    margin-bottom: 10px;
  }
  .container.d-flex {
    flex-direction: column !important;
    text-align: center;
  }
}

/* Extra Small Devices (<= 480px) */
@media (max-width: 480px) {
  .text-para p:first-child {
    font-size: 18px !important;
  }
  .text-para p:last-child {
    font-size: 1.8rem !important;
  }

  .btn-white,
  .btn-inventory {
    text-align: center;
    font-size: 16px;
    padding: 10px 18px;
  }
}








.logo-carousel {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    background: #ffffff;
}

.logo-wrappers {
  
    display: flex; 
    align-items: stretch;
    will-change: transform;
    width: max-content; 
}


.logo-card {
    flex: 0 0 200px;
    height: auto;
    margin: 0 12px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
    overflow: hidden;
  width: 100%;
  background: #fff;
}

.logo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo-icon {
    width: 100%;
    height: auto;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-icon .enlarged-logo {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo-card {
        flex: 0 0 140px;
        margin: 0 8px;
        padding: 12px;
    }
}



.logo-track {
  display: flex;
  width: calc(200px * 10); /* 10 logos total (5 + 5 duplicate) */
  animation: scrollLeft 20s linear infinite;
}

.logo-card {
  flex: 0 0 200px; /* each logo fixed width */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Smooth continuous scroll */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* shift by half (5 logos width) */
}