.accelerators-horizontal {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
}

/* Connecting Line */
.steps-horizontal::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, #17479e, #10b981, #8b5cf6);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.step-icon svg{
  width: 34px;
  height: 34px;
  display: block;
  fill: #fff;

  /* makes different SVG paths look consistent */
  overflow: visible;
}

.step-icon.blue {
  background: linear-gradient(135deg, #17479e , #17479e );
}
.step-icon.green {
  background: linear-gradient(135deg, #17479e , #17479e );
}
.step-icon.purple {
  background: linear-gradient(135deg, #17479e , #17479e );
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  max-width: 260px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

.step:hover .step-icon {
  transform: translateY(-6px) scale(1.05);
}


@media (max-width: 768px) {
  .steps-horizontal {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .steps-horizontal::before {
    display: none;
  }
}



.light-cta-btn {
					display: inline-flex;
					align-items: center;
					gap: 10px;
					padding: 16px 28px;
					font-size: 16px;
					font-weight: 600;
					text-decoration: none;
					border-radius: 12px;
					transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
					position: relative;
					overflow: hidden;
					z-index: 1;
					border: none;
				}

				/* Button Icons */
				.light-cta-btn svg {
					width: 20px;
					height: 20px;
					transition: all 0.4s ease;
					position: relative;
					z-index: 2;
				}

																																<span class="shimmer"></span>
*/
				/* HOVER EFFECT 9: Pulse Animation */
				@keyframes pulse-glow {

					0%,
					100% {
						box-shadow:
							0 8px 25px rgba(59, 130, 246, 0.3),
							0 0 0 1px rgba(59, 130, 246, 0.2);
					}

					50% {
						box-shadow:
							0 8px 35px rgba(59, 130, 246, 0.5),
							0 0 0 1px rgba(59, 130, 246, 0.3);
					}
				}

        /* UNIQUE LIGHT SECTION STYLES ONLY */
	
	.light-cta-section {
		background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
		padding: 80px 0;
		position: relative;
		overflow: hidden;
		font-family: 'Inter', sans-serif;
	}
	/* Animated Background Container */
	
	.light-animated-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		z-index: 1;
	}
	/* Floating Bubbles */
	
	.light-bubble {
		position: absolute;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
		animation: floatLight 25s infinite linear;
	}
	
	.lb1 {
		width: 300px;
		height: 300px;
		top: 10%;
		right: 5%;
		background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
		animation-duration: 30s;
	}
	
	.lb2 {
		width: 200px;
		height: 200px;
		bottom: 15%;
		left: 5%;
		background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
		animation-duration: 35s;
		animation-delay: -5s;
	}
	
	.lb3 {
		width: 150px;
		height: 150px;
		top: 40%;
		right: 20%;
		background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
		animation-duration: 28s;
		animation-delay: -10s;
	}
	
	.lb4 {
		width: 180px;
		height: 180px;
		bottom: 25%;
		right: 15%;
		background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
		animation-duration: 32s;
		animation-delay: -15s;
	}
	
	.lb5 {
		width: 120px;
		height: 120px;
		top: 20%;
		left: 10%;
		background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
		animation-duration: 26s;
		animation-delay: -20s;
	}
	/* Grid Pattern */
	
	.light-grid {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
		background-size: 40px 40px;
		animation: gridMoveLight 40s linear infinite;
	}
	/* Sparkles */
	
	.light-sparkle {
		position: absolute;
		background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
		border-radius: 50%;
		animation: sparkleLight 4s infinite ease-in-out;
	}
	
	.ls1 {
		width: 8px;
		height: 8px;
		top: 30%;
		left: 20%;
		animation-delay: 0s;
	}
	
	.ls2 {
		width: 6px;
		height: 6px;
		top: 60%;
		right: 25%;
		animation-delay: 1.3s;
	}
	
	.ls3 {
		width: 10px;
		height: 10px;
		bottom: 40%;
		left: 30%;
		animation-delay: 2.7s;
	}
	/* Container & Layout */
	
	.light-cta-section .container {
		position: relative;
		z-index: 2;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
	}
	
	.light-cta-section .cta-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 60px;
		position: relative;
		z-index: 2;
	}
	/* Left Content */
	
	.light-cta-section .cta-left h2 {
		color: #17479e;
		font-size: 42px;
		line-height: 1.2;
		margin-bottom: 40px;
		font-weight: 700;
		text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
	}


	.light-cta-section .cta-right h2 {
		color: #17479e;
		font-size: 42px;
		line-height: 1.2;
		margin-bottom: 40px;
		font-weight: 700;
		text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
	}


	.light-cta-section .cta-right .mobile-show {
		display:none;
	}
	/* Buttons */
	
	.light-cta-section .cta-actions {
		display: flex;
		gap: 16px;
		flex-wrap: wrap;
	}
	
	.light-cta-btn {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 16px 28px;
		font-size: 16px;
		font-weight: 600;
		text-decoration: none;
		border-radius: 12px;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		overflow: hidden;
		z-index: 1;
		border: none;
	}
	
	.light-cta-btn svg {
		width: 20px;
		height: 20px;
		transition: transform 0.3s ease;
	}
	
	.light-cta-btn:hover svg {
		transform: scale(1.1);
	}
	/* Primary Button */
	
	.primary-light {
		background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
		color: white;
		box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
	}
	
	.primary-light::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.6s;
		z-index: -1;
	}
	
	.primary-light:hover::before {
		left: 100%;
	}
	
	.primary-light:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
	}
	/* Outline Button */
	
	.outline-light {
		background: transparent;
		color: #475569;
		border: 2px solid #e2e8f0;
		transition: all 0.3s ease;
	}
	
	.outline-light:hover {
		border-color: #17479e;
		color: #17479e;
		background: rgba(59, 130, 246, 0.05);
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
	}
	/* Profile Card */
	
	.light-profile-card {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		border-radius: 20px;
		overflow: hidden;
		max-width: 380px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.8);
		position: relative;
		transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	}
	
	.light-profile-card:hover {
		transform: translateY(-10px) scale(1.02);
		box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
	}
	/* Profile Image */
	
	.light-profile-image {
		position: relative;
		overflow: hidden;
		height: 250px;
	}
	
	.light-profile-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.8s ease;
	}
	
	.light-profile-card:hover .light-profile-image img {
		transform: scale(1.05);
	}
	
	.light-profile-badge {
		position: absolute;
		bottom: 20px;
		left: 20px;
		background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
		color: white;
		font-size: 14px;
		font-weight: 700;
		padding: 8px 20px;
		border-radius: 8px;
		letter-spacing: 2px;
		text-transform: uppercase;
		box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
	}
	/* Profile Info */
	
	.light-profile-info {
		padding: 24px;
	}
	
	.light-profile-info h4 {
		font-size: 22px;
		color: #17479e;
		margin-bottom: 8px;
		font-weight: 700;
	}
	
	.light-profile-info p {
		font-size: 15px;
		color: #475569;
		line-height: 1.6;
		margin-bottom: 0;
	}
	/* Animations */
	
	@keyframes floatLight {
		0%,
		100% {
			transform: translate(0, 0) rotate(0deg);
		}
		25% {
			transform: translate(20px, -20px) rotate(90deg);
		}
		50% {
			transform: translate(-15px, 15px) rotate(180deg);
		}
		75% {
			transform: translate(10px, -10px) rotate(270deg);
		}
	}
	
	@keyframes gridMoveLight {
		0% {
			transform: translate(0, 0);
		}
		100% {
			transform: translate(40px, 40px);
		}
	}
	
	@keyframes sparkleLight {
		0%,
		100% {
			opacity: 0.3;
			transform: scale(1);
		}
		50% {
			opacity: 1;
			transform: scale(1.5);
		}
	}
	/* Responsive */
	
	@media (max-width: 1024px) {
		.light-cta-section .cta-wrapper {
			flex-direction: column;
			align-items: flex-start;
			gap: 40px;
		}
		.light-profile-card {
			max-width: 100%;
			width: 100%;
		}
		.light-cta-section .cta-left h2 {
			font-size: 36px;
		}
		.light-bubble {
			opacity: 0.5;
		}
	}
	
	@media (max-width: 768px) {
		.light-cta-section {
			padding: 60px 0;
		}
		.light-cta-section .cta-left h2 {
			font-size: 32px;
		}
		.light-cta-section .cta-actions {
			flex-direction: column;
		}
		.light-cta-btn {
			width: 100%;
			justify-content: center;
		}
	}
	
	@media (max-width: 480px) {
		.light-cta-section .cta-left h2 {
			font-size: 28px;
		}
		.light-profile-info h4 {
			font-size: 20px;
		}
		.light-profile-info p {
			font-size: 14px;
		}
	}
	/* ENHANCED BUTTON HOVER EFFECTS */
	
	.light-cta-btn {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 16px 28px;
		font-size: 16px;
		font-weight: 600;
		text-decoration: none;
		border-radius: 12px;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		overflow: hidden;
		z-index: 1;
		border: none;
	}
	/* Button Icons */
	
	.light-cta-btn svg {
		width: 20px;
		height: 20px;
		transition: all 0.4s ease;
		position: relative;
		z-index: 2;
	}
	/* Outline Button Styles */
	
	.outline-light {
		background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
		color: #fff;
		border: 2px solid #e2e8f0;
		position: relative;
	}
	/* HOVER EFFECT 1: Gradient Slide */
	
	.outline-light::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1), transparent);
		transition: left 0.7s ease;
		z-index: -1;
	}
	
	.outline-light:hover::before {
		left: 100%;
	}
	/* HOVER EFFECT 2: Color Fill */
	
	.outline-light::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: transparent;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: -1;
	}
	
	.outline-light:hover::after {
		transform: scaleX(1);
		transform-origin: left;
	}
	/* HOVER EFFECT 3: Border Animation */
	
	.outline-light {
		background-clip: padding-box;
	}
	
	.outline-light:hover {
		border-color: transparent;
		color: 000;
		box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.2);
	}
	/* HOVER EFFECT 4: Ripple Effect */
	
	.outline-light .ripple {
		position: absolute;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.4);
		transform: scale(0);
		animation: ripple 0.6s linear;
		z-index: 0;
	}
	
	@keyframes ripple {
		to {
			transform: scale(4);
			opacity: 0;
		}
	}
	/* HOVER EFFECT 5: Icon Enhancement */
	
	.outline-light:hover svg {
		transform: scale(1.15) rotate(5deg);
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	}
	/* HOVER EFFECT 6: 3D Lift */
	
	.outline-light {
		transform-style: preserve-3d;
		perspective: 1000px;
	}
	
	.outline-light:hover {
		transform: translateY(-4px) translateZ(20px);
		box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	}
	/* HOVER EFFECT 7: Text Glow */
	
	.outline-light:hover {
		text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
	}
	/* HOVER EFFECT 8: Shimmer Overlay */
	
	.outline-light .shimmer {
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: linear-gradient( 45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
		transform: rotate(45deg) translateX(-100%);
		transition: transform 0.8s ease;
		z-index: 1;
	}
	
	.outline-light:hover .shimmer {
		transform: rotate(45deg) translateX(100%);
	}
	/* Add shimmer span to HTML */
	/* Add this inside each button:
<span class="shimmer"></span>
*/
	/* HOVER EFFECT 9: Pulse Animation */
	
	@keyframes pulse-glow {
		0%,
		100% {
			box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.2);
		}
		50% {
			box-shadow: 0 8px 35px rgba(59, 130, 246, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.3);
		}
	}
	
	.outline-light:hover {
		animation: pulse-glow 2s infinite;
	}
	/* HOVER EFFECT 10: Inner Glow */
	
	.outline-light {
		box-shadow: inset 0 0 0 0 rgba(59, 130, 246, 0);
	}
	
	.outline-light:hover {
		box-shadow: inset 0 0 30px 0 rgba(59, 130, 246, 0.1);
	}
	/* Responsive Adjustments */
	
	@media (max-width: 768px) {
		.outline-light:hover {
			transform: translateY(-2px);
			box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
		}
		.outline-light:hover svg {
			transform: scale(1.1);
		}
	}


/*industries-common-section-css*/

.wwd-compact-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    max-height: 1200px;
    overflow: hidden;
}

/* Title */
.wwd-sec-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #0f172a;
    text-align: center;
}

/* Compact Tabs Navigation - SMOOTH ANIMATIONS */
.wwd-compact-tabs-nav {
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 20px;
}

.wwd-compact-nav-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 100%;
}

.wwd-compact-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.wwd-compact-tab:hover {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(96, 165, 250, 0.1);
}

.wwd-compact-tab.wwd-ctab-active {
    background: linear-gradient(135deg, #17479e 0%, #17479e 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.25);
    transform: translateY(-2px);
}

.wwd-compact-tab.wwd-ctab-active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e11b22;
    animation: tabActiveLine 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tabActiveLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.wwd-compact-tab.wwd-ctab-active .wwd-ctab-icon {
    background: white;
    color: #17479e;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 8px rgba(96, 165, 250, 0.2);
}

.wwd-compact-tab.wwd-ctab-active .wwd-ctab-text {
    color: white;
    transform: translateY(1px);
}

.wwd-ctab-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    color: #17479e;
    margin-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wwd-ctab-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.wwd-compact-tab:hover .wwd-ctab-icon::after {
    width: 100%;
    height: 100%;
}

.wwd-ctab-text {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-break: break-word;
    max-width: 100%;
    padding: 0 4px;
}

/* Compact Content Area - SMOOTH TRANSITIONS */
.wwd-compact-content-area {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-height: 500px;
    overflow-y: hidden;
    position: relative;
    min-height: 450px;
}

/* Hide scrollbar but keep functionality */
.wwd-compact-content-area::-webkit-scrollbar {
    width: 6px;
}

.wwd-compact-content-area::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.wwd-compact-content-area::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.wwd-compact-content-area::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Tab Content - SMOOTH ANIMATIONS */
.wwd-ctab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    animation: tabContentOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.wwd-ctab-content.wwd-ctab-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: tabContentIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes tabContentIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tabContentOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Visual Box */
.wwd-cvisual-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
    margin-bottom: 15px;
    transform: translateX(-5px);
    opacity: 0;
    animation: visualSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes visualSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.wwd-cimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-cvisual-box:hover .wwd-cimg {
    transform: scale(1.05);
}

.wwd-cstats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    transf
    41orm: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-cvisual-box:hover .wwd-cstats {
    transform: translateY(0);
}

.wwd-cstat {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-cvisual-box:hover .wwd-cstat {
    transform: scale(1);
    opacity: 1;
}

.wwd-cvisual-box:hover .wwd-cstat:nth-child(1) {
    transition-delay: 0.1s;
}

.wwd-cvisual-box:hover .wwd-cstat:nth-child(2) {
    transition-delay: 0.2s;
}

.wwd-cvisual-box {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          min-height: 300px;
        }

        .wwd-cimg {
          width: 100%;
          height: auto;
          display: block;
          border-radius: 8px;
        }

        .wwd-ctitle {
          position: absolute;
          top: 80%;
          left: 50%;
          transform: translate(-50%, -50%);
          color: #ffffff;
          background: rgba(0, 0, 0, 0.6);
          padding: 0.5rem 1.5rem;
          border-radius: 40px;
          font-size: 1.5rem;
          font-weight: 600;
          text-align: center;
          z-index: 2;
          margin: 0;
          width: 100%;
          max-width: 90%;
          box-sizing: border-box;
          text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .wwd-compact-tab {
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .wwd-compact-tab.wwd-ctab-active {
          background-color: #e11b22;
          color: #ffffff;
          border-color: #e11b22;
        }

        .wwd-ctab-content {
          display: none;
        }

        .wwd-ctab-content.wwd-ctab-show {
          display: block;
        }




/*common*/

	.title-area h2 {
	font-size:30px;
	margin-bottom:50px!important;
	}

	@media (max-width: 767px) {
		.title-area h2 {
		font-size:22px;
		margin-bottom:50px!important;
		line-height:20px;
		}

		.icon-category-card .icon-wrapper svg {
		width: 24px;
		height: 24px;
		}

		.icon-focus-areas {
		padding-bottom: 0px !important;

		}

		.icon-category-row {
    		margin-bottom: 0px;
	}

	.wwd-compact-section.jsx-a5f2c97df91cfcb7 {
    padding: 1rem 0;

}

	}


	.sec-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 15px;
	color: #17479e;
	}


	 /* ===== What We Do Section Styles ===== */
        .wwd-compact-section {
          position: relative;
          padding: 4rem 0;
        }
        .wwd-compact-tabs-nav {
          display: block;
        }
        .wwd-compact-nav-row {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem;
        }
        .wwd-compact-tab {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 12px 24px;
          background: #f1f5f9;
          border-radius: 40px;
          cursor: pointer;
          transition: all 0.3s ease;
          font-weight: 500;
          border: 1px solid #e2e8f0;
        }
        .wwd-compact-tab.wwd-ctab-active {
          background-color: #e11b22 !important;
          color: #ffffff !important;
          border-color: #e11b22 !important;
        }
        .wwd-ctab-content {
          display: none;
        }
        .wwd-ctab-content.wwd-ctab-show {
          display: block;
        }
        
        /* Desktop content */
        .desktop-content {
          display: block;
        }
        
        /* Mobile Accordion Styles */
        .wwd-mobile-accordion {
          display: none;
        }
        
        .wwd-accordion-item {
          background: #ffffff;
          border: 1px solid #e2e8f0;
          border-radius: 12px;
          margin-bottom: 12px;
          overflow: hidden;
          transition: all 0.3s ease;
        }
        
        .wwd-accordion-header {
          display: flex !important;
          justify-content: space-between !important;
          align-items: center !important;
          padding: 16px 20px !important;
          cursor: pointer !important;
          background: #f8fafc !important;
          transition: all 0.3s ease !important;
        }
        
        .wwd-accordion-header:hover {
          background: #f1f5f9 !important;
        }
        
        .wwd-accordion-open {
          background: #e11b22 !important;
          color: #ffffff !important;
        }
        
        .wwd-accordion-open .wwd-accordion-icon svg,
        .wwd-accordion-open .wwd-accordion-title {
          color: #ffffff !important;
          stroke: #ffffff !important;
        }
        
        .wwd-accordion-title-wrapper {
          display: flex !important;
          align-items: center !important;
          gap: 12px !important;
          flex: 1 !important;
        }
        
        .wwd-accordion-icon {
          display: flex !important;
          align-items: center !important;
          justify-content: center !important;
          width: 32px !important;
          height: 32px !important;
        }
        
        .wwd-accordion-icon svg {
          width: 20px !important;
          height: 20px !important;
          stroke: currentColor !important;
        }
        
        .wwd-accordion-title {
          font-size: 16px !important;
          font-weight: 600 !important;
          line-height: 1.4 !important;
        }
        
        .wwd-accordion-arrow {
          transition: transform 0.3s ease !important;
          display: flex !important;
          align-items: center !important;
          justify-content: center !important;
          width: 24px !important;
          height: 24px !important;
        }
        
        .wwd-accordion-arrow svg {
          width: 16px !important;
          height: 16px !important;
          stroke: currentColor !important;
        }
        
        .wwd-arrow-rotated {
          transform: rotate(180deg) !important;
        }
        
        .wwd-accordion-content {
          max-height: 0 !important;
          overflow: hidden !important;
          transition: max-height 0.4s ease-out !important;
          padding: 0 20px !important;
          background: #ffffff !important;
        }
        
        .wwd-accordion-show {
          max-height: 1000px !important;
          padding: 20px !important;
          transition: max-height 0.5s ease-in !important;
        }
        
        .wwd-cvisual-box {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          min-height: 250px;
        }
        
        .wwd-cimg {
          width: 100%;
          height: auto;
          display: block;
          border-radius: 8px;
        }
        
        .wwd-ctitle {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          color: #ffffff !important;
          background: rgba(0, 0, 0, 0.7) !important;
          padding: 0.5rem 1rem !important;
          border-radius: 8px !important;
          font-size: 1rem !important;
          font-weight: 600 !important;
          text-align: center !important;
          z-index: 2 !important;
          margin: 0 !important;
          width: auto !important;
          max-width: 90% !important;
          box-sizing: border-box !important;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        }
        
        .wwd-cdesc {
          font-size: 14px !important;
          line-height: 1.6 !important;
          color: #334155 !important;
        }
        
        .wwd-cfeatures {
          display: flex !important;
          flex-direction: column !important;
          gap: 8px !important;
        }
        
        .wwd-cfeature {
          padding: 8px 12px !important;
          background: #f8fafc !important;
          border-left: 3px solid #e11b22 !important;
          font-size: 13px !important;
          color: #1e293b !important;
          border-radius: 4px !important;
        }
        
        @media (max-width: 991px) {
          .wwd-compact-tabs-nav {
            display: none !important;
          }
          
          .wwd-mobile-accordion {
            display: block !important;
          }
          
          .desktop-content {
            display: none !important;
          }
          
          .wwd-ctitle {
            font-size: 14px !important;
            padding: 0.3rem 0.8rem !important;
            bottom: 15px !important;
          }
          
          .wwd-cvisual-box {
            min-height: 200px !important;
          }
        }
        
        /* Two items center */
        .icon-category-row.two-items-center {
          justify-content: center;
        }
        .icon-category-row.two-items-center .icon-category-card {
          flex: 0 1 calc(50% - 60px);
          max-width: 400px;
        }

		.light-cta-btn:nth-child(3) svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}
        @media (max-width: 768px) {
          .icon-category-row.two-items-center .icon-category-card {
            flex: 0 1 100%;
          }

		  .light-cta-btn:nth-child(3) svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}


 .wwd-compact-section {
       
          padding:1rem 0;
        }
        }
  
        /* ===== Light CTA Button Styles ===== */
        /* Default styles - text visible */
        .cta-actions {
          display: flex;
          gap: 1rem;
          flex-wrap: wrap;
        }
        
        .light-cta-btn .btn-text {
          display: inline;
        }
        
@media (max-width: 991px) {
		.zi-industry-card .zi-card-image {
			display:none;
		}

		.zi-industry-title {
			font-size:14px!important;
		}

}
        /* Mobile styles - FORCE all icons in single line and CENTERED with !important */
        @media (max-width: 991px) {
          .cta-left {
            text-align: center !important;
            width: 100% !important;
          }
          
          .cta-actions {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 1rem !important;
            flex-wrap: nowrap !important;
            width: 100% !important;
            margin: 0 auto !important;
            text-align: center !important;
          }
          
          .light-cta-btn {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 0 !important;
            padding: 12px !important;
            min-width: auto !important;
            width: 52px !important;
            height: 52px !important;
            flex-shrink: 0 !important;
            margin: 0 !important;
            border-radius: 50% !important;
            text-align: center !important;
          }
          
          .light-cta-btn svg {
            width: 24px !important;
            height: 24px !important;
            margin: 0 !important;
          }
          
          .light-cta-btn .btn-text {
            display: none !important;
          }
        }
        
        /* Small mobile - keep single line and centered */
        @media (max-width: 480px) {
          .cta-actions {
            gap: 0.75rem !important;
          }
          
          .light-cta-btn {
            width: 48px !important;
            height: 48px !important;
          }
          
          .light-cta-btn svg {
            width: 22px !important;
            height: 22px !important;
          }
        }
        
        /* Tablet and Desktop styles (min-width: 992px) - text visible */
        @media (min-width: 992px) {
          .light-cta-btn .btn-text {
            display: inline;
          }
          
          .cta-actions {
            flex-wrap: wrap;
          }
        }



		
