:root {
      --text-secondary: #4f4f4f;
    }



/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 2s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; opacity: .8;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
 /*   background: #833AB4;
background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);*/
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.15));
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.4),
            transparent,
            rgba(0, 0, 0, 0.2));
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(even) {
    animation-duration: 20s;
    animation-delay: -5s;
}

.particle:nth-child(3n) {
    animation-duration: 25s;
    animation-delay: -10s;
}

/* Industry Indicator */
.industry-indicator {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
}

.indicator-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.25);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
    width:100%;
}

.hero-title-highlight {
    color: #fff;
    display: block;
    margin-top: 0.5rem;
    position: relative;font-size: 3.25rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, white);
    border-radius: 1px;
    animation: widthGrow 2s ease-out 1.2s forwards;
}

.hero-cta .primary-cta {
    background: #1e40af;
    background: linear-gradient(to right, var(--color-red-400), var(--color-red-600));
  color: var(--color-white);
  box-shadow: var(--shadow);
}
.hero-cta .primary-cta:hover{
     background: linear-gradient(to right, var(--color-red-600), var(--color-red-400));
}
.btn.secondary-cta {
  background: #fff;
  color: #000;
  box-shadow: var(--shadow);
}
.industry-context {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-description {
   /* background: rgba(59, 130, 246, 0.25);*/
   background: rgba(253, 253, 253, 0.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-description p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.hero-features {
      background: rgba(253, 253, 253, 0.25);
   /* background: rgba(255, 255, 255, 0.05);*/
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom:0;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-features h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: -0.7rem;
    display: flex;
    align-items: center;

}

/*.hero-features .row {
    margin-top: 1rem;
}*/

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(0.5rem);
}

.feature-item i {
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.feature-item:hover i {
    color: #93c5fd;
    transform: scale(1.1);
}

.feature-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 2.4;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-cta button {
    font-size: 15px;
    font-weight: 500;
}

.primary-cta {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.primary-cta:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.primary-cta i {
    transition: transform 0.3s ease;
}

.primary-cta:hover i {
    transform: translateX(0.5rem);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    color: white;
}

/* Hero Stats Content */
.hero-stats-content {
    animation: fadeInUp 1s ease-out 1.6s both;
}

.trust-card {
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1rem);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 1.25rem;
}

.trust-stars i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: scaleIn 0.5s ease-out both;
}

.trust-stars i:nth-child(1) {
    animation-delay: 0.2s;
}

.trust-stars i:nth-child(2) {
    animation-delay: 0.4s;
}

.trust-stars i:nth-child(3) {
    animation-delay: 0.6s;
}

.trust-stars i:nth-child(4) {
    animation-delay: 0.8s;
}

.trust-stars i:nth-child(5) {
    animation-delay: 1s;
}

.trust-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.trust-card p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: scale(1.05);
}

.trust-item i {
    color: #60a5fa;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-divider {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.3);
}

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

.stat-card {
    background: rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-0.5rem);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #93c5fd;
    position: relative;
    z-index: 1;
}

.stat-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes widthGrow {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Trusted Brands Section */
.trusted-brands-section {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.brands-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.3) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(243, 244, 246, 0.2) 100%);
    z-index: 1;
}

.brands-floating-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(156, 163, 175, 0.15);
    animation: floatAccent 20s infinite linear;
}

.brands-content {
    position: relative;
    z-index: 10;
    animation: fadeInLeft 1s ease-out;
}

.brands-header {
    margin-bottom: 2rem;
}

.brands-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.brands-badge:hover {
    background: rgba(243, 244, 246, 0.8);
    border-color: rgba(209, 213, 219, 0.6);
    box-shadow: var(--shadow-lg);
}

.brands-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.brands-highlight {
    color: #dc2626;
    position: relative;
    display: inline-block;
}

.brands-highlight::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9ca3af, #6b7280);
    border-radius: 1px;
    animation: widthGrow 2s ease-out 1s forwards;
}

.brands-subtitle {
    color: #374151;
}

/*.brands-description {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}*/
.brands-description {
 /* background: rgb(249, 249, 249);*/
  backdrop-filter: blur(5px);
/*  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 1rem;
  padding: 1.5rem 0;*/
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.brands-description span.fw-semibold.text-primary {
    color: #4b5563 !important;
}

.brands-description:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(209, 213, 219, 0.6);
}

.brands-features {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.trust-feature-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(209, 213, 219, 0.6);
    transform: translateY(-0.25rem);
}

.feature-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.2) 0%, rgba(243, 244, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-feature-card:hover .feature-bg-gradient {
    opacity: 1;
}

.feature-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trust-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.25rem;
    color: #6b7280;
}

.feature-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.3s ease;
}

.trust-feature-card:hover .feature-text h3 {
    color: #374151;
}

.trust-feature-card:hover .feature-text p {
    color: #4b5563;
}

.feature-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(156, 163, 175, 0.4);
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.trust-feature-card:hover .feature-border-glow {
    opacity: 1;
}

.company-types {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.company-types-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;justify-content: left;
}

.company-types-header i {
    color: var(--text-secondary);
}

.company-types-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.company-type-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    margin-bottom: 0.5rem;
}

.company-type-item:hover {
    background: rgba(248, 250, 252, 0.6);
}

.company-type-item i {
  font-size: 1rem;
  flex-shrink: 0;
  color: #dd2828;
}

.company-type-item span {
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* Right Content - Visual Section */
.brands-visual-content {
    position: relative;
    z-index: 10;
    animation: fadeInRight 1s ease-out;
    margin-top: 25px;
}

.brands-image-container ul li img {
    width: 93px;
}

.brands-image-container ul {
    display: flex;
    justify-content: space-between;
   /* border: 1px solid #f0f0f0;*/
   /* border-radius: 14px;*/
    padding: 0px;
    align-content: center;
}
.brands-image-container ul li {
  display: flex;
  flex-direction: row;
  background: #fdfdfd;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 10px;
  padding:10px;
  box-shadow: 0 5px 4px #f2f2f2;
}
.brands-image-container ul li img {
  width: 75px;
}

.brands-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    animation: scaleIn 1s ease-out 1.2s both;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(243, 244, 246, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(209, 213, 219, 0.5);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.brands-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .brands-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.2) 0%, transparent 50%, rgba(107, 114, 128, 0.1) 100%);
    border-radius: 1rem;
}

.trust-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(209, 213, 219, 0.5);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.enterprise-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(107, 114, 128, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enterprise-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.2) 0%, transparent 50%, rgba(107, 114, 128, 0.1) 100%);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
    z-index: -1;
}

.image-wrapper:hover + .image-glow {
    opacity: 1;
}

.brands-stats-grid {
    margin-bottom: 2rem;
}

.brands-stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleInStats 0.8s ease-out both;
    background: #ccc;
    background: linear-gradient(0deg,rgb(242, 242, 242) 0%, rgb(251, 251, 251) 100%);
}

.brands-stat-card .stat-value {
    color: var(--text-primary);
    text-shadow: none;
}

.brands-stat-card .stat-label {
    color: #4b5563;
    text-shadow: none;
}

.brands-stat-card .stat-desc {
    text-shadow: none;
}

.brands-stat-card:nth-child(1) {
    animation-delay: 1.4s;
}

.brands-stat-card:nth-child(2) {
    animation-delay: 1.6s;
}

.brands-stat-card:nth-child(3) {
    animation-delay: 1.8s;
}

.brands-stat-card:nth-child(4) {
    animation-delay: 2s;
}

.brands-stat-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(209, 213, 219, 0.6);
    transform: translateY(-0.5rem);
}

.stat-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.1) 0%, transparent 50%, rgba(243, 244, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brands-stat-card:hover .stat-bg-glow {
    opacity: 1;
}

.stat-content {
    position: relative;
    z-index: 10;
}

.stat-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    transition: transform 0.3s ease;
}

.brands-stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1);
}

.stat-icon-wrapper i {
    font-size: 1.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.brands-stat-card:hover .stat-value {
    color: #374151;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #bfdbfe;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.brands-stat-card:hover .stat-label {
    color: #4b5563;
}

.stat-desc {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.brands-stat-card:hover .stat-desc {
    color: #6b7280;
}

.stat-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(156, 163, 175, 0.4);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.brands-stat-card:hover .stat-border-glow {
    opacity: 1;
}

.trust-indicators {
    background: linear-gradient(to right, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 2.2s both;
}
/*.trust-indicators {
  background: linear-gradient(to right, rgb(242, 246, 253) 0%, rgb(83, 118, 255) 100%);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  animation: fadeInUp 1s ease-out 2.2s both;
}*/

.trust-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 1.25rem;
}

.trust-stars i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: scaleInStars 0.5s ease-out both;
}

.trust-stars i:nth-child(1) {
    animation-delay: 2.4s;
}

.trust-stars i:nth-child(2) {
    animation-delay: 2.5s;
}

.trust-stars i:nth-child(3) {
    animation-delay: 2.6s;
}

.trust-stars i:nth-child(4) {
    animation-delay: 2.7s;
}

.trust-stars i:nth-child(5) {
    animation-delay: 2.8s;
}

.trust-indicators h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.trust-indicators p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.4);
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.trust-indicator-item:hover {
    transform: scale(1.05);
}

.trust-indicator-item i {
    color: var(--text-secondary);
}

.trust-indicator-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.trust-divider {
    width: 1px;
    height: 1rem;
    background: rgba(229, 231, 235, 0.6);
}

/* Animations for Trusted Brands Section */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleInStats {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleInStars {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatAccent {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Business Impact Section */
.business-impact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.business-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-card:hover {
    border-color: rgba(156, 163, 175, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.benefit-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.4) 0%, rgba(255, 255, 255, 1) 50%, rgba(243, 244, 246, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 0.75rem;
}

.benefit-card:hover .benefit-bg-gradient {
    opacity: 1;
}

.benefit-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(156, 163, 175, 0.4);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.benefit-card:hover .benefit-border-glow {
    opacity: 1;
}

.benefit-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(243, 244, 246, 0.8);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(229, 231, 235, 0.9);
    color: #4b5563;
    transform: scale(1.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-icon i {
    font-size: 1.25rem;
}

.benefit-metric {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(243, 244, 246, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-metric {
    background: rgba(229, 231, 235, 0.8);
    color: #4b5563;
    transform: scale(1.05);
}

.benefit-body {
    flex: 1;
}

.benefit-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-body h4 {
    color: #374151;
}

.benefit-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-body p {
    color: #4b5563;
}

.benefit-accent {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: rgba(229, 231, 235, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

.benefit-card:hover .benefit-accent {
    opacity: 1;
}

/* Success Metrics Section */
.success-metrics-section {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.metrics-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.metric-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(229, 231, 235, 0.4);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.metric-card:hover {
    border-color: rgba(156, 163, 175, 0.6);
    background: rgba(248, 250, 252, 0.4);
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.metric-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 1) 50%, rgba(243, 244, 246, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0.75rem;
}

.metric-card:hover .metric-bg-glow {
    opacity: 1;
}

.metric-content {
    position: relative;
    z-index: 10;
}

.metric-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.metric-card:hover .metric-value {
    color: #374151;
}

.metric-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.metric-card:hover .metric-suffix {
    color: #374151;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-change {
    color: #047857;
    transform: scale(1.1);
}

.metric-change i {
    font-size: 1rem;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-label {
    color: #374151;
}

.metric-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(156, 163, 175, 0.4);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover .metric-border-glow {
    opacity: 1;
}

/* Solutions Section */
.solutions-section {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.solutions-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.4) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(243, 244, 246, 0.3) 100%);
    z-index: 1;
}

.solutions-floating-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.solutions-section > .container-xxl {
    position: relative;
    z-index: 10;
}

/* Header Content */
.solutions-header-content {
    animation: fadeInUp 1s ease-out;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 250, 252, 1);
    color: var(--text-primary);
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.solutions-badge:hover {
    background: rgba(243, 244, 246, 1);
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.solutions-subtitle {
  color: #e91600;
  display: block;
  margin-top: 0.25rem;
}

.solutions-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solutions-quick-stats {
    margin-top: 1.5rem;
}

.quick-stat-card {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.quick-stat-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.quick-stat-card .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.quick-stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Visual Section */
.solutions-visual {
    animation: fadeInRight 1s ease-out;
}

.visual-container {
    position: relative;
    height: 16rem;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.6) 0%, transparent 50%, rgba(107, 114, 128, 0.2) 100%);
}

.visual-badge {
    position: absolute;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-badge {
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.global-badge {
    bottom: 1rem;
    left: 1rem;
    background: rgba(31, 41, 55, 0.9);
    backdrop-filter: blur(10px);
    color: white;
}

/* Tabbed Solutions */
.solutions-tabs-section {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.solutions-tabs-nav {
    display: flex;
    gap: 0.25rem;
    background: rgba(243, 244, 246, 0.8);
    padding: 0.25rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
    background: white;
    color: var(--text-primary);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #111;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 1px;
}

/* Tab Content */
.solutions-tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-pane.active {
    display: block;
}

.solution-image-container {
    position: relative;
   /* height: 16rem;*/
    border-radius: 1rem;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-image-container:hover .solution-image {
    transform: scale(1.05);
}

.solution-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.7) 0%, transparent 50%, rgba(107, 114, 128, 0.2) 100%);
}

.solution-badge {
    position: absolute;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-badge {
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.timeline-badge {
    bottom: 1rem;
    left: 1rem;
   background: rgb(221, 39, 39);
    backdrop-filter: blur(10px);
    color: white;
}

.ideal-badge {
    bottom: 1rem;
    right: 1rem;
    background: rgb(221, 39, 39);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.75rem;
}

/* Solution Details */
.solution-details {
    padding: 1rem 0;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    margin-bottom: 1.5rem;
}

.solution-features .feature-item {
    display: flex;
    /*align-items: flex-start;*/
    gap: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(229, 231, 235, 1);
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.solution-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.solution-features .feature-item i {
  color: #dd2828;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.solution-features .feature-item span {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.solution-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.solution-btn-primary {
    /*
  background: var(--text-secondary);
  border-color: var(--text-secondary);
*/
    color: white;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.solution-btn-primary:hover {
    background: #4b5563;
    border-color: #4b5563;
    transform: translateY(-1px);
}

.solution-btn-primary:hover i {
    transform: translateX(0.25rem);
}

.solution-btn-secondary {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
    flex: 1;
    transition: all 0.3s ease;
}

.solution-btn-secondary:hover {
    background: var(--text-secondary);
    color: white;
}

.solution-btn-secondary:hover i {
    transform: scale(1.1);
}

/* Benefits Section */
.solutions-benefits {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.solutions-benefits .benefit-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.solutions-benefits .benefit-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(209, 213, 219, 1);
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.benefit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-metric {
    text-align: right;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #374151;
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-description {
    color: #4b5563;
}

.benefit-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(156, 163, 175, 0.4);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.benefit-card:hover .benefit-border-glow {
    opacity: 1;
}

/* CTA Section */
.solutions-cta {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-container {
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    border-radius: 1rem;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        conic-gradient(from 45deg at 25% 25%, rgba(255, 255, 255, 0.1) 0deg, transparent 90deg),
        conic-gradient(from 180deg at 75% 75%, rgba(255, 255, 255, 0.08) 0deg, transparent 120deg);
    background-size: 100px 100px;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.85) 50%, rgba(75, 85, 99, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    padding: 3rem 2rem;
}

.cta-header {
    margin-bottom: 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-btn-primary {
    background: white;
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background: #f3f4f6;
    color: var(--text-primary);
    transform: translateY(-1px);
}

.cta-btn-primary:hover i {
    transform: translateX(0.25rem);
}

.cta-btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary:nth-child(2):hover i {
    transform: scale(1.1);
}

.cta-btn-secondary:nth-child(3):hover i {
    transform: rotate(12deg);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.trust-stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
}

.trust-divider {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.2);
}

/* Floating Accents Animation */
.solutions-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(156, 163, 175, 0.08);
    animation: floatSolutionsAccent 15s infinite linear;
}

@keyframes floatSolutionsAccent {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px) rotate(180deg);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Engagement Models Section */
.engagement-models-section {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.engagement-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(219, 234, 254, 0.3) 50%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.engagement-floating-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.engagement-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(75, 85, 99, 0.3) 0.8px, transparent 0.8px),
        radial-gradient(circle at 40% 80%, rgba(156, 163, 175, 0.2) 0.6px, transparent 0.6px);
    background-size: 80px 80px, 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px, 40px 10px;
    animation: floatEngagementPattern 30s linear infinite;
    z-index: 2;
}

.engagement-models-section > .container-xxl {
    position: relative;
    z-index: 10;
}

/* Header Styles */
.engagement-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.engagement-badge:hover {
    background: rgba(59, 130, 246, 0.2);
}

.engagement-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.engagement-description {
    color: var(--text-secondary);
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Brand Card Styles */
.engagement-brand-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    transition: all 0.5s ease;
    animation: fadeInLeft 1s ease-out 0.6s both;
}

.engagement-brand-card:hover {
    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.2);
}

.engagement-brand-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.3));
    border-radius: 0.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.engagement-brand-card:hover .engagement-brand-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px -6px rgba(59, 130, 246, 0.3);
}

.engagement-benefits .benefit-item {
    transition: all 0.3s ease;
}

.engagement-benefits .benefit-item:hover {
    transform: translateX(4px);
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 0.375rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

/* Process Area */
.engagement-process-area {
    animation: fadeInRight 1s ease-out 0.8s both;
}

/* Model Cards */
.engagement-model-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.engagement-process-area p,
.engagement-brand-card p,
.engagement-benefits span,
.engagement-model-card .model-action-text {
    font-size: .75rem !important;
}

.model-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.engagement-model-card:hover .model-card {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.2);
    transform: scale(1.01);
}

.engagement-model-card.active .model-card {
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 12px 30px -8px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.5);
}

.model-icon {
    width: 2rem;
    height: 2rem;
    background: rgb(255, 239, 239);
    border-radius: 0.5rem;
    color: #dc2626;
    transition: all 0.3s ease;
}

/*.model-icon.compact {
    width: 1.5rem;
    height: 1.5rem;
}*/

.engagement-model-card:hover .model-icon {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.3);
}

.engagement-model-card.active .model-icon {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.3);
}

.model-title {
    color: #dc2626;
    transition: color 0.3s ease;
}

.engagement-model-card:hover .model-title {
  color: #dc2626;
}

.model-short-desc {
    color: #dc2626;
}


.model-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626 !important;
  transition: all 0.3s ease;
}

.engagement-model-card:hover .model-status,
.engagement-model-card.active .model-status {
    background: #3b82f6;
}

.model-action-text {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.engagement-model-card.active .model-action-text::after {
    content: "Expanded";
}

.engagement-model-card.active .model-action-text {
    display: none;
}

.engagement-model-card.active .model-action-text + .model-action-text {
    display: inline;
}

.model-arrow {
    transition: all 0.3s ease;
    font-size: .85rem;
}

.engagement-model-card:hover .model-arrow {
    transform: translateX(4px);
    color: #1d4ed8;
}

.engagement-model-card.active .model-arrow {
    transform: rotate(90deg) scale(1.1);
}

/* Expanded Content */
.model-expanded-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
}

.engagement-model-card.active .model-expanded-content h5 {
    font-size: .8rem;
}

.engagement-model-card.active .model-expanded-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.75rem;
}

.model-expanded-content.compact {
    max-height: 0;
}

.engagement-model-card.active .model-expanded-content.compact {
    max-height: 200px;
}

.feature-dots {
    gap: 0.25rem;
}

.feature-dot {
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
}

.feature-dot.small {
    width: 3px;
    height: 3px;
}

.features-list .feature-item {
    background: rgba(59, 130, 246, 0.05);
    transition: all 0.2s ease;
}

.features-list .feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

.feature-bullet {
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.model-cta-btn {
    transition: all 0.3s ease;
    font-size: .8rem;
}

.model-expanded-content button {
    font-size: .8rem;
    padding: 0;
    margin: 0 !important;
}

.model-cta-btn:hover {
background: #eb2800;
  border-color: #eb2800;
    color: white;
    transform: translateY(-1px);
    padding: 2px 8px;
}

/* Hover Effects */
.model-hover-glow {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.engagement-model-card:hover .model-hover-glow {
    opacity: 1;
}

.model-hover-glow.subtle {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0.03) 100%);
}

/* Connection Elements */
.connection-line {
    height: 1px;
    width: 1rem;
}

.connection-line-start {
    background: linear-gradient(90deg, transparent, #3b82f6);
}

.connection-line-end {
    background: linear-gradient(90deg, #3b82f6, transparent);
}

.connection-dot {
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
}

/* Animations */
@keyframes floatEngagementPattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    33% {
        transform: translateX(10px) translateY(-5px);
    }

    66% {
        transform: translateX(-5px) translateY(10px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating Accents Animation */
.engagement-floating-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.06);
    animation: floatEngagementAccent 25s infinite linear;
}

@keyframes floatEngagementAccent {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(20px) rotate(180deg);
        opacity: 0;
    }
}

/* Responsive Design for Engagement Models Section */
@media (max-width: 991.98px) {
    .engagement-title {
        font-size: 1.75rem;
    }

    .engagement-brand-card {
        margin-bottom: 1.5rem;
    }

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

@media (max-width: 767.98px) {
    .engagement-models-section {
        padding:  0 !important;
    }

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

    .engagement-description {
        font-size: 0.9rem;
    }

    .model-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .model-title {
        font-size: 0.9rem;
    }

    .model-short-desc,
    .model-full-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .engagement-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .benefit-item {
        font-size: 0.8rem;
    }

    .benefit-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .model-card {
        padding: 0.5rem;
    }

    .connection-line {
        width: 0.5rem;
    }
}

/* Industries Section */
.industries-section {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(252, 252, 253, 0.8) 0%, rgba(249, 250, 251, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%);
}

.industries-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 165, 165, 0.1) 30%, rgba(254, 202, 202, 0.15) 70%, rgba(255, 255, 255, 0.95) 100%);*/
    z-index: 1;
}

.industries-floating-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.industries-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(239, 68, 68, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(185, 28, 28, 0.3) 0.8px, transparent 0.8px),
        radial-gradient(circle at 45% 85%, rgba(127, 29, 29, 0.2) 0.6px, transparent 0.6px);
    background-size: 70px 70px, 50px 50px, 30px 30px;
    background-position: 0 0, 15px 15px, 30px 5px;
    animation: floatIndustriesPattern 25s linear infinite;
    z-index: 2;
}

.industries-section > .container-xxl {
    position: relative;
    z-index: 10;
}

/* Header Styles */
.industries-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.industries-badge:hover {
    background: rgba(239, 68, 68, 0.2);
}

.industries-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #f59e0b);
    border-radius: 1px;
    opacity: 0.6;
}

.industries-description {
    color: var(--text-secondary);
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Industry Cards */
.industry-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(45 45 45 / 19%);
    border-radius: 0.75rem;
    padding: 0.75rem;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.industry-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 25px -8px rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0) 0%, rgba(239, 68, 68, 0.05) 100%);
    opacity: .7;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.industry-card:hover::before {
    opacity: .9;
}

.industry-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.industry-icon i {
    color: #dc2626;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 4px 12px -4px rgba(239, 68, 68, 0.4);
}

.industry-card:hover .industry-icon i {
    color: white;
}

.industry-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
    color: #fff;
}

.industry-description {
    font-size: 0.85rem !important;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Capabilities Section */
.industries-capabilities-section {
    background: color-mix(in oklab, #fefce8 30%, transparent) border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.capabilities-header {
    margin-bottom: 1rem;
}

.capabilities-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.capabilities-divider {
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #f59e0b);
    border-radius: 1px;
    margin: 0 auto;
    opacity: 0.6;
}

.capability-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    height: 100%;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.capability-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.capability-description {
    font-size: 0.75rem !important;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Floating Accents Animation */
.industries-floating-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.08);
    animation: floatIndustriesAccent 20s infinite linear;
}

@keyframes floatIndustriesAccent {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(15px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes floatIndustriesPattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    33% {
        transform: translateX(8px) translateY(-4px);
    }

    66% {
        transform: translateX(-4px) translateY(8px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

/* Industry Card Staggered Animation */
.industry-card:nth-child(1) {
    animation-delay: 0.6s;
}

.industry-card:nth-child(2) {
    animation-delay: 0.7s;
}

.industry-card:nth-child(3) {
    animation-delay: 0.8s;
}

.industry-card:nth-child(4) {
    animation-delay: 0.9s;
}

.industry-card:nth-child(5) {
    animation-delay: 1.0s;
}

.industry-card:nth-child(6) {
    animation-delay: 1.1s;
}

.industry-card:nth-child(7) {
    animation-delay: 1.2s;
}

.industry-card:nth-child(8) {
    animation-delay: 1.3s;
}

.industry-card:nth-child(9) {
    animation-delay: 1.4s;
}

.industry-card:nth-child(10) {
    animation-delay: 1.5s;
}

.industry-card:nth-child(11) {
    animation-delay: 1.6s;
}

.industry-card:nth-child(12) {
    animation-delay: 1.7s;
}

/* Responsive Design for Industries Section */
@media (max-width: 991.98px) {
    .industries-title {
        font-size: 1.75rem;
    }

    .industry-card {
        padding: 0.6rem;
    }

    .industry-title {
        font-size: 0.8rem;
    }

    .industry-description {
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .industries-section {
        padding: 1.5rem 0;
    }

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

    .industries-description {
        font-size: 0.9rem;
    }

    .industry-icon {
        width: 1.75rem;
        height: 1.75rem;
        margin-right: 0.375rem;
    }

    .industry-icon i {
        font-size: 0.875rem;
    }

    .capabilities-title {
        font-size: 1rem;
    }

    .capability-title {
        font-size: 0.8rem;
    }

    .capability-description {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .industries-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .industry-card {
        padding: 0.5rem;
    }

    .industry-title {
        font-size: 0.75rem;
    }

    .industry-description {
        font-size: 0.65rem;
    }

    .industries-capabilities-section {
        padding: 0.75rem;
    }
}

/* Process Section */
.process-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(243, 244, 246, 0.9) 100%);
}

.process-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(229, 231, 235, 0.1) 30%, rgba(209, 213, 219, 0.15) 70%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.process-floating-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.process-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(107, 114, 128, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(75, 85, 99, 0.3) 0.8px, transparent 0.8px),
        radial-gradient(circle at 40% 80%, rgba(156, 163, 175, 0.2) 0.6px, transparent 0.6px);
    background-size: 80px 80px, 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px, 40px 10px;
    animation: floatProcessPattern 30s linear infinite;
    z-index: 2;
}

.process-section > .container-xxl {
    position: relative;
    z-index: 10;
}

/* Header Styles */
.process-header-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.8), rgba(209, 213, 219, 0.9));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -4px rgba(107, 114, 128, 0.2);
    animation: softFloat 6s ease-in-out infinite;
}

.process-header-icon i {
    color: #4b5563;
    font-size: 1.5rem;
}

.process-badge {
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.8), rgba(209, 213, 219, 0.9));
    color: #374151;
    border: 1px solid rgba(156, 163, 175, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.process-badge:hover {
    background: linear-gradient(135deg, rgba(209, 213, 219, 0.9), rgba(229, 231, 235, 0.8));
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.text-gradient-gray {
    background: linear-gradient(135deg, #374151, #6b7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient-gray::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #374151, #6b7280);
    border-radius: 1px;
    opacity: 0.7;
    animation: pulseRefined 2s ease-in-out infinite;
}

.process-description {
    color: var(--text-secondary);
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Decorative Elements */
.process-decorative-line {
    height: 2px;
    border-radius: 1px;
}

.process-decorative-line.start {
    width: 3rem;
    background: linear-gradient(90deg, transparent, #d1d5db);
}

.process-decorative-line.mid {
    width: 1.5rem;
    background: linear-gradient(90deg, #d1d5db, #9ca3af);
}

.process-decorative-line.end {
    width: 3rem;
    background: linear-gradient(90deg, #9ca3af, transparent);
}

.process-decorative-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #9ca3af;
    border-radius: 50%;
    animation: pulseRefined 2s ease-in-out infinite;
}

.process-decorative-dot.delay-1 {
    animation-delay: 1s;
}

/* Process Step Cards */
.process-step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.process-step-card:hover {
    border-color: rgba(107, 114, 128, 0.3);
    box-shadow: 0 12px 30px -8px rgba(107, 114, 128, 0.15);
    transform: translateY(-4px);
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 231, 235, 0) 0%, rgba(229, 231, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.process-step-card:hover::before {
    opacity: 1;
}

.process-step-icon {
    width: 3rem;
    height: 3rem;
    /*background: rgba(229, 231, 235, 0.5);*/
    background: rgb(251, 228, 219,  0.5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step-icon i {
  color: #dd2828;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.process-step-card:hover .process-step-icon {
   /* background: rgba(107, 114, 128, 0.15);*/
    background: #dc2626;
    transform: scale(1.05);
}

.process-step-card:hover .process-step-icon i {
    color: #fff;
}

.process-step-badge {
    background: #fbb03b;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
}

.process-arrow {
    color: #d1d5db;
    transition: all 0.3s ease;
}

.process-step-card:hover .process-arrow {
    color: #9ca3af;
    transform: translateX(4px);
}

.process-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.process-step-card:hover .process-step-title {
    color: #374151;
}

.process-step-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.process-step-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.process-step-card:hover .process-step-description {
    color: #4b5563;
}

.process-step-footer {
    border-top: 1px solid rgba(156, 163, 175, 0.15);
    margin-top: 1rem;
    padding-top: 1rem;
}

.process-duration-icon {
    font-size: 0.75rem;
    color: #6b7280;
}

.process-duration-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.process-duration-value {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.process-step-number {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(229, 231, 235, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.3s ease;
}

.process-step-card:hover .process-step-number {
    background: rgba(107, 114, 128, 0.2);
    transform: scale(1.1);
}

/* Floating Accents Animation */
.process-floating-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(156, 163, 175, 0.08);
    animation: floatProcessAccent 25s infinite linear;
}

@keyframes floatProcessAccent {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(20px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes floatProcessPattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    33% {
        transform: translateX(10px) translateY(-5px);
    }

    66% {
        transform: translateX(-5px) translateY(10px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes softFloat {

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

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

@keyframes pulseRefined {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Step Card Staggered Animation */
.process-step-card[data-step="1"] {
    animation-delay: 0.6s;
}

.process-step-card[data-step="2"] {
    animation-delay: 0.75s;
}

.process-step-card[data-step="3"] {
    animation-delay: 0.9s;
}

.process-step-card[data-step="4"] {
    animation-delay: 1.05s;
}

.process-step-card[data-step="5"] {
    animation-delay: 1.2s;
}

.process-step-card[data-step="6"] {
    animation-delay: 1.35s;
}

/* Responsive Design for Process Section */
@media (max-width: 991.98px) {
    .process-title {
        font-size: 2rem;
    }

    .process-step-card {
        padding: 1.25rem;
    }

    .process-step-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .process-step-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .process-section {
        padding: 2rem 0;
    }

    .process-title {
        font-size: 1.75rem;
    }

    .process-description {
        font-size: 1rem;
    }

    .process-header-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .process-header-icon i {
        font-size: 1.25rem;
    }

    .process-step-card {
        padding: 1rem;
    }

    .process-step-title {
        font-size: 1rem;
    }

    .process-step-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .process-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .process-decorative-line.start,
    .process-decorative-line.end {
        width: 2rem;
    }

    .process-decorative-line.mid {
        width: 1rem;
    }

    .process-decorative-dot {
        width: 0.5rem;
        height: 0.5rem;
    }

    .process-step-icon {
        width: 2rem;
        height: 2rem;
    }

    .process-step-icon i {
        font-size: 1rem;
    }

    .process-step-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(251, 250, 255, 0.8) 0%, rgba(253, 244, 255, 0.9) 30%, rgba(254, 242, 242, 0.8) 70%, rgba(255, 247, 237, 0.9) 100%);
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 232, 255, 0.1) 20%, rgba(252, 231, 243, 0.15) 50%, rgba(254, 242, 242, 0.1) 80%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.contact-floating-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.contact-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(147, 51, 234, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(236, 72, 153, 0.3) 0.8px, transparent 0.8px),
        radial-gradient(circle at 45% 85%, rgba(249, 115, 22, 0.2) 0.6px, transparent 0.6px);
    background-size: 90px 90px, 70px 70px, 50px 50px;
    background-position: 0 0, 25px 25px, 50px 15px;
    animation: floatContactPattern 35s linear infinite;
    z-index: 2;
}

.contact-section > .container-xxl {
    position: relative;
    z-index: 10;
}

/* Contact Content Styles */
.contact-label {
    color: #000;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 181, 253, 0.4);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 12px -4px rgba(147, 51, 234, 0.1);
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.contact-info-icon {
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.codeigniter-logo-placeholder {
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-radius: 0.25rem;
}

.contact-info-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Contact Features */
.contact-features {
  animation: fadeInLeft 1s ease-out 0.6s both;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-feature-item {
  width: 50%;
}

.contact-feature-icon {
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-feature-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.faq-section .contact-title {
  text-align: center;
  margin-bottom: 30px;
}
.contact-feature-item {
  transition: all 0.3s ease;
  background: #f77070;
  padding: 8px 15px;
  border-radius: 6px;
}

.contact-feature-item:hover {
    transform: translateX(4px);
}

/* Contact Phone Section */
.contact-phone-section {
    padding-top: 1.5rem;
    animation: fadeInLeft 1s ease-out 0.8s both;
}

.contact-phone-icon {
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.3), rgba(252, 231, 243, 0.3));
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px -4px rgba(147, 51, 234, 0.2);
}

.contact-phone-icon i {
   color: #000;
    font-size: 1.25rem;
}

.contact-phone-label {
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-phone-number {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone-number:hover {
    color: #7c3aed;
    text-decoration: none;
}

/* Contact Form Styles */
.contact-form-section {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.contact-form-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 181, 253, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -12px rgba(147, 51, 234, 0.15);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 25px 50px -12px rgba(147, 51, 234, 0.2);
}

.contact-input,
.contact-textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(196, 181, 253, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    height: 3rem;
}

.contact-textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.1);
    background: rgba(255, 255, 255, 0.9);
    outline: none;
}

.contact-input:hover,
.contact-textarea:hover {
    border-color: rgba(147, 51, 234, 0.4);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #9ca3af;
}

.contact-input.is-invalid,
.contact-textarea.is-invalid {
    border-color: #ef4444;
}

.contact-input.is-valid,
.contact-textarea.is-valid {
    border-color: #10b981;
}

.invalid-feedback {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Submit Button */
.contact-submit-btn {
    background: linear-gradient(to right, var(--color-red-400), var(--color-red-600));
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    height: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -6px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
    justify-content: center
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    box-shadow: 0 12px 30px -8px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px) scale(1.02);
    color: #fff;
}

.contact-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn::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;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

/* Success Message */
.contact-success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    animation: slideInUp 0.5s ease-out;
}

.contact-success-message h5 {
    color: #059669;
    font-size: 1rem;
    font-weight: 600;
}

.contact-success-message p {
    color: #047857;
    font-size: 0.875rem;
}

/* Floating Accents Animation */
.contact-floating-accent {
    position: absolute;
    border-radius: 50%;
    animation: floatContactAccent 30s infinite linear;
}

.contact-floating-accent.lavender {
    background: rgba(196, 181, 253, 0.1);
}

.contact-floating-accent.pink {
    background: rgba(252, 231, 243, 0.1);
}

.contact-floating-accent.rose {
    background: rgba(254, 205, 211, 0.08);
}

.contact-floating-accent.orange {
    background: rgba(253, 186, 116, 0.08);
}

@keyframes floatContactAccent {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(25px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatContactPattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    33% {
        transform: translateX(12px) translateY(-6px);
    }

    66% {
        transform: translateX(-6px) translateY(12px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Contact Section */
@media (max-width: 991.98px) {
    .contact-title {
        font-size: 1.75rem;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .contact-input,
    .contact-textarea {
        padding: 0.625rem 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 2rem 0;
    }

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

    .contact-info-card {
        padding: 0.875rem;
    }

    .contact-info-description {
        font-size: 0.8rem;
    }

    .contact-form-card {
        padding: 1rem;
    }

    .contact-input,
    .contact-textarea {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .contact-label {
        font-size: 0.75rem;
    }

    .contact-title {
        font-size: 1.25rem;
    }

    .contact-phone-section {
        padding-top: 1rem;
    }

    .contact-form-subtitle {
        font-size: 0.8rem;
        text-align: left;
    }

    .contact-input,
    .contact-textarea {
        height: 2.75rem;
        padding: 0.5rem 0.75rem;
    }

    .contact-textarea {
        min-height: 100px;
    }

    .contact-submit-btn {
        font-size: 0.9rem;
        height: 2.75rem;
    }
}

/* Services Section - Clean Screenshot Design */
.services-section {
    padding: 3rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.services-bg-overlay {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.3) 0%, rgba(255, 250, 250, 0.8) 100%);
}

/* Header Styling */
.services-main-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.services-main-title .text-danger {
    color: #e74c3c !important;
}

.services-subtitle {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

.services-decorative-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 3rem;
}

.services-decorative-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
}

.services-decorative-dots .dot:nth-child(3) {
    background: #e74c3c;
}

/* Sidebar Styling */
.services-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-header i {
    color: #e74c3c;
    font-size: 1.1rem;
}

.services-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 0.875rem;
}

.service-nav-item:hover {
    background: #ffeaa7;
    border-color: rgba(231, 76, 60, 0.2);
}

.service-nav-item.active {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    color: white;
    border-color: #e74c3c;
    transform: translateX(4px);
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    /*  background: rgba(231, 76, 60, 0.1);*/
    transition: all 0.3s ease;
}

.service-nav-item.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
}

.nav-icon i {
    color: #e74c3c;
    font-size: 1rem;
}

.service-nav-item.active .nav-icon i {
    color: white;
}

.service-nav-item span {
    font-weight: 500;
    line-height: 1.3;
}

/* Content Area */
.services-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.category-icon i {
    color: white;
    font-size: 1.5rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Service Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(253, 121, 168, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(253, 121, 168, 0.2) 100%);
    transform: scale(1.1);
}

.service-card-icon i {
    color: #e74c3c;
    font-size: 1.25rem;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-card-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Explore Button */
.explore-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.explore-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #fd79a8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Content Transition */
.services-content-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.services-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .services-main-title {
        font-size: 1.75rem;
    }

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

    .services-sidebar {
        margin-bottom: 2rem;
        position: static;
    }

    .services-content {
        padding: 1.5rem;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 2rem 0;
    }

    .services-main-title {
        font-size: 1.5rem;
    }

    .services-subtitle br {
        display: none;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .service-nav-item {
        padding: 0.625rem;
    }

    .service-nav-item span {
        font-size: 0.8rem;
    }
}

/* Service Card Animation Delays */
.service-card-container:nth-child(1) .service-card {
    animation-delay: 0.1s;
}

.service-card-container:nth-child(2) .service-card {
    animation-delay: 0.2s;
}

.service-card-container:nth-child(3) .service-card {
    animation-delay: 0.3s;
}

.service-card-container:nth-child(4) .service-card {
    animation-delay: 0.4s;
}

.service-card-container:nth-child(5) .service-card {
    animation-delay: 0.5s;
}

.service-card-container:nth-child(6) .service-card {
    animation-delay: 0.6s;
}

/* Floating Accents Animation */
.services-floating-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.06);
    animation: floatServicesAccent 20s infinite linear;
}

@keyframes floatServicesAccent {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(30px) rotate(180deg);
        opacity: 0;
    }
}

/* Content Transition Animations */
.services-content-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.services-content-transition.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Services Section Animations */
@keyframes fadeInUpSmooth {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up-smooth {
    animation: fadeInUpSmooth 0.8s ease-out;
}

.service-card-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.service-card-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-explore-btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.services-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.services-explore-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Service Card Enhanced Styling */
.service-card {
    border: 1px solid rgba(220, 53, 69, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: rgba(220, 53, 69, 0.2) !important;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15) !important;
}

.service-card-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #fecaca, #fca5a5);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(220, 53, 69, 0.1));
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon i {
    color: #dc3545;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon i {
    color: #c82333;
    transform: scale(1.1);
}

/* Floating Accents for Services */
.services-floating-accent {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatServicesAccent 20s infinite linear;
}

.services-floating-accent.accent-danger {
    background: rgba(220, 53, 69, 0.2);
}

.services-floating-accent.accent-warning {
    background: rgba(255, 193, 7, 0.2);
}

.services-floating-accent.accent-info {
    background: rgba(13, 202, 240, 0.2);
}

.services-floating-accent.accent-success {
    background: rgba(25, 135, 84, 0.2);
}

@keyframes floatServicesAccent {
    0% {
        transform: translateY(100vh) translateX(-50px) rotate(0deg) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.1;
        transform: translateY(90vh) translateX(-30px) rotate(45deg) scale(1);
    }

    90% {
        opacity: 0.1;
        transform: translateY(10vh) translateX(30px) rotate(315deg) scale(1);
    }

    100% {
        transform: translateY(-10vh) translateX(50px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Ripple Effect for Service Cards */
@keyframes serviceRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Responsive Design for Services Section */
@media (max-width: 991.98px) {
    .services-title {
        font-size: 2rem;
    }

    .services-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .service-category-item {
        padding: 0.5rem;
    }

    .service-category-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 2rem 0;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .services-category-header-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .services-category-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .service-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .service-category-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .service-category-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .decorative-line-1,
    .decorative-line-3 {
        width: 1rem;
    }

    .decorative-line-2 {
        width: 0.5rem;
    }

    .services-explore-btn {
        width: 100%;
        justify-content: center;
    }
    .process-arrow {
    display: block !important;
    }
}

/* Responsive Design for Solutions Section */
@media (max-width: 991.98px) {
    .solutions-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .solution-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-divider {
        width: 50%;
        height: 1px;
    }
}

@media (max-width: 767.98px) {
    .solutions-section {
        padding: 1.5rem 0;
    }

    .solutions-title {
        font-size: 1.75rem;
    }

    .solutions-description {
        font-size: 1rem;
    }

    .visual-container {
        height: 12rem;
    }

    .solution-image-container {
        height: 12rem;
    }

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

    .cta-content {
        padding: 2rem 1rem;
    }

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

    .cta-description {
        font-size: 1rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .tab-btn span {
        font-size: 0.75rem;
    }

    .solutions-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .cta-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .benefit-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .benefit-icon i {
        font-size: 1.25rem;
    }
}

/* Business Impact Section */
.business-impact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.business-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section {
    margin-bottom:0rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-card:hover {
    border-color: rgba(156, 163, 175, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.benefit-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.4) 0%, rgba(255, 255, 255, 1) 50%, rgba(243, 244, 246, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 0.75rem;
}

.benefit-card:hover .benefit-bg-gradient {
    opacity: 1;
}

.benefit-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(156, 163, 175, 0.4);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.benefit-card:hover .benefit-border-glow {
    opacity: 1;
}

.benefit-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(251, 228, 219, 0.5) !important;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(229, 231, 235, 0.9);
    color: #4b5563;
    transform: scale(1.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-icon i {
  font-size: 1.4rem;
  color: #dc2727;
}

.benefit-metric {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(243, 244, 246, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-metric {
    background: rgba(229, 231, 235, 0.8);
    color: #4b5563;
    transform: scale(1.05);
}

.benefit-body {
    flex: 1;
}

.benefit-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-body h4 {
    color: #374151;
}

.benefit-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-body p {
    color: #4b5563;
}

.benefit-accent {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: rgba(229, 231, 235, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

.benefit-card:hover .benefit-accent {
    opacity: 1;
}

/* Success Metrics Section */
.success-metrics-section {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.metrics-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.metric-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(229, 231, 235, 0.4);
    border-radius: 0.75rem;
    padding: .5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.metric-card:hover {
    border-color: rgba(156, 163, 175, 0.6);
    background: rgba(248, 250, 252, 0.4);
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.metric-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 1) 50%, rgba(243, 244, 246, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0.75rem;
}

.metric-card:hover .metric-bg-glow {
    opacity: 1;
}

.metric-content {
    position: relative;
    z-index: 10;
}

.metric-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.metric-card:hover .metric-value {
    color: #374151;
}

.metric-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.metric-card:hover .metric-suffix {
    color: #374151;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-change {
    color: #047857;
    transform: scale(1.1);
}

.metric-change i {
    font-size: 1rem;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-label {
    color: #374151;
}

.metric-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(156, 163, 175, 0.4);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover .metric-border-glow {
    opacity: 1;
}

/* Responsive Design for Business Impact Section */
@media (max-width: 991.98px) {
    .business-impact-section {
        padding: 3rem 0;
    }

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

    .benefits-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .business-impact-section {
        padding: 2rem 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .metrics-container {
        padding: 1.5rem;
    }

    .metric-card {
        padding: 1.25rem;
    }

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

    .metric-suffix {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .benefit-header {
        align-items: flex-start;
        gap: 0.75rem;

    }

    .benefit-metric {
        align-self: flex-end;
        padding-top: 0;
    }

    .quick-stat-card {
        min-height: 100px;
    }

    .metric-value-container {
        gap: 0.25rem;
    }

    .contact-form-card .mb-4 {
        margin-bottom: 1rem !important;
    }

    .metric-change {
        margin-top: 0.25rem;
    }

    .brands-image-container ul li {
        width: 48%;
        text-align: center;
    }

    .brands-image-container ul {
        flex-wrap: wrap;
    }

    .brands-visual-content {
        margin-top: 0 !important;
    }
}

/* Responsive Design for Trusted Brands Section */
@media (max-width: 991.98px) {
    .brands-title {
        font-size: 2rem;
    }

    .brands-visual-content {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .trusted-brands-section {
        padding: 2rem 0;
    }

    .brands-title {
        font-size: 1.75rem;
    }

    .brands-description {
        padding: 1rem;
    }

    .company-types {
        padding: 1rem;
    }

    .brands-stat-card {
        padding: 1rem;
    }

    .trust-indicators {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .brands-title {
        font-size: 1.5rem;
    }

    .brands-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .trust-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-divider {
        width: 50%;
        height: 1px;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .industry-indicator {
        top: 1rem;
        right: 1rem;
    }

    .hero-dots {
        bottom: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        padding: 1rem;
    }

    .hero-features {
        padding: 1.5rem;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    .hero-features h3 {
        margin-bottom: 1.25rem;
        padding-bottom: 0.5rem;
    }

    .feature-item {
        margin-bottom: 0.875rem;
        padding: 0.625rem;
    }

    .trust-card {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .hero-features {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        margin-top: 0.75rem;
    }

    .hero-features h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .feature-item {
        margin-bottom: 0.75rem;
        padding: 0.3rem 0;
        gap: 0.75rem;
    }

    .company-types .col-sm-6,
    .solution-features .col-sm-6 {
        margin-top: 0;
    }

    .feature-item span {
        font-size: 0.875rem;
    }

    .hero-badge {
        padding: 0.375rem 0.75rem;
    }

    .industry-indicator {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        display: none;
    }

    .indicator-content {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}


/* Font Size Adjustments - Normal Sizes */
.section-title {
    font-size: 2.5rem !important;
}

.solutions-title {
    font-size: 2.5rem !important;
}

.engagement-title {
    font-size: 2.5rem !important;
}

.industries-title {
    font-size: 2.5rem !important;
}

.cta-title {
    font-size: 1.5rem !important;
}

.solution-title {
    font-size: 1.25rem !important;
}

.contact-form-title {
    font-size: 1.75rem !important;
}

.process-title {
    font-size: 2.5rem !important;
}

/* Responsive font size adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 1.875rem !important;
    }

    .brands-title {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.25rem !important;
    }

    .solutions-title,
    .engagement-title,
    .industries-title,
    .cta-title,
    .process-title {
        font-size: 1.375rem !important;
    }

    .contact-form-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.625rem !important;
    }

    .brands-title {
        font-size: 1.25rem !important;
    }

    .section-title,
    .solutions-title,
    .engagement-title,
    .industries-title,
    .cta-title,
    .process-title {
        font-size: 1.125rem !important;
    }

    .contact-form-title {
        font-size: 1.25rem !important;
    }

    .solution-title {
        font-size: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem !important;
    }

    .brands-title,
    .section-title,
    .solutions-title,
    .engagement-title,
    .industries-title,
    .cta-title,
    .process-title,
    .contact-form-title {
        font-size: 1.5rem !important;
        line-height: 40px;
    }

    .solution-title {
        font-size: 0.875rem !important;
    }
}

/* Services Section - Exact React Match */
.services-section-react {
    position: relative;
    padding: 48px 0 64px;
    overflow: hidden;
}

/* Background Effects - Matching React */
.services-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.services-bg-accents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-accent-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(254, 202, 202, 0.2);
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.3;
    animation: pulseAccent1 4s ease-in-out infinite;
}

.bg-accent-2 {
    position: absolute;
    bottom: 33.333333%;
    right: 25%;
    width: 320px;
    height: 320px;
    background: rgba(254, 202, 202, 0.15);
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.25;
    animation: pulseAccent2 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulseAccent1 {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes pulseAccent2 {

    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.35;
    }
}

/* Container */
.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Header Section */
.services-header-react {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

@media (min-width: 768px) {
    .services-header-react {
        margin-bottom: 40px;
    }
}

.services-title-react {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #111827;
}

@media (min-width: 1024px) {
    .services-title-react {
        font-size: 3rem;
    }
}

.title-relative {
    position: relative;
}

.title-highlight {
    color: #dc2626;
    margin: 0 8px;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f87171, #fbbf24);
    border-radius: 9999px;
    opacity: 0.6;
}

.services-description-react {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.625;
    max-width: 512px;
    margin: 0 auto 16px;
}

/* Decorative Elements */
.decorative-elements-react {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.decorative-line {
    height: 2px;
    border-radius: 9999px;
}

.decorative-line-1 {
    width: 32px;
    background: linear-gradient(90deg, transparent, #fca5a5);
}

.decorative-line-2 {
    width: 16px;
    background: linear-gradient(90deg, #fca5a5, #fcd34d);
}

.decorative-line-3 {
    width: 32px;
    background: linear-gradient(90deg, #fcd34d, transparent);
}

.decorative-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.decorative-dot-1 {
    background: #ef4444;
}

.decorative-dot-2 {
    background: #eab308;
}

/* Main Layout */
.services-main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .services-main-layout {
        grid-template-columns: repeat(12, 1fr);
        gap: 48px;
    }
}

/* Sidebar */
.services-sidebar-react {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .services-sidebar-react {
        grid-column: span 4;
    }
}

.sidebar-container-react {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 32px;
}

.sidebar-title-react {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.sidebar-icon-wrapper {
    width: 32px;
    height: 32px;
    background: linear-gradient(to right, #fecaca, #fca5a5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.sidebar-icon-wrapper i {
    color: #6b7280;
    font-size: 16px;
}

/* Service Categories */
.services-categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-category-react {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #374151;
}

.service-category-react:hover {
    background: #f9fafb;
    color: #111827;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-category-react.active {
    background: linear-gradient(to right, #fecaca, #fca5a5);
    color: #374151;
    box-shadow: 0 10px 25px -3px rgba(254, 202, 202, 0.6);
    transform: scale(1.02);
}

.category-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #f3f4f6;
    color: #6b7280;
}

.service-category-react:hover .category-icon-wrapper {
    background: #fef2f2;
    color: #f87171;
}

.service-category-react.active .category-icon-wrapper {
    background: rgba(255, 255, 255, 0.6);
    color: #374151;
}

.category-title-text {
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Content Area */
.services-content-react {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .services-content-react {
        grid-column: span 8;
    }
}

.services-content-wrapper {
    transition: all 0.3s ease-out;
}

.services-content-wrapper.transitioning {
    opacity: 0;
    transform: translateY(16px);
}

/* Category Header */
.category-header-section {
    margin-bottom: 32px;
}

.category-header-flex {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.category-icon-large-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(to right, #fecaca, #fca5a5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -3px rgba(254, 202, 202, 0.6);
}

.category-icon-large-wrapper i {
    color: #6b7280;
    font-size: 24px;
}

.category-title-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/*** industries section ***/
.industry-card {
  position: relative;
  color: white;
  padding: 20px;
  border-radius: 12px;
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Gradient overlay: darker bottom → lighter top */
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
  border-radius: 12px;
  z-index: 1;
}

.industry-card > * {
  position: relative;
  z-index: 2;
}

.industry-icon {
  font-size: 1.8rem;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.industry-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.industry-description {
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Background images (optimized Unsplash URLs) */
.healthcare {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/heath-care.jpg');
}
.education {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/eduction-img.jpg');
}
.ecommerce {
 background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/ecommerse-img-new.jpg');
}
.media {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/media-img.jpg');
}
.travel {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80');
}
.finance {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/banking-img.jpg');
}
.manufacturing {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/manufacturing-img.jpg');
}
.food {
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=80');
}
.sports {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/sports-img.jpg');
}
.creative {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/creative-service.jpg');
}
.realestate {
  background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=900&q=80');
}
.logistics {
  background-image: url('https://demo67.ciadmin.in/wp-content/uploads/2025/10/logistics-img.jpg');
}







/* Services Grid */
.services-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card-react {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card-react:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(254, 202, 202, 0.6);
    transform: translateY(-8px);
}

.service-card-icon {
    margin-bottom: 16px;
}

.service-card-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(90deg, #fef2f2, #fef2f2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card-react:hover .service-card-icon-wrapper {
    transform: scale(1.1);
}

.service-card-icon-wrapper i {
    color: #f87171;
    font-size: 24px;
}

.service-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.service-card-react:hover .service-card-title {
    color: #1f2937;
}

.service-card-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.625;
    transition: color 0.2s ease;
}

.service-card-react:hover .service-card-description {
    color: #374151;
}

/* Hover Effect Gradient */
.service-card-react::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(254, 242, 242, 0), rgba(254, 242, 242, 0.2), rgba(254, 242, 242, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    pointer-events: none;
}

.service-card-react:hover::before {
    opacity: 1;
}

/* Explore Button */
.explore-button-wrapper {
    margin-top: 32px;
    text-align: center;
}

.explore-button-styled {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    color: white;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.5);
}

.explore-button-styled:hover {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(254, 202, 202, 0.5);
}

.explore-arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.explore-button-styled:hover .explore-arrow-icon {
    transform: translateX(4px);
}

/* Animation Keyframes */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-react {
    animation: fadeInUpSmooth 0.6s ease-out forwards;
}

.brands-section {
  background: #ffffff;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 247, 227, 1) 100%);
}

/*** faq new section css ***/
.faq-section {
  background: #f9fbff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 40px;
}

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

.accordion-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  /*box-shadow: 0 2px 6px rgba(0,0,0,0.1);*/
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 16px 20px;
  text-align: left;

  cursor: pointer;
 font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.3s ease;
}

.accordion-header:hover {
 background: #fcf3fb;
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 300px;
}

.accordion-item.active .accordion-content p {
  font-size: 0.95rem !important;
   color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}
.accordion-item.active .accordion-header {
 background: #fcf3fb;
   font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}





/* Responsive Design */
@media (max-width: 1023px) {
    .services-main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-container-react {
        position: static;
    }

    .services-categories-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .services-section-react {
        padding: 30px 0;
    }

    .services-header-react {
        margin-bottom: 40px;
    }

    .services-title-react {
        font-size: 2rem;
    }

    .services-description-react {
        font-size: 1rem;
    }

    .sidebar-container-react {
        padding: 20px;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-header-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .category-title-large {
        font-size: 1.25rem;
    }
}
